diff --git a/Makefile b/Makefile index a52d2004..280cc6ea 100644 --- a/Makefile +++ b/Makefile @@ -25,7 +25,8 @@ RUN_CMD = printf "\e[%sm>> %-21s\e[0;1m\n" "1;34" # bold blue text with a >> pr # INPUTS CATEGORIES_DATA = $(shell find data/categories) -ATTRIBUTES_DATA = $(shell find data/attributes) +ATTRIBUTES_DATA = $(shell find data/attributes.yml) +VALUES_DATA = $(shell find data/values.yml) ############################################################################### # TARGETS @@ -69,12 +70,12 @@ build: $(DIST_GENERATED_SENTINEL) \ $(ATTRIBUTES_DATA_CUE) .PHONY: build -$(DOCS_GENERATED_SENTINEL): $(LOCAL_DB) $(CATEGORIES_DATA) $(ATTRIBUTES_DATA) +$(DOCS_GENERATED_SENTINEL): $(LOCAL_DB) $(CATEGORIES_DATA) $(ATTRIBUTES_DATA) $(VALUES_DATA) @$(GENERATE) "Building Docs" "$(GENERATED_DOCS_PATH)/*" $(V)./bin/generate_docs $(VARG) $(V)touch $@ -$(DIST_GENERATED_SENTINEL): $(LOCAL_DB) $(CATEGORIES_DATA) $(ATTRIBUTES_DATA) +$(DIST_GENERATED_SENTINEL): $(LOCAL_DB) $(CATEGORIES_DATA) $(ATTRIBUTES_DATA) $(VALUES_DATA) @$(GENERATE) "Building Dist" "$(GENERATED_DIST_PATH)/*.[json|txt]" $(V)bin/generate_dist $(VARG) $(V)touch $@ @@ -102,7 +103,7 @@ release: build # CLEAN clean: @$(NUKE) "Cleaning dev db" $(LOCAL_DB) - $(V)rm -f $(LOCAL_DB) + $(V)rm -f $(LOCAL_DB)* @$(NUKE) "Cleaning Generated Docs" $(GENERATED_DOCS_PATH) $(V)rm -f $(DOCS_GENERATED_SENTINEL) $(V)rm -rf $(GENERATED_DOCS_PATH) diff --git a/app/models/category.rb b/app/models/category.rb index c04aaa63..f680cba0 100644 --- a/app/models/category.rb +++ b/app/models/category.rb @@ -10,6 +10,11 @@ class Category < ApplicationRecord has_many :categories_properties, dependent: :destroy has_many :properties, through: :categories_properties, foreign_key: :property_friendly_id + + def property_friendly_ids + properties.pluck(:friendly_id) + end + def property_friendly_ids=(ids) self.properties = Property.where(friendly_id: ids) end diff --git a/app/models/properties_property_value.rb b/app/models/properties_property_value.rb index 491c44e1..51a4ec11 100644 --- a/app/models/properties_property_value.rb +++ b/app/models/properties_property_value.rb @@ -2,5 +2,5 @@ class PropertiesPropertyValue < ApplicationRecord belongs_to :property - belongs_to :property_value + belongs_to :property_value, foreign_key: :property_value_friendly_id, primary_key: :friendly_id end diff --git a/app/models/property.rb b/app/models/property.rb index 2092f32f..1aa977ca 100644 --- a/app/models/property.rb +++ b/app/models/property.rb @@ -7,7 +7,15 @@ class Property < ApplicationRecord has_many :categories, through: :categories_properties has_many :properties_property_values, dependent: :destroy - has_many :property_values, through: :properties_property_values + has_many :property_values, through: :properties_property_values, foreign_key: :property_value_friendly_id + + def property_value_friendly_ids + property_values.pluck(:friendly_id) + end + + def property_value_friendly_ids=(ids) + self.property_values = PropertyValue.where(friendly_id: ids) + end validates :name, presence: true diff --git a/app/models/property_value.rb b/app/models/property_value.rb index 483543bc..c5107680 100644 --- a/app/models/property_value.rb +++ b/app/models/property_value.rb @@ -3,8 +3,12 @@ class PropertyValue < ApplicationRecord default_scope { order(Arel.sql("CASE WHEN name = 'Other' THEN 1 ELSE 0 END, name")) } - has_and_belongs_to_many :properties, - join_table: :properties_property_values + has_many :properties_property_values, + dependent: :destroy, + foreign_key: :property_value_friendly_id, + primary_key: :friendly_id, + inverse_of: :property_value + has_many :properties, through: :properties_property_values validates :name, presence: true diff --git a/app/serializers/source_data/property_serializer.rb b/app/serializers/source_data/property_serializer.rb index 3420cfd6..55b6ae0f 100644 --- a/app/serializers/source_data/property_serializer.rb +++ b/app/serializers/source_data/property_serializer.rb @@ -16,33 +16,49 @@ def serialize(property) end def deserialize(hash) - Property.new( - id: hash["id"], - friendly_id: hash["friendly_id"], - name: hash["name"], - property_value_ids: hash["values"].map { _1["id"] }, - ) + Property.new(**attributes_from(hash)).tap do |property| + property.property_value_friendly_ids = if hash["values_from"].present? + Property.find_by!(friendly_id: hash["values_from"]).property_value_friendly_ids + else + hash["values"] + end + end end def deserialize_for_insert_all(array) - array.map do |hash| - { - id: hash["id"], - friendly_id: hash["friendly_id"], - name: hash["name"], - } - end + array.map { attributes_from(_1) } end def deserialize_for_join_insert_all(array) array.flat_map do |hash| - hash["values"].map do |value_hash| + if hash["values_from"].present? + property = Property.find_by!(friendly_id: hash["values_from"]) + + next property.property_values.map do |value| + { + property_id: hash["id"], + property_value_friendly_id: value.friendly_id, + } + end + end + + hash["values"].map do |value_friendly_id| { property_id: hash["id"], - property_value_id: value_hash["id"], + property_value_friendly_id: value_friendly_id, } end end end + + private + + def attributes_from(hash) + { + id: hash["id"], + friendly_id: hash["friendly_id"], + name: hash["name"], + } + end end end diff --git a/app/serializers/source_data/property_value_serializer.rb b/app/serializers/source_data/property_value_serializer.rb index 63ec950c..c9e032c1 100644 --- a/app/serializers/source_data/property_value_serializer.rb +++ b/app/serializers/source_data/property_value_serializer.rb @@ -10,6 +10,7 @@ def serialize(property_value) { "id" => property_value.id, "name" => property_value.name, + "friendly_id": property_value.friendly_id, } end @@ -27,6 +28,7 @@ def attributes_from(hash) { id: hash["id"], name: hash["name"], + friendly_id: hash["friendly_id"], } end end diff --git a/bin/seed b/bin/seed index b09ff70b..a57f2ed3 100755 --- a/bin/seed +++ b/bin/seed @@ -11,7 +11,8 @@ cli.parse!(ARGV) puts("Seeding local database...") cli.options_status -attributes_data = cli.parse_yaml("data/attributes/attributes.yml") +values_data = cli.parse_yaml("data/values.yml") +attributes_data = cli.parse_yaml("data/attributes.yml") category_files = Dir.glob("#{CLI.root}/data/categories/*.yml") verticals_data = category_files.map { cli.parse_yaml(_1) } @@ -19,5 +20,6 @@ Application.establish_db_connection! Application.load_and_reset_schema! seed = DB::Seed.new(verbose: cli.options.verbose) +seed.values_from(values_data) seed.attributes_from(attributes_data) seed.categories_from(verticals_data) diff --git a/data/attributes.yml b/data/attributes.yml new file mode 100644 index 00000000..7633e102 --- /dev/null +++ b/data/attributes.yml @@ -0,0 +1,22356 @@ +--- +- id: 1 + name: Color + friendly_id: color + values: + - color__beige + - color__black + - color__blue + - color__bronze + - color__brown + - color__clear + - color__gold + - color__gray + - color__green + - color__multicolor + - color__navy + - color__orange + - color__pink + - color__purple + - color__red + - color__rose_gold + - color__silver + - color__white + - color__yellow +- id: 3 + name: Pattern + friendly_id: pattern + values: + - pattern__animals + - pattern__birds + - pattern__camouflage + - pattern__characters + - pattern__checkered + - pattern__christmas + - pattern__dots + - pattern__floral + - pattern__geometric + - pattern__hearts + - pattern__leaves + - pattern__paisley + - pattern__solid + - pattern__stars + - pattern__striped + - pattern__text + - pattern__tie_dye + - pattern__vehicle +- id: 4 + name: Material + friendly_id: material + values: + - material__acrylic + - material__aluminum + - material__biodegradable_materials + - material__brass + - material__bronze + - material__canvas + - material__carbon + - material__cardboard + - material__ceramic + - material__chrome + - material__clay + - material__coir + - material__concrete + - material__copper + - material__cork + - material__cotton + - material__fabric + - material__faux_leather + - material__fiberglass + - material__glass + - material__graphite + - material__iron + - material__latex + - material__leather + - material__linen + - material__marble + - material__medium_density_fiberboard_mdf + - material__metal + - material__nylon + - material__paper + - material__plastic + - material__plush + - material__plywood + - material__polyester + - material__polyethylene_pe + - material__polypropylene_pp + - material__polyurethane_pu + - material__polyvinyl_chloride_pvc + - material__porcelain + - material__resin + - material__rubber + - material__silicone + - material__stainless_steel + - material__stone + - material__thermoplastic_elastomer_tpe + - material__thermoplastic_polyurethane_tpu + - material__vinyl + - material__wood + - material__wool + - material__other +- id: 5 + name: Activity + friendly_id: activity + values: + - activity__aerobics + - activity__aikido + - activity__air_hockey + - activity__ballet + - activity__baseball + - activity__basketball + - activity__boxing + - activity__brazilian_jiu_jitsu + - activity__cheerleading + - activity__climbing + - activity__cricket + - activity__cycling + - activity__dancing + - activity__darts + - activity__field_hockey + - activity__fishing + - activity__football + - activity__golf + - activity__gymnastics + - activity__handball + - activity__hockey + - activity__horse_riding + - activity__hunting + - activity__judo + - activity__karate + - activity__krav_maga + - activity__lacrosse + - activity__motorcycling + - activity__muay_thai + - activity__netball + - activity__padel + - activity__pilates + - activity__racquetball + - activity__rugby + - activity__soccer + - activity__softball + - activity__squash + - activity__taekwondo + - activity__tennis + - activity__volleyball + - activity__wrestling + - activity__yoga + - activity__other + - activity__running + - activity__car_racing + - activity__australian_football + - activity__badminton + - activity__floorball + - activity__futsal + - activity__gaelic_football + - activity__hurling + - activity__ice_hockey + - activity__ultimate_frisbee + - activity__water_polo + - activity__inline_skating + - activity__rounders + - activity__team_handball + - activity__track_field + - activity__kickboxing + - activity__mixed_martial_arts_mma + - activity__universal + - activity__hiking + - activity__skiing + - activity__snowboarding +- id: 15 + name: Sleeve length type + friendly_id: sleeve_length_type + values: + - sleeve_length_type__3_4 + - sleeve_length_type__short + - sleeve_length_type__long + - sleeve_length_type__cap + - sleeve_length_type__sleeveless + - sleeve_length_type__spaghetti_strap + - sleeve_length_type__strapless +- id: 17 + name: Cup size + friendly_id: cup_size + values: + - cup_size__a + - cup_size__aa + - cup_size__b + - cup_size__c + - cup_size__d + - cup_size__dd + - cup_size__ddd + - cup_size__e + - cup_size__f + - cup_size__ff + - cup_size__g + - cup_size__gg + - cup_size__h + - cup_size__hh + - cup_size__i + - cup_size__j + - cup_size__jj + - cup_size__k + - cup_size__l + - cup_size__m + - cup_size__n +- id: 30 + name: Age group + friendly_id: age_group + values: + - age_group__kids + - age_group__teens + - age_group__adults + - age_group__all_ages + - age_group__babies + - age_group__universal + - age_group__0_6_months + - age_group__6_12_months + - age_group__1_2_years + - age_group__toddlers + - age_group__newborn +- id: 32 + name: Neckline + friendly_id: neckline + values: + - neckline__asymmetric + - neckline__bardot + - neckline__boat + - neckline__cowl + - neckline__halter + - neckline__hooded + - neckline__mandarin + - neckline__crew + - neckline__mock + - neckline__plunging + - neckline__round + - neckline__split + - neckline__square + - neckline__sweetheart + - neckline__turtle + - neckline__v_neck + - neckline__wrap +- id: 35 + name: Fit + friendly_id: fit + values: + - fit__slim + - fit__wide + - fit__boyfriend + - fit__mom + - fit__tapered_leg + - fit__skinny_leg + - fit__straight_leg +- id: 37 + name: Waist rise + friendly_id: waist_rise + values: + - waist_rise__high + - waist_rise__low + - waist_rise__mid +- id: 41 + name: Best uses + friendly_id: best_uses + values: + - best_uses__lifestyle + - best_uses__traveling + - best_uses__running + - best_uses__sport + - best_uses__aviation + - best_uses__cycling + - best_uses__hiking + - best_uses__maritime_activities + - best_uses__motorcycling + - best_uses__cruising + - best_uses__diving + - best_uses__fishing + - best_uses__navigation + - best_uses__racing + - best_uses__safety + - best_uses__sailing + - best_uses__water_sports +- id: 50 + name: Accessory size + friendly_id: accessory_size + values: + - accessory_size__small_s + - accessory_size__medium_m + - accessory_size__large_l + - accessory_size__extra_large_xl + - accessory_size__extra_small_xs + - accessory_size__double_extra_large_xxl + - accessory_size__compact + - accessory_size__triple_extra_small_xxxs + - accessory_size__double_extra_small_xxs + - accessory_size__triple_extra_large_xxxl + - accessory_size__four_extra_large_4xl + - accessory_size__five_extra_large_5xl + - accessory_size__six_extra_large_6xl + - accessory_size__travel_size + - accessory_size__customizable + - accessory_size__standard + - accessory_size__regular_r + - accessory_size__extra_long + - accessory_size__one_size + - accessory_size__extra_short + - accessory_size__short + - accessory_size__long +- id: 60 + name: Jewelry type + friendly_id: jewelry_type + values: + - jewelry_type__fine_jewelry + - jewelry_type__imitation_jewelry +- id: 73 + name: Shape + friendly_id: shape + values: + - shape__round + - shape__rectangular + - shape__oval + - shape__square + - shape__triangular + - shape__heart + - shape__arrow + - shape__cylindrical + - shape__diamond + - shape__flower + - shape__hexagonal + - shape__star + - shape__kidney_shaped + - shape__custom + - shape__octagonal + - shape__curved + - shape__straight + - shape__other + - shape__free_form + - shape__semicircular + - shape__trapezoidal + - shape__conical + - shape__pentagonal + - shape__heptagonal +- id: 77 + name: Lens polarization + friendly_id: lens_polarization + values: + - lens_polarization__photo_polarized + - lens_polarization__polarized + - lens_polarization__non_polarized +- id: 80 + name: Closure type + friendly_id: closure_type + values: + - closure_type__adjustable_pull + - closure_type__buttons + - closure_type__clip_on + - closure_type__hook_eye + - closure_type__hook_loop + - closure_type__lace_up + - closure_type__magnetic + - closure_type__snap + - closure_type__toggle + - closure_type__zipper + - closure_type__buckles + - closure_type__elastic + - closure_type__slip_on + - closure_type__drawstring + - closure_type__velcro + - closure_type__clasp + - closure_type__ties + - closure_type__screw_on + - closure_type__adjustable_straps + - closure_type__none + - closure_type__straps + - closure_type__other +- id: 87 + name: Shoe size + friendly_id: shoe_size + values: + - shoe_size__0 + - shoe_size__0_5 + - shoe_size__1 + - shoe_size__1_5 + - shoe_size__2 + - shoe_size__2_5 + - shoe_size__3 + - shoe_size__3_5 + - shoe_size__4 + - shoe_size__4_5 + - shoe_size__5 + - shoe_size__5_5 + - shoe_size__6 + - shoe_size__6_5 + - shoe_size__7 + - shoe_size__7_5 + - shoe_size__8 + - shoe_size__8_5 + - shoe_size__9 + - shoe_size__9_5 + - shoe_size__10 + - shoe_size__15 + - shoe_size__15_5 + - shoe_size__16 + - shoe_size__16_5 + - shoe_size__17 + - shoe_size__17_5 + - shoe_size__18 + - shoe_size__18_5 + - shoe_size__19 + - shoe_size__19_5 + - shoe_size__20 + - shoe_size__20_5 + - shoe_size__21 + - shoe_size__21_5 + - shoe_size__22 + - shoe_size__22_5 + - shoe_size__23 + - shoe_size__23_5 + - shoe_size__24 + - shoe_size__24_5 + - shoe_size__25 + - shoe_size__25_5 + - shoe_size__26 + - shoe_size__26_5 + - shoe_size__27 + - shoe_size__10_5 + - shoe_size__11 + - shoe_size__11_5 + - shoe_size__12 + - shoe_size__12_5 + - shoe_size__13 + - shoe_size__13_5 + - shoe_size__14 + - shoe_size__14_5 + - shoe_size__27_5 + - shoe_size__28 + - shoe_size__28_5 + - shoe_size__29 + - shoe_size__29_5 + - shoe_size__30 + - shoe_size__30_5 + - shoe_size__31 + - shoe_size__31_5 + - shoe_size__32 + - shoe_size__32_5 + - shoe_size__33 + - shoe_size__33_5 + - shoe_size__34 + - shoe_size__34_5 + - shoe_size__35 + - shoe_size__35_5 + - shoe_size__36 + - shoe_size__36_5 + - shoe_size__37 + - shoe_size__37_5 + - shoe_size__38 + - shoe_size__38_5 + - shoe_size__39 + - shoe_size__39_5 + - shoe_size__40 + - shoe_size__40_5 + - shoe_size__41 + - shoe_size__41_5 + - shoe_size__42 + - shoe_size__42_5 + - shoe_size__43 + - shoe_size__43_5 + - shoe_size__44 + - shoe_size__44_5 + - shoe_size__45 + - shoe_size__45_5 + - shoe_size__46 + - shoe_size__46_5 + - shoe_size__47 + - shoe_size__47_5 + - shoe_size__48 + - shoe_size__48_5 + - shoe_size__49 + - shoe_size__49_5 + - shoe_size__50 + - shoe_size__50_5 + - shoe_size__51 + - shoe_size__51_5 + - shoe_size__52 + - shoe_size__52_5 + - shoe_size__53 + - shoe_size__53_5 + - shoe_size__54 + - shoe_size__54_5 + - shoe_size__55 + - shoe_size__55_5 + - shoe_size__56 + - shoe_size__56_5 + - shoe_size__57 + - shoe_size__57_5 + - shoe_size__58 + - shoe_size__58_5 + - shoe_size__59 + - shoe_size__59_5 + - shoe_size__60 + - shoe_size__extra_small_xs + - shoe_size__small_s + - shoe_size__medium_m + - shoe_size__large_l + - shoe_size__extra_large_xl + - shoe_size__double_extra_large_xxl + - shoe_size__triple_extra_large_xxxl +- id: 98 + name: Chain link type + friendly_id: chain_link_type + values: + - chain_link_type__ball_bead + - chain_link_type__byzantine_birdcage + - chain_link_type__cable + - chain_link_type__figaro + - chain_link_type__flat + - chain_link_type__foxtail + - chain_link_type__franco + - chain_link_type__gourmette_curb + - chain_link_type__heart + - chain_link_type__herringbone + - chain_link_type__infinity + - chain_link_type__marine_anchor + - chain_link_type__mesh + - chain_link_type__omega + - chain_link_type__popcorn_coreana + - chain_link_type__rolo_belcher + - chain_link_type__rope + - chain_link_type__round + - chain_link_type__serpentine + - chain_link_type__singapore + - chain_link_type__snake + - chain_link_type__trace + - chain_link_type__twisted_curb + - chain_link_type__venetian + - chain_link_type__wheat_espiga + - chain_link_type__other +- id: 105 + name: Ring size + friendly_id: ring_size + values: + - ring_size__0_5 + - ring_size__1 + - ring_size__1_5 + - ring_size__10 + - ring_size__10_5 + - ring_size__11 + - ring_size__11_5 + - ring_size__12 + - ring_size__12_5 + - ring_size__13 + - ring_size__2 + - ring_size__2_5 + - ring_size__3 + - ring_size__3_5 + - ring_size__38 + - ring_size__39 + - ring_size__4 + - ring_size__4_5 + - ring_size__40 + - ring_size__41 + - ring_size__42 + - ring_size__43 + - ring_size__44 + - ring_size__45 + - ring_size__46 + - ring_size__47 + - ring_size__48 + - ring_size__49 + - ring_size__5 + - ring_size__5_5 + - ring_size__50 + - ring_size__51 + - ring_size__52 + - ring_size__53 + - ring_size__54 + - ring_size__55 + - ring_size__56 + - ring_size__57 + - ring_size__58 + - ring_size__59 + - ring_size__6 + - ring_size__6_5 + - ring_size__60 + - ring_size__61 + - ring_size__62 + - ring_size__63 + - ring_size__64 + - ring_size__65 + - ring_size__66 + - ring_size__67 + - ring_size__68 + - ring_size__69 + - ring_size__7 + - ring_size__7_5 + - ring_size__8 + - ring_size__8_5 + - ring_size__9 + - ring_size__9_5 + - ring_size__a + - ring_size__b + - ring_size__c + - ring_size__d + - ring_size__e + - ring_size__f + - ring_size__g + - ring_size__h + - ring_size__i + - ring_size__j + - ring_size__k + - ring_size__l + - ring_size__m + - ring_size__n + - ring_size__o + - ring_size__p + - ring_size__q + - ring_size__r + - ring_size__s + - ring_size__t + - ring_size__u + - ring_size__v + - ring_size__w + - ring_size__x + - ring_size__y + - ring_size__z +- id: 108 + name: Clasp type + friendly_id: clasp_type + values: + - clasp_type__buckle + - clasp_type__butterfly + - clasp_type__deployment +- id: 114 + name: Band color + friendly_id: band_color + values_from: color +- id: 115 + name: Band material + friendly_id: band_material + values_from: watch_material +- id: 116 + name: Case color + friendly_id: case_color + values_from: color +- id: 118 + name: Dial color + friendly_id: dial_color + values_from: color +- id: 128 + name: Heel height type + friendly_id: heel_height_type + values: + - heel_height_type__flat + - heel_height_type__low + - heel_height_type__mid + - heel_height_type__high + - heel_height_type__very_high +- id: 131 + name: Temple color + friendly_id: temple_color + values_from: color +- id: 134 + name: Theme + friendly_id: theme + values: + - theme__alphabet + - theme__animals + - theme__anime + - theme__architecture + - theme__art + - theme__beach + - theme__cars + - theme__cartoons + - theme__celebrities + - theme__city + - theme__comics + - theme__ethnic + - theme__fantasy + - theme__fashion + - theme__floral + - theme__food_drinks + - theme__history + - theme__holidays + - theme__landmarks + - theme__landscape + - theme__literature + - theme__modern + - theme__movies_tv + - theme__music + - theme__mythology + - theme__nature + - theme__numbers + - theme__princesses + - theme__retro_vintage + - theme__romantic + - theme__sci_fi + - theme__science + - theme__sea_ocean + - theme__space + - theme__spirituality + - theme__sports + - theme__superheroes + - theme__video_games + - theme__world_map + - theme__other + - theme__travel + - theme__pop_culture +- id: 837 + name: Target gender + friendly_id: target_gender + values: + - target_gender__female + - target_gender__male + - target_gender__unisex +- id: 843 + name: Usage type + friendly_id: usage_type + values: + - usage_type__disposable + - usage_type__reusable + - usage_type__refillable +- id: 844 + name: Attachment options + friendly_id: attachment_options + values: + - attachment_options__clip + - attachment_options__lanyard + - attachment_options__magnet + - attachment_options__pin +- id: 845 + name: Device interface + friendly_id: device_interface + values: + - device_interface__12g_sdi + - device_interface__2_5_mm + - device_interface__3_5_mm + - device_interface__3g_sdi + - device_interface__6_35_mm + - device_interface__6g_sdi + - device_interface__aux + - device_interface__banana_connector + - device_interface__binding_post + - device_interface__bluetooth + - device_interface__bnc + - device_interface__coaxial + - device_interface__coaxial_f_type + - device_interface__component_video + - device_interface__composite_video + - device_interface__din + - device_interface__display_port + - device_interface__dvi + - device_interface__dvi_i + - device_interface__esata + - device_interface__ethernet + - device_interface__firewire + - device_interface__hd_sdi + - device_interface__hdmi + - device_interface__i2c + - device_interface__ide_pata + - device_interface__infrared + - device_interface__lightning + - device_interface__m_2 + - device_interface__micro_bnc + - device_interface__micro_din + - device_interface__micro_sd_card + - device_interface__micro_usb + - device_interface__micro_xlr + - device_interface__micro_vga + - device_interface__midi + - device_interface__mini_din + - device_interface__mini_vga + - device_interface__molex + - device_interface__nfc + - device_interface__nl2 + - device_interface__nl4 + - device_interface__pcie + - device_interface__ps_2 + - device_interface__rca + - device_interface__rfid + - device_interface__s_video + - device_interface__sata + - device_interface__satellite + - device_interface__scart + - device_interface__scsi + - device_interface__sd_card + - device_interface__sdi + - device_interface__sma + - device_interface__spi + - device_interface__tethering + - device_interface__thunderbolt + - device_interface__toslink + - device_interface__trs + - device_interface__uart + - device_interface__usb + - device_interface__vga + - device_interface__wi_fi + - device_interface__wireless_charging + - device_interface__wireless_display + - device_interface__xlr + - device_interface__xlr_5 + - device_interface__other +- id: 846 + name: Shoe fit + friendly_id: shoe_fit + values: + - shoe_fit__wide + - shoe_fit__narrow + - shoe_fit__regular +- id: 847 + name: Toe style + friendly_id: toe_style + values: + - toe_style__almond + - toe_style__cap + - toe_style__moc + - toe_style__open + - toe_style__peep + - toe_style__pointed + - toe_style__round + - toe_style__square + - toe_style__wingtip +- id: 894 + name: Absorbency level + friendly_id: absorbency_level + values: + - absorbency_level__light + - absorbency_level__moderate + - absorbency_level__heavy + - absorbency_level__super + - absorbency_level__overnight + - absorbency_level__regular +- id: 1178 + name: Pants length type + friendly_id: pants_length_type + values: + - pants_length_type__above_the_knee + - pants_length_type__capri + - pants_length_type__cropped + - pants_length_type__footed + - pants_length_type__knee + - pants_length_type__long +- id: 1181 + name: Face color + friendly_id: face_color + values_from: color +- id: 1190 + name: Skirt/Dress length type + friendly_id: skirt_dress_length_type + values: + - skirt_dress_length_type__knee + - skirt_dress_length_type__maxi + - skirt_dress_length_type__midi + - skirt_dress_length_type__short + - skirt_dress_length_type__mini +- id: 1191 + name: Bra strap type + friendly_id: bra_strap_type + values: + - bra_strap_type__standard + - bra_strap_type__racerback + - bra_strap_type__cross_back + - bra_strap_type__adjustable + - bra_strap_type__convertible +- id: 1192 + name: Bra support level + friendly_id: bra_support_level + values: + - bra_support_level__high + - bra_support_level__medium + - bra_support_level__low +- id: 1193 + name: Top length type + friendly_id: top_length_type + values: + - top_length_type__bodysuit + - top_length_type__crop_top + - top_length_type__long + - top_length_type__medium +- id: 1194 + name: Underwear style + friendly_id: underwear_style + values: + - underwear_style__boxer + - underwear_style__boxer_briefs + - underwear_style__boyshorts + - underwear_style__briefs + - underwear_style__classic_briefs + - underwear_style__control_briefs + - underwear_style__raw_cut_briefs + - underwear_style__trunk + - underwear_style__high_cut_briefs + - underwear_style__hipster_panties + - underwear_style__bikini_panties + - underwear_style__tanga_panties + - underwear_style__thong_panties + - underwear_style__g_string_panties +- id: 1195 + name: Bra closure type + friendly_id: bra_closure_type + values: + - bra_closure_type__front + - bra_closure_type__back + - bra_closure_type__pull_on_no_closure +- id: 1196 + name: Bra coverage + friendly_id: bra_coverage + values: + - bra_coverage__full + - bra_coverage__demi + - bra_coverage__plunge + - bra_coverage__quarter + - bra_coverage__minimal + - bra_coverage__other +- id: 1197 + name: Shapewear support level + friendly_id: shapewear_support_level + values: + - shapewear_support_level__level_1 + - shapewear_support_level__level_2 + - shapewear_support_level__level_3 + - shapewear_support_level__level_4 + - shapewear_support_level__level_5 +- id: 1198 + name: Nightgown style + friendly_id: nightgown_style + values: + - nightgown_style__chemise + - nightgown_style__babydoll +- id: 1199 + name: Hair type + friendly_id: hair_type + values: + - hair_type__curly + - hair_type__dry + - hair_type__normal + - hair_type__straight + - hair_type__wavy +- id: 1200 + name: Suspender style + friendly_id: suspender_style + values: + - suspender_style__x_back_suspender + - suspender_style__y_back_suspender +- id: 1201 + name: Watch display + friendly_id: watch_display + values: + - watch_display__analog + - watch_display__digital + - watch_display__ana_digi +- id: 1202 + name: Watch accessory style + friendly_id: watch_accessory_style + values: + - watch_accessory_style__classic + - watch_accessory_style__modern + - watch_accessory_style__sporty +- id: 1203 + name: Occasion style + friendly_id: occasion_style + values: + - occasion_style__casual + - occasion_style__dress +- id: 1204 + name: Boot style + friendly_id: boot_style + values: + - boot_style__boots + - boot_style__booties +- id: 1205 + name: Mounting type + friendly_id: mounting_type + values: + - mounting_type__ceiling + - mounting_type__free_standing + - mounting_type__wall + - mounting_type__floor + - mounting_type__tabletop + - mounting_type__portable + - mounting_type__mobile + - mounting_type__counter + - mounting_type__hanging + - mounting_type__other + - mounting_type__built_in + - mounting_type__undercounter +- id: 1206 + name: Ball size + friendly_id: ball_size + values: + - ball_size__0 + - ball_size__1 + - ball_size__2 + - ball_size__3 + - ball_size__4 + - ball_size__5 + - ball_size__6 + - ball_size__7 + - ball_size__junior + - ball_size__youth + - ball_size__adults + - ball_size__mini + - ball_size__giant +- id: 1207 + name: Sport + friendly_id: sport + values_from: activity +- id: 1208 + name: Hand side + friendly_id: hand_side + values: + - hand_side__both_sides + - hand_side__left + - hand_side__right +- id: 1209 + name: Bat standard + friendly_id: bat_standard + values: + - bat_standard__bbcor + - bat_standard__besr + - bat_standard__little_league + - bat_standard__ncaa + - bat_standard__nfhs + - bat_standard__usa_bat_standard + - bat_standard__usssa + - bat_standard__asa + - bat_standard__isa + - bat_standard__isf + - bat_standard__nsa +- id: 1210 + name: Swing weighting + friendly_id: swing_weighting + values: + - swing_weighting__balanced + - swing_weighting__endload +- id: 1212 + name: Compatible ball type + friendly_id: compatible_ball_type + values: + - compatible_ball_type__baseball + - compatible_ball_type__golf + - compatible_ball_type__softballs + - compatible_ball_type__tennis + - compatible_ball_type__wiffle +- id: 1213 + name: Sports discipline + friendly_id: sports_discipline + values: + - sports_discipline__fastpitch_softball + - sports_discipline__slowpitch_softball +- id: 1214 + name: Suitable space + friendly_id: suitable_space + values: + - suitable_space__indoors + - suitable_space__outdoors + - suitable_space__above_ground + - suitable_space__below_ground +- id: 1216 + name: Grip type + friendly_id: grip_type + values: + - grip_type__belgian + - grip_type__bent_french + - grip_type__french + - grip_type__german + - grip_type__hungarian + - grip_type__italian + - grip_type__pistol + - grip_type__russian + - grip_type__schermasport + - grip_type__straight_french + - grip_type__visconti +- id: 1217 + name: Player position + friendly_id: player_position + values: + - player_position__attacker + - player_position__defender + - player_position__goalie + - player_position__midfielder + - player_position__field_player +- id: 1218 + name: Recommended skill level + friendly_id: recommended_skill_level + values: + - recommended_skill_level__beginner + - recommended_skill_level__intermediate + - recommended_skill_level__expert +- id: 1219 + name: Fastener type + friendly_id: fastener_type + values: + - fastener_type__magnetic + - fastener_type__mechanical +- id: 1220 + name: Blade curve + friendly_id: blade_curve + values: + - blade_curve__closed + - blade_curve__heel + - blade_curve__mid + - blade_curve__open + - blade_curve__toe +- id: 1221 + name: Power source + friendly_id: power_source + values: + - power_source__ac_powered + - power_source__batteries + - power_source__battery_powered + - power_source__rechargeable + - power_source__usb + - power_source__dc_powered + - power_source__solar + - power_source__gasoline + - power_source__diesel + - power_source__manual + - power_source__hydraulic + - power_source__other + - power_source__mechanical + - power_source__pneumatic + - power_source__propane + - power_source__cigar_lighter + - power_source__ethanol + - power_source__natural_gas + - power_source__oil + - power_source__hot_water + - power_source__butane + - power_source__infrared + - power_source__pellet + - power_source__hybrid + - power_source__charcoal + - power_source__firewood + - power_source__alcohol + - power_source__vehicle_electrical_system +- id: 1222 + name: Material hardness + friendly_id: material_hardness + values: + - material_hardness__extra_soft + - material_hardness__soft + - material_hardness__medium + - material_hardness__hard + - material_hardness__extra_hard + - material_hardness__low_resistance + - material_hardness__high_resistance +- id: 1223 + name: Dynamic level + friendly_id: dynamic_level + values: + - dynamic_level__orange_dot + - dynamic_level__double_yellow_dot + - dynamic_level__yellow_dot + - dynamic_level__white_dot + - dynamic_level__green_dot + - dynamic_level__red_dot + - dynamic_level__blue_dot +- id: 1224 + name: Frame material + friendly_id: frame_material + values_from: furniture_fixture_material +- id: 1227 + name: Racket gauge + friendly_id: racket_gauge + values: + - racket_gauge__13 + - racket_gauge__14 + - racket_gauge__15 + - racket_gauge__15l + - racket_gauge__16 + - racket_gauge__16l + - racket_gauge__17 + - racket_gauge__18 + - racket_gauge__19 + - racket_gauge__20 + - racket_gauge__21 + - racket_gauge__22 +- id: 1228 + name: Swing style + friendly_id: swing_style + values: + - swing_style__compact_strokes + - swing_style__moderate_strokes + - swing_style__long_strokes +- id: 1229 + name: Resistance system + friendly_id: resistance_system + values: + - resistance_system__magnetic + - resistance_system__air + - resistance_system__electromagnetic + - resistance_system__hydraulic_piston + - resistance_system__water +- id: 1230 + name: Resistance level + friendly_id: resistance_level + values: + - resistance_level__very_light + - resistance_level__light + - resistance_level__medium + - resistance_level__heavy + - resistance_level__very_heavy +- id: 1231 + name: Compatible bench positions + friendly_id: compatible_bench_positions + values: + - compatible_bench_positions__decline + - compatible_bench_positions__flat + - compatible_bench_positions__incline +- id: 1232 + name: Compatible exercises + friendly_id: compatible_exercises + values: + - compatible_exercises__chin_ups + - compatible_exercises__dips + - compatible_exercises__inverted_rows + - compatible_exercises__knee_raises + - compatible_exercises__l_sits + - compatible_exercises__leg_raises + - compatible_exercises__pull_ups + - compatible_exercises__push_ups + - compatible_exercises__split_squats +- id: 1233 + name: Weight bar activity + friendly_id: weight_bar_activity + values: + - weight_bar_activity__mixed_use + - weight_bar_activity__powerlifting + - weight_bar_activity__specialty + - weight_bar_activity__technique_training + - weight_bar_activity__weightlifting +- id: 1234 + name: Weight bar type + friendly_id: weight_bar_type + values: + - weight_bar_type__cambered + - weight_bar_type__curl + - weight_bar_type__safety_squat + - weight_bar_type__solid + - weight_bar_type__swiss + - weight_bar_type__trap +- id: 1235 + name: Compatible weight lifting accessory + friendly_id: compatible_weight_lifting_accessory + values: + - compatible_weight_lifting_accessory__barbell + - compatible_weight_lifting_accessory__dumbbell +- id: 1236 + name: Lock type + friendly_id: lock_type + values: + - lock_type__biometric_lock + - lock_type__combination_lock + - lock_type__double_key + - lock_type__key_lock + - lock_type__latch + - lock_type__padlock_loop + - lock_type__rfid_lock + - lock_type__smart_lock + - lock_type__tool_less_locking_mechanism + - lock_type__no_lock + - lock_type__other + - lock_type__code + - lock_type__electronic + - lock_type__fingerprint_reader + - lock_type__magnetic +- id: 1237 + name: J-cup type + friendly_id: j_cup_type + values: + - j_cup_type__flat + - j_cup_type__lowered + - j_cup_type__regular + - j_cup_type__sandwich +- id: 1238 + name: Pull-up bar + friendly_id: pull_up_bar + values: + - pull_up_bar__globe_grip + - pull_up_bar__multi_grip + - pull_up_bar__raw + - pull_up_bar__standard +- id: 1239 + name: Cue style + friendly_id: cue_style + values: + - cue_style__conical + - cue_style__double + - cue_style__european + - cue_style__hybrid + - cue_style__pro + - cue_style__straight +- id: 1240 + name: Cue type + friendly_id: cue_type + values: + - cue_type__break + - cue_type__carom + - cue_type__house + - cue_type__jump + - cue_type__masse + - cue_type__play + - cue_type__short + - cue_type__snooker +- id: 1241 + name: Cue wrap + friendly_id: cue_wrap + values: + - cue_wrap__no_wrap + - cue_wrap__cork + - cue_wrap__irish_linen + - cue_wrap__leather + - cue_wrap__leatherette + - cue_wrap__luxury_leather + - cue_wrap__nylon + - cue_wrap__rubber + - cue_wrap__silicone + - cue_wrap__sport + - cue_wrap__ultra_skin +- id: 1242 + name: Joint style + friendly_id: joint_style + values: + - joint_style__1_2_x_13 + - joint_style__3_8_x_10 + - joint_style__3_8_x_10_flat + - joint_style__3_8_x_10_piloted + - joint_style__3_8_x_10_wood + - joint_style__3_8_x_11 + - joint_style__3_8_x_11_flat + - joint_style__3_8_x_11_flush + - joint_style__3_8_x_11_full + - joint_style__3_8_x_11_partial + - joint_style__3_8_x_11_piloted + - joint_style__3_8_x_11_wood + - joint_style__3_8_x_14 + - joint_style__3_8_x_8 + - joint_style__5_16_x_11 + - joint_style__5_16_x_12 + - joint_style__5_16_x_14 + - joint_style__5_16_x_14_flat + - joint_style__5_16_x_14_flush + - joint_style__5_16_x_14_full + - joint_style__5_16_x_14_partial + - joint_style__5_16_x_14_piloted + - joint_style__5_16_x_14_wood + - joint_style__5_16_x_18 + - joint_style__5_16_x_18_flat + - joint_style__5_16_x_18_piloted + - joint_style__5_16_x_18_wood + - joint_style__accu_loc + - joint_style__bullet + - joint_style__flat_faced + - joint_style__lbm + - joint_style__lucasi_custom_solid_core_low_deflection + - joint_style__lucasi_hybrid_zero_flex_slim + - joint_style__mcdermott_3_8_x_10 + - joint_style__mcdermott_quick_release + - joint_style__mezz_united_joint + - joint_style__mezz_wavy_joint + - joint_style__no_joint + - joint_style__ob_1_ob_2_ob_classic_ob_pro + - joint_style__pechauer_speed_joint + - joint_style__piloted + - joint_style__predator_radial + - joint_style__predator_uniloc + - joint_style__quick_release + - joint_style__radial + - joint_style__sbj + - joint_style__schon_5_16_x_14 + - joint_style__southwest_5_16_x_14 + - joint_style__speed_joint + - joint_style__speed_loc + - joint_style__true_loc + - joint_style__uni_loc + - joint_style__vantage_3_8_x_10 + - joint_style__viking_quick_release + - joint_style__viking_radial + - joint_style__wood_to_wood + - joint_style__other +- id: 1243 + name: Light color + friendly_id: light_color + values_from: color +- id: 1244 + name: Light temperature + friendly_id: light_temperature + values: + - light_temperature__ember_glow + - light_temperature__warm_white + - light_temperature__cool_white + - light_temperature__daylight + - light_temperature__blue_light +- id: 1245 + name: Games included + friendly_id: games_included + values: + - games_included__air_hockey + - games_included__backgammon + - games_included__billiard + - games_included__blackjack + - games_included__bowling + - games_included__cards + - games_included__checkers + - games_included__chess + - games_included__chinese_checkers + - games_included__darts + - games_included__dominoes + - games_included__foosball + - games_included__ludo + - games_included__manji + - games_included__marbles + - games_included__nok_hockey + - games_included__pick_up_sticks + - games_included__poker_dice + - games_included__shuffleboard + - games_included__snakes_ladders + - games_included__steeplechase + - games_included__table_tennis + - games_included__tic_tac_toe + - games_included__train_chess + - games_included__other +- id: 1246 + name: Frame color + friendly_id: frame_color + values_from: color +- id: 1248 + name: Display technology + friendly_id: display_technology + values: + - display_technology__lcd + - display_technology__led + - display_technology__color + - display_technology__analog + - display_technology__oled + - display_technology__plasma + - display_technology__tft + - display_technology__e_ink + - display_technology__fld + - display_technology__ips + - display_technology__lcm + - display_technology__sva + - display_technology__tft_lcd + - display_technology__vfd + - display_technology__amoled + - display_technology__crt + - display_technology__dlp + - display_technology__lcos + - display_technology__microled + - display_technology__mini_led + - display_technology__qled + - display_technology__tn + - display_technology__va + - display_technology__other + - display_technology__ahva + - display_technology__pls + - display_technology__digital + - display_technology__monochrome + - display_technology__mip + - display_technology__pmoled + - display_technology__samoled +- id: 1249 + name: Water sport + friendly_id: water_sport + values: + - water_sport__scuba_diving + - water_sport__freediving + - water_sport__snorkeling + - water_sport__kayaking + - water_sport__synchronized_swimming + - water_sport__waterdance + - water_sport__universal +- id: 1250 + name: Fin pocket type + friendly_id: fin_pocket_type + values: + - fin_pocket_type__full_foot + - fin_pocket_type__open_heel +- id: 1251 + name: Blade type + friendly_id: blade_type + values: + - blade_type__curved + - blade_type__straight + - blade_type__flat + - blade_type__hollow +- id: 1253 + name: Kitesurfing style + friendly_id: kitesurfing_style + values: + - kitesurfing_style__big_air_kitesurfing + - kitesurfing_style__foiling_kitesurfing + - kitesurfing_style__freeride_kitesurfing + - kitesurfing_style__freestyle_kitesurfing + - kitesurfing_style__snow_kitesurfing + - kitesurfing_style__speed_kitesurfing + - kitesurfing_style__wave_riding +- id: 1254 + name: Fin profile + friendly_id: fin_profile + values: + - fin_profile__five_fin + - fin_profile__quad + - fin_profile__single + - fin_profile__thruster + - fin_profile__twin +- id: 1255 + name: Board concave shape + friendly_id: board_concave_shape + values: + - board_concave_shape__convex + - board_concave_shape__double_concave + - board_concave_shape__flat + - board_concave_shape__radial + - board_concave_shape__v_concave + - board_concave_shape__w_concave +- id: 1256 + name: Board profile + friendly_id: board_profile + values: + - board_profile__camber + - board_profile__rocker + - board_profile__flat +- id: 1257 + name: Rocker type + friendly_id: rocker_type + values: + - rocker_type__camber + - rocker_type__early_rise + - rocker_type__flat + - rocker_type__hybrid + - rocker_type__rocker +- id: 1258 + name: Anchor type + friendly_id: anchor_type + values: + - anchor_type__fluke + - anchor_type__grapnel + - anchor_type__mushroom + - anchor_type__plow + - anchor_type__screw + - anchor_type__claw +- id: 1259 + name: Bedding size + friendly_id: bedding_size + values: + - bedding_size__twin + - bedding_size__queen + - bedding_size__king + - bedding_size__single + - bedding_size__double + - bedding_size__bunk + - bedding_size__california_king + - bedding_size__standard +- id: 1261 + name: Product certifications & standards + friendly_id: product_certifications_standards + values: + - product_certifications_standards__asc + - product_certifications_standards__b_corporation + - product_certifications_standards__cruelty_free + - product_certifications_standards__ecocert + - product_certifications_standards__fair_trade + - product_certifications_standards__gmp + - product_certifications_standards__gras + - product_certifications_standards__halal + - product_certifications_standards__informed_choice + - product_certifications_standards__iso + - product_certifications_standards__kosher + - product_certifications_standards__marine_stewardship_council_msc + - product_certifications_standards__non_gmo + - product_certifications_standards__nsf + - product_certifications_standards__pregnancy_safe + - product_certifications_standards__rainforest_alliance + - product_certifications_standards__ul + - product_certifications_standards__usda_organic + - product_certifications_standards__other + - product_certifications_standards__alcohol_free + - product_certifications_standards__dermatologist_tested + - product_certifications_standards__dye_free + - product_certifications_standards__ewg_verified + - product_certifications_standards__gluten_free + - product_certifications_standards__leaping_bunny_certified + - product_certifications_standards__made_safe_certified + - product_certifications_standards__natrue_certified + - product_certifications_standards__natural_ingredients + - product_certifications_standards__no_artificial_colors + - product_certifications_standards__oil_free + - product_certifications_standards__organic + - product_certifications_standards__paraben_free + - product_certifications_standards__peta_approved + - product_certifications_standards__phthalate_free + - product_certifications_standards__rspo_certified + - product_certifications_standards__silicone_free + - product_certifications_standards__spf_protection + - product_certifications_standards__sulfate_free + - product_certifications_standards__vegan + - product_certifications_standards__dbp + - product_certifications_standards__free_from_formaldehyde + - product_certifications_standards__free_from_toluene + - product_certifications_standards__non_toxic + - product_certifications_standards__cosmos_organic + - product_certifications_standards__all_natural_ingredients + - product_certifications_standards__eu_organic + - product_certifications_standards__no_artificial_fragrance + - product_certifications_standards__non_gmo_project_verified +- id: 1263 + name: Knife type + friendly_id: knife_type + values: + - knife_type__multi_tool + - knife_type__barlow + - knife_type__camper + - knife_type__canoe + - knife_type__congress + - knife_type__toothpick + - knife_type__peanut + - knife_type__muskrat + - knife_type__melon_tester + - knife_type__cotton_sampler + - knife_type__pen + - knife_type__sodbuster + - knife_type__stockman + - knife_type__sunfish + - knife_type__trapper + - knife_type__hunting + - knife_type__collector + - knife_type__utensil + - knife_type__mushroom + - knife_type__edc +- id: 1264 + name: Outdoor walking activity + friendly_id: outdoor_walking_activity + values: + - outdoor_walking_activity__hiking + - outdoor_walking_activity__nordic_walking + - outdoor_walking_activity__trail_running + - outdoor_walking_activity__trekking +- id: 1266 + name: Carabiner gate type + friendly_id: carabiner_gate_type + values: + - carabiner_gate_type__auto_locking + - carabiner_gate_type__bent_gate + - carabiner_gate_type__non_locking + - carabiner_gate_type__screw_gate + - carabiner_gate_type__snap_gate + - carabiner_gate_type__straight_gate + - carabiner_gate_type__twist_lock + - carabiner_gate_type__wire_gate +- id: 1267 + name: Attachment type + friendly_id: attachment_type + values: + - attachment_type__latches + - attachment_type__screws + - attachment_type__snap_on + - attachment_type__built_in + - attachment_type__clip_on + - attachment_type__strap_on + - attachment_type__hook_loop +- id: 1268 + name: Climbing activity + friendly_id: climbing_activity + values: + - climbing_activity__mountaineering + - climbing_activity__trad_climbing + - climbing_activity__ice_climbing + - climbing_activity__sport_climbing +- id: 1269 + name: Harness closure type + friendly_id: harness_closure_type + values: + - harness_closure_type__drop_seat_buckle + - harness_closure_type__grommet + - harness_closure_type__hook_loop + - harness_closure_type__side_release_buckle + - harness_closure_type__zipper +- id: 1270 + name: Compatible bike type + friendly_id: compatible_bike_type + values: + - compatible_bike_type__downhill + - compatible_bike_type__electric + - compatible_bike_type__hybrid + - compatible_bike_type__mountain + - compatible_bike_type__road +- id: 1271 + name: Vehicle placement + friendly_id: vehicle_placement + values: + - vehicle_placement__front + - vehicle_placement__rear + - vehicle_placement__left_side + - vehicle_placement__right_side + - vehicle_placement__saddle + - vehicle_placement__frame +- id: 1272 + name: Connectivity technology + friendly_id: connectivity_technology + values: + - connectivity_technology__bluetooth + - connectivity_technology__cellular + - connectivity_technology__wired + - connectivity_technology__wireless + - connectivity_technology__other + - connectivity_technology__wi_fi + - connectivity_technology__lte + - connectivity_technology__dect + - connectivity_technology__dvi + - connectivity_technology__ethernet + - connectivity_technology__hdmi + - connectivity_technology__usb + - connectivity_technology__radio + - connectivity_technology__airplay + - connectivity_technology__ant + - connectivity_technology__ant+ + - connectivity_technology__gps + - connectivity_technology__infrared + - connectivity_technology__miracast + - connectivity_technology__nfc + - connectivity_technology__satellite + - connectivity_technology__wireless_dongle +- id: 1273 + name: Speed settings + friendly_id: speed_settings + values: + - speed_settings__multiple + - speed_settings__single + - speed_settings__variable + - speed_settings__average + - speed_settings__comparing + - speed_settings__current + - speed_settings__maximum + - speed_settings__minimum + - speed_settings__speed_without_motor_assistance +- id: 1274 + name: Hitch type + friendly_id: hitch_type + values: + - hitch_type__axle_mounted + - hitch_type__frame_mounted + - hitch_type__seat_post + - hitch_type__trailer_arm +- id: 1275 + name: Bicycle brake type + friendly_id: bicycle_brake_type + values: + - bicycle_brake_type__cantilever + - bicycle_brake_type__center_pull + - bicycle_brake_type__coaster + - bicycle_brake_type__disc + - bicycle_brake_type__drum + - bicycle_brake_type__hydraulic_disc + - bicycle_brake_type__hydraulic_rim + - bicycle_brake_type__n_brake + - bicycle_brake_type__rim + - bicycle_brake_type__roller + - bicycle_brake_type__u_brake + - bicycle_brake_type__v_brake +- id: 1276 + name: Cable type + friendly_id: cable_type + values: + - cable_type__brake + - cable_type__cable_housing + - cable_type__dropper_post_cable + - cable_type__electric + - cable_type__gear + - cable_type__hydraulic_brake_hose + - cable_type__tandem +- id: 1278 + name: Cycling style + friendly_id: cycling_style + values: + - cycling_style__cross_country_cycling + - cycling_style__mountain_cycling + - cycling_style__road_racing + - cycling_style__city_cycling + - cycling_style__track_racing + - cycling_style__triathlon + - cycling_style__bmx_racing + - cycling_style__recreational_cycling + - cycling_style__mtb_racing + - cycling_style__training +- id: 1280 + name: Valve type + friendly_id: valve_type + values: + - valve_type__presta + - valve_type__schrader + - valve_type__woods +- id: 1281 + name: Tire bead type + friendly_id: tire_bead_type + values: + - tire_bead_type__flexible + - tire_bead_type__folding + - tire_bead_type__ts + - tire_bead_type__rigid + - tire_bead_type__tr +- id: 1282 + name: Gearing type + friendly_id: gearing_type + values: + - gearing_type__chain + - gearing_type__chainless + - gearing_type__belt +- id: 1283 + name: Wheel type + friendly_id: wheel_type + values: + - wheel_type__inflatable + - wheel_type__solid +- id: 1284 + name: Boot type + friendly_id: boot_type + values: + - boot_type__half_chaps + - boot_type__full_chaps + - boot_type__hard_boot + - boot_type__soft_boot + - boot_type__semi_soft_boot + - boot_type__reinforced_boot +- id: 1285 + name: Product form + friendly_id: product_form + values: + - product_form__liquid + - product_form__gel + - product_form__spray + - product_form__foam + - product_form__powder + - product_form__wipes + - product_form__other + - product_form__cream + - product_form__ointment + - product_form__roll_on + - product_form__lotion + - product_form__film + - product_form__suppository + - product_form__tablets + - product_form__solid + - product_form__stick + - product_form__pencil + - product_form__cream_to_powder + - product_form__kohl + - product_form__loose_powder + - product_form__pressed_powder + - product_form__serum + - product_form__oil + - product_form__foaming_lotion + - product_form__milk + - product_form__mousse + - product_form__towelette + - product_form__pads + - product_form__paste +- id: 1286 + name: Horse category + friendly_id: horse_category + values: + - horse_category__cob + - horse_category__draft_horse + - horse_category__miniature_horse + - horse_category__pony + - horse_category__standard + - horse_category__warmblood +- id: 1287 + name: Clothing type + friendly_id: clothing_type + values: + - clothing_type__bootfoot + - clothing_type__chest + - clothing_type__hip + - clothing_type__stockingfoot + - clothing_type__thigh + - clothing_type__waist +- id: 1288 + name: Hoop shape + friendly_id: hoop_shape + values: + - hoop_shape__d_shaped + - hoop_shape__rectangle + - hoop_shape__round + - hoop_shape__teardrop +- id: 1289 + name: Angling style + friendly_id: angling_style + values: + - angling_style__baitcasting + - angling_style__centerpin + - angling_style__fly_fishing + - angling_style__ice_fishing + - angling_style__spinning + - angling_style__surfcasting + - angling_style__trolling +- id: 1290 + name: Gear ratio + friendly_id: gear_ratio + values: + - gear_ratio__61 + - gear_ratio__71 + - gear_ratio__7_21 + - gear_ratio__41 + - gear_ratio__4_51 + - gear_ratio__11 + - gear_ratio__31 + - gear_ratio__5_21 + - gear_ratio__5_51 + - gear_ratio__4_91 + - gear_ratio__5_11 + - gear_ratio__4_11 +- id: 1291 + name: Spool material + friendly_id: spool_material + values: + - spool_material__aluminum + - spool_material__carbon + - spool_material__duralumin + - spool_material__graphite + - spool_material__magnesium + - spool_material__plastic + - spool_material__stainless_steel +- id: 1292 + name: Butt cap material + friendly_id: butt_cap_material + values: + - butt_cap_material__aluminum + - butt_cap_material__composite + - butt_cap_material__cork + - butt_cap_material__ethylene_vinyl_acetate_eva + - butt_cap_material__hypalon + - butt_cap_material__plastic + - butt_cap_material__rubber + - butt_cap_material__wood +- id: 1293 + name: Fishing rod action + friendly_id: fishing_rod_action + values: + - fishing_rod_action__slow + - fishing_rod_action__moderate + - fishing_rod_action__moderate_fast + - fishing_rod_action__fast + - fishing_rod_action__extra_fast +- id: 1294 + name: Fishing rod power + friendly_id: fishing_rod_power + values: + - fishing_rod_power__ultra_light + - fishing_rod_power__light + - fishing_rod_power__medium_light + - fishing_rod_power__medium + - fishing_rod_power__medium_heavy + - fishing_rod_power__heavy + - fishing_rod_power__extra_heavy +- id: 1295 + name: Handle material + friendly_id: handle_material + values: + - handle_material__aluminum + - handle_material__bamboo + - handle_material__beryllium + - handle_material__brass + - handle_material__bronze + - handle_material__carbide + - handle_material__carbon_steel + - handle_material__ceramic + - handle_material__copper + - handle_material__cork + - handle_material__duroplast + - handle_material__ethylene_vinyl_acetate_eva + - handle_material__fiberglass + - handle_material__g_10 + - handle_material__galvanized_steel + - handle_material__graphite + - handle_material__iron + - handle_material__leather + - handle_material__metal + - handle_material__nylon + - handle_material__plastic + - handle_material__polyvinyl_chloride_pvc + - handle_material__rubber + - handle_material__silicone + - handle_material__stainless_steel + - handle_material__synthetic + - handle_material__teflon + - handle_material__thermoplastic_elastomer_tpe + - handle_material__titanium + - handle_material__wood + - handle_material__other +- id: 1296 + name: Rod material + friendly_id: rod_material + values: + - rod_material__aluminum + - rod_material__bamboo + - rod_material__cork + - rod_material__ethylene_vinyl_acetate_eva + - rod_material__fiberglass + - rod_material__graphite + - rod_material__plastic + - rod_material__rubber + - rod_material__wood +- id: 1297 + name: Tip type + friendly_id: tip_type + values: + - tip_type__cable + - tip_type__chisel + - tip_type__double_barb + - tip_type__harpoon + - tip_type__paralyzer + - tip_type__single_barb + - tip_type__slip + - tip_type__spring_loaded + - tip_type__trident +- id: 1298 + name: Club subset + friendly_id: club_subset + values: + - club_subset__blade_putter + - club_subset__fairway_wood + - club_subset__gap_wedge + - club_subset__lob_wedge + - club_subset__long_iron + - club_subset__mallet_putter + - club_subset__mid_iron + - club_subset__mid_mallet_putter + - club_subset__peripheral_weighted_putter + - club_subset__pitching_wedge + - club_subset__sand_wedge + - club_subset__short_iron + - club_subset__traditional_blade_putter + - club_subset__ultra_lob_wedge +- id: 1299 + name: Club type + friendly_id: club_type + values: + - club_type__chipper + - club_type__driver + - club_type__fairway + - club_type__hybrid + - club_type__iron + - club_type__putter + - club_type__utility + - club_type__wedge + - club_type__wood +- id: 1300 + name: Shaft flex + friendly_id: shaft_flex + values: + - shaft_flex__extra_stiff + - shaft_flex__stiff + - shaft_flex__regular + - shaft_flex__active + - shaft_flex__senior + - shaft_flex__ladies +- id: 1301 + name: Parachuting activity + friendly_id: parachuting_activity + values: + - parachuting_activity__base_jumping + - parachuting_activity__hang_gliding + - parachuting_activity__high_altitude_balloon_jumping + - parachuting_activity__military_parachuting + - parachuting_activity__parachute_acrobatics + - parachuting_activity__parachute_racing + - parachuting_activity__parachute_rescue + - parachuting_activity__parachute_skiing + - parachuting_activity__parachute_surfing + - parachuting_activity__parachute_testing + - parachuting_activity__paragliding + - parachuting_activity__skydiving + - parachuting_activity__smoke_jumping +- id: 1302 + name: Archery activity + friendly_id: archery_activity + values: + - archery_activity__outdoor_hunting + - archery_activity__targets_practice +- id: 1303 + name: Archery style + friendly_id: archery_style + values: + - archery_style__3d_archery + - archery_style__bowhunting + - archery_style__compound_target + - archery_style__recreational +- id: 1306 + name: String material + friendly_id: string_material + values: + - string_material__dacron + - string_material__high_modulus_polyethylene_hmpe + - string_material__kevlar + - string_material__vectran +- id: 1307 + name: Quiver style + friendly_id: quiver_style + values: + - quiver_style__back + - quiver_style__belt + - quiver_style__bow + - quiver_style__field + - quiver_style__ground + - quiver_style__hip + - quiver_style__modern + - quiver_style__pocket + - quiver_style__shoulder + - quiver_style__traditional +- id: 1308 + name: Animal type + friendly_id: animal_type + values: + - animal_type__birds + - animal_type__cats + - animal_type__dogs + - animal_type__ferrets + - animal_type__guinea_pigs + - animal_type__hamsters + - animal_type__rabbits + - animal_type__reptiles + - animal_type__chameleons + - animal_type__frogs + - animal_type__geckos + - animal_type__hermit_crabs + - animal_type__lizards + - animal_type__snakes + - animal_type__turtles + - animal_type__rodents + - animal_type__chinchillas + - animal_type__gerbils + - animal_type__rats + - animal_type__cattle + - animal_type__chickens + - animal_type__goats + - animal_type__mixed_herd + - animal_type__pigs + - animal_type__sheep + - animal_type__chipmunks + - animal_type__deer + - animal_type__groundhogs + - animal_type__mice + - animal_type__moles + - animal_type__possums + - animal_type__raccoons + - animal_type__skunks + - animal_type__squirrels + - animal_type__other + - animal_type__beavers + - animal_type__boars + - animal_type__bobcats + - animal_type__coyotes + - animal_type__ducks + - animal_type__foxes + - animal_type__geese + - animal_type__gophers + - animal_type__turkeys +- id: 1310 + name: Inline skating style + friendly_id: inline_skating_style + values: + - inline_skating_style__aggressive_inline_skating + - inline_skating_style__freestyle_slalom_inline_skating + - inline_skating_style__roller_hockey_inline_skating + - inline_skating_style__artistic_inline_skating + - inline_skating_style__downhill_inline_skating + - inline_skating_style__recreational_inline_skating + - inline_skating_style__speed_inline_skating +- id: 1311 + name: Ramp type + friendly_id: ramp_type + values: + - ramp_type__bank_ramp + - ramp_type__bowl + - ramp_type__drop_in_ramp + - ramp_type__fly_box + - ramp_type__fun_box + - ramp_type__grind_box + - ramp_type__half_pipe + - ramp_type__kicker_ramp + - ramp_type__launch_ramp + - ramp_type__ledge + - ramp_type__manual_pad + - ramp_type__mini_ramp + - ramp_type__pyramid + - ramp_type__quarter_pipe + - ramp_type__rail + - ramp_type__snake_run + - ramp_type__spine_ramp + - ramp_type__step_up_ramp + - ramp_type__vert_ramp + - ramp_type__wall_ride +- id: 1312 + name: Board type + friendly_id: board_type + values: + - board_type__classic + - board_type__cruiser + - board_type__longboard + - board_type__mini_cruiser + - board_type__mountainboard + - board_type__special_shape +- id: 1313 + name: Skateboarding style + friendly_id: skateboarding_style + values: + - skateboarding_style__cruising + - skateboarding_style__downhill + - skateboarding_style__freestyle + - skateboarding_style__off_road + - skateboarding_style__park + - skateboarding_style__ramp + - skateboarding_style__slalom + - skateboarding_style__street +- id: 1314 + name: Wheel hardness + friendly_id: wheel_hardness + values: + - wheel_hardness__75a + - wheel_hardness__78a + - wheel_hardness__80a + - wheel_hardness__81a + - wheel_hardness__82a + - wheel_hardness__83a + - wheel_hardness__84a + - wheel_hardness__86a + - wheel_hardness__90a + - wheel_hardness__97a + - wheel_hardness__101a +- id: 1315 + name: Wheel hub placement + friendly_id: wheel_hub_placement + values: + - wheel_hub_placement__centerset_wheel + - wheel_hub_placement__offset_wheel + - wheel_hub_placement__side_set_wheel +- id: 1316 + name: Application method + friendly_id: application_method + values: + - application_method__spray + - application_method__liquid + - application_method__paste + - application_method__cream + - application_method__powder + - application_method__gel + - application_method__granules + - application_method__solid +- id: 1317 + name: Skiing style + friendly_id: skiing_style + values: + - skiing_style__all_mountain_skiing + - skiing_style__backcountry_skiing + - skiing_style__carve_skiing + - skiing_style__freeride_skiing + - skiing_style__freestyle_skiing + - skiing_style__park_skiing + - skiing_style__piste_skiing + - skiing_style__powder_skiing + - skiing_style__race_skiing + - skiing_style__touring + - skiing_style__cross_country_skiing + - skiing_style__ski_touring + - skiing_style__downhill_skiing + - skiing_style__alpine_skiing + - skiing_style__ski_racing + - skiing_style__nordic_skiing +- id: 1318 + name: Riding style + friendly_id: riding_style + values: + - riding_style__freeride + - riding_style__freestyle + - riding_style__all_mountain + - riding_style__park + - riding_style__slalom +- id: 1319 + name: Binding mount + friendly_id: binding_mount + values: + - binding_mount__2x2_disc + - binding_mount__3d_disc + - binding_mount__4d + - binding_mount__4x4_disc + - binding_mount__est_channel_system +- id: 1320 + name: Flexibility rating + friendly_id: flexibility_rating + values: + - flexibility_rating__1 + - flexibility_rating__2 + - flexibility_rating__3 + - flexibility_rating__4 + - flexibility_rating__5 + - flexibility_rating__6 + - flexibility_rating__7 + - flexibility_rating__8 + - flexibility_rating__9 + - flexibility_rating__10 +- id: 1321 + name: Shoe binding type + friendly_id: shoe_binding_type + values: + - shoe_binding_type__strap_in + - shoe_binding_type__step_in + - shoe_binding_type__speed_entry + - shoe_binding_type__boa + - shoe_binding_type__hyperlink + - shoe_binding_type__quick_release_buckle + - shoe_binding_type__ratchet_strap + - shoe_binding_type__webbing_strap +- id: 1322 + name: Toe strap type + friendly_id: toe_strap_type + values: + - toe_strap_type__toe_cap_strap + - toe_strap_type__traditional_toe_strap + - toe_strap_type__hybrid_toe_strap + - toe_strap_type__one_piece_strap + - toe_strap_type__3d +- id: 1323 + name: Snowboarding style + friendly_id: snowboarding_style + values: + - snowboarding_style__park_snowboarding + - snowboarding_style__backcountry_snowboarding + - snowboarding_style__freestyle_snowboarding + - snowboarding_style__all_mountain_snowboarding + - snowboarding_style__freeriding + - snowboarding_style__race_snowboarding + - snowboarding_style__powder_snowboarding +- id: 1324 + name: Stiffness + friendly_id: stiffness + values: + - stiffness__medium + - stiffness__soft + - stiffness__stiff +- id: 1325 + name: Snowboard design + friendly_id: snowboard_design + values: + - snowboard_design__twin_tip + - snowboard_design__directional_twin + - snowboard_design__directional + - snowboard_design__tapered +- id: 1326 + name: Terrain + friendly_id: terrain + values: + - terrain__flat + - terrain__mountain + - terrain__rolling +- id: 1327 + name: Pile type + friendly_id: pile_type + values: + - pile_type__berber + - pile_type__braided + - pile_type__cable + - pile_type__cut + - pile_type__cut_loop + - pile_type__flatweave + - pile_type__frieze + - pile_type__hand_knotted + - pile_type__hand_tufted + - pile_type__level_loop + - pile_type__loop + - pile_type__machine_made + - pile_type__multi_level_loop + - pile_type__plush + - pile_type__saxony + - pile_type__shag + - pile_type__textured_saxony + - pile_type__tufted + - pile_type__velvet + - pile_type__low +- id: 1328 + name: Housing material + friendly_id: housing_material + values_from: furniture_fixture_material +- id: 1329 + name: Rod shape + friendly_id: rod_shape + values: + - rod_shape__straight + - rod_shape__curved + - rod_shape__l_shaped + - rod_shape__u_shaped + - rod_shape__other +- id: 1330 + name: Camera shape + friendly_id: camera_shape + values: + - camera_shape__dome + - camera_shape__bullet + - camera_shape__box + - camera_shape__other +- id: 1331 + name: Control type + friendly_id: control_type + values: + - control_type__button + - control_type__sensor + - control_type__lever + - control_type__not_available + - control_type__rotary + - control_type__scrollbar + - control_type__slider + - control_type__tilt + - control_type__touch + - control_type__wireless +- id: 1332 + name: Sensor type + friendly_id: sensor_type + values: + - sensor_type__biomimetic + - sensor_type__electrochemical + - sensor_type__infrared + - sensor_type__mos +- id: 1333 + name: Light source + friendly_id: light_source + values: + - light_source__led + - light_source__incandescent + - light_source__halogen + - light_source__fluorescent + - light_source__infrared + - light_source__xenon + - light_source__neon +- id: 1334 + name: Display resolution + friendly_id: display_resolution + values: + - display_resolution__1024_x_768 + - display_resolution__1280_x_1024 + - display_resolution__1280_x_768 + - display_resolution__1366_x_768 + - display_resolution__1440_x_900 + - display_resolution__1680_x_1050 + - display_resolution__4k_ultra_hd + - display_resolution__5k_ultra_hd + - display_resolution__8k_ultra_hd + - display_resolution__full_hd + - display_resolution__quad_hd + - display_resolution__other + - display_resolution__1920_x_1080 + - display_resolution__1080p + - display_resolution__720p + - display_resolution__144p + - display_resolution__240p + - display_resolution__360p + - display_resolution__480p + - display_resolution__1440p + - display_resolution__2160p + - display_resolution__4320p + - display_resolution__sd + - display_resolution__hd + - display_resolution__25601440 + - display_resolution__4096_x_2160 +- id: 1335 + name: Keypad style + friendly_id: keypad_style + values: + - keypad_style__alphanumeric + - keypad_style__biometric + - keypad_style__digital + - keypad_style__mechanical + - keypad_style__numeric + - keypad_style__touch_sensitive +- id: 1336 + name: Compatible lock type + friendly_id: compatible_lock_type + values_from: lock_type +- id: 1337 + name: RFID frequency + friendly_id: rfid_frequency + values: + - rfid_frequency__high + - rfid_frequency__low + - rfid_frequency__ultra_high +- id: 1338 + name: Plant class + friendly_id: plant_class + values: + - plant_class__arecidae + - plant_class__apiales + - plant_class__aquifoliaceae + - plant_class__asparagales + - plant_class__asterales + - plant_class__brassicales + - plant_class__bryophyta + - plant_class__caryophyllales + - plant_class__charophyceae + - plant_class__chlorophyceae + - plant_class__commelinidae + - plant_class__coniferopsida + - plant_class__cornales + - plant_class__cucurbitales + - plant_class__cycadopsida + - plant_class__dilleniidae + - plant_class__dioscoreales + - plant_class__ericales + - plant_class__equisetopsida + - plant_class__fabidae + - plant_class__fagales + - plant_class__geraniales + - plant_class__ginkgopsida + - plant_class__gnetidae + - plant_class__gnetopsida + - plant_class__lamiales + - plant_class__liliopsida + - plant_class__lycopodiopsida + - plant_class__magnoliidae + - plant_class__magnoliopsida + - plant_class__malpighiales + - plant_class__marchantiophyta + - plant_class__myrtales + - plant_class__ophioglossopsida + - plant_class__oxalidales + - plant_class__pinopsida + - plant_class__piperales + - plant_class__poales + - plant_class__polypodiopsida + - plant_class__psilotopsida + - plant_class__ranunculales + - plant_class__rosales + - plant_class__rosidae + - plant_class__santalales + - plant_class__sapindales + - plant_class__saxifragales + - plant_class__solanales + - plant_class__vitales + - plant_class__zingiberales + - plant_class__other +- id: 1339 + name: Plant name + friendly_id: plant_name + values: + - plant_name__aeonium + - plant_name__allium + - plant_name__alocasia + - plant_name__aloe_vera + - plant_name__amaryllis + - plant_name__anthurium + - plant_name__aralia + - plant_name__bamboo + - plant_name__bonsai + - plant_name__bougainvillea + - plant_name__boxwood + - plant_name__cactus + - plant_name__calathea + - plant_name__cherry + - plant_name__chrysanthemum + - plant_name__cotton + - plant_name__dahlia + - plant_name__echeveria + - plant_name__edelweiss + - plant_name__eucalyptus + - plant_name__ficus + - plant_name__fir + - plant_name__galanthus + - plant_name__grass + - plant_name__hydrangea + - plant_name__ivy + - plant_name__magnolia + - plant_name__miscanthus_sinensis + - plant_name__monstera + - plant_name__olive + - plant_name__orchid + - plant_name__palm + - plant_name__pampas_grass + - plant_name__papyrus + - plant_name__peony + - plant_name__phalaenopsis + - plant_name__philodendron + - plant_name__pine + - plant_name__poinsettia + - plant_name__protea + - plant_name__ranunculus + - plant_name__rose + - plant_name__sansevieria + - plant_name__water_lily + - plant_name__wildflower + - plant_name__willow + - plant_name__zamioculcas + - plant_name__other + - plant_name__begonia + - plant_name__bird_of_paradise + - plant_name__crocus + - plant_name__cyclamen + - plant_name__daffodil + - plant_name__daisy + - plant_name__dandelion + - plant_name__echinacea + - plant_name__fern + - plant_name__forsythia + - plant_name__gardenia + - plant_name__geranium + - plant_name__hibiscus + - plant_name__hosta + - plant_name__honeysuckle + - plant_name__hyacinth + - plant_name__jasmine + - plant_name__lavender + - plant_name__lily + - plant_name__marigold + - plant_name__pansy + - plant_name__petunia + - plant_name__rubber_plant + - plant_name__spider_plant + - plant_name__sunflower + - plant_name__sweet_pea + - plant_name__tulip + - plant_name__venus_flytrap + - plant_name__violet + - plant_name__weeping_fig + - plant_name__yarrow + - plant_name__yucca + - plant_name__zinnia + - plant_name__aubergine + - plant_name__basil + - plant_name__bay_leaves + - plant_name__bell_pepper + - plant_name__cherry_tomato + - plant_name__chervil + - plant_name__chives + - plant_name__cilantro + - plant_name__coriander + - plant_name__courgette + - plant_name__cucumber + - plant_name__curry_leaves + - plant_name__dill + - plant_name__fennel + - plant_name__grape_vine + - plant_name__marjoram + - plant_name__mint + - plant_name__oregano + - plant_name__parsley + - plant_name__rosemary + - plant_name__sage + - plant_name__tarragon + - plant_name__thyme + - plant_name__tomato +- id: 1340 + name: Frame + friendly_id: frame + values: + - frame__acrylic + - frame__braided + - frame__canvas + - frame__clip + - frame__floater + - frame__framed + - frame__gallery_wrapped + - frame__matted + - frame__modern + - frame__ornate + - frame__poster + - frame__rustic + - frame__shadow_box + - frame__unframed +- id: 1341 + name: Cover material + friendly_id: cover_material + values: + - cover_material__acrylic + - cover_material__bamboo + - cover_material__canvas + - cover_material__cork + - cover_material__cotton + - cover_material__denim + - cover_material__faux_fur + - cover_material__faux_leather + - cover_material__felt + - cover_material__flannel + - cover_material__fleece + - cover_material__fur + - cover_material__hemp + - cover_material__jute + - cover_material__latex + - cover_material__leather + - cover_material__linen + - cover_material__lycra + - cover_material__mesh + - cover_material__modal + - cover_material__mohair + - cover_material__neoprene + - cover_material__nylon + - cover_material__plastic + - cover_material__polyester + - cover_material__rattan + - cover_material__rubber + - cover_material__synthetic + - cover_material__tarpaulin + - cover_material__twill + - cover_material__vinyl + - cover_material__viscose + - cover_material__wool + - cover_material__other +- id: 1342 + name: Filler material + friendly_id: filler_material + values: + - filler_material__buckwheat_hulls + - filler_material__cotton + - filler_material__down_feather + - filler_material__feathers + - filler_material__felt + - filler_material__fleece + - filler_material__memory_foam + - filler_material__microbeads + - filler_material__plush + - filler_material__polyester + - filler_material__polystyrene_ps + - filler_material__polyurethane_pu + - filler_material__synthetic + - filler_material__wool +- id: 1343 + name: Filler support + friendly_id: filler_support + values: + - filler_support__adjustable + - filler_support__buckwheat + - filler_support__down + - filler_support__extra_firm + - filler_support__firm + - filler_support__latex + - filler_support__medium + - filler_support__memory_foam + - filler_support__microbead + - filler_support__mid_plush + - filler_support__plush + - filler_support__soft +- id: 1344 + name: Suitable for chair type + friendly_id: suitable_for_chair_type + values: + - suitable_for_chair_type__bench + - suitable_for_chair_type__camping + - suitable_for_chair_type__sofa + - suitable_for_chair_type__spa + - suitable_for_chair_type__stool + - suitable_for_chair_type__universal +- id: 1346 + name: Finial shape + friendly_id: finial_shape + values: + - finial_shape__acorn + - finial_shape__ball + - finial_shape__spear + - finial_shape__other +- id: 1347 + name: Flag shape + friendly_id: flag_shape + values: + - flag_shape__rectangular + - flag_shape__triangular + - flag_shape__pennant + - flag_shape__teardrop + - flag_shape__other +- id: 1348 + name: Units of measurement + friendly_id: units_of_measurement + values: + - units_of_measurement__board_feet_bft + - units_of_measurement__feet_per_second_ft_s + - units_of_measurement__kilometers_per_hour_km_h + - units_of_measurement__knots_kn + - units_of_measurement__meters_per_second_m_s + - units_of_measurement__miles_per_hour_mph + - units_of_measurement__unspecified + - units_of_measurement__centimeters_cm + - units_of_measurement__feet_ft + - units_of_measurement__inches_in + - units_of_measurement__meters_m + - units_of_measurement__micrometers_m + - units_of_measurement__millimeters_mm + - units_of_measurement__yards_yd + - units_of_measurement__fahrenheit_f + - units_of_measurement__celsius_c + - units_of_measurement__cups_c + - units_of_measurement__quarts_qt + - units_of_measurement__liters_l + - units_of_measurement__milliliters_ml +- id: 1349 + name: Scent + friendly_id: scent + values_from: fragrance +- id: 1350 + name: Magnet type + friendly_id: magnet_type + values: + - magnet_type__alnico + - magnet_type__beryllium + - magnet_type__ceramic + - magnet_type__cobalt + - magnet_type__ferrite + - magnet_type__mylar + - magnet_type__ndfeb + - magnet_type__neo_titanium + - magnet_type__neodymium + - magnet_type__rubidium + - magnet_type__strontium + - magnet_type__titanium +- id: 1351 + name: Style + friendly_id: style + values: + - style__contemporary + - style__traditional + - style__industrial + - style__retro_vintage + - style__transitional + - style__colonial + - style__modern + - style__victorian + - style__barroco + - style__classic + - style__bohemian + - style__farmhouse + - style__scandinavian + - style__minimalist + - style__rustic + - style__other +- id: 1352 + name: Fixation type + friendly_id: fixation_type + values: + - fixation_type__fixing_pin + - fixation_type__fixing_screw + - fixation_type__fixing_spike +- id: 1353 + name: Egg decorating items included + friendly_id: egg_decorating_items_included + values: + - egg_decorating_items_included__decorating_brush + - egg_decorating_items_included__dye_tablets + - egg_decorating_items_included__egg_dippers + - egg_decorating_items_included__egg_stands + - egg_decorating_items_included__glitter + - egg_decorating_items_included__instruction_booklet + - egg_decorating_items_included__markers + - egg_decorating_items_included__paint + - egg_decorating_items_included__stickers + - egg_decorating_items_included__wax_crayons +- id: 1354 + name: Suitable for furniture type + friendly_id: suitable_for_furniture_type + values: + - suitable_for_furniture_type__armchair + - suitable_for_furniture_type__corner_sofa + - suitable_for_furniture_type__chair + - suitable_for_furniture_type__chaise_longue + - suitable_for_furniture_type__sofa + - suitable_for_furniture_type__footstool + - suitable_for_furniture_type__universal +- id: 1355 + name: Vase shape + friendly_id: vase_shape + values: + - vase_shape__bottle + - vase_shape__conical + - vase_shape__cylindrical + - vase_shape__gourd + - vase_shape__jar + - vase_shape__mushroom + - vase_shape__oval + - vase_shape__pitcher + - vase_shape__round + - vase_shape__square + - vase_shape__turnip + - vase_shape__urn +- id: 1356 + name: Sustainability + friendly_id: sustainability + values: + - sustainability__fair_trade + - sustainability__handcrafted + - sustainability__responsibly_sourced +- id: 1357 + name: Wallpaper application method + friendly_id: wallpaper_application_method + values: + - wallpaper_application_method__peel_stick + - wallpaper_application_method__pre_pasted + - wallpaper_application_method__requires_paste +- id: 1358 + name: Roof decor shape + friendly_id: roof_decor_shape + values: + - roof_decor_shape__rooster + - roof_decor_shape__horse + - roof_decor_shape__arrow + - roof_decor_shape__sailboat + - roof_decor_shape__other +- id: 1359 + name: Control technology + friendly_id: control_technology + values: + - control_technology__motorized + - control_technology__manual +- id: 1360 + name: Light control + friendly_id: light_control + values: + - light_control__blackout + - light_control__light_filtering + - light_control__opaque + - light_control__room_darkening + - light_control__semi_opaque + - light_control__sheer + - light_control__solar + - light_control__translucent +- id: 1361 + name: Film application method + friendly_id: film_application_method + values: + - film_application_method__self_adhesive + - film_application_method__static_cling +- id: 1362 + name: Alert type + friendly_id: alert_type + values: + - alert_type__sound_alarms + - alert_type__visual_alerts + - alert_type__smartphone_notifications +- id: 1363 + name: Emergency items included + friendly_id: emergency_items_included + values: + - emergency_items_included__batteries + - emergency_items_included__blanket + - emergency_items_included__charger + - emergency_items_included__first_aid_kit + - emergency_items_included__flashlight + - emergency_items_included__food + - emergency_items_included__hygiene_products + - emergency_items_included__powerbank + - emergency_items_included__radio + - emergency_items_included__water + - emergency_items_included__whistle +- id: 1364 + name: Stove airflow + friendly_id: stove_airflow + values: + - stove_airflow__primary + - stove_airflow__secondary + - stove_airflow__tertiary +- id: 1365 + name: Extinguisher rating + friendly_id: extinguisher_rating + values: + - extinguisher_rating__class_a + - extinguisher_rating__class_b + - extinguisher_rating__class_c + - extinguisher_rating__class_d +- id: 1366 + name: Extinguishing agent type + friendly_id: extinguishing_agent_type + values: + - extinguishing_agent_type__carbon_dioxide_co2 + - extinguishing_agent_type__clean_agent + - extinguishing_agent_type__foam + - extinguishing_agent_type__powder_dry_chemical + - extinguishing_agent_type__water + - extinguishing_agent_type__wet_chemical +- id: 1367 + name: Suitable for fire class + friendly_id: suitable_for_fire_class + values: + - suitable_for_fire_class__a + - suitable_for_fire_class__b + - suitable_for_fire_class__c + - suitable_for_fire_class__d + - suitable_for_fire_class__e + - suitable_for_fire_class__f +- id: 1368 + name: Detector type + friendly_id: detector_type + values: + - detector_type__fixed_temperature_heat + - detector_type__rate_of_rise_heat + - detector_type__air_sampling + - detector_type__combi + - detector_type__ionization + - detector_type__optical + - detector_type__optical_beam + - detector_type__photoelectric_reflection +- id: 1369 + name: Compatible vacuum type + friendly_id: compatible_vacuum_type + values: + - compatible_vacuum_type__cylinder + - compatible_vacuum_type__drum + - compatible_vacuum_type__handheld + - compatible_vacuum_type__robot + - compatible_vacuum_type__steam + - compatible_vacuum_type__stick + - compatible_vacuum_type__universal +- id: 1370 + name: Energy efficiency class + friendly_id: energy_efficiency_class + values: + - energy_efficiency_class__a+++ + - energy_efficiency_class__a++ + - energy_efficiency_class__a+ + - energy_efficiency_class__a + - energy_efficiency_class__b + - energy_efficiency_class__c + - energy_efficiency_class__d + - energy_efficiency_class__e + - energy_efficiency_class__f + - energy_efficiency_class__g +- id: 1371 + name: Boiler system + friendly_id: boiler_system + values: + - boiler_system__combi + - boiler_system__solo +- id: 1372 + name: Evaporation technology + friendly_id: evaporation_technology + values: + - evaporation_technology__impeller + - evaporation_technology__steam + - evaporation_technology__ultrasonic + - evaporation_technology__natural +- id: 1373 + name: Operation method + friendly_id: operation_method + values: + - operation_method__belt_drive + - operation_method__chain_drive + - operation_method__hydraulic +- id: 1374 + name: Loading type + friendly_id: loading_type + values: + - loading_type__front_load + - loading_type__top_load +- id: 1375 + name: Garment steamer design + friendly_id: garment_steamer_design + values: + - garment_steamer_design__handheld + - garment_steamer_design__steam_brush + - garment_steamer_design__upright +- id: 1376 + name: Soleplate type + friendly_id: soleplate_type + values: + - soleplate_type__aluminum + - soleplate_type__alumite + - soleplate_type__anodilium + - soleplate_type__auto_clean + - soleplate_type__auto_clean_catalys + - soleplate_type__careeza + - soleplate_type__ceramic + - soleplate_type__ceramic_glide + - soleplate_type__ceramic_ultra_glide + - soleplate_type__ceranium + - soleplate_type__ceranium_glisse + - soleplate_type__cerilium + - soleplate_type__cross_steam + - soleplate_type__diamond_4d + - soleplate_type__diamond_glide + - soleplate_type__dual_thermolon + - soleplate_type__durilium + - soleplate_type__durilium_airglide + - soleplate_type__durilium_airglide_auto_clean + - soleplate_type__durilium_airglide_auto_clean_ultra_thin + - soleplate_type__durilium_auto_clean + - soleplate_type__dynaglide + - soleplate_type__eloxal + - soleplate_type__eloxal_plus + - soleplate_type__glide_x_soleplate + - soleplate_type__glissium + - soleplate_type__gold + - soleplate_type__honeycomb + - soleplate_type__microsteam + - soleplate_type__nano_steel + - soleplate_type__nano_silver_ceramic + - soleplate_type__non_stick + - soleplate_type__palladium + - soleplate_type__pearlonic_380 + - soleplate_type__pro_ceramic + - soleplate_type__protect + - soleplate_type__ptfe + - soleplate_type__resilium + - soleplate_type__saphir + - soleplate_type__stainless_steel + - soleplate_type__steamglide + - soleplate_type__steamglide_elite + - soleplate_type__t_ionic_glide + - soleplate_type__titanium + - soleplate_type__tourmaline_ceramic + - soleplate_type__ultragliss + - soleplate_type__ultragliss_durilium + - soleplate_type__xl_duraglide + - soleplate_type__xpress_glide + - soleplate_type__other +- id: 1377 + name: Washing programs + friendly_id: washing_programs + values: + - washing_programs__anti_allergy + - washing_programs__auto + - washing_programs__baby_care + - washing_programs__beddings + - washing_programs__bio + - washing_programs__black_color + - washing_programs__cold_wash + - washing_programs__cotton + - washing_programs__delicate + - washing_programs__easy_care + - washing_programs__eco + - washing_programs__hand + - washing_programs__intensive + - washing_programs__jeans + - washing_programs__lingerie + - washing_programs__microfiber + - washing_programs__mixed_colors + - washing_programs__outdoor + - washing_programs__pillow + - washing_programs__pre_wash + - washing_programs__quick_wash + - washing_programs__rinse + - washing_programs__shoes + - washing_programs__silk + - washing_programs__spin_drain + - washing_programs__spin_only + - washing_programs__sport + - washing_programs__steam + - washing_programs__towel + - washing_programs__white_color + - washing_programs__wool + - washing_programs__other +- id: 1378 + name: Cleaning surfaces + friendly_id: cleaning_surfaces + values: + - cleaning_surfaces__carpet + - cleaning_surfaces__glass_surfaces + - cleaning_surfaces__laminate_flooring + - cleaning_surfaces__stair_steps + - cleaning_surfaces__tiles + - cleaning_surfaces__upholstery + - cleaning_surfaces__vinyl_flooring + - cleaning_surfaces__wood_flooring + - cleaning_surfaces__other + - cleaning_surfaces__fabric + - cleaning_surfaces__rug + - cleaning_surfaces__appliances + - cleaning_surfaces__bathroom_fixtures + - cleaning_surfaces__countertops + - cleaning_surfaces__stone_flooring + - cleaning_surfaces__clothing + - cleaning_surfaces__hard_surfaces + - cleaning_surfaces__pet_bedding + - cleaning_surfaces__grout_lines + - cleaning_surfaces__kitchen_sinks + - cleaning_surfaces__stovetops +- id: 1379 + name: Dirt separating method + friendly_id: dirt_separating_method + values: + - dirt_separating_method__cyclonic + - dirt_separating_method__filtering + - dirt_separating_method__multi_cyclonic + - dirt_separating_method__aqua_filtering +- id: 1380 + name: Dry/Wet cleaning + friendly_id: dry_wet_cleaning + values: + - dry_wet_cleaning__dry + - dry_wet_cleaning__wet + - dry_wet_cleaning__dry_wet +- id: 1381 + name: Dust container type + friendly_id: dust_container_type + values: + - dust_container_type__dust_bag + - dust_container_type__bagless + - dust_container_type__combi +- id: 1382 + name: Vacuum air filtering technology + friendly_id: vacuum_air_filtering_technology + values: + - vacuum_air_filtering_technology__allergy + - vacuum_air_filtering_technology__carbon + - vacuum_air_filtering_technology__epa + - vacuum_air_filtering_technology__hepa + - vacuum_air_filtering_technology__microfilter + - vacuum_air_filtering_technology__odor + - vacuum_air_filtering_technology__pet + - vacuum_air_filtering_technology__pre_motor + - vacuum_air_filtering_technology__post_motor + - vacuum_air_filtering_technology__s_class + - vacuum_air_filtering_technology__standard + - vacuum_air_filtering_technology__water + - vacuum_air_filtering_technology__washable +- id: 1383 + name: Orientation + friendly_id: orientation + values: + - orientation__horizontal + - orientation__vertical +- id: 1384 + name: Dispenser type + friendly_id: dispenser_type + values: + - dispenser_type__bottle + - dispenser_type__jar + - dispenser_type__pan + - dispenser_type__spray + - dispenser_type__tube + - dispenser_type__stick + - dispenser_type__pump_bottle + - dispenser_type__squeeze_bottle + - dispenser_type__sachet + - dispenser_type__pouch + - dispenser_type__pot + - dispenser_type__pencil + - dispenser_type__palette + - dispenser_type__case + - dispenser_type__ampoule + - dispenser_type__box + - dispenser_type__can + - dispenser_type__capsules + - dispenser_type__roll_on + - dispenser_type__wipes +- id: 1385 + name: Ingredients + friendly_id: ingredients + values: + - ingredients__zinc_oxide + - ingredients__petroleum_jelly + - ingredients__calendula + - ingredients__aloe_vera + - ingredients__vitamin_e + - ingredients__lanolin + - ingredients__other + - ingredients__surfactants + - ingredients__solvents + - ingredients__builders + - ingredients__fragrances + - ingredients__dyes + - ingredients__preservatives + - ingredients__water + - ingredients__enzymes + - ingredients__pyrethrins + - ingredients__neonicotinoids + - ingredients__glyphosate + - ingredients__emulsifiers + - ingredients__stabilizers + - ingredients__deet + - ingredients__picaridin + - ingredients__lemon_eucalyptus_oil + - ingredients__24_d +- id: 1386 + name: Targeted stains + friendly_id: targeted_stains + values: + - targeted_stains__dander + - targeted_stains__feces + - targeted_stains__mud + - targeted_stains__urine + - targeted_stains__vomit + - targeted_stains__blood + - targeted_stains__coffee + - targeted_stains__food + - targeted_stains__ink + - targeted_stains__oil +- id: 1387 + name: Cleaning purpose + friendly_id: cleaning_purpose + values: + - cleaning_purpose__fabric + - cleaning_purpose__stains + - cleaning_purpose__refreshing +- id: 1388 + name: Blade material + friendly_id: blade_material + values: + - blade_material__aluminum + - blade_material__carbide + - blade_material__carbon_fiber + - blade_material__carbon_steel + - blade_material__cast_iron + - blade_material__ceramic + - blade_material__damascus_steel + - blade_material__diamond + - blade_material__fiberglass + - blade_material__g_10 + - blade_material__high_speed_steel + - blade_material__iron + - blade_material__metal + - blade_material__plastic + - blade_material__polyvinyl_chloride_pvc + - blade_material__silicone + - blade_material__stainless_steel + - blade_material__steel + - blade_material__titanium + - blade_material__vg_10 + - blade_material__wood +- id: 1389 + name: Washing method + friendly_id: washing_method + values: + - washing_method__hand_washing + - washing_method__machine_washing + - washing_method__universal +- id: 1390 + name: Suitable for pest type + friendly_id: suitable_for_pest_type + values: + - suitable_for_pest_type__mole + - suitable_for_pest_type__gopher + - suitable_for_pest_type__rodent + - suitable_for_pest_type__rabbit + - suitable_for_pest_type__mouse + - suitable_for_pest_type__rat + - suitable_for_pest_type__beaver + - suitable_for_pest_type__fox + - suitable_for_pest_type__squirrel + - suitable_for_pest_type__snail + - suitable_for_pest_type__fungi + - suitable_for_pest_type__bacteria + - suitable_for_pest_type__viruses + - suitable_for_pest_type__nematodes + - suitable_for_pest_type__phytoplasmas + - suitable_for_pest_type__oomycetes + - suitable_for_pest_type__parasitic_plants +- id: 1391 + name: Bug type + friendly_id: bug_type + values: + - bug_type__mosquitoes + - bug_type__ticks + - bug_type__ants + - bug_type__bed_bugs + - bug_type__bees + - bug_type__cockroaches + - bug_type__fleas + - bug_type__flies + - bug_type__gnats + - bug_type__hornets + - bug_type__moths + - bug_type__silverfish + - bug_type__spiders + - bug_type__wasps +- id: 1392 + name: Format supported + friendly_id: format_supported + values: + - format_supported__10_15_cm + - format_supported__11_14_in + - format_supported__12_16_in + - format_supported__13_18_cm + - format_supported__15_20_cm + - format_supported__16_20_in + - format_supported__18_24_cm + - format_supported__20_24_in + - format_supported__20_25_cm + - format_supported__20_30_cm + - format_supported__24_30_cm + - format_supported__30_40_cm + - format_supported__40_50_cm + - format_supported__5_7_in + - format_supported__50_60_cm + - format_supported__8_10_in + - format_supported__8_12_in + - format_supported__9_13_cm + - format_supported__other +- id: 1393 + name: Stationery binding type + friendly_id: stationery_binding_type + values: + - stationery_binding_type__case + - stationery_binding_type__perfect + - stationery_binding_type__saddle_stitch + - stationery_binding_type__spiral +- id: 1394 + name: Bakeware pieces included + friendly_id: bakeware_pieces_included + values: + - bakeware_pieces_included__baking_sheets + - bakeware_pieces_included__cake_pan + - bakeware_pieces_included__loaf_pan + - bakeware_pieces_included__muffin_tin + - bakeware_pieces_included__pie_dish +- id: 1395 + name: Compatible hob type + friendly_id: compatible_hob_type + values: + - compatible_hob_type__gas + - compatible_hob_type__halogen + - compatible_hob_type__induction + - compatible_hob_type__ceramic + - compatible_hob_type__sealed_plate +- id: 1397 + name: Suitable for food processor type + friendly_id: suitable_for_food_processor_type + values: + - suitable_for_food_processor_type__food_blender + - suitable_for_food_processor_type__food_grinder + - suitable_for_food_processor_type__food_mixer +- id: 1398 + name: Coffee input type + friendly_id: coffee_input_type + values: + - coffee_input_type__coffee_beans + - coffee_input_type__coffee_capsules + - coffee_input_type__coffee_pods +- id: 1399 + name: Hob type + friendly_id: hob_type + values: + - hob_type__ceramic + - hob_type__coil + - hob_type__combi + - hob_type__gas + - hob_type__halogen + - hob_type__sealed_plate + - hob_type__zone_induction + - hob_type__zoneless_induction +- id: 1400 + name: Top surface material + friendly_id: top_surface_material + values: + - top_surface_material__cast_iron + - top_surface_material__ceramic + - top_surface_material__glass_ceramic + - top_surface_material__stainless_steel + - top_surface_material__steel + - top_surface_material__tempered_glass +- id: 1401 + name: Star rating + friendly_id: star_rating + values: + - star_rating__1 + - star_rating__2 + - star_rating__3 + - star_rating__4 + - star_rating__5 + - star_rating__6 +- id: 1402 + name: Compatible recipes + friendly_id: compatible_recipes + values: + - compatible_recipes__frozen_yogurt + - compatible_recipes__fruit_ice + - compatible_recipes__gelato + - compatible_recipes__ice_cream + - compatible_recipes__sherbet + - compatible_recipes__sorbet +- id: 1403 + name: Oven accessories included + friendly_id: oven_accessories_included + values: + - oven_accessories_included__roasting_pan + - oven_accessories_included__rotisserie_attachment + - oven_accessories_included__wire_rack +- id: 1404 + name: Extraction type + friendly_id: extraction_type + values: + - extraction_type__ducted + - extraction_type__ductless + - extraction_type__convertible +- id: 1405 + name: Grease filter material + friendly_id: grease_filter_material + values: + - grease_filter_material__aluminum + - grease_filter_material__carbon + - grease_filter_material__charcoal + - grease_filter_material__fiberglass + - grease_filter_material__mesh + - grease_filter_material__metal + - grease_filter_material__stainless_steel + - grease_filter_material__steel + - grease_filter_material__synthetic +- id: 1406 + name: Soda maker accessories included + friendly_id: soda_maker_accessories_included + values: + - soda_maker_accessories_included__carbonating_cylinder + - soda_maker_accessories_included__reusable_bottle + - soda_maker_accessories_included__soda_maker_unit + - soda_maker_accessories_included__syrup +- id: 1407 + name: Water filter application + friendly_id: water_filter_application + values: + - water_filter_application__coffee_machine + - water_filter_application__drinking_water_appliance + - water_filter_application__food_preparation + - water_filter_application__ice_machine + - water_filter_application__oven + - water_filter_application__steamer + - water_filter_application__tea_brewing +- id: 1408 + name: Bristle material + friendly_id: bristle_material + values: + - bristle_material__boar_bristle + - bristle_material__cotton + - bristle_material__faux_leather + - bristle_material__horsehair + - bristle_material__leather + - bristle_material__linen + - bristle_material__metal + - bristle_material__microfiber + - bristle_material__natural_bristle + - bristle_material__nylon + - bristle_material__plastic + - bristle_material__polypropylene_pp + - bristle_material__polyvinyl_chloride_pvc + - bristle_material__rubber + - bristle_material__silicone + - bristle_material__stainless_steel + - bristle_material__synthetic_bristle + - bristle_material__teflon + - bristle_material__wood +- id: 1410 + name: Food dispenser type + friendly_id: food_dispenser_type + values: + - food_dispenser_type__cereals + - food_dispenser_type__grains + - food_dispenser_type__pasta + - food_dispenser_type__seeds + - food_dispenser_type__sweets +- id: 1411 + name: Kitchen utensil items included + friendly_id: kitchen_utensil_items_included + values: + - kitchen_utensil_items_included__bottle_opener + - kitchen_utensil_items_included__can_opener + - kitchen_utensil_items_included__ladle + - kitchen_utensil_items_included__pasta_server + - kitchen_utensil_items_included__peeler + - kitchen_utensil_items_included__slotted_spoon + - kitchen_utensil_items_included__solid_spoon + - kitchen_utensil_items_included__spatula + - kitchen_utensil_items_included__tongs + - kitchen_utensil_items_included__whisk +- id: 1412 + name: Pasta shape type + friendly_id: pasta_shape_type + values: + - pasta_shape_type__spaghetti + - pasta_shape_type__linguine + - pasta_shape_type__fettuccine + - pasta_shape_type__lasagna + - pasta_shape_type__ravioli + - pasta_shape_type__tortellini + - pasta_shape_type__gnocchi + - pasta_shape_type__penne + - pasta_shape_type__rigatoni + - pasta_shape_type__farfalle +- id: 1413 + name: Coffee/Tea set pieces included + friendly_id: coffee_tea_set_pieces_included + values: + - coffee_tea_set_pieces_included__coffee_pot + - coffee_tea_set_pieces_included__creamer + - coffee_tea_set_pieces_included__cups + - coffee_tea_set_pieces_included__saucers + - coffee_tea_set_pieces_included__scoop + - coffee_tea_set_pieces_included__sugar_bowl + - coffee_tea_set_pieces_included__teapot + - coffee_tea_set_pieces_included__teaspoons + - coffee_tea_set_pieces_included__tray +- id: 1414 + name: Dinnerware pieces included + friendly_id: dinnerware_pieces_included + values: + - dinnerware_pieces_included__bowls + - dinnerware_pieces_included__butter_dish + - dinnerware_pieces_included__cups + - dinnerware_pieces_included__dinner_plates + - dinnerware_pieces_included__mugs + - dinnerware_pieces_included__pepper_shaker + - dinnerware_pieces_included__salad_plate + - dinnerware_pieces_included__salt_shaker + - dinnerware_pieces_included__saucers + - dinnerware_pieces_included__serving_bowl + - dinnerware_pieces_included__serving_platter +- id: 1415 + name: Drinkware pieces included + friendly_id: drinkware_pieces_included + values: + - drinkware_pieces_included__champagne_flutes + - drinkware_pieces_included__coasters + - drinkware_pieces_included__highball_glasses + - drinkware_pieces_included__ice_bucket + - drinkware_pieces_included__lowball_glasses + - drinkware_pieces_included__martini_glasses + - drinkware_pieces_included__pitcher + - drinkware_pieces_included__shot_glasses + - drinkware_pieces_included__wine_glasses +- id: 1416 + name: Flatware pieces included + friendly_id: flatware_pieces_included + values: + - flatware_pieces_included__butter_knife + - flatware_pieces_included__dinner_fork + - flatware_pieces_included__dinner_knife + - flatware_pieces_included__salad_fork + - flatware_pieces_included__serving_spoon + - flatware_pieces_included__soup_spoon + - flatware_pieces_included__steak_knife + - flatware_pieces_included__sugar_spoon + - flatware_pieces_included__teaspoon +- id: 1417 + name: Gardening use + friendly_id: gardening_use + values: + - gardening_use__flower_gardening + - gardening_use__landscaping + - gardening_use__mulching + - gardening_use__plant_growth + - gardening_use__soil_quality + - gardening_use__vegetable_gardening + - gardening_use__standard + - gardening_use__multi_purpose +- id: 1418 + name: Pest control method + friendly_id: pest_control_method + values: + - pest_control_method__liquid_spray + - pest_control_method__dust + - pest_control_method__granules + - pest_control_method__biological +- id: 1419 + name: Nutrient content + friendly_id: nutrient_content + values: + - nutrient_content__nitrogen + - nutrient_content__phosphorus + - nutrient_content__potassium + - nutrient_content__calcium + - nutrient_content__magnesium + - nutrient_content__sulfur + - nutrient_content__iron + - nutrient_content__manganese + - nutrient_content__zinc + - nutrient_content__copper + - nutrient_content__molybdenum + - nutrient_content__boron +- id: 1420 + name: Compatible gardening tool + friendly_id: compatible_gardening_tool + values: + - compatible_gardening_tool__fork + - compatible_gardening_tool__lawn_roller + - compatible_gardening_tool__machete + - compatible_gardening_tool__pruning_saw + - compatible_gardening_tool__pruning_shears + - compatible_gardening_tool__rake + - compatible_gardening_tool__shovel + - compatible_gardening_tool__sickle + - compatible_gardening_tool__spade + - compatible_gardening_tool__sprayer + - compatible_gardening_tool__spreader + - compatible_gardening_tool__trowel +- id: 1421 + name: Teeth material + friendly_id: teeth_material + values_from: blade_material +- id: 1422 + name: Cutting method + friendly_id: cutting_method + values: + - cutting_method__anvil + - cutting_method__bypass + - cutting_method__scissor +- id: 1423 + name: Tank material + friendly_id: tank_material + values_from: cocktail_decoration_material +- id: 1424 + name: Screen material + friendly_id: screen_material + values: + - screen_material__aluminum + - screen_material__fiberglass + - screen_material__glass + - screen_material__metal + - screen_material__plastic + - screen_material__polycarbonate_pc + - screen_material__polyester + - screen_material__stainless_steel + - screen_material__steel +- id: 1425 + name: Targeted pests + friendly_id: targeted_pests + values: + - targeted_pests__mold + - targeted_pests__algae + - targeted_pests__lichen + - targeted_pests__moss + - targeted_pests__weed +- id: 1426 + name: Awning construction type + friendly_id: awning_construction_type + values: + - awning_construction_type__fixed + - awning_construction_type__retractable + - awning_construction_type__inflatable +- id: 1427 + name: Cover color + friendly_id: cover_color + values_from: color +- id: 1428 + name: Cover pattern + friendly_id: cover_pattern + values_from: pattern +- id: 1429 + name: Frame pattern + friendly_id: frame_pattern + values_from: pattern +- id: 1430 + name: Compatible hammock design + friendly_id: compatible_hammock_design + values: + - compatible_hammock_design__frame + - compatible_hammock_design__hanging +- id: 1431 + name: Canopy material + friendly_id: canopy_material + values: + - canopy_material__cotton + - canopy_material__fiberglass + - canopy_material__nylon + - canopy_material__plastic + - canopy_material__polyamide_pa + - canopy_material__polyester + - canopy_material__vinyl +- id: 1432 + name: Outdoor power accessories included + friendly_id: outdoor_power_accessories_included + values: + - outdoor_power_accessories_included__battery_charger + - outdoor_power_accessories_included__blower + - outdoor_power_accessories_included__chainsaw + - outdoor_power_accessories_included__ear_plugs + - outdoor_power_accessories_included__hedge_trimmer + - outdoor_power_accessories_included__lawn_mower + - outdoor_power_accessories_included__safety_glasses + - outdoor_power_accessories_included__trimmer +- id: 1433 + name: Propulsion type + friendly_id: propulsion_type + values: + - propulsion_type__pull + - propulsion_type__pull_push + - propulsion_type__push + - propulsion_type__self_propelled + - propulsion_type__ride_on + - propulsion_type__tow +- id: 1434 + name: Sprinkler head type + friendly_id: sprinkler_head_type + values: + - sprinkler_head_type__rose + - sprinkler_head_type__shower + - sprinkler_head_type__jet + - sprinkler_head_type__cone + - sprinkler_head_type__flat +- id: 1435 + name: Bulb size + friendly_id: bulb_size + values: + - bulb_size__a15 + - bulb_size__a19 + - bulb_size__a21 + - bulb_size__br30 + - bulb_size__br40 + - bulb_size__c7 + - bulb_size__c9 + - bulb_size__g25 + - bulb_size__par20 + - bulb_size__par30 + - bulb_size__par38 + - bulb_size__t2 + - bulb_size__t4 + - bulb_size__t5 + - bulb_size__t8 +- id: 1436 + name: Bulb type + friendly_id: bulb_type + values_from: light_source +- id: 1437 + name: Bulb cap type + friendly_id: bulb_cap_type + values: + - bulb_cap_type__e10 + - bulb_cap_type__e12 + - bulb_cap_type__e26 + - bulb_cap_type__e27 + - bulb_cap_type__g4 + - bulb_cap_type__g9 + - bulb_cap_type__gu10 + - bulb_cap_type__gu24 + - bulb_cap_type__mr16 +- id: 1438 + name: Bulb shape + friendly_id: bulb_shape + values: + - bulb_shape__a_shape + - bulb_shape__globe + - bulb_shape__candle + - bulb_shape__reflector + - bulb_shape__tube + - bulb_shape__spiral + - bulb_shape__edison + - bulb_shape__bullet + - bulb_shape__par + - bulb_shape__other +- id: 1439 + name: Timer type + friendly_id: timer_type + values: + - timer_type__daily + - timer_type__weekly +- id: 1440 + name: Oil type + friendly_id: oil_type + values: + - oil_type__paraffin_oil + - oil_type__lamp_oil + - oil_type__kerosene + - oil_type__mineral_oil + - oil_type__citronella_oil +- id: 1441 + name: Bedding pieces included + friendly_id: bedding_pieces_included + values: + - bedding_pieces_included__bottom_sheet + - bedding_pieces_included__pillowcase + - bedding_pieces_included__top_sheet +- id: 1442 + name: Closure style + friendly_id: closure_style + values: + - closure_style__concealed + - closure_style__traditional +- id: 1443 + name: Pole material + friendly_id: pole_material + values_from: post_material +- id: 1444 + name: Flower color + friendly_id: flower_color + values_from: color +- id: 1445 + name: Plant characteristics + friendly_id: plant_characteristics + values: + - plant_characteristics__attracts_pollinators + - plant_characteristics__cold_hardy + - plant_characteristics__deer_resistant + - plant_characteristics__disease_resistant + - plant_characteristics__drought_resistant + - plant_characteristics__edible + - plant_characteristics__evergreen + - plant_characteristics__fast_growing + - plant_characteristics__flowering + - plant_characteristics__fragrant + - plant_characteristics__groundcover + - plant_characteristics__self_fertile + - plant_characteristics__self_pollinating +- id: 1446 + name: Sunlight + friendly_id: sunlight + values: + - sunlight__full_sun + - sunlight__partial_shade + - sunlight__shade +- id: 1447 + name: Culinary botanical name + friendly_id: culinary_botanical_name + values: + - culinary_botanical_name__allium_schoenoprasum + - culinary_botanical_name__anethum_graveolens + - culinary_botanical_name__anthriscus_cerefolium + - culinary_botanical_name__artemisia_dracunculus + - culinary_botanical_name__capsicum_annuum + - culinary_botanical_name__coriandrum_sativum + - culinary_botanical_name__cucumis_sativus + - culinary_botanical_name__cucurbita_pepo + - culinary_botanical_name__foeniculum_vulgare + - culinary_botanical_name__laurus_nobilis + - culinary_botanical_name__lavandula_angustifolia + - culinary_botanical_name__mentha + - culinary_botanical_name__murraya_koenigii + - culinary_botanical_name__ocimum_basilicum + - culinary_botanical_name__origanum_majorana + - culinary_botanical_name__origanum_vulgare + - culinary_botanical_name__petroselinum_crispum + - culinary_botanical_name__rosmarinus_officinalis + - culinary_botanical_name__salvia_officinalis + - culinary_botanical_name__solanum_lycopersicum + - culinary_botanical_name__solanum_lycopersicum_var_cerasiforme + - culinary_botanical_name__solanum_melongena + - culinary_botanical_name__thymus_vulgaris + - culinary_botanical_name__vitis_vinifera +- id: 1448 + name: Suitable for pool type + friendly_id: suitable_for_pool_type + values: + - suitable_for_pool_type__above_ground_pool + - suitable_for_pool_type__built_in_pool + - suitable_for_pool_type__inflatable_pool +- id: 1449 + name: Wall material + friendly_id: wall_material + values: + - wall_material__aspen_wood + - wall_material__cedar_wood + - wall_material__hemlock + - wall_material__pine_wood + - wall_material__spruce_wood +- id: 1450 + name: Humidity control + friendly_id: humidity_control + values: + - humidity_control__0_58 + - humidity_control__0_62 + - humidity_control__0_65 + - humidity_control__0_68 + - humidity_control__0_72 + - humidity_control__0_75 +- id: 1451 + name: Allergen information + friendly_id: allergen_information + values: + - allergen_information__celery + - allergen_information__crustaceans + - allergen_information__eggs + - allergen_information__fish + - allergen_information__lupin + - allergen_information__milk + - allergen_information__molluscs + - allergen_information__mustard + - allergen_information__nuts + - allergen_information__peanuts + - allergen_information__sesame + - allergen_information__soybeans + - allergen_information__sulphites + - allergen_information__sulphur_dioxide + - allergen_information__wheat +- id: 1452 + name: Dietary preferences + friendly_id: dietary_preferences + values: + - dietary_preferences__gluten_free + - dietary_preferences__dairy_free + - dietary_preferences__nut_free + - dietary_preferences__soy_free + - dietary_preferences__other + - dietary_preferences__halal + - dietary_preferences__keto + - dietary_preferences__kosher + - dietary_preferences__lactose_free + - dietary_preferences__low_fat + - dietary_preferences__low_sodium + - dietary_preferences__no_artificial_colors + - dietary_preferences__no_artificial_flavors + - dietary_preferences__no_artificial_sweeteners + - dietary_preferences__no_preservatives + - dietary_preferences__non_gmo + - dietary_preferences__organic + - dietary_preferences__paleo + - dietary_preferences__sugar_free + - dietary_preferences__vegan + - dietary_preferences__vegetarian + - dietary_preferences__wholegrain + - dietary_preferences__alcohol_free + - dietary_preferences__decaffeinated + - dietary_preferences__mountain_shade_grown + - dietary_preferences__single_origin + - dietary_preferences__no_added_msg + - dietary_preferences__high_protein +- id: 1453 + name: Beer style + friendly_id: beer_style + values: + - beer_style__amber + - beer_style__astringent + - beer_style__bitter + - beer_style__brown + - beer_style__clear + - beer_style__cloudy + - beer_style__complex + - beer_style__creamy + - beer_style__crisp + - beer_style__dry + - beer_style__full + - beer_style__gold + - beer_style__hazy + - beer_style__heavy + - beer_style__high_carbonation + - beer_style__light + - beer_style__low_carbonation + - beer_style__red + - beer_style__smooth + - beer_style__sweet + - beer_style__unfiltered + - beer_style__unpasteurised + - beer_style__other +- id: 1454 + name: Beer variety + friendly_id: beer_variety + values: + - beer_variety__altbier + - beer_variety__amber_red_ale + - beer_variety__american_pale_ale_apa + - beer_variety__barleywine + - beer_variety__belgian_ale + - beer_variety__bitter + - beer_variety__brown_ale + - beer_variety__dark_lager + - beer_variety__dark_wheat_beer_dunkelweizen + - beer_variety__english_pale_ale_epa + - beer_variety__fruit_lambic + - beer_variety__german_lager + - beer_variety__golden_ale + - beer_variety__gose + - beer_variety__gueuze + - beer_variety__india_pale_ale_ipa + - beer_variety__klsch + - beer_variety__kriek + - beer_variety__lager + - beer_variety__lambic + - beer_variety__pale_lager + - beer_variety__pilsner + - beer_variety__porter + - beer_variety__saison_ale + - beer_variety__smoked_beer_rauchbier + - beer_variety__sour_ale + - beer_variety__stout + - beer_variety__strong_ale + - beer_variety__strong_bitter + - beer_variety__wheat_beer_weizenbier + - beer_variety__white_beer_witbier + - beer_variety__other +- id: 1455 + name: Country of origin + friendly_id: country_of_origin + values_from: country +- id: 1456 + name: Package type + friendly_id: package_type + values: + - package_type__bag + - package_type__box + - package_type__tube + - package_type__pouch + - package_type__can + - package_type__canister + - package_type__tin + - package_type__glass_bottle + - package_type__keg + - package_type__plastic_bottle + - package_type__jar + - package_type__plastic_container + - package_type__glass_container + - package_type__bottle + - package_type__dispenser + - package_type__flip_top + - package_type__pump_bottle + - package_type__squeeze_tube + - package_type__shaker + - package_type__other + - package_type__sachet + - package_type__pot + - package_type__stick + - package_type__travel_size + - package_type__refill + - package_type__case + - package_type__spray_bottle +- id: 1457 + name: Bitter variery + friendly_id: bitter_variery + values: + - bitter_variery__aromatic + - bitter_variery__floral + - bitter_variery__fruit + - bitter_variery__herbal + - bitter_variery__spicy +- id: 1458 + name: Flavor + friendly_id: flavor + values: + - flavor__almond + - flavor__apple + - flavor__banana + - flavor__blueberry + - flavor__caramel + - flavor__cherry + - flavor__chocolate + - flavor__cinnamon + - flavor__coconut + - flavor__coffee + - flavor__dulce_de_leche + - flavor__elderflower + - flavor__ginger + - flavor__lemon + - flavor__lime + - flavor__lychee + - flavor__mango + - flavor__matcha + - flavor__mint + - flavor__mojito + - flavor__orange + - flavor__peach + - flavor__raspberry + - flavor__rose + - flavor__salted_caramel + - flavor__strawberry + - flavor__tropical + - flavor__unflavored + - flavor__vanilla + - flavor__other +- id: 1459 + name: Hard cider variety + friendly_id: hard_cider_variety + values: + - hard_cider_variety__bittersharp + - hard_cider_variety__bittersweet + - hard_cider_variety__brut + - hard_cider_variety__demi_sec + - hard_cider_variety__doux + - hard_cider_variety__sharp + - hard_cider_variety__sweet +- id: 1460 + name: Absinthe style + friendly_id: absinthe_style + values: + - absinthe_style__distilled + - absinthe_style__mixed +- id: 1461 + name: Absinthe variety + friendly_id: absinthe_variety + values: + - absinthe_variety__amber + - absinthe_variety__blanche + - absinthe_variety__bohemian + - absinthe_variety__flavored + - absinthe_variety__hausgemacht + - absinthe_variety__macerated + - absinthe_variety__rouge + - absinthe_variety__verte +- id: 1462 + name: Brandy variety + friendly_id: brandy_variety + values: + - brandy_variety__armagnac + - brandy_variety__brandy + - brandy_variety__brandy_de_jerez + - brandy_variety__calvados + - brandy_variety__cognac + - brandy_variety__grappa + - brandy_variety__macieira + - brandy_variety__metaxa +- id: 1463 + name: Gin variety + friendly_id: gin_variety + values: + - gin_variety__flavored_gin + - gin_variety__genever_gin + - gin_variety__london_dry_gin + - gin_variety__old_tom_gin + - gin_variety__plymouth_gin +- id: 1464 + name: Liqueur variety + friendly_id: liqueur_variety + values: + - liqueur_variety__coffee_liqueur + - liqueur_variety__chocolate_liqueur + - liqueur_variety__berry_liqueur + - liqueur_variety__cream_liqueur + - liqueur_variety__fruit_liqueur + - liqueur_variety__nut_liqueur + - liqueur_variety__herbal_liqueur + - liqueur_variety__floral_liqueur + - liqueur_variety__rice_liqueur +- id: 1465 + name: Rum grade + friendly_id: rum_grade + values: + - rum_grade__agricultural + - rum_grade__dark + - rum_grade__flavored + - rum_grade__gold + - rum_grade__light + - rum_grade__overproof + - rum_grade__premium + - rum_grade__spiced +- id: 1466 + name: Spirit dilution + friendly_id: spirit_dilution + values: + - spirit_dilution__diluted + - spirit_dilution__undiluted +- id: 1467 + name: Region + friendly_id: region + values: + - region__bordeaux + - region__napa_valley + - region__rioja + - region__tuscany + - region__guanajuato + - region__jalisco + - region__kentucky + - region__los_altos + - region__michoacn + - region__nayarit + - region__tamaulipas + - region__other + - region__bangalore + - region__campbeltown + - region__county + - region__highlands + - region__hokkaido + - region__indiana + - region__irish + - region__islay + - region__lowlands + - region__miyagikyo + - region__nagahama + - region__pennsylvania + - region__speyside + - region__tasmania + - region__tennessee + - region__texas + - region__victoria + - region__yamazaki + - region__abruzzo + - region__aconcagua_valley + - region__adelaide_hills + - region__adelaide_plains + - region__agrelo + - region__ahr + - region__alentejo + - region__almansa + - region__alsace + - region__alt_peneds + - region__alto_adige + - region__alto_cachapoal + - region__alto_maipo + - region__alto_valle_del_ro_colorado + - region__alto_valle_del_ro_negro + - region__alto_valle_del_ro_neuqun + - region__apulia + - region__baden + - region__bairrada + - region__barolo + - region__barossa_valley + - region__beaujolais + - region__bekaa_valley + - region__bolgheri + - region__burgundy + - region__california + - region__central_otago + - region__champagne + - region__chianti + - region__colchagua_valley + - region__constantia + - region__coonawarra + - region__corsica + - region__ctes_de_beaune + - region__ctes_de_bordeaux + - region__ctes_de_nuits + - region__ctes_de_provence + - region__ctes_du_rhne + - region__crete + - region__curic_valley + - region__danube + - region__darling + - region__douro_valley + - region__elqui_valley + - region__emilia_romagna + - region__finger_lakes + - region__franschhoek + - region__galicia + - region__gisborne + - region__great_southern + - region__hawkes_bay + - region__hemel_en_aarde_valley + - region__hunter_valley + - region__jerez + - region__kamptal + - region__langhe + - region__languedoc_roussillon + - region__lodi + - region__loire_valley + - region__macedon_ranges + - region__margaret_river + - region__marlborough + - region__mclaren_vale + - region__mendocino + - region__mendoza + - region__montalcino + - region__montepulciano + - region__mornington_peninsula + - region__mosel + - region__nahe + - region__niagara_peninsula + - region__okanagan_valley + - region__oregon + - region__peneds + - region__pfalz + - region__piedmont + - region__piemonte + - region__priorat + - region__puglia + - region__rheingau + - region__rheinhessen + - region__rhne_valley + - region__ras_baixas + - region__ribera_del_duero + - region__robertson + - region__rueda + - region__sancerre + - region__santa_barbara_county + - region__santa_cruz_mountains + - region__sicily + - region__sonoma_county + - region__stellenbosch + - region__swartland + - region__tokaj + - region__toro + - region__umbria + - region__valle_de_guadalupe + - region__valle_de_uco + - region__veneto + - region__vinho_verde + - region__wachau + - region__walker_bay + - region__western_cape + - region__willamette_valley + - region__yarra_valley + - region__yucatn_peninsula + - region__zagorje_medimurje +- id: 1468 + name: Tequila variety + friendly_id: tequila_variety + values: + - tequila_variety__aged + - tequila_variety__gold + - tequila_variety__rested + - tequila_variety__silver +- id: 1469 + name: Whiskey style + friendly_id: whiskey_style + values: + - whiskey_style__blended_malt + - whiskey_style__cask_strength + - whiskey_style__single_cask + - whiskey_style__single_malt +- id: 1470 + name: Whiskey variety + friendly_id: whiskey_variety + values: + - whiskey_variety__bourbon + - whiskey_variety__corn + - whiskey_variety__malt + - whiskey_variety__rye + - whiskey_variety__scotch + - whiskey_variety__wheat +- id: 1471 + name: Base spirit + friendly_id: base_spirit + values: + - base_spirit__brandy + - base_spirit__gin + - base_spirit__liquor + - base_spirit__rum + - base_spirit__tequila + - base_spirit__vodka + - base_spirit__whiskey +- id: 1475 + name: Wine sweetness + friendly_id: wine_sweetness + values: + - wine_sweetness__dry + - wine_sweetness__off_dry + - wine_sweetness__semi_sweet + - wine_sweetness__sweet + - wine_sweetness__medium + - wine_sweetness__medium_dry +- id: 1476 + name: Wine variety + friendly_id: wine_variety + values: + - wine_variety__blue + - wine_variety__champagne + - wine_variety__orange + - wine_variety__red + - wine_variety__ros + - wine_variety__white +- id: 1477 + name: Coffee roast + friendly_id: coffee_roast + values: + - coffee_roast__light + - coffee_roast__medium_light + - coffee_roast__medium + - coffee_roast__medium_dark + - coffee_roast__dark +- id: 1478 + name: Fruit source + friendly_id: fruit_source + values: + - fruit_source__not_from_concentrate + - fruit_source__concentrate +- id: 1479 + name: Fat content + friendly_id: fat_content + values: + - fat_content__skimmed + - fat_content__semi_skimmed + - fat_content__whole + - fat_content__full_fat + - fat_content__fat_free + - fat_content__low_fat + - fat_content__reduced_fat +- id: 1480 + name: Soda variety + friendly_id: soda_variety + values: + - soda_variety__cola + - soda_variety__ginger_ale + - soda_variety__ginger_beer + - soda_variety__lemon_lime + - soda_variety__orange + - soda_variety__soda_cream + - soda_variety__tonic_water +- id: 1482 + name: Tea input type + friendly_id: tea_input_type + values: + - tea_input_type__bags + - tea_input_type__blossoms + - tea_input_type__capsules + - tea_input_type__compressed + - tea_input_type__instant + - tea_input_type__k_cups + - tea_input_type__loose + - tea_input_type__pods + - tea_input_type__t_disks +- id: 1483 + name: Vinegar drink variety + friendly_id: vinegar_drink_variety + values: + - vinegar_drink_variety__kombucha + - vinegar_drink_variety__oxymel + - vinegar_drink_variety__posca + - vinegar_drink_variety__shrubs + - vinegar_drink_variety__switchel + - vinegar_drink_variety__vinegar_tonic +- id: 1484 + name: Flour/Grain type + friendly_id: flour_grain_type + values: + - flour_grain_type__barley + - flour_grain_type__multigrain + - flour_grain_type__oats + - flour_grain_type__rice + - flour_grain_type__other + - flour_grain_type__buckwheat + - flour_grain_type__corn + - flour_grain_type__nuts + - flour_grain_type__quinoa + - flour_grain_type__rye + - flour_grain_type__sorghum + - flour_grain_type__spelt + - flour_grain_type__triticale + - flour_grain_type__wheat +- id: 1485 + name: Heat level + friendly_id: heat_level + values: + - heat_level__mild + - heat_level__medium + - heat_level__hot + - heat_level__very_hot + - heat_level__extremely_hot +- id: 1486 + name: Baking purpose + friendly_id: baking_purpose + values: + - baking_purpose__biscuits + - baking_purpose__bread + - baking_purpose__brownies + - baking_purpose__carrot_cake + - baking_purpose__cheesecake + - baking_purpose__chocolate_cake + - baking_purpose__cookies + - baking_purpose__crme_brle + - baking_purpose__crumble + - baking_purpose__gingerbread + - baking_purpose__macaroons + - baking_purpose__meringue + - baking_purpose__muesli_bars + - baking_purpose__muffins + - baking_purpose__pancakes + - baking_purpose__pie_crust + - baking_purpose__pizza_dough + - baking_purpose__rustic_bread + - baking_purpose__shortbread + - baking_purpose__waffles + - baking_purpose__other +- id: 1487 + name: Cooking wine variety + friendly_id: cooking_wine_variety + values: + - cooking_wine_variety__marsala + - cooking_wine_variety__red + - cooking_wine_variety__rice + - cooking_wine_variety__sherry + - cooking_wine_variety__white +- id: 1488 + name: Gel strength + friendly_id: gel_strength + values: + - gel_strength__high_bloom + - gel_strength__low_bloom + - gel_strength__medium_bloom +- id: 1489 + name: Vinegar variety + friendly_id: vinegar_variety + values: + - vinegar_variety__balsamic + - vinegar_variety__cane + - vinegar_variety__fruit + - vinegar_variety__grains + - vinegar_variety__kombucha + - vinegar_variety__spirits +- id: 1490 + name: Coffee creamer variety + friendly_id: coffee_creamer_variety + values: + - coffee_creamer_variety__liquid + - coffee_creamer_variety__non_dairy + - coffee_creamer_variety__powdered +- id: 1491 + name: Nut butter variety + friendly_id: nut_butter_variety + values: + - nut_butter_variety__almond + - nut_butter_variety__brazil_nut + - nut_butter_variety__cashew + - nut_butter_variety__hazelnut + - nut_butter_variety__macadamia_nut + - nut_butter_variety__peanut + - nut_butter_variety__pecan + - nut_butter_variety__pistachio + - nut_butter_variety__walnut +- id: 1492 + name: Dry bean variety + friendly_id: dry_bean_variety + values: + - dry_bean_variety__black_beans + - dry_bean_variety__brown_lentils + - dry_bean_variety__butter_beans + - dry_bean_variety__cannellini_beans + - dry_bean_variety__chickpeas + - dry_bean_variety__green_lentils + - dry_bean_variety__green_split_peas + - dry_bean_variety__kidney_beans + - dry_bean_variety__pinto_beans + - dry_bean_variety__red_lentils + - dry_bean_variety__soybeans + - dry_bean_variety__yellow_lentils + - dry_bean_variety__yellow_split_peas +- id: 1493 + name: Cooking method + friendly_id: cooking_method + values: + - cooking_method__baking + - cooking_method__barbecuing + - cooking_method__boiling + - cooking_method__braising + - cooking_method__broiling + - cooking_method__deep_frying + - cooking_method__frying + - cooking_method__grilling + - cooking_method__microwaving + - cooking_method__pan_frying + - cooking_method__poaching + - cooking_method__roasting + - cooking_method__sauting + - cooking_method__steaming + - cooking_method__stewing + - cooking_method__stir_frying +- id: 1494 + name: Canned meat variety + friendly_id: canned_meat_variety + values: + - canned_meat_variety__canned_beef + - canned_meat_variety__canned_chicken + - canned_meat_variety__canned_ham + - canned_meat_variety__canned_meatballs + - canned_meat_variety__canned_meatloaf + - canned_meat_variety__canned_pork + - canned_meat_variety__canned_turkey +- id: 1495 + name: Cuisine + friendly_id: cuisine + values: + - cuisine__balkan + - cuisine__british + - cuisine__cajun + - cuisine__caribbean + - cuisine__central_european + - cuisine__chinese + - cuisine__creole + - cuisine__east_african + - cuisine__eastern_european + - cuisine__french + - cuisine__hawaiian + - cuisine__indian + - cuisine__italian + - cuisine__japanese + - cuisine__korean + - cuisine__latin_american + - cuisine__mediterranean + - cuisine__mexican + - cuisine__middle_eastern + - cuisine__north_african + - cuisine__oceanian + - cuisine__scandinavian + - cuisine__south_african + - cuisine__southeast_asian + - cuisine__southern_united_states + - cuisine__southwestern_united_states + - cuisine__spanish + - cuisine__thai + - cuisine__vietnamese + - cuisine__west_african + - cuisine__other +- id: 1496 + name: Meat cut + friendly_id: meat_cut + values: + - meat_cut__brisket + - meat_cut__burgers + - meat_cut__cheek + - meat_cut__chuck + - meat_cut__flank + - meat_cut__forequarter + - meat_cut__ground + - meat_cut__heart + - meat_cut__kidney + - meat_cut__liver + - meat_cut__oxtail + - meat_cut__ribs + - meat_cut__rump + - meat_cut__shank + - meat_cut__short_loin + - meat_cut__short_ribs + - meat_cut__sirloin + - meat_cut__tenderloin + - meat_cut__tongue + - meat_cut__tripe + - meat_cut__other + - meat_cut__backstrap + - meat_cut__front_shoulder + - meat_cut__haunch + - meat_cut__hindquarter + - meat_cut__jerky + - meat_cut__meatballs + - meat_cut__neck + - meat_cut__saddle + - meat_cut__sausages + - meat_cut__stew_meat + - meat_cut__chops + - meat_cut__legs + - meat_cut__loin + - meat_cut__rack + - meat_cut__shoulder + - meat_cut__sweetbreads + - meat_cut__belly + - meat_cut__blade + - meat_cut__ham + - meat_cut__hock + - meat_cut__jowl + - meat_cut__spareribs + - meat_cut__breasts + - meat_cut__drumsticks + - meat_cut__thighs + - meat_cut__whole + - meat_cut__wings +- id: 1497 + name: Seafood type + friendly_id: seafood_type + values: + - seafood_type__anchovy + - seafood_type__barramundi + - seafood_type__bass + - seafood_type__calamari + - seafood_type__carp + - seafood_type__catfish + - seafood_type__clam + - seafood_type__cod + - seafood_type__crab + - seafood_type__crawfish + - seafood_type__cuttlefish + - seafood_type__eel + - seafood_type__flounder + - seafood_type__grouper + - seafood_type__haddock + - seafood_type__halibut + - seafood_type__herring + - seafood_type__lobster + - seafood_type__mackerel + - seafood_type__mahi_mahi + - seafood_type__mussel + - seafood_type__octopus + - seafood_type__oyster + - seafood_type__perch + - seafood_type__pike + - seafood_type__pollock + - seafood_type__salmon + - seafood_type__sardine + - seafood_type__scallop + - seafood_type__shrimp + - seafood_type__snapper + - seafood_type__sole + - seafood_type__squid + - seafood_type__swordfish + - seafood_type__tilapia + - seafood_type__trout + - seafood_type__tuna + - seafood_type__other +- id: 1498 + name: Pasta type + friendly_id: pasta_type + values: + - pasta_type__angel_hair + - pasta_type__bucatini + - pasta_type__campanelle + - pasta_type__cannelloni + - pasta_type__capellini + - pasta_type__casarecce + - pasta_type__cavatappi + - pasta_type__cazzetti + - pasta_type__conchiglie + - pasta_type__ditalini + - pasta_type__dumplings + - pasta_type__elbow_macaroni + - pasta_type__farfalle + - pasta_type__fettuccine + - pasta_type__fusilli + - pasta_type__gemelli + - pasta_type__gnocchi + - pasta_type__lasagna + - pasta_type__linguine + - pasta_type__macaroni + - pasta_type__manicotti + - pasta_type__mostaccioli + - pasta_type__orecchiette + - pasta_type__orzo + - pasta_type__paccheri + - pasta_type__pappardelle + - pasta_type__penne + - pasta_type__radiatori + - pasta_type__rigatoni + - pasta_type__rotelle + - pasta_type__rotini + - pasta_type__spaghetti + - pasta_type__tagliatelle + - pasta_type__tortellini + - pasta_type__vermicelli + - pasta_type__ziti + - pasta_type__other +- id: 1499 + name: Heating instructions + friendly_id: heating_instructions + values: + - heating_instructions__bain_marie + - heating_instructions__microwave + - heating_instructions__oven + - heating_instructions__hob + - heating_instructions__stovetop +- id: 1500 + name: Meat type + friendly_id: meat_type + values: + - meat_type__beef + - meat_type__bison + - meat_type__chicken + - meat_type__duck + - meat_type__goat + - meat_type__lamb + - meat_type__ostrich + - meat_type__pheasant + - meat_type__plant_based + - meat_type__pork + - meat_type__quail + - meat_type__rabbit + - meat_type__turkey + - meat_type__venison + - meat_type__wild_boar +- id: 1501 + name: Tobacco type + friendly_id: tobacco_type + values: + - tobacco_type__burley + - tobacco_type__cavendish + - tobacco_type__latakia + - tobacco_type__maryland + - tobacco_type__oriental + - tobacco_type__perique + - tobacco_type__turkish + - tobacco_type__virginia +- id: 1502 + name: Cigar body + friendly_id: cigar_body + values: + - cigar_body__full + - cigar_body__medium + - cigar_body__medium_to_full + - cigar_body__mild + - cigar_body__mild_to_medium +- id: 1503 + name: Pipe shape + friendly_id: pipe_shape + values: + - pipe_shape__apple + - pipe_shape__billiard + - pipe_shape__blowfish + - pipe_shape__bulldog + - pipe_shape__calabash + - pipe_shape__canadian + - pipe_shape__cavalier + - pipe_shape__chimneys + - pipe_shape__churchwarden + - pipe_shape__cutty + - pipe_shape__dublin + - pipe_shape__egg + - pipe_shape__freehand + - pipe_shape__gourd_calabash + - pipe_shape__lovat + - pipe_shape__panel + - pipe_shape__pear + - pipe_shape__poker + - pipe_shape__prince + - pipe_shape__tomato + - pipe_shape__volcano + - pipe_shape__other +- id: 1506 + name: E-liquid flavor + friendly_id: e_liquid_flavor + values: + - e_liquid_flavor__apple + - e_liquid_flavor__blueberry + - e_liquid_flavor__bubblegum + - e_liquid_flavor__caramel + - e_liquid_flavor__cereal + - e_liquid_flavor__chocolate + - e_liquid_flavor__cinnamon + - e_liquid_flavor__coconut + - e_liquid_flavor__coffee + - e_liquid_flavor__cola + - e_liquid_flavor__cotton_candy + - e_liquid_flavor__mango + - e_liquid_flavor__menthol + - e_liquid_flavor__mint + - e_liquid_flavor__orange + - e_liquid_flavor__pineapple + - e_liquid_flavor__raspberry + - e_liquid_flavor__strawberry + - e_liquid_flavor__tobacco + - e_liquid_flavor__vanilla + - e_liquid_flavor__watermelon + - e_liquid_flavor__other +- id: 1507 + name: E-liquid variety + friendly_id: e_liquid_variety + values: + - e_liquid_variety__freebase_nicotine + - e_liquid_variety__nicotine_salt + - e_liquid_variety__nicotine_shot + - e_liquid_variety__regular + - e_liquid_variety__short_fill + - e_liquid_variety__zero_nicotine +- id: 1508 + name: Nut processing method + friendly_id: nut_processing_method + values: + - nut_processing_method__candied + - nut_processing_method__raw + - nut_processing_method__roasted + - nut_processing_method__salted +- id: 1509 + name: Coil connection + friendly_id: coil_connection + values: + - coil_connection__changeable + - coil_connection__fixed +- id: 1510 + name: E-cigarette/Vaporizer style + friendly_id: e_cigarette_vaporizer_style + values: + - e_cigarette_vaporizer_style__cigalike + - e_cigarette_vaporizer_style__box_mod + - e_cigarette_vaporizer_style__disposable + - e_cigarette_vaporizer_style__mod + - e_cigarette_vaporizer_style__pen + - e_cigarette_vaporizer_style__pod + - e_cigarette_vaporizer_style__pod_mod + - e_cigarette_vaporizer_style__stick +- id: 1511 + name: Vaping style + friendly_id: vaping_style + values: + - vaping_style__direct_to_lung_dtl + - vaping_style__mouth_to_lung_mtl + - vaping_style__restricted_direct_to_lung_rdtl +- id: 1512 + name: VG/PG ratio + friendly_id: vg_pg_ratio + values: + - vg_pg_ratio__3070 + - vg_pg_ratio__4060 + - vg_pg_ratio__4555 + - vg_pg_ratio__5050 + - vg_pg_ratio__6040 + - vg_pg_ratio__6535 + - vg_pg_ratio__7030 + - vg_pg_ratio__7525 + - vg_pg_ratio__8020 + - vg_pg_ratio__9010 + - vg_pg_ratio__10000 +- id: 1513 + name: Compatible mattress size + friendly_id: compatible_mattress_size + values_from: bedding_size +- id: 1514 + name: Firmness + friendly_id: firmness + values: + - firmness__soft + - firmness__medium + - firmness__firm + - firmness__extra_firm + - firmness__extra_soft + - firmness__medium_firm + - firmness__medium_soft +- id: 1515 + name: Slat material + friendly_id: slat_material + values: + - slat_material__beech_wood + - slat_material__medium_density_fiberboard_mdf + - slat_material__metal + - slat_material__oak_wood + - slat_material__pine_wood + - slat_material__plywood + - slat_material__spruce_wood + - slat_material__wood +- id: 1516 + name: Seat color + friendly_id: seat_color + values_from: color +- id: 1518 + name: Seat type + friendly_id: seat_type + values: + - seat_type__padded + - seat_type__hard + - seat_type__upholstered_strap + - seat_type__upholstered_padded + - seat_type__strap + - seat_type__mesh + - seat_type__upholstered + - seat_type__air_filled + - seat_type__nest + - seat_type__swing_bag + - seat_type__bucket_cradle + - seat_type__flat +- id: 1519 + name: Door color + friendly_id: door_color + values_from: color +- id: 1520 + name: Door material + friendly_id: door_material + values: + - door_material__alder_wood + - door_material__aluminum + - door_material__beech_wood + - door_material__cherry_wood + - door_material__composite + - door_material__fiberglass + - door_material__glass + - door_material__high_density_fiberboard_hdf + - door_material__iron + - door_material__mahogany + - door_material__maple_wood + - door_material__medium_density_fiberboard_mdf + - door_material__metal + - door_material__oak_wood + - door_material__particle_board + - door_material__pine_wood + - door_material__plastic + - door_material__plywood + - door_material__polyurethane_pu + - door_material__polyvinyl_chloride_pvc + - door_material__poplar_wood + - door_material__stainless_steel + - door_material__steel + - door_material__vinyl + - door_material__walnut_wood + - door_material__wood + - door_material__other +- id: 1521 + name: Door type + friendly_id: door_type + values: + - door_type__hinged + - door_type__sliding +- id: 1522 + name: Top color + friendly_id: top_color + values_from: color +- id: 1523 + name: Top material + friendly_id: top_material + values_from: furniture_fixture_material +- id: 1524 + name: Leg color + friendly_id: leg_color + values_from: color +- id: 1525 + name: Leg material + friendly_id: leg_material + values_from: furniture_fixture_material +- id: 1526 + name: Wine rack design + friendly_id: wine_rack_design + values: + - wine_rack_design__modern + - wine_rack_design__decorative + - wine_rack_design__traditional + - wine_rack_design__utility +- id: 1527 + name: Backrest type + friendly_id: backrest_type + values: + - backrest_type__padded + - backrest_type__hard + - backrest_type__upholstered_strap + - backrest_type__strap + - backrest_type__mesh + - backrest_type__upholstered + - backrest_type__upholstered_padded +- id: 1528 + name: Massage technique + friendly_id: massage_technique + values: + - massage_technique__clapping + - massage_technique__foot_reflex_zone + - massage_technique__kneading + - massage_technique__rolling + - massage_technique__shiatsu + - massage_technique__swedish + - massage_technique__tapping + - massage_technique__combo + - massage_technique__wavelet + - massage_technique__pummeling + - massage_technique__beat + - massage_technique__compression + - massage_technique__percussive + - massage_technique__deep_tissue +- id: 1529 + name: Treatment area + friendly_id: treatment_area + values_from: body_area +- id: 1530 + name: Hanging chair design + friendly_id: hanging_chair_design + values: + - hanging_chair_design__with_stand + - hanging_chair_design__without_stand +- id: 1531 + name: Back type + friendly_id: back_type + values: + - back_type__backless + - back_type__full_back + - back_type__low_back +- id: 1532 + name: Tabletop shape + friendly_id: tabletop_shape + values_from: shape +- id: 1533 + name: Seat pattern + friendly_id: seat_pattern + values_from: pattern +- id: 1534 + name: Tabletop color + friendly_id: tabletop_color + values_from: color +- id: 1535 + name: Tabletop material + friendly_id: tabletop_material + values_from: furniture_fixture_material +- id: 1536 + name: Tabletop pattern + friendly_id: tabletop_pattern + values_from: pattern +- id: 1537 + name: Seat structure + friendly_id: seat_structure + values: + - seat_structure__wicker + - seat_structure__solid + - seat_structure__grid +- id: 1538 + name: Suitable for storage type + friendly_id: suitable_for_storage_type + values: + - suitable_for_storage_type__bicycle + - suitable_for_storage_type__cushions + - suitable_for_storage_type__garbage + - suitable_for_storage_type__garden_tools +- id: 1539 + name: Suitable location + friendly_id: suitable_location + values: + - suitable_location__balcony + - suitable_location__bathroom + - suitable_location__bedroom + - suitable_location__childrens_room + - suitable_location__corridor + - suitable_location__courtyard + - suitable_location__dining_room + - suitable_location__entrance + - suitable_location__garage + - suitable_location__garden + - suitable_location__hallway + - suitable_location__kitchen + - suitable_location__laundry_room + - suitable_location__living_room + - suitable_location__patio + - suitable_location__porch + - suitable_location__storage_room + - suitable_location__toilet + - suitable_location__other +- id: 1540 + name: Backrest upholstery material + friendly_id: backrest_upholstery_material + values_from: upholstery_material +- id: 1541 + name: Seat upholstery material + friendly_id: seat_upholstery_material + values_from: upholstery_material +- id: 1542 + name: Leg pattern + friendly_id: leg_pattern + values_from: pattern +- id: 1543 + name: Acupuncture model format + friendly_id: acupuncture_model_format + values: + - acupuncture_model_format__miniature + - acupuncture_model_format__life_size + - acupuncture_model_format__desktop +- id: 1544 + name: Acupuncture model type + friendly_id: acupuncture_model_type + values: + - acupuncture_model_type__animal + - acupuncture_model_type__back + - acupuncture_model_type__ear + - acupuncture_model_type__foot + - acupuncture_model_type__hand + - acupuncture_model_type__head + - acupuncture_model_type__human_body +- id: 1545 + name: Needle material + friendly_id: needle_material + values: + - needle_material__gold + - needle_material__nickel + - needle_material__silver_plated + - needle_material__stainless_steel + - needle_material__titanium +- id: 1546 + name: Bed pan type + friendly_id: bed_pan_type + values: + - bed_pan_type__bariatric + - bed_pan_type__fracture_bed_pan + - bed_pan_type__standard +- id: 1547 + name: Activity tracker design + friendly_id: activity_tracker_design + values: + - activity_tracker_design__armband + - activity_tracker_design__clip_on + - activity_tracker_design__waist_belt + - activity_tracker_design__wristband +- id: 1548 + name: Compatible operating system + friendly_id: compatible_operating_system + values_from: operating_system +- id: 1549 + name: Tracking metrics + friendly_id: tracking_metrics + values: + - tracking_metrics__blood_pressure + - tracking_metrics__body_fat + - tracking_metrics__calories + - tracking_metrics__distance_traveled + - tracking_metrics__heart_rate + - tracking_metrics__sleep + - tracking_metrics__steps +- id: 1550 + name: Measuring method + friendly_id: measuring_method + values: + - measuring_method__bia + - measuring_method__calipers + - measuring_method__optical +- id: 1551 + name: Metrics supported + friendly_id: metrics_supported + values: + - metrics_supported__body_fat_percentage + - metrics_supported__body_water_percentage + - metrics_supported__bone_mass + - metrics_supported__muscle_mass +- id: 1552 + name: Weight unit supported + friendly_id: weight_unit_supported + values: + - weight_unit_supported__pounds_lbs + - weight_unit_supported__kilograms_kg + - weight_unit_supported__stones_st +- id: 1553 + name: Test format + friendly_id: test_format + values: + - test_format__app_based + - test_format__digital + - test_format__midstream + - test_format__monitor + - test_format__test_strip + - test_format__test_cassette + - test_format__test_cup +- id: 1554 + name: Measuring type + friendly_id: measuring_type + values: + - measuring_type__ear + - measuring_type__oral + - measuring_type__rectal + - measuring_type__underarm + - measuring_type__forehead + - measuring_type__universal + - measuring_type__breast + - measuring_type__clothes + - measuring_type__finger + - measuring_type__wrist +- id: 1555 + name: Temperature measurement + friendly_id: temperature_measurement + values: + - temperature_measurement__celsius_c + - temperature_measurement__fahrenheit_f +- id: 1556 + name: Test sample + friendly_id: test_sample + values: + - test_sample__contact_thermometer + - test_sample__remote_sensing_thermometer + - test_sample__blood + - test_sample__breath + - test_sample__saliva + - test_sample__stool_test + - test_sample__swab + - test_sample__urine + - test_sample__stool +- id: 1557 + name: Condom type + friendly_id: condom_type + values: + - condom_type__male + - condom_type__female +- id: 1558 + name: Texture + friendly_id: texture + values: + - texture__creamy + - texture__lightweight + - texture__smooth + - texture__absorbent + - texture__cushiony + - texture__non_greasy + - texture__silky + - texture__soft + - texture__velvety + - texture__butter_like + - texture__heavyweight +- id: 1559 + name: Suitable for skin type + friendly_id: suitable_for_skin_type + values: + - suitable_for_skin_type__all_skin_types + - suitable_for_skin_type__normal + - suitable_for_skin_type__sensitive + - suitable_for_skin_type__aging + - suitable_for_skin_type__combination + - suitable_for_skin_type__demanding + - suitable_for_skin_type__dry + - suitable_for_skin_type__mature + - suitable_for_skin_type__oily + - suitable_for_skin_type__problem + - suitable_for_skin_type__rough + - suitable_for_skin_type__universal + - suitable_for_skin_type__very_dry + - suitable_for_skin_type__wet + - suitable_for_skin_type__with_redness +- id: 1560 + name: Application area + friendly_id: application_area + values_from: body_area +- id: 1562 + name: First aid kit usage + friendly_id: first_aid_kit_usage + values: + - first_aid_kit_usage__bicycle + - first_aid_kit_usage__car + - first_aid_kit_usage__home + - first_aid_kit_usage__industrial + - first_aid_kit_usage__pets + - first_aid_kit_usage__sport + - first_aid_kit_usage__travel +- id: 1563 + name: Body area + friendly_id: body_area + values: + - body_area__arms + - body_area__back + - body_area__buttocks + - body_area__calves + - body_area__feet + - body_area__lumbar_region + - body_area__neck + - body_area__shoulders + - body_area__thighs + - body_area__waist + - body_area__abdomen + - body_area__chest + - body_area__eyes + - body_area__hips + - body_area__legs + - body_area__lips + - body_area__knees + - body_area__wrists + - body_area__other + - body_area__face + - body_area__hands + - body_area__heels + - body_area__soles + - body_area__toes + - body_area__full_body + - body_area__hamstrings + - body_area__head + - body_area__bikini_line +- id: 1564 + name: Treatment objective + friendly_id: treatment_objective + values: + - treatment_objective__muscle_pain + - treatment_objective__joint_pain + - treatment_objective__swelling + - treatment_objective__fever + - treatment_objective__ear_cleaning + - treatment_objective__earwax_removal + - treatment_objective__ear_infection_relief + - treatment_objective__constipation_relief + - treatment_objective__bowel_cleansing + - treatment_objective__preparation_for_a_medical_procedure + - treatment_objective__vaginal_ph_balancing + - treatment_objective__relieving_irritation + - treatment_objective__hydration + - treatment_objective__comfort + - treatment_objective__pain_relief + - treatment_objective__support + - treatment_objective__obstructive_sleep_apnea + - treatment_objective__snoring +- id: 1565 + name: Ice pack type + friendly_id: ice_pack_type + values: + - ice_pack_type__bead_pack + - ice_pack_type__clay_pack + - ice_pack_type__flexible_ice_blanket + - ice_pack_type__foam_pack + - ice_pack_type__gel_pack + - ice_pack_type__ice_bag + - ice_pack_type__instant_chemical_based +- id: 1566 + name: Product sterility + friendly_id: product_sterility + values: + - product_sterility__non_sterile + - product_sterility__sterile +- id: 1567 + name: Dietary use + friendly_id: dietary_use + values: + - dietary_use__energy + - dietary_use__meal_replacement + - dietary_use__weight_loss + - dietary_use__muscle_building + - dietary_use__high_protein + - dietary_use__endurance + - dietary_use__low_carb + - dietary_use__high_fiber + - dietary_use__recovery + - dietary_use__performance + - dietary_use__snacking + - dietary_use__balanced_nutrition + - dietary_use__weight_gain + - dietary_use__calorie_control + - dietary_use__blood_sugar_control +- id: 1568 + name: Texture level + friendly_id: texture_level + values: + - texture_level__level_1_pured + - texture_level__level_2_minced + - texture_level__level_3_soft_or_bite_sized_foods +- id: 1569 + name: Ingredient category + friendly_id: ingredient_category + values: + - ingredient_category__fatty_acids + - ingredient_category__fiber + - ingredient_category__minerals + - ingredient_category__protein + - ingredient_category__vitamins + - ingredient_category__amino_acids + - ingredient_category__animal_derived + - ingredient_category__antioxidants + - ingredient_category__artificial_ingredients + - ingredient_category__botanicals + - ingredient_category__dairy_based + - ingredient_category__enzymes + - ingredient_category__fruit_extracts + - ingredient_category__herbs + - ingredient_category__mushroom_extracts + - ingredient_category__natural_ingredients + - ingredient_category__omega_fatty_acids + - ingredient_category__organic + - ingredient_category__plant_based + - ingredient_category__probiotics + - ingredient_category__synthetic + - ingredient_category__vegetable_extracts + - ingredient_category__other +- id: 1570 + name: Detailed ingredients + friendly_id: detailed_ingredients + values: + - detailed_ingredients__l_carnitine + - detailed_ingredients__l_cysteine + - detailed_ingredients__l_glutamine + - detailed_ingredients__l_valine + - detailed_ingredients__omega_fatty_acids + - detailed_ingredients__taurine + - detailed_ingredients__vitamin_b5 + - detailed_ingredients__other + - detailed_ingredients__collagen + - detailed_ingredients__inulin + - detailed_ingredients__acacia + - detailed_ingredients__acai + - detailed_ingredients__aloe + - detailed_ingredients__animal_protein + - detailed_ingredients__arnica + - detailed_ingredients__artichoke + - detailed_ingredients__calcium + - detailed_ingredients__chamomile + - detailed_ingredients__chlorophyll + - detailed_ingredients__cinnamon + - detailed_ingredients__creatine + - detailed_ingredients__curcumin + - detailed_ingredients__echinacea + - detailed_ingredients__egg_protein + - detailed_ingredients__flaxseed + - detailed_ingredients__ginger + - detailed_ingredients__ginseng + - detailed_ingredients__green_tea + - detailed_ingredients__guarana + - detailed_ingredients__hemp + - detailed_ingredients__honey + - detailed_ingredients__iodine + - detailed_ingredients__iron + - detailed_ingredients__lavender + - detailed_ingredients__lecithin + - detailed_ingredients__magnesium + - detailed_ingredients__manganese + - detailed_ingredients__matcha + - detailed_ingredients__milk_protein + - detailed_ingredients__moringa + - detailed_ingredients__olive_oil + - detailed_ingredients__phosphorus + - detailed_ingredients__plant_based_protein + - detailed_ingredients__potassium + - detailed_ingredients__propolis + - detailed_ingredients__rosehip + - detailed_ingredients__rosemary + - detailed_ingredients__royal_jelly + - detailed_ingredients__selenium + - detailed_ingredients__sodium + - detailed_ingredients__soy_protein + - detailed_ingredients__spirulina + - detailed_ingredients__stevia + - detailed_ingredients__tapioca + - detailed_ingredients__trace_minerals + - detailed_ingredients__vitamin_a + - detailed_ingredients__vitamin_b + - detailed_ingredients__vitamin_b1 + - detailed_ingredients__vitamin_b12 + - detailed_ingredients__vitamin_b2 + - detailed_ingredients__vitamin_b3 + - detailed_ingredients__vitamin_b6 + - detailed_ingredients__vitamin_b7 + - detailed_ingredients__vitamin_b9_folic_acid + - detailed_ingredients__vitamin_c + - detailed_ingredients__vitamin_d + - detailed_ingredients__vitamin_d3 + - detailed_ingredients__vitamin_e + - detailed_ingredients__vitamin_k + - detailed_ingredients__vitamin_k1 + - detailed_ingredients__vitamin_k2 + - detailed_ingredients__vitamin_k3 + - detailed_ingredients__whey_protein + - detailed_ingredients__yeast + - detailed_ingredients__zinc + - detailed_ingredients__bacillus_subtilis + - detailed_ingredients__bacillus_coagulans + - detailed_ingredients__bifidobacterium_bifidum + - detailed_ingredients__lacticaseibacillus_rhamnosus + - detailed_ingredients__lactobacillus_acidophilus + - detailed_ingredients__lacticaseibacillus_casei + - detailed_ingredients__mannan_oligosaccharide_mos + - detailed_ingredients__fructooligosaccharides_fos + - detailed_ingredients__natural_flavors + - detailed_ingredients__almond_oil + - detailed_ingredients__argan_oil + - detailed_ingredients__beeswax + - detailed_ingredients__coconut_oil + - detailed_ingredients__glycerin + - detailed_ingredients__hyaluronic_acid + - detailed_ingredients__jojoba_oil + - detailed_ingredients__keratin + - detailed_ingredients__lanolin + - detailed_ingredients__lemongrass_oil + - detailed_ingredients__peppermint_oil + - detailed_ingredients__salicylic_acid + - detailed_ingredients__shea_butter + - detailed_ingredients__sunflower_seed_oil + - detailed_ingredients__tea_tree_oil +- id: 1571 + name: Battery type + friendly_id: battery_type + values: + - battery_type__rechargeable + - battery_type__disposable +- id: 1572 + name: Technology level + friendly_id: technology_level + values: + - technology_level__basic + - technology_level__intermediate + - technology_level__advanced + - technology_level__premium +- id: 1573 + name: Diaper type + friendly_id: diaper_type + values: + - diaper_type__pull_ups + - diaper_type__diapers + - diaper_type__pads +- id: 1574 + name: Light spectrum + friendly_id: light_spectrum + values: + - light_spectrum__adjustable_light_spectrum + - light_spectrum__blue_light + - light_spectrum__full_spectrum + - light_spectrum__green_light + - light_spectrum__infrared_light + - light_spectrum__multi_spectrum + - light_spectrum__near_infrared_light_nir + - light_spectrum__red_light + - light_spectrum__uv_light + - light_spectrum__white_light +- id: 1575 + name: System range + friendly_id: system_range + values: + - system_range__home_based + - system_range__on_the_go_gps +- id: 1576 + name: Test method + friendly_id: test_method + values: + - test_method__at_home_test_self_administered + - test_method__lab_analysis + - test_method__point_of_care_test + - test_method__rdt +- id: 1577 + name: Allergen test type + friendly_id: allergen_test_type + values: + - allergen_test_type__bugs + - allergen_test_type__food + - allergen_test_type__environmental + - allergen_test_type__pets +- id: 1578 + name: Blood test kit components + friendly_id: blood_test_kit_components + values: + - blood_test_kit_components__adhesive_bandages + - blood_test_kit_components__alcohol_prep_pads + - blood_test_kit_components__blood_collection_pipettes + - blood_test_kit_components__disposable_gloves + - blood_test_kit_components__gauze_pads + - blood_test_kit_components__sample_collection_bag + - blood_test_kit_components__sterile_lancets + - blood_test_kit_components__test_strip + - blood_test_kit_components__test_tube +- id: 1579 + name: Detectable drugs + friendly_id: detectable_drugs + values: + - detectable_drugs__amphetamine + - detectable_drugs__barbiturates + - detectable_drugs__benzodiazepines + - detectable_drugs__buprenorphine + - detectable_drugs__ecstasy + - detectable_drugs__marijuana + - detectable_drugs__methadone + - detectable_drugs__methamphetamine + - detectable_drugs__opiates + - detectable_drugs__oxycodone + - detectable_drugs__phencyclidine +- id: 1580 + name: Pregnancy test sensitivity + friendly_id: pregnancy_test_sensitivity + values: + - pregnancy_test_sensitivity__early_detection + - pregnancy_test_sensitivity__standard_detection +- id: 1581 + name: Result display + friendly_id: result_display + values: + - result_display__digital + - result_display__line_based + - result_display__plus_minus_symbol +- id: 1582 + name: Mobility scooter type + friendly_id: mobility_scooter_type + values: + - mobility_scooter_type__3_wheel + - mobility_scooter_type__4_wheel + - mobility_scooter_type__folding_portable + - mobility_scooter_type__heavy_duty_bariatric + - mobility_scooter_type__travel +- id: 1583 + name: Stair lifts control type + friendly_id: stair_lifts_control_type + values: + - stair_lifts_control_type__handheld_remote + - stair_lifts_control_type__wall_mounted_switch +- id: 1584 + name: Stair lifts safety features + friendly_id: stair_lifts_safety_features + values: + - stair_lifts_safety_features__emergency_stop + - stair_lifts_safety_features__obstacle_sensors + - stair_lifts_safety_features__seat_belt +- id: 1585 + name: Staircase type + friendly_id: staircase_type + values: + - staircase_type__curved + - staircase_type__multi_level + - staircase_type__outdoor + - staircase_type__straight +- id: 1586 + name: Transfer boards surface type + friendly_id: transfer_boards_surface_type + values: + - transfer_boards_surface_type__non_slip + - transfer_boards_surface_type__padded + - transfer_boards_surface_type__smooth +- id: 1587 + name: Wheelchair type + friendly_id: wheelchair_type + values: + - wheelchair_type__manual + - wheelchair_type__electric + - wheelchair_type__lightweight + - wheelchair_type__folding + - wheelchair_type__transport + - wheelchair_type__pediatric + - wheelchair_type__bariatric + - wheelchair_type__reclining +- id: 1588 + name: Compatible walking aid equipment + friendly_id: compatible_walking_aid_equipment + values: + - compatible_walking_aid_equipment__canes_walking_sticks + - compatible_walking_aid_equipment__crutches + - compatible_walking_aid_equipment__walkers +- id: 1589 + name: Crutch type + friendly_id: crutch_type + values: + - crutch_type__forearm_elbow + - crutch_type__platform + - crutch_type__underarm_axillary +- id: 1590 + name: Muscle estimulator design + friendly_id: muscle_estimulator_design + values: + - muscle_estimulator_design__belt + - muscle_estimulator_design__arm_band + - muscle_estimulator_design__leg_band + - muscle_estimulator_design__sticker_plate + - muscle_estimulator_design__electrodes_unit +- id: 1591 + name: Nebulizer technology + friendly_id: nebulizer_technology + values: + - nebulizer_technology__jet + - nebulizer_technology__mesh + - nebulizer_technology__piston + - nebulizer_technology__ultrasonic + - nebulizer_technology__vmt +- id: 1592 + name: Product design + friendly_id: product_design + values: + - product_design__tabletop + - product_design__handheld +- id: 1593 + name: Oxygen tank valve type + friendly_id: oxygen_tank_valve_type + values: + - oxygen_tank_valve_type__post_valve + - oxygen_tank_valve_type__toggle + - oxygen_tank_valve_type__z_valve +- id: 1594 + name: Mask type + friendly_id: mask_type + values: + - mask_type__full_face + - mask_type__nasal + - mask_type__nasal_pillow + - mask_type__oral +- id: 1595 + name: Compression level + friendly_id: compression_level + values: + - compression_level__extra_firm + - compression_level__firm + - compression_level__light + - compression_level__moderate +- id: 1597 + name: Handle type + friendly_id: handle_type + values: + - handle_type__long + - handle_type__no_handle + - handle_type__short +- id: 1598 + name: Active ingredient + friendly_id: active_ingredient + values: + - active_ingredient__alcohol + - active_ingredient__other + - active_ingredient__benzoyl_peroxide + - active_ingredient__glycolic_acid + - active_ingredient__retinol + - active_ingredient__salicylic_acid + - active_ingredient__hyaluronic_acid + - active_ingredient__niacinamide + - active_ingredient__peptides + - active_ingredient__vitamin_c + - active_ingredient__argan_oil + - active_ingredient__calendula_oil + - active_ingredient__coconut_oil + - active_ingredient__jojoba_oil + - active_ingredient__lavender_oil + - active_ingredient__moroccan_argan_oil + - active_ingredient__sea_buckthorn_oil + - active_ingredient__sweet_almond_oil + - active_ingredient__vitamin_a + - active_ingredient__vitamin_e + - active_ingredient__aloe_vera + - active_ingredient__cocoa_butter + - active_ingredient__filaggrin_technology + - active_ingredient__zinc_coceth_sulfate + - active_ingredient__charcoal + - active_ingredient__witch_hazel + - active_ingredient__beeswax + - active_ingredient__menthol + - active_ingredient__aluminum_sulfate + - active_ingredient__potassium_alum +- id: 1599 + name: Solubility + friendly_id: solubility + values: + - solubility__insoluble + - solubility__partially_soluble + - solubility__water_soluble +- id: 1600 + name: Compatible cosmetic tools + friendly_id: compatible_cosmetic_tools + values: + - compatible_cosmetic_tools__beauty_tool_containers + - compatible_cosmetic_tools__eyebrow_trimmers + - compatible_cosmetic_tools__eyelash_curlers + - compatible_cosmetic_tools__makeup_brushes + - compatible_cosmetic_tools__makeup_mixing_palettes + - compatible_cosmetic_tools__powder_puffs + - compatible_cosmetic_tools__silicone_applicators + - compatible_cosmetic_tools__spatula + - compatible_cosmetic_tools__sponges + - compatible_cosmetic_tools__tweezers +- id: 1601 + name: Drying speed + friendly_id: drying_speed + values: + - drying_speed__slow_drying + - drying_speed__regular + - drying_speed__fast_drying +- id: 1602 + name: Eyelash applicator design + friendly_id: eyelash_applicator_design + values: + - eyelash_applicator_design__curved + - eyelash_applicator_design__straight + - eyelash_applicator_design__tweezer_style + - eyelash_applicator_design__scissor_style +- id: 1603 + name: Bristle shape + friendly_id: bristle_shape + values: + - bristle_shape__flat + - bristle_shape__rounded + - bristle_shape__angled + - bristle_shape__tapered +- id: 1604 + name: Sponge shape + friendly_id: sponge_shape + values: + - sponge_shape__contoured + - sponge_shape__flat_edged + - sponge_shape__rounded + - sponge_shape__teardrop + - sponge_shape__other +- id: 1605 + name: Compatible makeup + friendly_id: compatible_makeup + values: + - compatible_makeup__blush + - compatible_makeup__eyeshadow + - compatible_makeup__lipstick + - compatible_makeup__powder +- id: 1606 + name: Tip style + friendly_id: tip_style + values: + - tip_style__flat + - tip_style__curved + - tip_style__angled + - tip_style__pointed +- id: 1607 + name: Toe spacer design + friendly_id: toe_spacer_design + values: + - toe_spacer_design__contoured + - toe_spacer_design__loop_design + - toe_spacer_design__traditional_toe_separator +- id: 1608 + name: Pad type + friendly_id: pad_type + values: + - pad_type__machine_washable + - pad_type__removable + - pad_type__replaceable +- id: 1609 + name: Extractor tip style + friendly_id: extractor_tip_style + values: + - extractor_tip_style__loop + - extractor_tip_style__lancet + - extractor_tip_style__needle + - extractor_tip_style__scoop +- id: 1610 + name: Roller head + friendly_id: roller_head + values: + - roller_head__dual + - roller_head__single +- id: 1611 + name: Roller material + friendly_id: roller_material + values: + - roller_material__glass + - roller_material__jade + - roller_material__quartz + - roller_material__metal + - roller_material__plastic + - roller_material__silicone + - roller_material__stainless_steel +- id: 1612 + name: Roller type + friendly_id: roller_type + values: + - roller_type__ice + - roller_type__jade + - roller_type__microneedle + - roller_type__quartz +- id: 1613 + name: Brush head usage + friendly_id: brush_head_usage + values: + - brush_head_usage__daily_cleansing + - brush_head_usage__deep_cleansing + - brush_head_usage__exfoliation + - brush_head_usage__sensitive_skin +- id: 1614 + name: Cosmetic finish + friendly_id: cosmetic_finish + values: + - cosmetic_finish__matte + - cosmetic_finish__metallic + - cosmetic_finish__neon + - cosmetic_finish__satin + - cosmetic_finish__dewy + - cosmetic_finish__other + - cosmetic_finish__glitter + - cosmetic_finish__glossy + - cosmetic_finish__luminous + - cosmetic_finish__pearlescent + - cosmetic_finish__shimmer + - cosmetic_finish__radiant + - cosmetic_finish__opaque + - cosmetic_finish__satin_matte + - cosmetic_finish__sheer + - cosmetic_finish__sparkly + - cosmetic_finish__smooth + - cosmetic_finish__natural + - cosmetic_finish__shine_free + - cosmetic_finish__velvet + - cosmetic_finish__semi_matte + - cosmetic_finish__velvet_matte + - cosmetic_finish__embossed + - cosmetic_finish__soft_focus + - cosmetic_finish__holographic +- id: 1615 + name: Skin tone + friendly_id: skin_tone + values: + - skin_tone__fair_skin + - skin_tone__light_skin + - skin_tone__medium_skin + - skin_tone__deep_skin + - skin_tone__sand_skin + - skin_tone__cafe_skin + - skin_tone__nude_skin + - skin_tone__dark_skin + - skin_tone__tanned_skin + - skin_tone__all_skin_tones +- id: 1616 + name: Skin undertone + friendly_id: skin_undertone + values: + - skin_undertone__cool + - skin_undertone__neutral + - skin_undertone__warm + - skin_undertone__neutral_warm + - skin_undertone__neutral_warm_pink + - skin_undertone__cool_pink + - skin_undertone__warm_yellow + - skin_undertone__yellow + - skin_undertone__olive_yellow + - skin_undertone__red_yellow + - skin_undertone__pink_yellow + - skin_undertone__brown_red_yellow + - skin_undertone__gold + - skin_undertone__rose +- id: 1617 + name: Skin care effect + friendly_id: skin_care_effect + values: + - skin_care_effect__anti_aging + - skin_care_effect__anti_wrinkle + - skin_care_effect__smoothing + - skin_care_effect__hydrating + - skin_care_effect__plumping + - skin_care_effect__other + - skin_care_effect__pore_shrinking + - skin_care_effect__anti_fatigue + - skin_care_effect__brightening + - skin_care_effect__tightening + - skin_care_effect__mattifying + - skin_care_effect__moisturizing + - skin_care_effect__lifting + - skin_care_effect__protection + - skin_care_effect__priming + - skin_care_effect__leveling + - skin_care_effect__pore_refining + - skin_care_effect__anti_shine + - skin_care_effect__calming + - skin_care_effect__nourishing + - skin_care_effect__soothing + - skin_care_effect__anti_redness + - skin_care_effect__anti_acne + - skin_care_effect__anti_bacterial + - skin_care_effect__anti_blackhead + - skin_care_effect__anti_blemish + - skin_care_effect__anti_cellulite + - skin_care_effect__anti_dark_circle + - skin_care_effect__anti_dark_spot + - skin_care_effect__anti_drying + - skin_care_effect__anti_dullness + - skin_care_effect__anti_imperfections + - skin_care_effect__anti_irritation + - skin_care_effect__anti_itching + - skin_care_effect__anti_keratin + - skin_care_effect__anti_particles + - skin_care_effect__anti_perleche + - skin_care_effect__anti_pimple + - skin_care_effect__anti_puffiness + - skin_care_effect__anti_rubbing + - skin_care_effect__anti_scars + - skin_care_effect__anti_stress + - skin_care_effect__anti_stretch_mark + - skin_care_effect__bronzing + - skin_care_effect__clarity + - skin_care_effect__cleansing + - skin_care_effect__color_correction + - skin_care_effect__cooling + - skin_care_effect__drying + - skin_care_effect__elasticity + - skin_care_effect__energizing + - skin_care_effect__exfoliating + - skin_care_effect__filler_effect + - skin_care_effect__firming + - skin_care_effect__healing + - skin_care_effect__illuminating + - skin_care_effect__invigorating + - skin_care_effect__keratin_reduction + - skin_care_effect__oxygenating + - skin_care_effect__pore_tightening + - skin_care_effect__prevents_age_spots + - skin_care_effect__prevents_freckles + - skin_care_effect__purifying + - skin_care_effect__rebalancing + - skin_care_effect__refreshing + - skin_care_effect__regenerating + - skin_care_effect__relaxation + - skin_care_effect__repairing + - skin_care_effect__replenishing + - skin_care_effect__revitalizing + - skin_care_effect__reviving + - skin_care_effect__scrub + - skin_care_effect__shimmering + - skin_care_effect__shine + - skin_care_effect__slimming + - skin_care_effect__softening + - skin_care_effect__strengthening + - skin_care_effect__tonifying + - skin_care_effect__treatment + - skin_care_effect__unclogging + - skin_care_effect__warming + - skin_care_effect__whitening +- id: 1618 + name: Eye shadow effect + friendly_id: eye_shadow_effect + values: + - eye_shadow_effect__smoothing + - eye_shadow_effect__metallic + - eye_shadow_effect__smoky + - eye_shadow_effect__glitter + - eye_shadow_effect__nourishing +- id: 1619 + name: Mascara effect + friendly_id: mascara_effect + values: + - mascara_effect__curling + - mascara_effect__coloring + - mascara_effect__definition + - mascara_effect__elasticity + - mascara_effect__glitter + - mascara_effect__highlighting + - mascara_effect__hydration + - mascara_effect__lengthening + - mascara_effect__nourishing + - mascara_effect__plumping + - mascara_effect__precision + - mascara_effect__protection + - mascara_effect__revitalizing + - mascara_effect__strengthening + - mascara_effect__thickening + - mascara_effect__volumizing + - mascara_effect__fixation +- id: 1620 + name: Product benefits + friendly_id: product_benefits + values: + - product_benefits__brightening + - product_benefits__bronzing + - product_benefits__highlighting + - product_benefits__natural + - product_benefits__radiant + - product_benefits__moisturizing + - product_benefits__nourishing + - product_benefits__hydrating + - product_benefits__smoothing + - product_benefits__priming + - product_benefits__softening + - product_benefits__strengthening + - product_benefits__protection + - product_benefits__regenerating + - product_benefits__coloring + - product_benefits__care + - product_benefits__firming + - product_benefits__whitening +- id: 1621 + name: Lip gloss effect + friendly_id: lip_gloss_effect + values: + - lip_gloss_effect__nourishing + - lip_gloss_effect__moisturizing + - lip_gloss_effect__plumping + - lip_gloss_effect__hydrating + - lip_gloss_effect__softening + - lip_gloss_effect__smoothing + - lip_gloss_effect__radiant + - lip_gloss_effect__mirroring + - lip_gloss_effect__coloring + - lip_gloss_effect__glowing + - lip_gloss_effect__volumizing +- id: 1622 + name: Lipstick effect + friendly_id: lipstick_effect + values: + - lipstick_effect__moisturizing + - lipstick_effect__conditioning + - lipstick_effect__coloring + - lipstick_effect__nourishing + - lipstick_effect__soothing + - lipstick_effect__hydrating + - lipstick_effect__softening + - lipstick_effect__protection + - lipstick_effect__smoothing + - lipstick_effect__firming + - lipstick_effect__plumping + - lipstick_effect__volumizing + - lipstick_effect__refreshing +- id: 1623 + name: Nail design + friendly_id: nail_design + values: + - nail_design__natural + - nail_design__french_tip + - nail_design__solid_color + - nail_design__glitter + - nail_design__matte + - nail_design__metallic + - nail_design__chrome + - nail_design__ombre + - nail_design__holographic + - nail_design__animal_print + - nail_design__floral + - nail_design__geometric + - nail_design__abstract + - nail_design__iridescent +- id: 1624 + name: Nail shape + friendly_id: nail_shape + values: + - nail_shape__almond + - nail_shape__arrowhead + - nail_shape__ballerina + - nail_shape__coffin + - nail_shape__edge + - nail_shape__flare + - nail_shape__lipstick + - nail_shape__mountain + - nail_shape__other + - nail_shape__oval + - nail_shape__pipe + - nail_shape__round + - nail_shape__square + - nail_shape__stiletto +- id: 1625 + name: Glue strength + friendly_id: glue_strength + values: + - glue_strength__gentle + - glue_strength__medium + - glue_strength__strong + - glue_strength__extra_strong +- id: 1626 + name: Polish remover form + friendly_id: polish_remover_form + values: + - polish_remover_form__liquid_nail_polish_remover + - polish_remover_form__removal_wraps + - polish_remover_form__dip_in_nail_polish_remover + - polish_remover_form__soak_off_remover_wraps + - polish_remover_form__nail_polish_degreaser + - polish_remover_form__nail_polish_eraser_cream +- id: 1627 + name: Occasion + friendly_id: occasion + values: + - occasion__casual + - occasion__formal + - occasion__everyday + - occasion__special_occasion +- id: 1628 + name: Season + friendly_id: season + values: + - season__spring + - season__summer + - season__fall + - season__winter +- id: 1629 + name: Constitutive ingredients + friendly_id: constitutive_ingredients + values: + - constitutive_ingredients__acacia_honey + - constitutive_ingredients__acerola_cherry + - constitutive_ingredients__almond_oil + - constitutive_ingredients__aloe_vera + - constitutive_ingredients__apricot_oil + - constitutive_ingredients__avocado_oil + - constitutive_ingredients__beeswax + - constitutive_ingredients__blueberry_seed_oil + - constitutive_ingredients__calendula + - constitutive_ingredients__castor_oil + - constitutive_ingredients__cherry_oil + - constitutive_ingredients__cocoa_butter + - constitutive_ingredients__coconut_oil + - constitutive_ingredients__essential_oil + - constitutive_ingredients__eucalyptus + - constitutive_ingredients__goji_berry_extract + - constitutive_ingredients__green_tea + - constitutive_ingredients__hemp_oil + - constitutive_ingredients__jojoba_oil + - constitutive_ingredients__lemon_butter + - constitutive_ingredients__macadamia_oil + - constitutive_ingredients__moringa_butter + - constitutive_ingredients__olive_oil + - constitutive_ingredients__orange + - constitutive_ingredients__rose_extract + - constitutive_ingredients__rosehip_oil + - constitutive_ingredients__shea_butter + - constitutive_ingredients__other +- id: 1630 + name: Cosmetic function + friendly_id: cosmetic_function + values: + - cosmetic_function__soothing + - cosmetic_function__healing + - cosmetic_function__protecting + - cosmetic_function__anti_aging + - cosmetic_function__brightening + - cosmetic_function__hydration + - cosmetic_function__repairing + - cosmetic_function__cleansing + - cosmetic_function__hydrating + - cosmetic_function__nourishing + - cosmetic_function__moisturizing + - cosmetic_function__exfoliating + - cosmetic_function__pore_minimizing +- id: 1631 + name: Allergens + friendly_id: allergens + values: + - allergens__alpha_isomethyl_ionone + - allergens__amyl_cinnamal_amyl_cinnamic_aldehyde + - allergens__amylcinnamyl_alcohol + - allergens__anisyl_alcohol + - allergens__benzyl_alcohol + - allergens__benzyl_benzoate + - allergens__benzyl_cinnamate + - allergens__benzyl_salicylate + - allergens__cinnamal + - allergens__cinnamyl_alcohol + - allergens__citral + - allergens__citronellol + - allergens__coumarin + - allergens__eugenol + - allergens__evernia_furfuracea_treemoss_extract + - allergens__evernia_prunastri_oakmoss_extract + - allergens__farnesol + - allergens__geraniol + - allergens__hexyl_cinnamal + - allergens__hydroxycitronellal + - allergens__isoeugenol + - allergens__limonene + - allergens__linalool + - allergens__lyral_hydroxyisohexyl_3_cyclohexene_carboxaldehyde + - allergens__methyl_2_octynoate_methyl_heptin_carbonate + - allergens__myroxylon_pereirae_balsam_peru + - allergens__other +- id: 1632 + name: Suitable for bug type + friendly_id: suitable_for_bug_type + values_from: bug_type +- id: 1633 + name: Tan type + friendly_id: tan_type + values: + - tan_type__gradual + - tan_type__instant + - tan_type__dark + - tan_type__medium +- id: 1634 + name: Portability + friendly_id: portability + values: + - portability__portable + - portability__compact_size + - portability__stationary +- id: 1635 + name: Tip material + friendly_id: tip_material + values: + - tip_material__cotton + - tip_material__plastic + - tip_material__silicone +- id: 1636 + name: Earplug use + friendly_id: earplug_use + values: + - earplug_use__swimming + - earplug_use__sleeping + - earplug_use__shooting +- id: 1637 + name: Fragrance + friendly_id: fragrance + values: + - fragrance__aquatic + - fragrance__cherry + - fragrance__cinnamon + - fragrance__citrus + - fragrance__eucalyptus + - fragrance__floral + - fragrance__fresh_linen + - fragrance__fruity + - fragrance__herbal + - fragrance__jasmine + - fragrance__lavender + - fragrance__ocean_breeze + - fragrance__oriental + - fragrance__pine + - fragrance__rose + - fragrance__sandalwood + - fragrance__strawberry + - fragrance__tea_tree + - fragrance__vanilla + - fragrance__woody + - fragrance__unscented + - fragrance__other +- id: 1638 + name: Menstrual cup shape + friendly_id: menstrual_cup_shape + values: + - menstrual_cup_shape__bell + - menstrual_cup_shape__v_shaped + - menstrual_cup_shape__other +- id: 1639 + name: Applicator material + friendly_id: applicator_material + values: + - applicator_material__cardboard + - applicator_material__cotton + - applicator_material__plastic + - applicator_material__synthetic +- id: 1640 + name: Compatible shoe size + friendly_id: compatible_shoe_size + values_from: shoe_size +- id: 1641 + name: Suitable for hair type + friendly_id: suitable_for_hair_type + values: + - suitable_for_hair_type__all_hair_types + - suitable_for_hair_type__bleached + - suitable_for_hair_type__blonde + - suitable_for_hair_type__brittle + - suitable_for_hair_type__brunette + - suitable_for_hair_type__colored + - suitable_for_hair_type__combination + - suitable_for_hair_type__curly + - suitable_for_hair_type__damaged + - suitable_for_hair_type__demanding + - suitable_for_hair_type__dry + - suitable_for_hair_type__dull + - suitable_for_hair_type__dyed + - suitable_for_hair_type__fine + - suitable_for_hair_type__frizzy + - suitable_for_hair_type__gray + - suitable_for_hair_type__highlighted + - suitable_for_hair_type__lifeless + - suitable_for_hair_type__loss + - suitable_for_hair_type__normal + - suitable_for_hair_type__oily + - suitable_for_hair_type__sensitive + - suitable_for_hair_type__split + - suitable_for_hair_type__straight + - suitable_for_hair_type__thick + - suitable_for_hair_type__thin + - suitable_for_hair_type__treated + - suitable_for_hair_type__unruly + - suitable_for_hair_type__weakened +- id: 1642 + name: Compatible hair color + friendly_id: compatible_hair_color + values: + - compatible_hair_color__auburn + - compatible_hair_color__black + - compatible_hair_color__blonde + - compatible_hair_color__blue + - compatible_hair_color__brown + - compatible_hair_color__burgundy + - compatible_hair_color__cinnamon + - compatible_hair_color__dark + - compatible_hair_color__dark_blonde + - compatible_hair_color__fair + - compatible_hair_color__gray + - compatible_hair_color__green + - compatible_hair_color__lilac + - compatible_hair_color__mahogany + - compatible_hair_color__orange + - compatible_hair_color__pink + - compatible_hair_color__platinum + - compatible_hair_color__purple + - compatible_hair_color__red + - compatible_hair_color__silver + - compatible_hair_color__turquoise + - compatible_hair_color__violet + - compatible_hair_color__white + - compatible_hair_color__other +- id: 1643 + name: Hair loss type + friendly_id: hair_loss_type + values: + - hair_loss_type__alopecia_areata + - hair_loss_type__male_pattern_baldness + - hair_loss_type__telogen_effluvium +- id: 1644 + name: Treatment type + friendly_id: treatment_type + values: + - treatment_type__topical + - treatment_type__oral + - treatment_type__laser +- id: 1645 + name: Hair care finish + friendly_id: hair_care_finish + values: + - hair_care_finish__matte + - hair_care_finish__shiny + - hair_care_finish__glossy +- id: 1646 + name: Hold level + friendly_id: hold_level + values: + - hold_level__light + - hold_level__medium + - hold_level__strong +- id: 1647 + name: Hair care technology + friendly_id: hair_care_technology + values: + - hair_care_technology__steam + - hair_care_technology__warm + - hair_care_technology__galvanic + - hair_care_technology__thermolysis +- id: 1648 + name: Barrel material + friendly_id: barrel_material + values: + - barrel_material__ceramic + - barrel_material__chrome + - barrel_material__gold + - barrel_material__titanium + - barrel_material__tourmaline +- id: 1649 + name: Heat settings + friendly_id: heat_settings + values: + - heat_settings__low + - heat_settings__medium + - heat_settings__high +- id: 1650 + name: Curler type + friendly_id: curler_type + values: + - curler_type__flexi_rods + - curler_type__hot_rollers +- id: 1651 + name: Plate type + friendly_id: plate_type + values: + - plate_type__ceramic + - plate_type__titanium + - plate_type__tourmaline +- id: 1652 + name: Conditioner effect + friendly_id: conditioner_effect + values: + - conditioner_effect__anti_hair_loss + - conditioner_effect__anti_dandruff + - conditioner_effect__anti_frizz + - conditioner_effect__cleansing + - conditioner_effect__color_protection + - conditioner_effect__densifying + - conditioner_effect__detangling + - conditioner_effect__moisturizing + - conditioner_effect__nourishing + - conditioner_effect__protection + - conditioner_effect__purifying + - conditioner_effect__regenerating + - conditioner_effect__repair + - conditioner_effect__revitalizing + - conditioner_effect__shine + - conditioner_effect__smoothing + - conditioner_effect__strengthening + - conditioner_effect__thickening + - conditioner_effect__volumizing + - conditioner_effect__other +- id: 1653 + name: Shampoo type + friendly_id: shampoo_type + values: + - shampoo_type__2_in_1_hair_body + - shampoo_type__2_in_1_shampoo_conditioner + - shampoo_type__3_in_1_shampoo_conditioner_body + - shampoo_type__dry + - shampoo_type__powder + - shampoo_type__solid +- id: 1654 + name: Heat function + friendly_id: heat_function + values: + - heat_function__with_heat + - heat_function__without_heat +- id: 1655 + name: Claw design + friendly_id: claw_design + values: + - claw_design__curved + - claw_design__pointed + - claw_design__rounded +- id: 1656 + name: Eye pillow shape + friendly_id: eye_pillow_shape + values: + - eye_pillow_shape__rectangular + - eye_pillow_shape__contoured + - eye_pillow_shape__other +- id: 1657 + name: Massage area + friendly_id: massage_area + values_from: body_area +- id: 1658 + name: Reclining function + friendly_id: reclining_function + values: + - reclining_function__full_recline + - reclining_function__zero_gravity +- id: 1659 + name: Aromatherapy + friendly_id: aromatherapy + values_from: fragrance +- id: 1660 + name: Base oil + friendly_id: base_oil + values: + - base_oil__almond + - base_oil__apricot_kernel + - base_oil__argan + - base_oil__avocado + - base_oil__coconut + - base_oil__grapeseed + - base_oil__jojoba + - base_oil__olive + - base_oil__sesame + - base_oil__sunflower +- id: 1661 + name: Stone name + friendly_id: stone_name + values: + - stone_name__petrified_wood + - stone_name__shiva_lingam + - stone_name__rose_quartz + - stone_name__fluorite + - stone_name__lapis_lazuli + - stone_name__hematite + - stone_name__amethyst + - stone_name__turquoise + - stone_name__kyanite + - stone_name__obsidian + - stone_name__citrine + - stone_name__pendulum + - stone_name__jasper + - stone_name__aventurine + - stone_name__sodalite +- id: 1662 + name: Stone type + friendly_id: stone_type + values: + - stone_type__cold_stone + - stone_type__hot_stone +- id: 1663 + name: Breath sprays certifications + friendly_id: breath_sprays_certifications + values: + - breath_sprays_certifications__alcohol_free + - breath_sprays_certifications__artificial_flavor_free + - breath_sprays_certifications__artificial_preservatives_free + - breath_sprays_certifications__cruelty_free + - breath_sprays_certifications__dye_free + - breath_sprays_certifications__eu_organic + - breath_sprays_certifications__ewg_verified + - breath_sprays_certifications__fair_trade + - breath_sprays_certifications__fluoride_free + - breath_sprays_certifications__gluten_free + - breath_sprays_certifications__halal + - breath_sprays_certifications__kosher + - breath_sprays_certifications__natural_ingredients + - breath_sprays_certifications__non_gmo + - breath_sprays_certifications__organic_ingredients + - breath_sprays_certifications__peta_approved + - breath_sprays_certifications__suitable_for_diabetics + - breath_sprays_certifications__usda_organic + - breath_sprays_certifications__vegan +- id: 1664 + name: Dental floss thickness level + friendly_id: dental_floss_thickness_level + values: + - dental_floss_thickness_level__thin + - dental_floss_thickness_level__regular + - dental_floss_thickness_level__thick +- id: 1665 + name: Dental mouthguard certifications + friendly_id: dental_mouthguard_certifications + values: + - dental_mouthguard_certifications__ada_accepted + - dental_mouthguard_certifications__bpa_free + - dental_mouthguard_certifications__ce_certified + - dental_mouthguard_certifications__cpsia_compliant + - dental_mouthguard_certifications__fda_approved + - dental_mouthguard_certifications__iso + - dental_mouthguard_certifications__latex_free + - dental_mouthguard_certifications__leaching_testing_passed + - dental_mouthguard_certifications__made_in_a_gmp_certified_facility + - dental_mouthguard_certifications__phthalate_free +- id: 1666 + name: Nozzle type + friendly_id: nozzle_type + values: + - nozzle_type__standard + - nozzle_type__orthodontic + - nozzle_type__periodontal + - nozzle_type__tongue_cleaner +- id: 1667 + name: Denture base color + friendly_id: denture_base_color + values: + - denture_base_color__pink + - denture_base_color__natural_gum +- id: 1668 + name: Denture teeth color + friendly_id: denture_teeth_color + values: + - denture_teeth_color__natural_white + - denture_teeth_color__off_white + - denture_teeth_color__light_yellow +- id: 1669 + name: Handle grip texture + friendly_id: handle_grip_texture + values: + - handle_grip_texture__ribbed + - handle_grip_texture__smooth +- id: 1671 + name: Peroxide content + friendly_id: peroxide_content + values: + - peroxide_content__carbamide + - peroxide_content__hydrogen + - peroxide_content__peroxide_free +- id: 1672 + name: Usage frequency + friendly_id: usage_frequency + values: + - usage_frequency__daily + - usage_frequency__weekly +- id: 1673 + name: Suitable for toothbrush + friendly_id: suitable_for_toothbrush + values: + - suitable_for_toothbrush__electric_toothbrush_heads + - suitable_for_toothbrush__toothbrushes +- id: 1674 + name: Toothpaste type + friendly_id: toothpaste_type + values: + - toothpaste_type__anti_decay + - toothpaste_type__anticalculus + - toothpaste_type__antiplaque + - toothpaste_type__desensitizing + - toothpaste_type__whitening +- id: 1675 + name: Toothpick design + friendly_id: toothpick_design + values: + - toothpick_design__flat + - toothpick_design__round + - toothpick_design__other +- id: 1676 + name: Lubricant application + friendly_id: lubricant_application + values: + - lubricant_application__anal + - lubricant_application__massage + - lubricant_application__oral + - lubricant_application__vaginal +- id: 1677 + name: Lubricant composition + friendly_id: lubricant_composition + values: + - lubricant_composition__oil_based + - lubricant_composition__silicone_based + - lubricant_composition__water_based + - lubricant_composition__hybrid +- id: 1678 + name: Body/Facial hair type + friendly_id: body_facial_hair_type + values: + - body_facial_hair_type__fine + - body_facial_hair_type__coarse +- id: 1679 + name: Razor flexibility + friendly_id: razor_flexibility + values: + - razor_flexibility__flexible + - razor_flexibility__fixed +- id: 1680 + name: Razor head design + friendly_id: razor_head_design + values: + - razor_head_design__single + - razor_head_design__double + - razor_head_design__triple +- id: 1681 + name: Usage conditions + friendly_id: usage_conditions + values: + - usage_conditions__wet + - usage_conditions__dry +- id: 1682 + name: Battery size + friendly_id: battery_size + values: + - battery_size__10 + - battery_size__13 + - battery_size__312 + - battery_size__395 + - battery_size__675 + - battery_size__14500 + - battery_size__16340 + - battery_size__18490 + - battery_size__18650 + - battery_size__21700 + - battery_size__1_2aa + - battery_size__1_3aaa + - battery_size__1_3n + - battery_size__12v + - battery_size__2_3aa + - battery_size__2_3aaa + - battery_size__3lr12 + - battery_size__4_5v + - battery_size__4lr44 + - battery_size__4sr44 + - battery_size__6lr61 + - battery_size__6v + - battery_size__9v + - battery_size__a + - battery_size__a23 + - battery_size__a27 + - battery_size__aa + - battery_size__aaa + - battery_size__aaaa + - battery_size__b + - battery_size__br1225 + - battery_size__c + - battery_size__cr1025 + - battery_size__cr1216 + - battery_size__cr1220 + - battery_size__cr1225 + - battery_size__cr123 + - battery_size__cr123a + - battery_size__cr1616 + - battery_size__cr1620 + - battery_size__cr1632 + - battery_size__cr2 + - battery_size__cr2012 + - battery_size__cr2016 + - battery_size__cr2025 + - battery_size__cr2032 + - battery_size__cr2320 + - battery_size__cr2325 + - battery_size__cr2330 + - battery_size__cr2354 + - battery_size__cr2430 + - battery_size__cr2450 + - battery_size__cr2477 + - battery_size__cr3032 + - battery_size__d + - battery_size__f + - battery_size__lr06 + - battery_size__lr1130 + - battery_size__lr14 + - battery_size__lr27a + - battery_size__lr32a + - battery_size__lr41 + - battery_size__lr43 + - battery_size__lr44 + - battery_size__lr54 + - battery_size__lr60 + - battery_size__lr66 + - battery_size__mn11 + - battery_size__mn21 + - battery_size__mn27 + - battery_size__n + - battery_size__pr41 + - battery_size__pr44 + - battery_size__pr70 + - battery_size__sc + - battery_size__sr41 + - battery_size__sr42 + - battery_size__sr43 + - battery_size__sr43w + - battery_size__sr44 + - battery_size__sr45 + - battery_size__sr48 + - battery_size__sr54 + - battery_size__sr55 + - battery_size__sr57 + - battery_size__sr58 + - battery_size__sr59 + - battery_size__sr60 + - battery_size__sr616sw + - battery_size__sr63 + - battery_size__sr66 + - battery_size__sr69 + - battery_size__sr731sw + - battery_size__sr920sw + - battery_size__sr936sw + - battery_size__other + - battery_size__built_in_battery +- id: 1683 + name: Suitable for skin tone + friendly_id: suitable_for_skin_tone + values_from: skin_tone +- id: 1684 + name: Shaving cream formulation + friendly_id: shaving_cream_formulation + values: + - shaving_cream_formulation__foam + - shaving_cream_formulation__gel +- id: 1685 + name: Brush type + friendly_id: brush_type + values: + - brush_type__badger_hair + - brush_type__synthetic + - brush_type__dip_brush + - brush_type__flow_thru + - brush_type__scrub + - brush_type__wheel +- id: 1686 + name: Razor type + friendly_id: razor_type + values: + - razor_type__safety + - razor_type__straight +- id: 1687 + name: Shaving kit components + friendly_id: shaving_kit_components + values: + - shaving_kit_components__razor + - shaving_kit_components__brush + - shaving_kit_components__stand +- id: 1689 + name: Travel pillow shape + friendly_id: travel_pillow_shape + values: + - travel_pillow_shape__u_shaped + - travel_pillow_shape__j_shaped + - travel_pillow_shape__other +- id: 1690 + name: Solution type + friendly_id: solution_type + values: + - solution_type__hydrogen_peroxide_based + - solution_type__multi_purpose + - solution_type__saline + - solution_type__spray + - solution_type__wipes +- id: 1691 + name: Bottle type + friendly_id: bottle_type + values: + - bottle_type__screw_top + - bottle_type__squeeze + - bottle_type__spray +- id: 1692 + name: Frame shape + friendly_id: frame_shape + values_from: shape +- id: 1693 + name: Lens coating + friendly_id: lens_coating + values: + - lens_coating__anti_reflective + - lens_coating__scratch_resistant +- id: 1694 + name: Lens type + friendly_id: lens_type + values: + - lens_type__progressive + - lens_type__single_vision + - lens_type__polarized + - lens_type__non_polarized +- id: 1695 + name: Optical frame design + friendly_id: optical_frame_design + values: + - optical_frame_design__full_frame + - optical_frame_design__rimless +- id: 1696 + name: UV protection + friendly_id: uv_protection + values: + - uv_protection__uv400 +- id: 1697 + name: Suitable for bird type + friendly_id: suitable_for_bird_type + values: + - suitable_for_bird_type__blue_tit + - suitable_for_bird_type__chaffinch + - suitable_for_bird_type__goldfinch + - suitable_for_bird_type__great_tit + - suitable_for_bird_type__greenfinch + - suitable_for_bird_type__house_sparrow + - suitable_for_bird_type__siskin + - suitable_for_bird_type__blackcap + - suitable_for_bird_type__blackbird + - suitable_for_bird_type__collared_dove + - suitable_for_bird_type__robin + - suitable_for_bird_type__song_thrush + - suitable_for_bird_type__starling + - suitable_for_bird_type__parakeet + - suitable_for_bird_type__parrot + - suitable_for_bird_type__canary + - suitable_for_bird_type__lovebird + - suitable_for_bird_type__cockatiel + - suitable_for_bird_type__other + - suitable_for_bird_type__budgie + - suitable_for_bird_type__finch + - suitable_for_bird_type__macaw +- id: 1698 + name: Pet supply product form + friendly_id: pet_supply_product_form + values: + - pet_supply_product_form__liquid + - pet_supply_product_form__wet + - pet_supply_product_form__dry + - pet_supply_product_form__gel + - pet_supply_product_form__other + - pet_supply_product_form__drops + - pet_supply_product_form__cream + - pet_supply_product_form__spray + - pet_supply_product_form__tablets + - pet_supply_product_form__pills + - pet_supply_product_form__soft_chews + - pet_supply_product_form__balm + - pet_supply_product_form__lotion + - pet_supply_product_form__wipes + - pet_supply_product_form__capsules + - pet_supply_product_form__powder +- id: 1699 + name: Cat age group + friendly_id: cat_age_group + values: + - cat_age_group__kitten + - cat_age_group__senior + - cat_age_group__adult +- id: 1700 + name: Pet dietary requirements + friendly_id: pet_dietary_requirements + values: + - pet_dietary_requirements__allergy_food_sensitivity + - pet_dietary_requirements__cardiovascular_care + - pet_dietary_requirements__dental_health + - pet_dietary_requirements__diabetes_care + - pet_dietary_requirements__digestive_health + - pet_dietary_requirements__gluten_free + - pet_dietary_requirements__grain_free + - pet_dietary_requirements__hairball_control + - pet_dietary_requirements__high_protein + - pet_dietary_requirements__joint_mobility_care + - pet_dietary_requirements__kidney_care + - pet_dietary_requirements__liver_care + - pet_dietary_requirements__sensitive_stomach + - pet_dietary_requirements__skin_coat_care + - pet_dietary_requirements__thyroid_care + - pet_dietary_requirements__urinary_health + - pet_dietary_requirements__weight_control + - pet_dietary_requirements__other +- id: 1701 + name: Pet food flavor + friendly_id: pet_food_flavor + values: + - pet_food_flavor__apple + - pet_food_flavor__avocado + - pet_food_flavor__bacon + - pet_food_flavor__banana + - pet_food_flavor__beef + - pet_food_flavor__beet + - pet_food_flavor__blueberry + - pet_food_flavor__bone + - pet_food_flavor__carrot + - pet_food_flavor__cheese + - pet_food_flavor__chicken + - pet_food_flavor__cranberry + - pet_food_flavor__duck + - pet_food_flavor__fish + - pet_food_flavor__fruit + - pet_food_flavor__grain + - pet_food_flavor__grass + - pet_food_flavor__ham + - pet_food_flavor__lamb + - pet_food_flavor__liver + - pet_food_flavor__mango + - pet_food_flavor__meat + - pet_food_flavor__mixed_flavors + - pet_food_flavor__peanut_butter + - pet_food_flavor__peppermint + - pet_food_flavor__pork + - pet_food_flavor__rabbit + - pet_food_flavor__rice + - pet_food_flavor__salami + - pet_food_flavor__seafood + - pet_food_flavor__spinach + - pet_food_flavor__sweet_potato + - pet_food_flavor__turkey + - pet_food_flavor__unflavored + - pet_food_flavor__veal + - pet_food_flavor__vegetables + - pet_food_flavor__venison + - pet_food_flavor__other + - pet_food_flavor__insect + - pet_food_flavor__berry + - pet_food_flavor__hay +- id: 1702 + name: Cat litter formula + friendly_id: cat_litter_formula + values: + - cat_litter_formula__wood_pellets + - cat_litter_formula__clay + - cat_litter_formula__crystals + - cat_litter_formula__granules +- id: 1703 + name: Dog age group + friendly_id: dog_age_group + values: + - dog_age_group__adult + - dog_age_group__junior + - dog_age_group__puppy + - dog_age_group__senior +- id: 1704 + name: Pet treat texture + friendly_id: pet_treat_texture + values: + - pet_treat_texture__chewy + - pet_treat_texture__crunchy + - pet_treat_texture__soft + - pet_treat_texture__hard +- id: 1705 + name: Compatible aquarium + friendly_id: compatible_aquarium + values: + - compatible_aquarium__all_aquarium_types + - compatible_aquarium__freshwater_aquariums + - compatible_aquarium__saltwater_aquariums +- id: 1706 + name: Filter type + friendly_id: filter_type + values: + - filter_type__mechanical + - filter_type__biological + - filter_type__chemical +- id: 1707 + name: Suitable for water type + friendly_id: suitable_for_water_type + values: + - suitable_for_water_type__both + - suitable_for_water_type__freshwater + - suitable_for_water_type__saltwater +- id: 1708 + name: Aquarium light spectrum + friendly_id: aquarium_light_spectrum + values: + - aquarium_light_spectrum__blue_actinic + - aquarium_light_spectrum__daylight_full_spectrum + - aquarium_light_spectrum__moonlight_nocturnal + - aquarium_light_spectrum__multi_color_rgb +- id: 1709 + name: Fish type + friendly_id: fish_type + values: + - fish_type__betta + - fish_type__bottom_feeder + - fish_type__cichlid + - fish_type__cold_water + - fish_type__discus + - fish_type__goldfish + - fish_type__koi + - fish_type__marine + - fish_type__tropical + - fish_type__other +- id: 1710 + name: Suitable for fish type + friendly_id: suitable_for_fish_type + values: + - suitable_for_fish_type__tropical_fish + - suitable_for_fish_type__pond_fish + - suitable_for_fish_type__aquarium_fish + - suitable_for_fish_type__marine_fish + - suitable_for_fish_type__other +- id: 1711 + name: Pet monitor items included + friendly_id: pet_monitor_items_included + values: + - pet_monitor_items_included__carrying_case + - pet_monitor_items_included__lancets + - pet_monitor_items_included__lancing_device + - pet_monitor_items_included__test_strips +- id: 1712 + name: First aid kit components + friendly_id: first_aid_kit_components + values: + - first_aid_kit_components__antiseptic_wipes + - first_aid_kit_components__bandages + - first_aid_kit_components__cold_compress + - first_aid_kit_components__disposable_gloves + - first_aid_kit_components__emergency_blanket + - first_aid_kit_components__gauze_pads + - first_aid_kit_components__hydrogen_peroxide + - first_aid_kit_components__medical_tape + - first_aid_kit_components__scissors + - first_aid_kit_components__styptic_powder + - first_aid_kit_components__thermometer + - first_aid_kit_components__tweezers +- id: 1713 + name: SPF level + friendly_id: spf_level + values: + - spf_level__spf_4 + - spf_level__spf_8 + - spf_level__spf_15 + - spf_level__spf_20 + - spf_level__spf_25 + - spf_level__spf_30 + - spf_level__spf_35 + - spf_level__spf_40 + - spf_level__spf_45 + - spf_level__spf_50 + - spf_level__spf_50+ + - spf_level__spf_60 + - spf_level__spf_70 + - spf_level__spf_85 + - spf_level__spf_100 + - spf_level__other +- id: 1714 + name: Compatible vehicle + friendly_id: compatible_vehicle + values: + - compatible_vehicle__car + - compatible_vehicle__suv + - compatible_vehicle__van + - compatible_vehicle__truck +- id: 1715 + name: Infant age group + friendly_id: infant_age_group + values: + - infant_age_group__0_3_months + - infant_age_group__3_6_months + - infant_age_group__0_6_months + - infant_age_group__6_12_months + - infant_age_group__0_24_months + - infant_age_group__1_2_years + - infant_age_group__2_3_years + - infant_age_group__newborn + - infant_age_group__6_months_or_older + - infant_age_group__9_months_or_older + - infant_age_group__12_months_or_older + - infant_age_group__24_months_or_older + - infant_age_group__3_years_or_older + - infant_age_group__other + - infant_age_group__all_ages +- id: 1716 + name: Safety certifications + friendly_id: safety_certifications + values: + - safety_certifications__astm_f1967_19 + - safety_certifications__en_71 + - safety_certifications__bpa_free + - safety_certifications__phthalate_free +- id: 1717 + name: Baby gift items included + friendly_id: baby_gift_items_included + values: + - baby_gift_items_included__clothing + - baby_gift_items_included__blanket + - baby_gift_items_included__bibs + - baby_gift_items_included__socks + - baby_gift_items_included__hats + - baby_gift_items_included__toys + - baby_gift_items_included__books + - baby_gift_items_included__rattles + - baby_gift_items_included__teethers + - baby_gift_items_included__washcloths + - baby_gift_items_included__burp_cloths + - baby_gift_items_included__other +- id: 1718 + name: Gift set format + friendly_id: gift_set_format + values: + - gift_set_format__gift_box + - gift_set_format__gift_bag + - gift_set_format__gift_basket +- id: 1719 + name: Personalization options + friendly_id: personalization_options + values: + - personalization_options__custom_message + - personalization_options__monogram + - personalization_options__personalized_name + - personalization_options__none +- id: 1720 + name: Baby health items included + friendly_id: baby_health_items_included + values: + - baby_health_items_included__nail_clippers + - baby_health_items_included__hair_brush + - baby_health_items_included__comb + - baby_health_items_included__thermometer + - baby_health_items_included__nasal_aspirator + - baby_health_items_included__medicine_dropper + - baby_health_items_included__finger_toothbrush + - baby_health_items_included__gum_massager + - baby_health_items_included__storage_case + - baby_health_items_included__other +- id: 1721 + name: Grooming kit format + friendly_id: grooming_kit_format + values: + - grooming_kit_format__kit_bag + - grooming_kit_format__box +- id: 1722 + name: Wipe fragrance + friendly_id: wipe_fragrance + values: + - wipe_fragrance__fresh + - wipe_fragrance__citrus + - wipe_fragrance__lavender + - wipe_fragrance__pure + - wipe_fragrance__unscented + - wipe_fragrance__other +- id: 1723 + name: Pacifier/Teether design + friendly_id: pacifier_teether_design + values: + - pacifier_teether_design__orthodontic + - pacifier_teether_design__symmetrical + - pacifier_teether_design__animal_shaped + - pacifier_teether_design__fruit_shaped + - pacifier_teether_design__ring_shaped + - pacifier_teether_design__other +- id: 1724 + name: Door stopper design + friendly_id: door_stopper_design + values: + - door_stopper_design__wedge_shaped + - door_stopper_design__hook_shaped +- id: 1725 + name: Safety device installation + friendly_id: safety_device_installation + values: + - safety_device_installation__pressure_mounted + - safety_device_installation__hardware_mounted + - safety_device_installation__adhesive + - safety_device_installation__screw_mounted +- id: 1726 + name: Locking mechanism + friendly_id: locking_mechanism + values: + - locking_mechanism__push_button + - locking_mechanism__slide + - locking_mechanism__twist + - locking_mechanism__one_handed_operation + - locking_mechanism__double_locking + - locking_mechanism__auto_close + - locking_mechanism__magnetic + - locking_mechanism__sliding +- id: 1727 + name: Gate mounting type + friendly_id: gate_mounting_type + values: + - gate_mounting_type__doorway + - gate_mounting_type__wall +- id: 1728 + name: Opening direction + friendly_id: opening_direction + values: + - opening_direction__one_way_swing + - opening_direction__two_way_swing +- id: 1729 + name: Opening mechanism + friendly_id: opening_mechanism + values: + - opening_mechanism__push_button + - opening_mechanism__lever + - opening_mechanism__foot_pedal +- id: 1730 + name: Display color mode + friendly_id: display_color_mode + values: + - display_color_mode__black_white + - display_color_mode__color +- id: 1731 + name: Range type + friendly_id: range_type + values: + - range_type__short_range + - range_type__long_range +- id: 1732 + name: Safety rail installation + friendly_id: safety_rail_installation + values: + - safety_rail_installation__portable + - safety_rail_installation__permanent + - safety_rail_installation__adjustable +- id: 1733 + name: Language + friendly_id: language + values: + - language__afrikaans + - language__albanian + - language__arabic + - language__armenian + - language__basque + - language__bulgarian + - language__catalan + - language__chinese_simplified + - language__chinese_traditional + - language__croatian + - language__czech + - language__danish + - language__dutch + - language__dutch_belgium + - language__english + - language__english_india + - language__english_singapore + - language__english_united_states + - language__estonian + - language__farsi + - language__filipino + - language__finnish + - language__french + - language__french_belgium + - language__french_switzerland + - language__galician + - language__georgian + - language__german + - language__german_belgium + - language__german_switzerland + - language__greek + - language__hebrew + - language__hindi + - language__hungarian + - language__icelandic + - language__indonesian + - language__italian + - language__japanese + - language__kazakh + - language__kirghiz + - language__korean + - language__kurdish + - language__latvian + - language__lithuanian + - language__malay + - language__mandar + - language__mongolian + - language__nepali + - language__norwegian + - language__persian + - language__polish + - language__portuguese + - language__portuguese_brazil + - language__romanian + - language__romansh + - language__russian + - language__serbian + - language__slovak + - language__slovenian + - language__spanish + - language__spanish_latin_america + - language__swedish + - language__tagalog + - language__thai + - language__tibetan + - language__turkish + - language__ukrainian + - language__vietnamese + - language__multilingual + - language__other +- id: 1734 + name: Motion + friendly_id: motion + values: + - motion__vibrating + - motion__bouncing + - motion__rocking + - motion__swinging +- id: 1735 + name: Safety features + friendly_id: safety_features + values: + - safety_features__3_point_harness + - safety_features__5_point_harness + - safety_features__non_slip_base + - safety_features__other +- id: 1736 + name: Mobile mounting type + friendly_id: mobile_mounting_type + values: + - mobile_mounting_type__crib + - mobile_mounting_type__stroller + - mobile_mounting_type__wall +- id: 1737 + name: Attachment method + friendly_id: attachment_method + values: + - attachment_method__hanging + - attachment_method__clamping + - attachment_method__velcro + - attachment_method__clip_on + - attachment_method__standalone +- id: 1738 + name: Mobile movement + friendly_id: mobile_movement + values: + - mobile_movement__wind_up + - mobile_movement__battery_operated +- id: 1739 + name: Nursery theme + friendly_id: nursery_theme + values: + - nursery_theme__animals + - nursery_theme__dinosaurs + - nursery_theme__floral + - nursery_theme__forest + - nursery_theme__jungle + - nursery_theme__nautical + - nursery_theme__nature + - nursery_theme__music + - nursery_theme__ocean + - nursery_theme__princess + - nursery_theme__rainbows + - nursery_theme__space + - nursery_theme__other +- id: 1740 + name: Light options + friendly_id: light_options + values: + - light_options__soft_glow + - light_options__color_changing + - light_options__projector +- id: 1741 + name: Soothing sounds + friendly_id: soothing_sounds + values: + - soothing_sounds__heartbeat + - soothing_sounds__lullabies + - soothing_sounds__nature + - soothing_sounds__white_noise +- id: 1742 + name: Car seat installation + friendly_id: car_seat_installation + values: + - car_seat_installation__latch_system + - car_seat_installation__seat_belt_installation +- id: 1743 + name: Car seat orientation + friendly_id: car_seat_orientation + values: + - car_seat_orientation__rear_facing + - car_seat_orientation__forward_facing +- id: 1744 + name: Folding mechanism + friendly_id: folding_mechanism + values: + - folding_mechanism__one_hand + - folding_mechanism__compact + - folding_mechanism__self_standing +- id: 1745 + name: Stroller wheel type + friendly_id: stroller_wheel_type + values: + - stroller_wheel_type__all_terrain + - stroller_wheel_type__air_filled + - stroller_wheel_type__swivel +- id: 1746 + name: Carrying positions + friendly_id: carrying_positions + values: + - carrying_positions__front_facing + - carrying_positions__back_facing + - carrying_positions__hip_carry +- id: 1747 + name: Double stroller configuration + friendly_id: double_stroller_configuration + values: + - double_stroller_configuration__side_by_side + - double_stroller_configuration__tandem_front_back +- id: 1748 + name: Compatible seat type + friendly_id: compatible_seat_type + values: + - compatible_seat_type__booster_seat + - compatible_seat_type__convertible_car_seat + - compatible_seat_type__infant_car_seat +- id: 1749 + name: Compatible baby carrier type + friendly_id: compatible_baby_carrier_type + values: + - compatible_baby_carrier_type__backpack_carrier + - compatible_baby_carrier_type__mei_tai + - compatible_baby_carrier_type__ring_sling + - compatible_baby_carrier_type__soft_structured_carrier + - compatible_baby_carrier_type__wrap +- id: 1750 + name: Compatible stroller type + friendly_id: compatible_stroller_type + values: + - compatible_stroller_type__convertible + - compatible_stroller_type__double + - compatible_stroller_type__full_sized + - compatible_stroller_type__jogging + - compatible_stroller_type__umbrella +- id: 1751 + name: Compatible baby transport type + friendly_id: compatible_baby_transport_type + values: + - compatible_baby_transport_type__baby_carrier + - compatible_baby_transport_type__car_seat + - compatible_baby_transport_type__stroller +- id: 1752 + name: Compatible baby chair type + friendly_id: compatible_baby_chair_type + values: + - compatible_baby_chair_type__high_chair + - compatible_baby_chair_type__restaurant_high_chair + - compatible_baby_chair_type__shopping_cart +- id: 1753 + name: Wipe packaging + friendly_id: wipe_packaging + values: + - wipe_packaging__plastic_tub + - wipe_packaging__refill_pack + - wipe_packaging__soft_pack + - wipe_packaging__travel_size +- id: 1754 + name: Diaper kit components + friendly_id: diaper_kit_components + values: + - diaper_kit_components__diaper_changing_pad + - diaper_kit_components__diapers + - diaper_kit_components__wipes + - diaper_kit_components__diaper_cream + - diaper_kit_components__disposable_bags + - diaper_kit_components__changing_mat + - diaper_kit_components__hand_sanitizer +- id: 1755 + name: Fragrance level + friendly_id: fragrance_level + values: + - fragrance_level__fragrance_free + - fragrance_level__lightly_scented + - fragrance_level__other +- id: 1756 + name: Treatment texture + friendly_id: treatment_texture + values: + - treatment_texture__creamy + - treatment_texture__thick + - treatment_texture__smooth + - treatment_texture__powder +- id: 1757 + name: Diaper size + friendly_id: diaper_size + values: + - diaper_size__1 + - diaper_size__2 + - diaper_size__3 + - diaper_size__4 + - diaper_size__5 + - diaper_size__6 + - diaper_size__7 + - diaper_size__preemie + - diaper_size__newborn + - diaper_size__toddler + - diaper_size__other +- id: 1758 + name: Baby food flavor + friendly_id: baby_food_flavor + values: + - baby_food_flavor__chocolate + - baby_food_flavor__mixed_fruits + - baby_food_flavor__strawberry + - baby_food_flavor__unflavored + - baby_food_flavor__vanilla + - baby_food_flavor__other + - baby_food_flavor__apple + - baby_food_flavor__apricot + - baby_food_flavor__avocado + - baby_food_flavor__banana + - baby_food_flavor__barley + - baby_food_flavor__blackberry + - baby_food_flavor__blueberry + - baby_food_flavor__broccoli + - baby_food_flavor__brown_rice + - baby_food_flavor__butternut_squash + - baby_food_flavor__carrot + - baby_food_flavor__cauliflower + - baby_food_flavor__cherry + - baby_food_flavor__green_beans + - baby_food_flavor__kiwi + - baby_food_flavor__lentils + - baby_food_flavor__mango + - baby_food_flavor__meat + - baby_food_flavor__oatmeal + - baby_food_flavor__papaya + - baby_food_flavor__peas + - baby_food_flavor__peach + - baby_food_flavor__pear + - baby_food_flavor__pineapple + - baby_food_flavor__plum + - baby_food_flavor__pumpkin + - baby_food_flavor__quinoa + - baby_food_flavor__raspberry + - baby_food_flavor__spinach + - baby_food_flavor__sweet_potato + - baby_food_flavor__vegetables + - baby_food_flavor__watermelon + - baby_food_flavor__zucchini + - baby_food_flavor__berries + - baby_food_flavor__orange +- id: 1759 + name: Baby drink packaging + friendly_id: baby_drink_packaging + values: + - baby_drink_packaging__bottle + - baby_drink_packaging__carton + - baby_drink_packaging__tetra_pack +- id: 1760 + name: Formula level + friendly_id: formula_level + values: + - formula_level__level_1_0_6_months + - formula_level__level_2_6_12_months + - formula_level__level_3_+12_months +- id: 1761 + name: Baby formula format + friendly_id: baby_formula_format + values: + - baby_formula_format__dry_powder + - baby_formula_format__ready_to_feed +- id: 1762 + name: Baby snack flavor + friendly_id: baby_snack_flavor + values: + - baby_snack_flavor__cheese + - baby_snack_flavor__fruit + - baby_snack_flavor__grains + - baby_snack_flavor__vegetables + - baby_snack_flavor__other +- id: 1763 + name: Baby snack texture + friendly_id: baby_snack_texture + values: + - baby_snack_texture__puffs + - baby_snack_texture__crackers + - baby_snack_texture__soft_bites +- id: 1764 + name: Compatible baby bottle design + friendly_id: compatible_baby_bottle_design + values: + - compatible_baby_bottle_design__standard + - compatible_baby_bottle_design__wide_neck +- id: 1765 + name: Flow rate type + friendly_id: flow_rate_type + values: + - flow_rate_type__slow + - flow_rate_type__medium + - flow_rate_type__fast + - flow_rate_type__variable +- id: 1766 + name: Stage + friendly_id: stage + values: + - stage__newborn + - stage__stage_1 + - stage__stage_2 + - stage__stage_3 + - stage__stage_4 +- id: 1767 + name: Nipple shape + friendly_id: nipple_shape + values: + - nipple_shape__round + - nipple_shape__flat + - nipple_shape__angled + - nipple_shape__other +- id: 1768 + name: Bottle design + friendly_id: bottle_design + values: + - bottle_design__ergonomic_shape + - bottle_design__contoured_grip + - bottle_design__easy_to_hold_handles +- id: 1769 + name: Nipple material + friendly_id: nipple_material + values: + - nipple_material__latex + - nipple_material__silicone +- id: 1770 + name: Nipple type + friendly_id: nipple_type + values: + - nipple_type__orthodontic + - nipple_type__wide_neck + - nipple_type__standard +- id: 1771 + name: Bib design + friendly_id: bib_design + values: + - bib_design__bandana + - bib_design__full_coverage + - bib_design__sleeved + - bib_design__smock +- id: 1772 + name: Heating method + friendly_id: heating_method + values: + - heating_method__steam + - heating_method__water_bath +- id: 1773 + name: Heating speed + friendly_id: heating_speed + values: + - heating_speed__fast + - heating_speed__slow +- id: 1774 + name: Temperature control + friendly_id: temperature_control + values: + - temperature_control__adjustable_temperature + - temperature_control__preset_temperature +- id: 1775 + name: Sterilization cycle time + friendly_id: sterilization_cycle_time + values: + - sterilization_cycle_time__quick + - sterilization_cycle_time__standard +- id: 1776 + name: Sterilization method + friendly_id: sterilization_method + values: + - sterilization_method__microwave + - sterilization_method__steam + - sterilization_method__uv +- id: 1777 + name: Sterilization instructions + friendly_id: sterilization_instructions + values: + - sterilization_instructions__boiling + - sterilization_instructions__dishwasher_safe + - sterilization_instructions__microwave_safe +- id: 1778 + name: Pump accessories + friendly_id: pump_accessories + values: + - pump_accessories__breast_shields + - pump_accessories__bottles + - pump_accessories__storage_bags + - pump_accessories__carrying_case +- id: 1779 + name: Cleaning instructions + friendly_id: cleaning_instructions + values: + - cleaning_instructions__dishwasher_safe + - cleaning_instructions__hand_wash_only + - cleaning_instructions__machine_washable + - cleaning_instructions__tumble_dry +- id: 1780 + name: Pump speed settings + friendly_id: pump_speed_settings + values: + - pump_speed_settings__adjustable_speed + - pump_speed_settings__single_speed +- id: 1781 + name: Suction levels + friendly_id: suction_levels + values: + - suction_levels__adjustable + - suction_levels__fixed +- id: 1782 + name: Nursing cover coverage + friendly_id: nursing_cover_coverage + values: + - nursing_cover_coverage__full + - nursing_cover_coverage__partial +- id: 1783 + name: Nursing pad design + friendly_id: nursing_pad_design + values: + - nursing_pad_design__round + - nursing_pad_design__contoured + - nursing_pad_design__thin + - nursing_pad_design__thick + - nursing_pad_design__other +- id: 1784 + name: Cover closure design + friendly_id: cover_closure_design + values: + - cover_closure_design__zipper + - cover_closure_design__envelope +- id: 1785 + name: Pillow shape + friendly_id: pillow_shape + values: + - pillow_shape__bolster + - pillow_shape__lumbar + - pillow_shape__neck_roll + - pillow_shape__round + - pillow_shape__square + - pillow_shape__rectangular + - pillow_shape__other +- id: 1786 + name: Lid type + friendly_id: lid_type + values: + - lid_type__flip_top + - lid_type__screw_on + - lid_type__snap_on +- id: 1787 + name: Spout type + friendly_id: spout_type + values: + - spout_type__hard + - spout_type__soft + - spout_type__straw +- id: 1788 + name: Potty/Toilet seat design + friendly_id: potty_toilet_seat_design + values: + - potty_toilet_seat_design__folding + - potty_toilet_seat_design__standard +- id: 1789 + name: Potty training kit components + friendly_id: potty_training_kit_components + values: + - potty_training_kit_components__potty_seat + - potty_training_kit_components__step_stool + - potty_training_kit_components__training_pants + - potty_training_kit_components__reward_chart + - potty_training_kit_components__stickers +- id: 1790 + name: Cabinet type + friendly_id: cabinet_type + values: + - cabinet_type__bartop + - cabinet_type__foldable + - cabinet_type__inflatable + - cabinet_type__mini_arcade + - cabinet_type__miniature_tabletop + - cabinet_type__multi_player + - cabinet_type__pedestal + - cabinet_type__single_player + - cabinet_type__sit_down + - cabinet_type__stand_up + - cabinet_type__tabletop + - cabinet_type__upright + - cabinet_type__virtual_reality + - cabinet_type__wall_mounted +- id: 1791 + name: Currency + friendly_id: currency + values: + - currency__afghan_afghani_afn + - currency__albanian_lek_all + - currency__algerian_dinar_dzd + - currency__angolan_kwanza_aoa + - currency__argentine_peso_ars + - currency__armenian_dram_amd + - currency__aruban_florin_awg + - currency__australian_dollar_aud + - currency__azerbaijani_manat_azn + - currency__bahamian_dollar_bsd + - currency__bahraini_dinar_bhd + - currency__bangladeshi_taka_bdt + - currency__barbadian_dollar_bbd + - currency__belarusian_ruble_byn + - currency__belize_dollar_bzd + - currency__bermudian_dollar_bmd + - currency__bhutanese_ngultrum_btn + - currency__bolivian_boliviano_bob + - currency__bosnia_and_herzegovina_convertible_mark_bam + - currency__botswana_pula_bwp + - currency__brazilian_real_brl + - currency__british_pound_sterling_gbp + - currency__brunei_dollar_bnd + - currency__bulgarian_lev_bgn + - currency__burundian_franc_bif + - currency__cambodian_riel_khr + - currency__canadian_dollar_cad + - currency__cape_verdean_escudo_cve + - currency__central_african_cfa_franc_xaf + - currency__cfp_franc_xpf + - currency__chilean_peso_clp + - currency__chinese_yuan_cny + - currency__colombian_peso_cop + - currency__comorian_franc_kmf + - currency__congolese_franc_cdf + - currency__costa_rican_coln_crc + - currency__croatian_kuna_hrk + - currency__cuban_peso_cup + - currency__czech_koruna_czk + - currency__danish_krone_dkk + - currency__djiboutian_franc_djf + - currency__dominican_peso_dop + - currency__east_caribbean_dollar_xcd + - currency__egyptian_pound_egp + - currency__eritrean_nakfa_ern + - currency__ethiopian_birr_etb + - currency__euro_eur + - currency__fijian_dollar_fjd + - currency__gambian_dalasi_gmd + - currency__georgian_lari_gel + - currency__ghanaian_cedi_ghs + - currency__guatemalan_quetzal_gtq + - currency__guinean_franc_gnf + - currency__guyanese_dollar_gyd + - currency__haitian_gourde_htg + - currency__honduran_lempira_hnl + - currency__hong_kong_dollar_hkd + - currency__hungarian_forint_huf + - currency__icelandic_krna_isk + - currency__indian_rupee_inr + - currency__indonesian_rupiah_idr + - currency__iranian_rial_irr + - currency__iraqi_dinar_iqd + - currency__israeli_new_shekel_ils + - currency__jamaican_dollar_jmd + - currency__japanese_yen_jpy + - currency__jordanian_dinar_jod + - currency__kazakhstani_tenge_kzt + - currency__kenyan_shilling_kes + - currency__kuwaiti_dinar_kwd + - currency__kyrgyzstani_som_kgs + - currency__lao_kip_lak + - currency__lebanese_pound_lbp + - currency__lesotho_loti_lsl + - currency__liberian_dollar_lrd + - currency__libyan_dinar_lyd + - currency__macanese_pataca_mop + - currency__macedonian_denar_mkd + - currency__malagasy_ariary_mga + - currency__malawian_kwacha_mwk + - currency__malaysian_ringgit_myr + - currency__maldivian_rufiyaa_mvr + - currency__mauritanian_ouguiya_mru + - currency__mauritian_rupee_mur + - currency__mexican_peso_mxn + - currency__moldovan_leu_mdl + - currency__mongolian_tgrg_mnt + - currency__moroccan_dirham_mad + - currency__mozambican_metical_mzn + - currency__myanmar_kyat_mmk + - currency__namibian_dollar_nad + - currency__nepalese_rupee_npr + - currency__new_zealand_dollar_nzd + - currency__nicaraguan_crdoba_nio + - currency__nigerian_naira_ngn + - currency__norwegian_krone_nok + - currency__omani_rial_omr + - currency__pakistani_rupee_pkr + - currency__panamanian_balboa_pab + - currency__papua_new_guinean_kina_pgk + - currency__paraguayan_guarani_pyg + - currency__peruvian_sol_pen + - currency__philippine_peso_php + - currency__polish_zoty_pln + - currency__qatari_riyal_qar + - currency__romanian_leu_ron + - currency__russian_ruble_rub + - currency__rwandan_franc_rwf + - currency__saint_helena_pound_shp + - currency__samoan_tl_wst + - currency__so_tom_and_prncipe_dobra_stn + - currency__saudi_riyal_sar + - currency__serbian_dinar_rsd + - currency__seychellois_rupee_scr + - currency__sierra_leonean_leone_sll + - currency__singapore_dollar_sgd + - currency__solomon_islands_dollar_sbd + - currency__somali_shilling_sos + - currency__south_african_rand_zar + - currency__south_korean_won_krw + - currency__sri_lankan_rupee_lkr + - currency__sudanese_pound_sdg + - currency__surinamese_dollar_srd + - currency__swazi_lilangeni_szl + - currency__swedish_krona_sek + - currency__swiss_franc_chf + - currency__syrian_pound_syp + - currency__taiwanese_dollar_twd + - currency__tajikistani_somoni_tjs + - currency__tanzanian_shilling_tzs + - currency__thai_baht_thb + - currency__tongan_paanga_top + - currency__trinidad_and_tobago_dollar_ttd + - currency__tunisian_dinar_tnd + - currency__turkish_lira_try + - currency__turkmenistani_manat_tmt + - currency__ugandan_shilling_ugx + - currency__ukrainian_hryvnia_uah + - currency__united_arab_emirates_dirham_aed + - currency__united_states_dollar_usd + - currency__uruguayan_peso_uyu + - currency__uzbekistani_som_uzs + - currency__vanuatu_vatu_vuv + - currency__venezuelan_bolvar_vef + - currency__vietnamese_ng_vnd + - currency__west_african_cfa_franc_xof + - currency__yemeni_rial_yer + - currency__zambian_kwacha_zmw + - currency__zimbabwean_dollar_zwl + - currency__other +- id: 1792 + name: USB standard + friendly_id: usb_standard + values: + - usb_standard__usb_1_0 + - usb_standard__usb_1_1 + - usb_standard__usb_2_0 + - usb_standard__usb_3_1_gen_1 + - usb_standard__usb_3_2_gen_1x1 + - usb_standard__usb_3_2_gen_2 + - usb_standard__usb_3_2_gen_2x1 + - usb_standard__usb_3_2_gen_2x2 + - usb_standard__usb4 +- id: 1793 + name: Music genre + friendly_id: music_genre + values: + - music_genre__alternative + - music_genre__alternative_rock + - music_genre__ambient + - music_genre__avant_garde + - music_genre__blues + - music_genre__breakdance + - music_genre__britpop + - music_genre__cabaret + - music_genre__carnival_music + - music_genre__chanson + - music_genre__childrens + - music_genre__christmas + - music_genre__classic + - music_genre__comedy + - music_genre__country + - music_genre__dance + - music_genre__deathrock + - music_genre__doo_wop + - music_genre__drones + - music_genre__drum_bass + - music_genre__dubstep + - music_genre__electronic + - music_genre__folk + - music_genre__funk + - music_genre__futurepop + - music_genre__gothic + - music_genre__hardcore + - music_genre__heavy_metal + - music_genre__hip_hop + - music_genre__house + - music_genre__humor + - music_genre__indie + - music_genre__industrial + - music_genre__jazz + - music_genre__latin + - music_genre__lounge + - music_genre__medieval + - music_genre__metal + - music_genre__metalcore + - music_genre__minimal_house + - music_genre__minimal_techno + - music_genre__musical + - music_genre__new_wave + - music_genre__new_age + - music_genre__opera + - music_genre__pop + - music_genre__pop_punk + - music_genre__pop_rock + - music_genre__power_metal + - music_genre__prog_metal + - music_genre__prog_rock + - music_genre__progressive + - music_genre__punk + - music_genre__r_b + - music_genre__rap + - music_genre__reggae + - music_genre__religious + - music_genre__rock + - music_genre__rock_roll + - music_genre__ska + - music_genre__soul + - music_genre__soundtrack + - music_genre__swing + - music_genre__synth_pop + - music_genre__tech_house + - music_genre__techno + - music_genre__trance + - music_genre__vocal_music + - music_genre__world_music + - music_genre__other + - music_genre__americana + - music_genre__audiobook + - music_genre__biography +- id: 1794 + name: Compatible microphone thread + friendly_id: compatible_microphone_thread + values: + - compatible_microphone_thread__1_4_20 + - compatible_microphone_thread__3_8_16 + - compatible_microphone_thread__5_8_27 + - compatible_microphone_thread__m10 + - compatible_microphone_thread__m20 + - compatible_microphone_thread__m6 +- id: 1795 + name: Base type + friendly_id: base_type + values: + - base_type__boom_arm + - base_type__caster_wheel + - base_type__clamp + - base_type__folding_tripod + - base_type__low_profile + - base_type__round + - base_type__round_weighted + - base_type__tabletop + - base_type__tripod + - base_type__wall_mounted +- id: 1796 + name: Microphone thread + friendly_id: microphone_thread + values: + - microphone_thread__1_4_20 + - microphone_thread__3_8_16 + - microphone_thread__5_8_27 + - microphone_thread__m10 + - microphone_thread__m20 + - microphone_thread__m6 +- id: 1797 + name: MP3 player accessories included + friendly_id: mp3_player_accessories_included + values: + - mp3_player_accessories_included__car_charger + - mp3_player_accessories_included__case + - mp3_player_accessories_included__charging_cable + - mp3_player_accessories_included__earphones + - mp3_player_accessories_included__headset + - mp3_player_accessories_included__portable_speaker + - mp3_player_accessories_included__screen_protector + - mp3_player_accessories_included__stand +- id: 1798 + name: Case type + friendly_id: case_type + values: + - case_type__armband + - case_type__back_cover + - case_type__belt_clip + - case_type__book_style + - case_type__bumper + - case_type__bumper_with_built_in_screen_protector + - case_type__decal + - case_type__flip + - case_type__folio + - case_type__holder + - case_type__holster + - case_type__keyboard_case + - case_type__lanyard + - case_type__shell_cover + - case_type__skin + - case_type__stand + - case_type__wallet + - case_type__wallet_with_card_slots + - case_type__other + - case_type__finger_grip + - case_type__interchangeable_loop +- id: 1799 + name: Stylus type + friendly_id: stylus_type + values: + - stylus_type__conical + - stylus_type__crossover + - stylus_type__elliptical + - stylus_type__spherical +- id: 1800 + name: Amplifier class + friendly_id: amplifier_class + values: + - amplifier_class__a + - amplifier_class__ab + - amplifier_class__b + - amplifier_class__bd + - amplifier_class__c + - amplifier_class__d + - amplifier_class__e + - amplifier_class__f + - amplifier_class__fd + - amplifier_class__g + - amplifier_class__h + - amplifier_class__t + - amplifier_class__xd +- id: 1801 + name: Audio output channel + friendly_id: audio_output_channel + values: + - audio_output_channel__2 + - audio_output_channel__2_1 + - audio_output_channel__3 + - audio_output_channel__3_1 + - audio_output_channel__4 + - audio_output_channel__4_1 + - audio_output_channel__5 + - audio_output_channel__5_1 + - audio_output_channel__6 + - audio_output_channel__6_1 + - audio_output_channel__7 + - audio_output_channel__7_1 + - audio_output_channel__9 + - audio_output_channel__9_1 + - audio_output_channel__11 + - audio_output_channel__11_1 + - audio_output_channel__13_2 +- id: 1802 + name: Audio output format + friendly_id: audio_output_format + values: + - audio_output_format__aac + - audio_output_format__analog + - audio_output_format__aptx + - audio_output_format__digital + - audio_output_format__high_resolution + - audio_output_format__ldac + - audio_output_format__mono + - audio_output_format__multi_zone + - audio_output_format__s_pdif + - audio_output_format__sbc + - audio_output_format__stereo + - audio_output_format__surround +- id: 1803 + name: Audio technology + friendly_id: audio_technology + values: + - audio_technology__aac + - audio_technology__dolby_atmos + - audio_technology__dolby_digital_ac_3 + - audio_technology__dolby_digital_plus_e_ac_3 + - audio_technology__dolby_pro_logic_iiz + - audio_technology__dolby_truehd + - audio_technology__dts + - audio_technology__dts_neo + - audio_technology__dts_virtual + - audio_technology__dts_hd_high_resolution_audio + - audio_technology__dts_hd_master_audio + - audio_technology__dts_x + - audio_technology__lpcm_linear_pulse_code_modulation + - audio_technology__pcm_pulse_code_modulation + - audio_technology__other +- id: 1804 + name: Frequency/Radio bands supported + friendly_id: frequency_radio_bands_supported + values: + - frequency_radio_bands_supported__am + - frequency_radio_bands_supported__dab + - frequency_radio_bands_supported__dab+ + - frequency_radio_bands_supported__dmb + - frequency_radio_bands_supported__dmb_a + - frequency_radio_bands_supported__dmb_r + - frequency_radio_bands_supported__fm + - frequency_radio_bands_supported__lw + - frequency_radio_bands_supported__mf + - frequency_radio_bands_supported__mw + - frequency_radio_bands_supported__not_supported + - frequency_radio_bands_supported__pll + - frequency_radio_bands_supported__s + - frequency_radio_bands_supported__sw + - frequency_radio_bands_supported__uhf + - frequency_radio_bands_supported__ukw + - frequency_radio_bands_supported__vhf +- id: 1805 + name: Video resolution supported + friendly_id: video_resolution_supported + values: + - video_resolution_supported__1080p + - video_resolution_supported__1440p + - video_resolution_supported__144p + - video_resolution_supported__2160p + - video_resolution_supported__240p + - video_resolution_supported__360p + - video_resolution_supported__3d + - video_resolution_supported__4320p + - video_resolution_supported__480p + - video_resolution_supported__4k_ultra_hd + - video_resolution_supported__720p + - video_resolution_supported__8k_ultra_hd + - video_resolution_supported__full_hd + - video_resolution_supported__hd + - video_resolution_supported__quad_hd + - video_resolution_supported__sd +- id: 1806 + name: Audio D/A converter (DAC) + friendly_id: audio_d_a_converter_dac + values: + - audio_d_a_converter_dac__burr_brown + - audio_d_a_converter_dac__coaxial + - audio_d_a_converter_dac__dsd + - audio_d_a_converter_dac__ess_sabre + - audio_d_a_converter_dac__integrated + - audio_d_a_converter_dac__optical + - audio_d_a_converter_dac__pcm + - audio_d_a_converter_dac__toslink + - audio_d_a_converter_dac__usb +- id: 1807 + name: Headphone jack type + friendly_id: headphone_jack_type + values: + - headphone_jack_type__2_5_mm + - headphone_jack_type__3_5_mm_1_8 + - headphone_jack_type__6_35_mm_1_4 + - headphone_jack_type__balanced_xlr + - headphone_jack_type__usb_type_c +- id: 1808 + name: Amplifier/Booster suitable location + friendly_id: amplifier_booster_suitable_location + values: + - amplifier_booster_suitable_location__home + - amplifier_booster_suitable_location__large_venue + - amplifier_booster_suitable_location__marine_transport + - amplifier_booster_suitable_location__office + - amplifier_booster_suitable_location__small_venue + - amplifier_booster_suitable_location__vehicle + - amplifier_booster_suitable_location__other +- id: 1809 + name: Digital sound processing + friendly_id: digital_sound_processing + values: + - digital_sound_processing__automatic_feedback_suppression + - digital_sound_processing__chorus + - digital_sound_processing__compression + - digital_sound_processing__de_esser + - digital_sound_processing__delay + - digital_sound_processing__drc + - digital_sound_processing__eq + - digital_sound_processing__exciter + - digital_sound_processing__flanger + - digital_sound_processing__harmonic_enhancement + - digital_sound_processing__limiter + - digital_sound_processing__multi_band_processing + - digital_sound_processing__noise_gate + - digital_sound_processing__phaser + - digital_sound_processing__pitch_shifter + - digital_sound_processing__reverb + - digital_sound_processing__room_correction + - digital_sound_processing__spatial_audio_processing + - digital_sound_processing__surround_sound_processing + - digital_sound_processing__vst_support +- id: 1810 + name: Pairing method + friendly_id: pairing_method + values: + - pairing_method__automatic + - pairing_method__bluetooth + - pairing_method__manual + - pairing_method__nfc + - pairing_method__qr_code + - pairing_method__wi_fi +- id: 1811 + name: Connection type + friendly_id: connection_type + values: + - connection_type__ac_adapter + - connection_type__aux + - connection_type__bluetooth + - connection_type__bnc + - connection_type__coaxial + - connection_type__coaxial_f_type + - connection_type__composite_video + - connection_type__display_port + - connection_type__dvi + - connection_type__ethernet + - connection_type__firewire + - connection_type__hdmi + - connection_type__micro_sd_card + - connection_type__micro_usb + - connection_type__mini_usb + - connection_type__power_cord + - connection_type__power_splitter + - connection_type__rca + - connection_type__s_video + - connection_type__satellite + - connection_type__sd_card + - connection_type__thunderbolt + - connection_type__usb + - connection_type__vga + - connection_type__wi_fi + - connection_type__airplay + - connection_type__ant + - connection_type__ant+ + - connection_type__cellular + - connection_type__dect + - connection_type__infrared + - connection_type__lte + - connection_type__miracast + - connection_type__nfc + - connection_type__radio + - connection_type__wired + - connection_type__wireless + - connection_type__wireless_dongle +- id: 1812 + name: Tuner type + friendly_id: tuner_type + values: + - tuner_type__am_fm + - tuner_type__atsc + - tuner_type__dab_dab+ + - tuner_type__hd_radio + - tuner_type__ntsc + - tuner_type__qam + - tuner_type__satellite_radio +- id: 1813 + name: Audio connectivity + friendly_id: audio_connectivity + values: + - audio_connectivity__2_5_mm + - audio_connectivity__3_5_mm + - audio_connectivity__6_35_mm + - audio_connectivity__bluetooth + - audio_connectivity__display_port + - audio_connectivity__hdmi + - audio_connectivity__micro_usb + - audio_connectivity__optical + - audio_connectivity__usb + - audio_connectivity__wi_fi +- id: 1814 + name: Headphone style + friendly_id: headphone_style + values: + - headphone_style__behind_the_neck + - headphone_style__closed_back + - headphone_style__earbuds + - headphone_style__ear_hook + - headphone_style__open_back + - headphone_style__canal + - headphone_style__ear_hooks +- id: 1815 + name: Microphone type + friendly_id: microphone_type + values: + - microphone_type__bi_directional + - microphone_type__boom + - microphone_type__built_in + - microphone_type__condenser + - microphone_type__dynamic + - microphone_type__inline + - microphone_type__noise_canceling + - microphone_type__omnidirectional + - microphone_type__unidirectional +- id: 1816 + name: Polar pattern + friendly_id: polar_pattern + values: + - polar_pattern__cardioid + - polar_pattern__figure_8 + - polar_pattern__hypercardioid + - polar_pattern__multi_pattern + - polar_pattern__omnidirectional + - polar_pattern__shotgun + - polar_pattern__subcardioid + - polar_pattern__super_cardioid +- id: 1817 + name: Processor technology + friendly_id: processor_technology + values: + - processor_technology__analog + - processor_technology__digital + - processor_technology__dsp + - processor_technology__fpga + - processor_technology__hardware_based + - processor_technology__hybrid + - processor_technology__modeling + - processor_technology__multi_channel + - processor_technology__software_based + - processor_technology__tube_valve +- id: 1818 + name: Audio purpose + friendly_id: audio_purpose + values: + - audio_purpose__car_audio + - audio_purpose__computer_audio + - audio_purpose__home_audio + - audio_purpose__home_cinema + - audio_purpose__outdoor_use + - audio_purpose__pa_system + - audio_purpose__portable_audio + - audio_purpose__professional_audio + - audio_purpose__smart_home + - audio_purpose__studio_monitoring +- id: 1819 + name: Speaker design + friendly_id: speaker_design + values: + - speaker_design__bookshelf + - speaker_design__center_channel + - speaker_design__floorstanding + - speaker_design__in_ceiling + - speaker_design__in_wall + - speaker_design__outdoor + - speaker_design__portable + - speaker_design__satellite + - speaker_design__smart_speakers + - speaker_design__soundbar + - speaker_design__subwoofer + - speaker_design__tower +- id: 1820 + name: Speaker technology + friendly_id: speaker_technology + values: + - speaker_technology__dynamic + - speaker_technology__electrostatic + - speaker_technology__horn + - speaker_technology__piezoelectric + - speaker_technology__planar_magnetic + - speaker_technology__smart +- id: 1821 + name: Recording accessories included + friendly_id: recording_accessories_included + values: + - recording_accessories_included__acoustic_treatment_panels + - recording_accessories_included__audio_interface + - recording_accessories_included__headphones + - recording_accessories_included__microphone + - recording_accessories_included__microphone_stand + - recording_accessories_included__pop_filter +- id: 1822 + name: Audio codecs/formats supported + friendly_id: audio_codecs_formats_supported + values: + - audio_codecs_formats_supported__3g2 + - audio_codecs_formats_supported__3ga + - audio_codecs_formats_supported__3gp + - audio_codecs_formats_supported__3gpp + - audio_codecs_formats_supported__3gpp2 + - audio_codecs_formats_supported__aac + - audio_codecs_formats_supported__aac_he + - audio_codecs_formats_supported__aac_eld + - audio_codecs_formats_supported__aac_lc + - audio_codecs_formats_supported__aac_ld + - audio_codecs_formats_supported__aac+ + - audio_codecs_formats_supported__aac++ + - audio_codecs_formats_supported__aax + - audio_codecs_formats_supported__aax+ + - audio_codecs_formats_supported__ac3 + - audio_codecs_formats_supported__ac4 + - audio_codecs_formats_supported__adpcm + - audio_codecs_formats_supported__adts + - audio_codecs_formats_supported__aiff + - audio_codecs_formats_supported__alac + - audio_codecs_formats_supported__amr + - audio_codecs_formats_supported__amr_nb + - audio_codecs_formats_supported__amr_wb + - audio_codecs_formats_supported__aob + - audio_codecs_formats_supported__ape + - audio_codecs_formats_supported__apt_x + - audio_codecs_formats_supported__asf + - audio_codecs_formats_supported__au + - audio_codecs_formats_supported__awb + - audio_codecs_formats_supported__cbr + - audio_codecs_formats_supported__cd_a + - audio_codecs_formats_supported__celp + - audio_codecs_formats_supported__cook + - audio_codecs_formats_supported__cook_codec + - audio_codecs_formats_supported__cue + - audio_codecs_formats_supported__dff + - audio_codecs_formats_supported__ds2 + - audio_codecs_formats_supported__dsd + - audio_codecs_formats_supported__dsf + - audio_codecs_formats_supported__dss + - audio_codecs_formats_supported__dts + - audio_codecs_formats_supported__eaac+ + - audio_codecs_formats_supported__eac3 + - audio_codecs_formats_supported__flac + - audio_codecs_formats_supported__g_711 + - audio_codecs_formats_supported__g_711_a_law + - audio_codecs_formats_supported__g_722 + - audio_codecs_formats_supported__g_722_1 + - audio_codecs_formats_supported__g_723 + - audio_codecs_formats_supported__g_726 + - audio_codecs_formats_supported__g_729 + - audio_codecs_formats_supported__haac + - audio_codecs_formats_supported__he_a + - audio_codecs_formats_supported__he_aac + - audio_codecs_formats_supported__he_aac_v2 + - audio_codecs_formats_supported__hwa_ld + - audio_codecs_formats_supported__ima_adpcm + - audio_codecs_formats_supported__imy + - audio_codecs_formats_supported__lbr + - audio_codecs_formats_supported__lc_aac + - audio_codecs_formats_supported__lpcm + - audio_codecs_formats_supported__m4a + - audio_codecs_formats_supported__m4b + - audio_codecs_formats_supported__mid + - audio_codecs_formats_supported__midi + - audio_codecs_formats_supported__mka + - audio_codecs_formats_supported__mmf + - audio_codecs_formats_supported__mp1 + - audio_codecs_formats_supported__mp2 + - audio_codecs_formats_supported__mp2l2 + - audio_codecs_formats_supported__mp3 + - audio_codecs_formats_supported__mp3_vbr + - audio_codecs_formats_supported__mp4 + - audio_codecs_formats_supported__mpa + - audio_codecs_formats_supported__mqa + - audio_codecs_formats_supported__ms_adpcm + - audio_codecs_formats_supported__mxmf + - audio_codecs_formats_supported__not_supported + - audio_codecs_formats_supported__nrt + - audio_codecs_formats_supported__oga + - audio_codecs_formats_supported__ogg + - audio_codecs_formats_supported__opus + - audio_codecs_formats_supported__ota + - audio_codecs_formats_supported__pcm + - audio_codecs_formats_supported__pmd + - audio_codecs_formats_supported__qcp + - audio_codecs_formats_supported__qtff + - audio_codecs_formats_supported__ra_lossless + - audio_codecs_formats_supported__real_audio + - audio_codecs_formats_supported__rmi + - audio_codecs_formats_supported__rtsp + - audio_codecs_formats_supported__rtttl + - audio_codecs_formats_supported__rtx + - audio_codecs_formats_supported__sbc + - audio_codecs_formats_supported__smf + - audio_codecs_formats_supported__vorbis + - audio_codecs_formats_supported__wav + - audio_codecs_formats_supported__wave + - audio_codecs_formats_supported__wma + - audio_codecs_formats_supported__wma_l + - audio_codecs_formats_supported__wma_pro + - audio_codecs_formats_supported__wmv + - audio_codecs_formats_supported__wve + - audio_codecs_formats_supported__xmf + - audio_codecs_formats_supported___law + - audio_codecs_formats_supported__other +- id: 1823 + name: Media format + friendly_id: media_format + values: + - media_format__cassette + - media_format__cd + - media_format__minidisc + - media_format__mp3 + - media_format__other + - media_format__digital + - media_format__vinyl + - media_format__bd_r + - media_format__bd_re + - media_format__bd_xl + - media_format__betamax + - media_format__cd_r + - media_format__cd_rw + - media_format__dat + - media_format__dcc + - media_format__dvd_r + - media_format__dvd_ram + - media_format__dvd_rw + - media_format__dvd+r + - media_format__dvd+rw + - media_format__floppy_disk + - media_format__jaz_disk + - media_format__vhs + - media_format__zip_disk +- id: 1824 + name: Karaoke modes + friendly_id: karaoke_modes + values: + - karaoke_modes__duet + - karaoke_modes__group + - karaoke_modes__single +- id: 1825 + name: Cartridge type + friendly_id: cartridge_type + values: + - cartridge_type__ceramic + - cartridge_type__magnetic + - cartridge_type__moving_coil + - cartridge_type__moving_magnet + - cartridge_type__piezoelectric + - cartridge_type__strain_gauge +- id: 1826 + name: Player drive type + friendly_id: player_drive_type + values: + - player_drive_type__belt + - player_drive_type__direct + - player_drive_type__idler +- id: 1827 + name: Mixer type + friendly_id: mixer_type + values: + - mixer_type__analog + - mixer_type__battle + - mixer_type__club + - mixer_type__digital + - mixer_type__dj_controller + - mixer_type__non_powered + - mixer_type__powered + - mixer_type__rotary + - mixer_type__scratch +- id: 1828 + name: Antenna type + friendly_id: antenna_type + values: + - antenna_type__collinear + - antenna_type__dipole + - antenna_type__directional + - antenna_type__grid + - antenna_type__helical + - antenna_type__log_periodic + - antenna_type__omnidirectional + - antenna_type__panel + - antenna_type__parabolic + - antenna_type__patch + - antenna_type__sector + - antenna_type__whip + - antenna_type__yagi +- id: 1829 + name: Component package type + friendly_id: component_package_type + values: + - component_package_type__bga + - component_package_type__dfn + - component_package_type__dip + - component_package_type__lcc + - component_package_type__lga + - component_package_type__pga + - component_package_type__plcc + - component_package_type__pldip + - component_package_type__qfn + - component_package_type__qfp + - component_package_type__smd + - component_package_type__soic + - component_package_type__sop + - component_package_type__sopj + - component_package_type__sot + - component_package_type__sot_143 + - component_package_type__sot_223 + - component_package_type__sot_23 + - component_package_type__sot_363 + - component_package_type__sot_523 + - component_package_type__sot_723 + - component_package_type__sot_89 + - component_package_type__ssop + - component_package_type__to + - component_package_type__to_126 + - component_package_type__to_18 + - component_package_type__to_220 + - component_package_type__to_247 + - component_package_type__to_252 + - component_package_type__to_263 + - component_package_type__to_3 + - component_package_type__to_39 + - component_package_type__to_5 + - component_package_type__to_92 + - component_package_type__tqfp + - component_package_type__tsop + - component_package_type__tssop + - component_package_type__other +- id: 1830 + name: Connector gender + friendly_id: connector_gender + values: + - connector_gender__female_to_female + - connector_gender__female_to_male + - connector_gender__male_to_female + - connector_gender__male_to_male + - connector_gender__female + - connector_gender__male +- id: 1831 + name: Component output type + friendly_id: component_output_type + values: + - component_output_type__analog + - component_output_type__digital + - component_output_type__i2c + - component_output_type__pwm + - component_output_type__rs232 + - component_output_type__rs485 + - component_output_type__spi + - component_output_type__uart +- id: 1832 + name: Passband + friendly_id: passband + values: + - passband__all_pass + - passband__band_pass + - passband__band_stop + - passband__high_pass + - passband__low_pass +- id: 1833 + name: Stopband + friendly_id: stopband + values: + - stopband__low_frequency + - stopband__medium_frequency + - stopband__high_frequency + - stopband__very_high_frequency + - stopband__ultra_high_frequency + - stopband__super_high_frequency + - stopband__extremely_high_frequency +- id: 1834 + name: Dielectric type + friendly_id: dielectric_type + values: + - dielectric_type__air_capacitor + - dielectric_type__aluminum_electrolytic + - dielectric_type__ceramic + - dielectric_type__electrolytic + - dielectric_type__film + - dielectric_type__glass + - dielectric_type__glass_capacitor + - dielectric_type__mica + - dielectric_type__niobium_oxide + - dielectric_type__paper + - dielectric_type__polycarbonate_pc + - dielectric_type__polyester + - dielectric_type__polypropylene_pp + - dielectric_type__silicon_capacitor + - dielectric_type__solid_polymer + - dielectric_type__supercapacitor + - dielectric_type__tantalum + - dielectric_type__vacuum_capacitor +- id: 1835 + name: Output waveform + friendly_id: output_waveform + values: + - output_waveform__complex + - output_waveform__pulse + - output_waveform__sawtooth + - output_waveform__sine + - output_waveform__square + - output_waveform__triangle +- id: 1836 + name: BIOS type + friendly_id: bios_type + values: + - bios_type__ami + - bios_type__aptio + - bios_type__award + - bios_type__coreboot + - bios_type__custom + - bios_type__hybrid + - bios_type__insyde + - bios_type__legacy + - bios_type__phoenix + - bios_type__uefi +- id: 1837 + name: Compatible processor series + friendly_id: compatible_processor_series + values: + - compatible_processor_series__amd_a + - compatible_processor_series__amd_athlon + - compatible_processor_series__amd_athlon_fx + - compatible_processor_series__amd_athlon_ii + - compatible_processor_series__amd_athlon_ii_dual_core + - compatible_processor_series__amd_athlon_ii_x2 + - compatible_processor_series__amd_athlon_ii_x3 + - compatible_processor_series__amd_athlon_ii_x4 + - compatible_processor_series__amd_athlon_mp + - compatible_processor_series__amd_athlon_neo_x2 + - compatible_processor_series__amd_athlon_x2 + - compatible_processor_series__amd_athlon_x2_dual_core + - compatible_processor_series__amd_athlon_x4 + - compatible_processor_series__amd_athlon_xp + - compatible_processor_series__amd_c + - compatible_processor_series__amd_duron + - compatible_processor_series__amd_e + - compatible_processor_series__amd_e2 + - compatible_processor_series__amd_epyc + - compatible_processor_series__amd_epyc_7000 + - compatible_processor_series__amd_epyc_7002 + - compatible_processor_series__amd_freesync + - compatible_processor_series__amd_fx + - compatible_processor_series__amd_geode + - compatible_processor_series__amd_opteron + - compatible_processor_series__amd_phenom + - compatible_processor_series__amd_phenom_fx + - compatible_processor_series__amd_phenom_ii_dual_core_mobile + - compatible_processor_series__amd_phenom_ii_quad_core_mobile + - compatible_processor_series__amd_phenom_ii_triple_core_mobile + - compatible_processor_series__amd_phenom_ii_x2 + - compatible_processor_series__amd_phenom_ii_x3 + - compatible_processor_series__amd_phenom_ii_x4 + - compatible_processor_series__amd_phenom_ii_x6 + - compatible_processor_series__amd_phenom_ii_x8 + - compatible_processor_series__amd_phenom_x3 + - compatible_processor_series__amd_phenom_x4 + - compatible_processor_series__amd_ryzen_3_2nd_gen + - compatible_processor_series__amd_ryzen_3_3rd_gen + - compatible_processor_series__amd_ryzen_5 + - compatible_processor_series__amd_ryzen_5_2nd_gen + - compatible_processor_series__amd_ryzen_5_3rd_gen + - compatible_processor_series__amd_ryzen_5_5th_gen + - compatible_processor_series__amd_ryzen_7 + - compatible_processor_series__amd_ryzen_7_2nd_gen + - compatible_processor_series__amd_ryzen_7_3rd_gen + - compatible_processor_series__amd_ryzen_7_5th_gen + - compatible_processor_series__amd_ryzen_7_7th_gen + - compatible_processor_series__amd_ryzen_9_3rd_gen + - compatible_processor_series__amd_ryzen_9_5th_gen + - compatible_processor_series__amd_ryzen_9_7th_gen + - compatible_processor_series__amd_ryzen_threadripper + - compatible_processor_series__amd_ryzen_threadripper_2nd_gen + - compatible_processor_series__amd_ryzen_threadripper_3rd_gen + - compatible_processor_series__amd_ryzen_threadripper_pro_3rd_gen + - compatible_processor_series__amd_sempron + - compatible_processor_series__amd_turion_64_x2_dual_core + - compatible_processor_series__amd_turion_ii_neo + - compatible_processor_series__amd_turion_x2_ultra_dual_core + - compatible_processor_series__intel_atom + - compatible_processor_series__intel_celeron + - compatible_processor_series__intel_celeron_d + - compatible_processor_series__intel_celeron_dual_core + - compatible_processor_series__intel_celeron_e + - compatible_processor_series__intel_celeron_g + - compatible_processor_series__intel_celeron_m + - compatible_processor_series__intel_celeron_n + - compatible_processor_series__intel_core_2_duo + - compatible_processor_series__intel_core_2_extreme + - compatible_processor_series__intel_core_2_quad + - compatible_processor_series__intel_core_duo + - compatible_processor_series__intel_core_i3 + - compatible_processor_series__intel_core_i5 + - compatible_processor_series__intel_core_i7 + - compatible_processor_series__intel_core_i7_extreme_edition + - compatible_processor_series__intel_core_i9 + - compatible_processor_series__intel_core_i9_extreme_edition + - compatible_processor_series__intel_core_solo + - compatible_processor_series__intel_core_x_series + - compatible_processor_series__intel_itanium + - compatible_processor_series__intel_pentium + - compatible_processor_series__intel_pentium_4 + - compatible_processor_series__intel_pentium_4_extreme_edition + - compatible_processor_series__intel_pentium_d + - compatible_processor_series__intel_pentium_dual_core + - compatible_processor_series__intel_pentium_extreme_edition + - compatible_processor_series__intel_pentium_g + - compatible_processor_series__intel_pentium_gold + - compatible_processor_series__intel_pentium_iii + - compatible_processor_series__intel_pentium_m + - compatible_processor_series__intel_x99 + - compatible_processor_series__intel_xeon + - compatible_processor_series__intel_xeon_e + - compatible_processor_series__intel_xeon_e3 + - compatible_processor_series__intel_xeon_e5 + - compatible_processor_series__intel_xeon_phi + - compatible_processor_series__intel_xeon_w + - compatible_processor_series__not_supported + - compatible_processor_series__via_c3 + - compatible_processor_series__via_c7 + - compatible_processor_series__via_luke + - compatible_processor_series__via_nano + - compatible_processor_series__via_v4 + - compatible_processor_series__other +- id: 1838 + name: Expansion slots + friendly_id: expansion_slots + values: + - expansion_slots__agp + - expansion_slots__amr + - expansion_slots__cnr + - expansion_slots__isa + - expansion_slots__m_2 + - expansion_slots__mini_pcie + - expansion_slots__pci + - expansion_slots__pcie + - expansion_slots__dimm + - expansion_slots__sata + - expansion_slots__other +- id: 1839 + name: Memory features + friendly_id: memory_features + values: + - memory_features__ecc + - memory_features__non_ecc + - memory_features__registered_buffered + - memory_features__unbuffered +- id: 1840 + name: Memory technology + friendly_id: memory_technology + values: + - memory_technology__asynchronous_sram + - memory_technology__ddr + - memory_technology__ddr2 + - memory_technology__ddr3 + - memory_technology__ddr4 + - memory_technology__ddr5 + - memory_technology__dram + - memory_technology__edo_dram + - memory_technology__flash + - memory_technology__fpm_dram + - memory_technology__gddr + - memory_technology__gddr2 + - memory_technology__gddr3 + - memory_technology__gddr4 + - memory_technology__gddr5 + - memory_technology__gddr6 + - memory_technology__gddr6x + - memory_technology__hbm + - memory_technology__hbm2 + - memory_technology__hbm2e + - memory_technology__hbm3 + - memory_technology__nand_flash + - memory_technology__nor_flash + - memory_technology__nvram + - memory_technology__plc + - memory_technology__pseudo_sram + - memory_technology__qlc + - memory_technology__rdram + - memory_technology__sdr_sdram + - memory_technology__sdram + - memory_technology__serial_nor + - memory_technology__slc + - memory_technology__sram + - memory_technology__synchronous_sram + - memory_technology__tlc + - memory_technology__xip_nor + - memory_technology__other +- id: 1841 + name: Motherboard chipset family + friendly_id: motherboard_chipset_family + values: + - motherboard_chipset_family__amd + - motherboard_chipset_family__intel + - motherboard_chipset_family__nvidia + - motherboard_chipset_family__sis + - motherboard_chipset_family__via +- id: 1842 + name: Motherboard form factor + friendly_id: motherboard_form_factor + values: + - motherboard_form_factor__atx + - motherboard_form_factor__extended_atx + - motherboard_form_factor__flexatx + - motherboard_form_factor__micro_atx + - motherboard_form_factor__mini_dtx + - motherboard_form_factor__mini_itx + - motherboard_form_factor__nano_itx +- id: 1843 + name: Multi-GPU technology + friendly_id: multi_gpu_technology + values: + - multi_gpu_technology__2_way_crossfirex + - multi_gpu_technology__2_way_nvlink + - multi_gpu_technology__2_way_sli + - multi_gpu_technology__3_way_crossfirex + - multi_gpu_technology__3_way_sli + - multi_gpu_technology__4_way_crossfirex + - multi_gpu_technology__4_way_sli + - multi_gpu_technology__app + - multi_gpu_technology__crossfire + - multi_gpu_technology__crossfire_pro + - multi_gpu_technology__crossfirex + - multi_gpu_technology__dual_graphics + - multi_gpu_technology__hybrid_crossfirex + - multi_gpu_technology__lucidlogix_virtu + - multi_gpu_technology__not_supported + - multi_gpu_technology__nvidia_turing + - multi_gpu_technology__nvlink + - multi_gpu_technology__quad_gpu_crossfirex + - multi_gpu_technology__quad_gpu_sli + - multi_gpu_technology__sli + - multi_gpu_technology__other +- id: 1844 + name: Parallel processing technology support + friendly_id: parallel_processing_technology_support + values: + - parallel_processing_technology_support__avx + - parallel_processing_technology_support__cuda + - parallel_processing_technology_support__fma + - parallel_processing_technology_support__gpgpu + - parallel_processing_technology_support__hsa + - parallel_processing_technology_support__hyper_threading + - parallel_processing_technology_support__multi_core + - parallel_processing_technology_support__multi_gpu + - parallel_processing_technology_support__opencl + - parallel_processing_technology_support__simd +- id: 1845 + name: Processor socket + friendly_id: processor_socket + values: + - processor_socket__lga_1150_socket_h3 + - processor_socket__lga_1151_socket_h4 + - processor_socket__lga_1151_v2 + - processor_socket__lga_1155_socket_h2 + - processor_socket__lga_1156_socket_h + - processor_socket__lga_1200 + - processor_socket__lga_1366_socket_b + - processor_socket__lga_2011_socket_r + - processor_socket__lga_2011_v3 + - processor_socket__lga_2066_socket_r4 + - processor_socket__lga_3647_socket_p + - processor_socket__lga_775_socket_t + - processor_socket__socket_370 + - processor_socket__socket_423 + - processor_socket__socket_478 + - processor_socket__socket_479 + - processor_socket__socket_603 + - processor_socket__socket_604_mpga604 + - processor_socket__socket_754 + - processor_socket__socket_771_socket_j + - processor_socket__socket_939 + - processor_socket__socket_940 + - processor_socket__socket_988 + - processor_socket__socket_a_462 + - processor_socket__socket_am1 + - processor_socket__socket_am2 + - processor_socket__socket_am2+ + - processor_socket__socket_am3 + - processor_socket__socket_am3+ + - processor_socket__socket_am4 + - processor_socket__socket_c32 + - processor_socket__socket_f_1207 + - processor_socket__socket_fm1 + - processor_socket__socket_fm2 + - processor_socket__socket_fm2+ + - processor_socket__socket_fp2 + - processor_socket__socket_fp3 + - processor_socket__socket_fp4 + - processor_socket__socket_fp5 + - processor_socket__socket_g2 + - processor_socket__socket_g3 + - processor_socket__socket_g34 + - processor_socket__socket_m_mpga478mt + - processor_socket__socket_p + - processor_socket__socket_s1 + - processor_socket__socket_sp3 + - processor_socket__socket_strx4 + - processor_socket__socket_swrx8 + - processor_socket__socket_tr4 + - processor_socket__socket_trx4 + - processor_socket__other +- id: 1846 + name: Storage drive interfaces supported + friendly_id: storage_drive_interfaces_supported + values: + - storage_drive_interfaces_supported__esata + - storage_drive_interfaces_supported__fcal + - storage_drive_interfaces_supported__hsdl + - storage_drive_interfaces_supported__ide + - storage_drive_interfaces_supported__m_2 + - storage_drive_interfaces_supported__micro_sata + - storage_drive_interfaces_supported__micro_sata_ii + - storage_drive_interfaces_supported__micro_sata_iii + - storage_drive_interfaces_supported__micro_serial_ata + - storage_drive_interfaces_supported__micro_serial_ata_ii + - storage_drive_interfaces_supported__micro_serial_ata_iii + - storage_drive_interfaces_supported__mini_pci_express + - storage_drive_interfaces_supported__mini_zif + - storage_drive_interfaces_supported__msata + - storage_drive_interfaces_supported__nvme + - storage_drive_interfaces_supported__nvme_3_0 + - storage_drive_interfaces_supported__parallel_ata + - storage_drive_interfaces_supported__pci_express + - storage_drive_interfaces_supported__pci_express_2_0 + - storage_drive_interfaces_supported__pci_express_3_0 + - storage_drive_interfaces_supported__pci_express_3_1 + - storage_drive_interfaces_supported__pci_express_4_0 + - storage_drive_interfaces_supported__pci_express_5_0 + - storage_drive_interfaces_supported__sas + - storage_drive_interfaces_supported__sas_2 + - storage_drive_interfaces_supported__sas_3 + - storage_drive_interfaces_supported__sas_4 + - storage_drive_interfaces_supported__sata + - storage_drive_interfaces_supported__sata_ii + - storage_drive_interfaces_supported__sata_iii + - storage_drive_interfaces_supported__serial_ata + - storage_drive_interfaces_supported__serial_ata_ii + - storage_drive_interfaces_supported__serial_ata_iii + - storage_drive_interfaces_supported__serial_attached_scsi + - storage_drive_interfaces_supported__ultra_m_2 + - storage_drive_interfaces_supported__zif + - storage_drive_interfaces_supported__other +- id: 1847 + name: Wi-Fi standard + friendly_id: wi_fi_standard + values: + - wi_fi_standard__802_11a + - wi_fi_standard__802_11ac + - wi_fi_standard__802_11ax + - wi_fi_standard__802_11b + - wi_fi_standard__802_11g + - wi_fi_standard__802_11n +- id: 1848 + name: Radio case design + friendly_id: radio_case_design + values: + - radio_case_design__fixed + - radio_case_design__swivel + - radio_case_design__other +- id: 1849 + name: Handset type + friendly_id: handset_type + values: + - handset_type__corded + - handset_type__cordless +- id: 1850 + name: Telephone style + friendly_id: telephone_style + values: + - telephone_style__business + - telephone_style__candlestick + - telephone_style__novelty + - telephone_style__standard + - telephone_style__trimline + - telephone_style__vintage + - telephone_style__wall_mountable +- id: 1851 + name: Feet type + friendly_id: feet_type + values: + - feet_type__pivoting + - feet_type__retractable + - feet_type__rubber + - feet_type__spiked +- id: 1852 + name: Leg lock type + friendly_id: leg_lock_type + values: + - leg_lock_type__flip_lock + - leg_lock_type__push_pull_lock + - leg_lock_type__twist_lock +- id: 1853 + name: Leg sections + friendly_id: leg_sections + values: + - leg_sections__1 + - leg_sections__2 + - leg_sections__3 + - leg_sections__4 + - leg_sections__5+ +- id: 1854 + name: Certifications & standards + friendly_id: certifications_standards + values: + - certifications_standards__bpa_free + - certifications_standards__ce_certified + - certifications_standards__other + - certifications_standards__fda_approved + - certifications_standards__silicone_free +- id: 1855 + name: SIM card type + friendly_id: sim_card_type + values: + - sim_card_type__esim + - sim_card_type__micro_sim + - sim_card_type__nano_sim + - sim_card_type__standard_sim +- id: 1856 + name: Battery technology + friendly_id: battery_technology + values: + - battery_technology__alkaline + - battery_technology__gel_cell + - battery_technology__lead_calcium_pb_ca + - battery_technology__lithium + - battery_technology__lithium_cobalt_oxide_licoo2 + - battery_technology__lithium_imide_li2nh + - battery_technology__lithium_iron_phosphate_lifepo4 + - battery_technology__lithium_nickel_cobalt_aluminum_oxide_linca + - battery_technology__lithium_nickel_manganese_cobalt_oxide_linmc + - battery_technology__lithium_polymer_lipo + - battery_technology__lithium_thionyl_chloride_lisocl2 + - battery_technology__lithium_ion_li_ion + - battery_technology__lithium_ion_high_density_lihd + - battery_technology__lithium_manganese_dioxide_limno2 + - battery_technology__nickel_cadmium_nicd + - battery_technology__nickel_metal_hydride_nimh + - battery_technology__nickel_oxyhydroxide_niox + - battery_technology__nickel_zinc_nizn + - battery_technology__polymer + - battery_technology__sealed_lead_acid + - battery_technology__silver_oxide_ag2o + - battery_technology__vrla + - battery_technology__zinc_chloride + - battery_technology__zinc_air + - battery_technology__zinc_carbon + - battery_technology__zinc_manganese_dioxide_zn_mno2 + - battery_technology__other +- id: 1857 + name: Cosmetic condition + friendly_id: cosmetic_condition + values: + - cosmetic_condition__new + - cosmetic_condition__opened_never_used + - cosmetic_condition__refurbished_certified + - cosmetic_condition__refurbished_excellent + - cosmetic_condition__refurbished_fair + - cosmetic_condition__refurbished_good + - cosmetic_condition__refurbished_very_good +- id: 1858 + name: Data network + friendly_id: data_network + values: + - data_network__3g + - data_network__4g + - data_network__5g + - data_network__lte +- id: 1859 + name: Operating system + friendly_id: operating_system + values: + - operating_system__android + - operating_system__android_tv + - operating_system__chrome_os + - operating_system__linux + - operating_system__macos + - operating_system__raspberry_pi_os + - operating_system__tizen + - operating_system__webos + - operating_system__windows + - operating_system__fire_os + - operating_system__freebsd + - operating_system__ios + - operating_system__tvos + - operating_system__unix + - operating_system__watchos + - operating_system__cross_platform +- id: 1860 + name: Removable storage formats supported + friendly_id: removable_storage_formats_supported + values: + - removable_storage_formats_supported__cf + - removable_storage_formats_supported__cf_type_ii + - removable_storage_formats_supported__cf+ + - removable_storage_formats_supported__cfast + - removable_storage_formats_supported__cfast_2_0 + - removable_storage_formats_supported__cfexpress + - removable_storage_formats_supported__dv_rs_mmc + - removable_storage_formats_supported__exd + - removable_storage_formats_supported__expressp2 + - removable_storage_formats_supported__eye_fi + - removable_storage_formats_supported__flu + - removable_storage_formats_supported__hc_mmc+ + - removable_storage_formats_supported__microdrive + - removable_storage_formats_supported__microp2 + - removable_storage_formats_supported__microsd + - removable_storage_formats_supported__microsdhc + - removable_storage_formats_supported__microsdxc + - removable_storage_formats_supported__minimmc + - removable_storage_formats_supported__minisd + - removable_storage_formats_supported__minisdhc + - removable_storage_formats_supported__minisdxc + - removable_storage_formats_supported__mmc + - removable_storage_formats_supported__mmc_micro + - removable_storage_formats_supported__mmc_mobile + - removable_storage_formats_supported__mmc_plus + - removable_storage_formats_supported__mmc+ + - removable_storage_formats_supported__ms + - removable_storage_formats_supported__ms_duo + - removable_storage_formats_supported__ms_micro_m2 + - removable_storage_formats_supported__ms_pro + - removable_storage_formats_supported__ms_pro_duo + - removable_storage_formats_supported__ms_pro_duo_hs + - removable_storage_formats_supported__ms_pro_duo_mark_2 + - removable_storage_formats_supported__ms_pro_hg + - removable_storage_formats_supported__ms_pro_hg_duo + - removable_storage_formats_supported__ms_pro_hg_duo_hx + - removable_storage_formats_supported__ms_xc_hg_duo + - removable_storage_formats_supported__msxc + - removable_storage_formats_supported__nano_memory_nm + - removable_storage_formats_supported__p2 + - removable_storage_formats_supported__psvita + - removable_storage_formats_supported__rs_mmc + - removable_storage_formats_supported__sd + - removable_storage_formats_supported__sdhc + - removable_storage_formats_supported__sdio + - removable_storage_formats_supported__sdxc + - removable_storage_formats_supported__smart_media_xd + - removable_storage_formats_supported__smartmedia + - removable_storage_formats_supported__srmemory + - removable_storage_formats_supported__sxs + - removable_storage_formats_supported__sxs_pro + - removable_storage_formats_supported__sxs_1 + - removable_storage_formats_supported__usb_flash_drive + - removable_storage_formats_supported__xd + - removable_storage_formats_supported__xd_picture_card + - removable_storage_formats_supported__xqd + - removable_storage_formats_supported__other +- id: 1861 + name: SIM card capability + friendly_id: sim_card_capability + values: + - sim_card_capability__single + - sim_card_capability__dual + - sim_card_capability__hybrid_dual + - sim_card_capability__triple + - sim_card_capability__embedded +- id: 1862 + name: SIM card type 1 + friendly_id: sim_card_type_1 + values_from: sim_card_type +- id: 1863 + name: SIM card type 2 + friendly_id: sim_card_type_2 + values_from: sim_card_type +- id: 1864 + name: Subscription type + friendly_id: subscription_type + values: + - subscription_type__contract + - subscription_type__pay_as_you_go + - subscription_type__post_paid + - subscription_type__pre_paid + - subscription_type__satellite + - subscription_type__unlocked +- id: 1865 + name: Satellite coverage area + friendly_id: satellite_coverage_area + values: + - satellite_coverage_area__africa + - satellite_coverage_area__asia + - satellite_coverage_area__australia + - satellite_coverage_area__central_europe + - satellite_coverage_area__east_africa + - satellite_coverage_area__eastern_europe + - satellite_coverage_area__europe + - satellite_coverage_area__middle_africa + - satellite_coverage_area__north_africa + - satellite_coverage_area__north_america + - satellite_coverage_area__south_america + - satellite_coverage_area__south_east_asia + - satellite_coverage_area__southern_africa + - satellite_coverage_area__western_africa + - satellite_coverage_area__western_europe +- id: 1866 + name: Satellite network type + friendly_id: satellite_network_type + values: + - satellite_network_type__globalstar + - satellite_network_type__inmarsat + - satellite_network_type__iridium + - satellite_network_type__thuraya +- id: 1867 + name: Modulation method + friendly_id: modulation_method + values: + - modulation_method__am + - modulation_method__fm + - modulation_method__gfsk + - modulation_method__ofdm + - modulation_method__pam + - modulation_method__pcm + - modulation_method__pm + - modulation_method__ppm + - modulation_method__pwm + - modulation_method__qam +- id: 1868 + name: Splitter use + friendly_id: splitter_use + values: + - splitter_use__audio + - splitter_use__coaxial + - splitter_use__dvi + - splitter_use__ethernet + - splitter_use__hdmi + - splitter_use__power + - splitter_use__usb + - splitter_use__vga + - splitter_use__video +- id: 1869 + name: Processor family + friendly_id: processor_family + values: + - processor_family__amd_ryzen + - processor_family__apple_m1 + - processor_family__arm_cortex + - processor_family__ibm_power + - processor_family__intel_celeron + - processor_family__intel_core_i3 + - processor_family__intel_core_i5 + - processor_family__intel_core_i7 + - processor_family__intel_core_i9 + - processor_family__intel_pentium + - processor_family__intel_xeon + - processor_family__mediatek_helio + - processor_family__nvidia_tegra + - processor_family__qualcomm_snapdragon + - processor_family__samsung_exynos + - processor_family__other +- id: 1870 + name: Chassis type + friendly_id: chassis_type + values: + - chassis_type__all_in_one + - chassis_type__blade_server + - chassis_type__compact + - chassis_type__cube + - chassis_type__desktop + - chassis_type__full_tower + - chassis_type__jbod + - chassis_type__micro_atx + - chassis_type__mid_tower + - chassis_type__mini_tower + - chassis_type__modular + - chassis_type__nas + - chassis_type__open_frame + - chassis_type__pedestal + - chassis_type__rack_mount + - chassis_type__san + - chassis_type__sff + - chassis_type__storage_enclosure + - chassis_type__tower + - chassis_type__wall_mounted +- id: 1871 + name: Computer form + friendly_id: computer_form + values: + - computer_form__all_in_one + - computer_form__blade_server + - computer_form__chromebook + - computer_form__cloud_client + - computer_form__compact + - computer_form__convertible + - computer_form__jbod + - computer_form__nas + - computer_form__netbook + - computer_form__notebook + - computer_form__remote_desktop_client + - computer_form__san + - computer_form__storage_enclosure + - computer_form__ultrabook + - computer_form__usf + - computer_form__vdi_client + - computer_form__workstation + - computer_form__zero_client +- id: 1872 + name: Cooling technology + friendly_id: cooling_technology + values: + - cooling_technology__active + - cooling_technology__air + - cooling_technology__blower + - cooling_technology__closed_loop + - cooling_technology__direct_to_die + - cooling_technology__dual_fan + - cooling_technology__fan + - cooling_technology__heat_pipe + - cooling_technology__heat_sink + - cooling_technology__hybrid + - cooling_technology__liquid + - cooling_technology__micro_fin + - cooling_technology__open_loop + - cooling_technology__passive + - cooling_technology__peltier + - cooling_technology__phase_change + - cooling_technology__radiator + - cooling_technology__tower + - cooling_technology__vapor_chamber + - cooling_technology__water +- id: 1873 + name: Graphics card type + friendly_id: graphics_card_type + values: + - graphics_card_type__dedicated + - graphics_card_type__integrated + - graphics_card_type__professional + - graphics_card_type__none +- id: 1874 + name: Internal drive form factor supported + friendly_id: internal_drive_form_factor_supported + values: + - internal_drive_form_factor_supported__2_5_inch + - internal_drive_form_factor_supported__3_5_inch + - internal_drive_form_factor_supported__5_25_inch +- id: 1875 + name: Memory form factor + friendly_id: memory_form_factor + values: + - memory_form_factor__dimm + - memory_form_factor__micro_dimm + - memory_form_factor__rimm + - memory_form_factor__simm + - memory_form_factor__so_dimm +- id: 1876 + name: Storage types supported + friendly_id: storage_types_supported + values: + - storage_types_supported__cloud_storage + - storage_types_supported__emmc + - storage_types_supported__hard_disk_drive_hdd + - storage_types_supported__hybrid_drive_hdd_ssd + - storage_types_supported__m_2_ssd + - storage_types_supported__nas + - storage_types_supported__optical_drive + - storage_types_supported__pcie_nvme_ssd + - storage_types_supported__raid + - storage_types_supported__sata_ssd + - storage_types_supported__solid_state_drive_ssd +- id: 1877 + name: Optical drive type + friendly_id: optical_drive_type + values: + - optical_drive_type__blu_ray_disc + - optical_drive_type__blu_ray_disc_re + - optical_drive_type__cd_rom + - optical_drive_type__cd_rw + - optical_drive_type__combo + - optical_drive_type__dvd_rom + - optical_drive_type__dvd_rw + - optical_drive_type__dvd+rw + - optical_drive_type__super_multi +- id: 1878 + name: E-book formats supported + friendly_id: e_book_formats_supported + values: + - e_book_formats_supported__azw + - e_book_formats_supported__azw3 + - e_book_formats_supported__cbz_cbr + - e_book_formats_supported__djvu + - e_book_formats_supported__doc_docx + - e_book_formats_supported__epub + - e_book_formats_supported__html + - e_book_formats_supported__mobi + - e_book_formats_supported__pdf + - e_book_formats_supported__rtf + - e_book_formats_supported__txt +- id: 1879 + name: Keyboard type + friendly_id: keyboard_type + values: + - keyboard_type__backlit + - keyboard_type__butterfly + - keyboard_type__compact + - keyboard_type__detachable + - keyboard_type__island_style + - keyboard_type__mechanical + - keyboard_type__scissor_switch + - keyboard_type__standard + - keyboard_type__touchscreen +- id: 1880 + name: VDI protocol support + friendly_id: vdi_protocol_support + values: + - vdi_protocol_support__blast_extreme + - vdi_protocol_support__ica_hdx + - vdi_protocol_support__pcoip + - vdi_protocol_support__rdp + - vdi_protocol_support__vdi +- id: 1881 + name: Touch capabilities + friendly_id: touch_capabilities + values: + - touch_capabilities__dual + - touch_capabilities__multi + - touch_capabilities__single +- id: 1882 + name: Touchscreen technology + friendly_id: touchscreen_technology + values: + - touchscreen_technology__capacitive + - touchscreen_technology__in_cell + - touchscreen_technology__infrared + - touchscreen_technology__on_cell + - touchscreen_technology__optical + - touchscreen_technology__optical_imaging + - touchscreen_technology__other + - touchscreen_technology__pcap + - touchscreen_technology__resistive + - touchscreen_technology__saw +- id: 1883 + name: Angles supported + friendly_id: angles_supported + values: + - angles_supported__0_to_180 + - angles_supported__180 + - angles_supported__270 + - angles_supported__30_to_75 + - angles_supported__360 + - angles_supported__45_to_90 + - angles_supported__90 + - angles_supported__adjustable +- id: 1884 + name: Rotator control technology + friendly_id: rotator_control_technology + values: + - rotator_control_technology__automatic + - rotator_control_technology__computer + - rotator_control_technology__digital + - rotator_control_technology__manual + - rotator_control_technology__motorized + - rotator_control_technology__programmable + - rotator_control_technology__remote + - rotator_control_technology__smartphone_app + - rotator_control_technology__wi_fi + - rotator_control_technology__wired +- id: 1885 + name: LNB output + friendly_id: lnb_output + values: + - lnb_output__dual + - lnb_output__multi_switch + - lnb_output__octo + - lnb_output__quad + - lnb_output__single +- id: 1886 + name: LNB technology + friendly_id: lnb_technology + values: + - lnb_technology__4k + - lnb_technology__c_band + - lnb_technology__circular_polarization + - lnb_technology__diseqc + - lnb_technology__dual_polarization + - lnb_technology__hd + - lnb_technology__high_gain + - lnb_technology__hybrid + - lnb_technology__ka_band + - lnb_technology__ku_band + - lnb_technology__low_noise + - lnb_technology__monoblock + - lnb_technology__scr + - lnb_technology__standard + - lnb_technology__unicable + - lnb_technology__universal + - lnb_technology__wideband +- id: 1887 + name: Polarization + friendly_id: polarization + values: + - polarization__circular + - polarization__elliptical + - polarization__horizontal + - polarization__left_hand_circular + - polarization__linear + - polarization__right_hand_circular + - polarization__vertical +- id: 1888 + name: Compatible HDCP + friendly_id: compatible_hdcp + values: + - compatible_hdcp__hdcp_1_4 + - compatible_hdcp__hdcp_2_2 + - compatible_hdcp__hdcp_2_3 + - compatible_hdcp__not_compatible +- id: 1889 + name: Switching method + friendly_id: switching_method + values: + - switching_method__automatic + - switching_method__hdmi_cec + - switching_method__keyboard_hotkey + - switching_method__manual + - switching_method__priority + - switching_method__push_button + - switching_method__remote_control + - switching_method__rotary + - switching_method__software_controlled +- id: 1890 + name: Panel specification + friendly_id: panel_specification + values: + - panel_specification__blank + - panel_specification__cat5e + - panel_specification__cat6 + - panel_specification__cat6a + - panel_specification__cat7 + - panel_specification__fiber_optic + - panel_specification__modular + - panel_specification__rack_mounted + - panel_specification__wall_mounted +- id: 1891 + name: Panel termination + friendly_id: panel_termination + values: + - panel_termination__110_punch_down + - panel_termination__krone_punch_down + - panel_termination__lc_connector + - panel_termination__rj_11 + - panel_termination__rj_45 + - panel_termination__sc_connector + - panel_termination__solder + - panel_termination__st_connector + - panel_termination__toolless +- id: 1892 + name: Cable shielding + friendly_id: cable_shielding + values: + - cable_shielding__braided_stp + - cable_shielding__foil_ftp + - cable_shielding__foil_braided_sftp + - cable_shielding__overall_foil_s_ftp + - cable_shielding__unshielded_utp +- id: 1893 + name: Input connection + friendly_id: input_connection + values_from: device_interface +- id: 1894 + name: Output connection + friendly_id: output_connection + values_from: device_interface +- id: 1895 + name: Network cable interface + friendly_id: network_cable_interface + values: + - network_cable_interface__bnc + - network_cable_interface__lc + - network_cable_interface__mpo_mtp + - network_cable_interface__mt_rj + - network_cable_interface__rj_11 + - network_cable_interface__rj_45 + - network_cable_interface__sc + - network_cable_interface__st +- id: 1896 + name: Telephone cable interface + friendly_id: telephone_cable_interface + values: + - telephone_cable_interface__rj_10 + - telephone_cable_interface__rj_11 + - telephone_cable_interface__rj_12 + - telephone_cable_interface__rj_14 + - telephone_cable_interface__rj_22 + - telephone_cable_interface__rj_25 + - telephone_cable_interface__rj_45 + - telephone_cable_interface__rj_45s + - telephone_cable_interface__rj_9 +- id: 1897 + name: Computer accessories included + friendly_id: computer_accessories_included + values: + - computer_accessories_included__headset + - computer_accessories_included__keyboard + - computer_accessories_included__laptop_bag + - computer_accessories_included__monitor_stand + - computer_accessories_included__mouse + - computer_accessories_included__mouse_pad + - computer_accessories_included__usb_hub +- id: 1898 + name: Compatible motherboard form factor + friendly_id: compatible_motherboard_form_factor + values: + - compatible_motherboard_form_factor__atx + - compatible_motherboard_form_factor__extended_atx + - compatible_motherboard_form_factor__flexatx + - compatible_motherboard_form_factor__micro_atx + - compatible_motherboard_form_factor__mini_dtx + - compatible_motherboard_form_factor__mini_itx + - compatible_motherboard_form_factor__nano_itx + - compatible_motherboard_form_factor__other +- id: 1899 + name: Instruction set architecture + friendly_id: instruction_set_architecture + values: + - instruction_set_architecture__32_bit + - instruction_set_architecture__64_bit +- id: 1900 + name: Memory channels + friendly_id: memory_channels + values: + - memory_channels__dodeca + - memory_channels__dual + - memory_channels__hepta + - memory_channels__hexa + - memory_channels__hexadeca + - memory_channels__octa + - memory_channels__penta + - memory_channels__quad + - memory_channels__single + - memory_channels__tetracosa + - memory_channels__triple +- id: 1901 + name: Processor cores + friendly_id: processor_cores + values: + - processor_cores__deca + - processor_cores__dodeca + - processor_cores__dual + - processor_cores__hexa + - processor_cores__hexadeca + - processor_cores__multi + - processor_cores__octa + - processor_cores__quad + - processor_cores__single +- id: 1902 + name: Barcode scanner interface + friendly_id: barcode_scanner_interface + values: + - barcode_scanner_interface__bluetooth + - barcode_scanner_interface__ethernet + - barcode_scanner_interface__keyboard_wedge + - barcode_scanner_interface__lightning + - barcode_scanner_interface__proprietary_connector + - barcode_scanner_interface__ps_2 + - barcode_scanner_interface__rs_232 + - barcode_scanner_interface__serial + - barcode_scanner_interface__usb + - barcode_scanner_interface__usb_type_c + - barcode_scanner_interface__wireless_rf +- id: 1903 + name: Barcode supported + friendly_id: barcode_supported + values: + - barcode_supported__1d + - barcode_supported__2d +- id: 1904 + name: Scanner sensor type + friendly_id: scanner_sensor_type + values: + - scanner_sensor_type__2d_imager + - scanner_sensor_type__ccd + - scanner_sensor_type__cis + - scanner_sensor_type__laser + - scanner_sensor_type__linear_imager + - scanner_sensor_type__other +- id: 1905 + name: Compatible electronic card type + friendly_id: compatible_electronic_card_type + values: + - compatible_electronic_card_type__access_control + - compatible_electronic_card_type__biometric + - compatible_electronic_card_type__contactless + - compatible_electronic_card_type__credit_debit + - compatible_electronic_card_type__emv + - compatible_electronic_card_type__gift + - compatible_electronic_card_type__health_insurance + - compatible_electronic_card_type__hid + - compatible_electronic_card_type__library + - compatible_electronic_card_type__loyalty + - compatible_electronic_card_type__magnetic_stripe + - compatible_electronic_card_type__membership + - compatible_electronic_card_type__mifare + - compatible_electronic_card_type__proximity + - compatible_electronic_card_type__rfid + - compatible_electronic_card_type__sim + - compatible_electronic_card_type__smart + - compatible_electronic_card_type__student_id + - compatible_electronic_card_type__transportation +- id: 1906 + name: Fingerprint capture method + friendly_id: fingerprint_capture_method + values: + - fingerprint_capture_method__capacitive + - fingerprint_capture_method__multispectral + - fingerprint_capture_method__optical + - fingerprint_capture_method__thermal + - fingerprint_capture_method__ultrasonic +- id: 1907 + name: Systems supported + friendly_id: systems_supported + values_from: console_system +- id: 1908 + name: Instrument controller type + friendly_id: instrument_controller_type + values: + - instrument_controller_type__bass_guitar + - instrument_controller_type__dj_turntable + - instrument_controller_type__drum_set + - instrument_controller_type__guitar + - instrument_controller_type__keyboard + - instrument_controller_type__microphone + - instrument_controller_type__violin + - instrument_controller_type__wind_instrument +- id: 1909 + name: Keyboard format + friendly_id: keyboard_format + values: + - keyboard_format__0_4 + - keyboard_format__0_6 + - keyboard_format__0_65 + - keyboard_format__0_75 + - keyboard_format__compact + - keyboard_format__ergonomic + - keyboard_format__full_size + - keyboard_format__mini + - keyboard_format__split + - keyboard_format__tenkeyless_tkl +- id: 1910 + name: Keyboard language + friendly_id: keyboard_language + values_from: language_version +- id: 1911 + name: Keyboard layout + friendly_id: keyboard_layout + values: + - keyboard_layout__erty + - keyboard_layout__bpo + - keyboard_layout__colemak + - keyboard_layout__dvorak + - keyboard_layout__hangul + - keyboard_layout__jis + - keyboard_layout__qwerty + - keyboard_layout__qwertz + - keyboard_layout__qzerty + - keyboard_layout__workman +- id: 1912 + name: Keyboard switch type + friendly_id: keyboard_switch_type + values: + - keyboard_switch_type__clicky + - keyboard_switch_type__linear + - keyboard_switch_type__tactile +- id: 1913 + name: Pointing device + friendly_id: pointing_device + values: + - pointing_device__d_pad + - pointing_device__mouse_buttons + - pointing_device__pointing_stick + - pointing_device__scroll_wheel + - pointing_device__touchpad + - pointing_device__trackball +- id: 1914 + name: Keyboard port type + friendly_id: keyboard_port_type + values: + - keyboard_port_type__ps_2 + - keyboard_port_type__usb_type_a + - keyboard_port_type__usb_type_b + - keyboard_port_type__usb_type_c +- id: 1915 + name: Mouse port type + friendly_id: mouse_port_type + values: + - mouse_port_type__bluetooth + - mouse_port_type__ps_2 + - mouse_port_type__usb + - mouse_port_type__wireless_usb +- id: 1916 + name: Video port type + friendly_id: video_port_type + values: + - video_port_type__display_port + - video_port_type__dvi + - video_port_type__hdmi + - video_port_type__usb_c + - video_port_type__vga +- id: 1917 + name: Mouse technology + friendly_id: mouse_technology + values: + - mouse_technology__3d + - mouse_technology__bluetooth + - mouse_technology__gaming + - mouse_technology__laser + - mouse_technology__mechanical + - mouse_technology__optical + - mouse_technology__stylus + - mouse_technology__trackball + - mouse_technology__vertical + - mouse_technology__wireless +- id: 1918 + name: Read/Write speed + friendly_id: read_write_speed + values: + - read_write_speed__1x + - read_write_speed__4x + - read_write_speed__8x + - read_write_speed__16x + - read_write_speed__24x + - read_write_speed__48x + - read_write_speed__52x +- id: 1919 + name: Host interface + friendly_id: host_interface + values: + - host_interface__esata + - host_interface__firewire_ieee_1394 + - host_interface__sata + - host_interface__thunderbolt_2 + - host_interface__thunderbolt_3 + - host_interface__usb_2_0 + - host_interface__usb_3_1_gen_1 + - host_interface__usb_3_2_gen_2 + - host_interface__usb_type_c +- id: 1920 + name: Storage drive interface type + friendly_id: storage_drive_interface_type + values: + - storage_drive_interface_type__esata + - storage_drive_interface_type__fcal + - storage_drive_interface_type__hsdl + - storage_drive_interface_type__ide + - storage_drive_interface_type__m_2 + - storage_drive_interface_type__micro_sata + - storage_drive_interface_type__micro_sata_ii + - storage_drive_interface_type__micro_sata_iii + - storage_drive_interface_type__micro_serial_ata + - storage_drive_interface_type__micro_serial_ata_ii + - storage_drive_interface_type__micro_serial_ata_iii + - storage_drive_interface_type__mini_pci_express + - storage_drive_interface_type__mini_zif + - storage_drive_interface_type__msata + - storage_drive_interface_type__nvme + - storage_drive_interface_type__nvme_3_0 + - storage_drive_interface_type__parallel_ata + - storage_drive_interface_type__pci_express + - storage_drive_interface_type__pci_express_2_0 + - storage_drive_interface_type__pci_express_3_0 + - storage_drive_interface_type__pci_express_3_1 + - storage_drive_interface_type__pci_express_4_0 + - storage_drive_interface_type__pci_express_5_0 + - storage_drive_interface_type__sas + - storage_drive_interface_type__sas_2 + - storage_drive_interface_type__sas_3 + - storage_drive_interface_type__sas_4 + - storage_drive_interface_type__sata + - storage_drive_interface_type__sata_ii + - storage_drive_interface_type__sata_iii + - storage_drive_interface_type__serial_ata + - storage_drive_interface_type__serial_ata_ii + - storage_drive_interface_type__serial_ata_iii + - storage_drive_interface_type__serial_attached_scsi + - storage_drive_interface_type__ultra_m_2 + - storage_drive_interface_type__zif + - storage_drive_interface_type__other +- id: 1921 + name: Storage media type + friendly_id: storage_media_type + values: + - storage_media_type__hdd + - storage_media_type__ide + - storage_media_type__nvme + - storage_media_type__sata + - storage_media_type__ssd +- id: 1922 + name: Storage drive type installed + friendly_id: storage_drive_type_installed + values: + - storage_drive_type_installed__cloud_storage + - storage_drive_type_installed__emmc + - storage_drive_type_installed__hard_disk_drive_hdd + - storage_drive_type_installed__hybrid_drive_hdd_ssd + - storage_drive_type_installed__m_2_ssd + - storage_drive_type_installed__nas + - storage_drive_type_installed__optical_drive + - storage_drive_type_installed__pcie_nvme_ssd + - storage_drive_type_installed__raid + - storage_drive_type_installed__sata_ssd + - storage_drive_type_installed__solid_state_drive_ssd +- id: 1923 + name: Compatible battery size + friendly_id: compatible_battery_size + values_from: battery_size +- id: 1924 + name: Compatible battery technology + friendly_id: compatible_battery_technology + values: + - compatible_battery_technology__alkaline + - compatible_battery_technology__gel_cell + - compatible_battery_technology__lead_calcium_pb_ca + - compatible_battery_technology__lithium + - compatible_battery_technology__lithium_cobalt_oxide_licoo2 + - compatible_battery_technology__lithium_imide_li2nh + - compatible_battery_technology__lithium_iron_phosphate_lifepo4 + - compatible_battery_technology__lithium_nickel_cobalt_aluminum_oxide_linca + - compatible_battery_technology__lithium_nickel_manganese_cobalt_oxide_linmc + - compatible_battery_technology__lithium_polymer_lipo + - compatible_battery_technology__lithium_thionyl_chloride_lisocl2 + - compatible_battery_technology__lithium_ion_li_ion + - compatible_battery_technology__lithium_ion_high_density_lihd + - compatible_battery_technology__lithium_manganese_dioxide_limno2 + - compatible_battery_technology__nickel_cadmium_nicd + - compatible_battery_technology__nickel_metal_hydride_nimh + - compatible_battery_technology__nickel_oxyhydroxide_niox + - compatible_battery_technology__nickel_zinc_nizn + - compatible_battery_technology__polymer + - compatible_battery_technology__silver_oxide_ag2o + - compatible_battery_technology__valve_regulated_lead_acid_vlra + - compatible_battery_technology__zinc_chloride + - compatible_battery_technology__zinc_air + - compatible_battery_technology__zinc_carbon + - compatible_battery_technology__zinc_manganese_dioxide_zn_mno2 + - compatible_battery_technology__other + - compatible_battery_technology__lead_acid +- id: 1925 + name: Plug type + friendly_id: plug_type + values: + - plug_type__au + - plug_type__br + - plug_type__ch + - plug_type__cn + - plug_type__dk + - plug_type__eu + - plug_type__fr + - plug_type__il + - plug_type__in + - plug_type__it + - plug_type__jp + - plug_type__kr + - plug_type__ru + - plug_type__uk + - plug_type__us + - plug_type__za + - plug_type__other +- id: 1926 + name: Battery cell type + friendly_id: battery_cell_type + values: + - battery_cell_type__alkaline + - battery_cell_type__ammonia + - battery_cell_type__direct_ethanol + - battery_cell_type__direct_methanol + - battery_cell_type__lithium_air + - battery_cell_type__microbial + - battery_cell_type__molten_carbonate + - battery_cell_type__phosphoric_acid + - battery_cell_type__polymer_electrolyte + - battery_cell_type__proton_exchange_membrane + - battery_cell_type__protonic_ceramic + - battery_cell_type__regenerative + - battery_cell_type__sodium_ion + - battery_cell_type__solid_oxide + - battery_cell_type__zinc_air +- id: 1927 + name: Fuel source + friendly_id: fuel_source + values: + - fuel_source__ammonia + - fuel_source__direct_methanol + - fuel_source__ethanol + - fuel_source__hydrogen + - fuel_source__methanol + - fuel_source__natural_gas + - fuel_source__propane + - fuel_source__other +- id: 1928 + name: Stack configuration + friendly_id: stack_configuration + values: + - stack_configuration__full_stack + - stack_configuration__parallel + - stack_configuration__serial + - stack_configuration__short_stack + - stack_configuration__single_cell +- id: 1929 + name: Charging method + friendly_id: charging_method + values_from: connectivity_technology +- id: 1930 + name: Compatible device + friendly_id: compatible_device + values: + - compatible_device__digital_camera + - compatible_device__keyboard + - compatible_device__mouse + - compatible_device__power_bank + - compatible_device__smartphone + - compatible_device__smartwatch + - compatible_device__tablet + - compatible_device__wireless_earbud +- id: 1931 + name: Outlet type + friendly_id: outlet_type + values: + - outlet_type__type_a + - outlet_type__type_b + - outlet_type__type_c + - outlet_type__type_e + - outlet_type__type_f + - outlet_type__type_g + - outlet_type__type_i + - outlet_type__type_j + - outlet_type__type_k + - outlet_type__type_l +- id: 1932 + name: Plug type (input) + friendly_id: plug_type_input + values_from: plug_type +- id: 1933 + name: Plug type (output) + friendly_id: plug_type_output + values_from: plug_type +- id: 1934 + name: Tracking purpose + friendly_id: tracking_purpose + values: + - tracking_purpose__asset_tracking + - tracking_purpose__fleet_management + - tracking_purpose__personal_tracking + - tracking_purpose__pet_tracking + - tracking_purpose__vehicle_tracking +- id: 1935 + name: Suitable for angling type + friendly_id: suitable_for_angling_type + values: + - suitable_for_angling_type__deep_sea + - suitable_for_angling_type__fly + - suitable_for_angling_type__freshwater + - suitable_for_angling_type__ice + - suitable_for_angling_type__kayak + - suitable_for_angling_type__saltwater + - suitable_for_angling_type__shore +- id: 1936 + name: Ethernet LAN interface type + friendly_id: ethernet_lan_interface_type + values: + - ethernet_lan_interface_type__10_gigabit + - ethernet_lan_interface_type__ethernet + - ethernet_lan_interface_type__ethernet_over_cellular + - ethernet_lan_interface_type__ethernet_over_coax + - ethernet_lan_interface_type__ethernet_over_fiber + - ethernet_lan_interface_type__ethernet_over_hdmi + - ethernet_lan_interface_type__ethernet_over_powerline + - ethernet_lan_interface_type__ethernet_over_usb + - ethernet_lan_interface_type__ethernet_over_wi_fi + - ethernet_lan_interface_type__fast + - ethernet_lan_interface_type__gigabit + - ethernet_lan_interface_type__multi_gigabit +- id: 1937 + name: Network protocols supported + friendly_id: network_protocols_supported + values: + - network_protocols_supported__bgp + - network_protocols_supported__dhcp + - network_protocols_supported__dns + - network_protocols_supported__ethernet_ieee_802_3 + - network_protocols_supported__igmp + - network_protocols_supported__ospf + - network_protocols_supported__ppp + - network_protocols_supported__snmp + - network_protocols_supported__stp + - network_protocols_supported__tcp_ip + - network_protocols_supported__vlan + - network_protocols_supported__wi_fi_ieee_802_11 +- id: 1938 + name: Networking standards + friendly_id: networking_standards + values: + - networking_standards__ieee_1588 + - networking_standards__ieee_1588v2 + - networking_standards__ieee_1901 + - networking_standards__ieee_1911_1 + - networking_standards__ieee_1911_2 + - networking_standards__ieee_1911_3 + - networking_standards__ieee_802_11a + - networking_standards__ieee_802_11ac + - networking_standards__ieee_802_11ad + - networking_standards__ieee_802_11ax + - networking_standards__ieee_802_11az + - networking_standards__ieee_802_11b + - networking_standards__ieee_802_11d + - networking_standards__ieee_802_11e + - networking_standards__ieee_802_11g + - networking_standards__ieee_802_11h + - networking_standards__ieee_802_11i + - networking_standards__ieee_802_11j + - networking_standards__ieee_802_11k + - networking_standards__ieee_802_11mc + - networking_standards__ieee_802_11n + - networking_standards__ieee_802_11r + - networking_standards__ieee_802_11s + - networking_standards__ieee_802_11u + - networking_standards__ieee_802_11v + - networking_standards__ieee_802_11w + - networking_standards__ieee_802_12 + - networking_standards__ieee_802_15_1 + - networking_standards__ieee_802_15_4 + - networking_standards__ieee_802_1ab + - networking_standards__ieee_802_1ad + - networking_standards__ieee_802_1ae + - networking_standards__ieee_802_1af + - networking_standards__ieee_802_1ag + - networking_standards__ieee_802_1ak + - networking_standards__ieee_802_1as + - networking_standards__ieee_802_1ax + - networking_standards__ieee_802_1d + - networking_standards__ieee_802_1p + - networking_standards__ieee_802_1q + - networking_standards__ieee_802_1qau + - networking_standards__ieee_802_1qav + - networking_standards__ieee_802_1qaz + - networking_standards__ieee_802_1qbb + - networking_standards__ieee_802_1qbg + - networking_standards__ieee_802_1qbv + - networking_standards__ieee_802_1s + - networking_standards__ieee_802_1t + - networking_standards__ieee_802_1v + - networking_standards__ieee_802_1w + - networking_standards__ieee_802_1x + - networking_standards__ieee_802_2 + - networking_standards__ieee_802_2x + - networking_standards__ieee_802_3 + - networking_standards__ieee_802_3ab + - networking_standards__ieee_802_3ac + - networking_standards__ieee_802_3ad + - networking_standards__ieee_802_3ae + - networking_standards__ieee_802_3af + - networking_standards__ieee_802_3ah + - networking_standards__ieee_802_3ak + - networking_standards__ieee_802_3an + - networking_standards__ieee_802_3ap + - networking_standards__ieee_802_3aq + - networking_standards__ieee_802_3at + - networking_standards__ieee_802_3au + - networking_standards__ieee_802_3az + - networking_standards__ieee_802_3ba + - networking_standards__ieee_802_3bj + - networking_standards__ieee_802_3bm + - networking_standards__ieee_802_3bq + - networking_standards__ieee_802_3bs + - networking_standards__ieee_802_3bt + - networking_standards__ieee_802_3by + - networking_standards__ieee_802_3bz + - networking_standards__ieee_802_3cc + - networking_standards__ieee_802_3cd + - networking_standards__ieee_802_3i + - networking_standards__ieee_802_3p + - networking_standards__ieee_802_3q + - networking_standards__ieee_802_3u + - networking_standards__ieee_802_3x + - networking_standards__ieee_802_3z + - networking_standards__ieee_802_5 + - networking_standards__other +- id: 1939 + name: Security algorithms + friendly_id: security_algorithms + values: + - security_algorithms__1024_bit_rsa + - security_algorithms__104_bit_wep + - security_algorithms__128_bit_aes + - security_algorithms__128_bit_rc4 + - security_algorithms__128_bit_ssl + - security_algorithms__128_bit_wep + - security_algorithms__152_bit_wep + - security_algorithms__192_bit_aes + - security_algorithms__2048_bit_rsa + - security_algorithms__256_bit_aes + - security_algorithms__256_bit_aes_xts + - security_algorithms__256_bit_twofish + - security_algorithms__256_bit_wep + - security_algorithms__384_bit_aes + - security_algorithms__3des + - security_algorithms__40_bit_wep + - security_algorithms__4096_bit_rsa + - security_algorithms__512_bit_aes + - security_algorithms__56_bit_aes + - security_algorithms__64_bit_aes + - security_algorithms__64_bit_wep + - security_algorithms__802_1x_radius + - security_algorithms__aes + - security_algorithms__aes_ccmp + - security_algorithms__aes_gcmp + - security_algorithms__apop + - security_algorithms__cast + - security_algorithms__ccx_v4 + - security_algorithms__des + - security_algorithms__eap + - security_algorithms__eap_aka + - security_algorithms__eap_fast + - security_algorithms__eap_gtc + - security_algorithms__eap_leap + - security_algorithms__eap_md5 + - security_algorithms__eap_peap + - security_algorithms__eap_pwd + - security_algorithms__eap_sim + - security_algorithms__eap_tls + - security_algorithms__eap_ttls + - security_algorithms__fips_140 + - security_algorithms__fips_140_2 + - security_algorithms__fips_140_3 + - security_algorithms__fips_197 + - security_algorithms__ftpes + - security_algorithms__https + - security_algorithms__ipps + - security_algorithms__ipsec + - security_algorithms__leap + - security_algorithms__md5 + - security_algorithms__mschapv2 + - security_algorithms__not_supported + - security_algorithms__peap + - security_algorithms__ripemd160 + - security_algorithms__rsa + - security_algorithms__sha_1 + - security_algorithms__sha_2 + - security_algorithms__sha_256 + - security_algorithms__sha_384 + - security_algorithms__sha_512 + - security_algorithms__sips + - security_algorithms__smtp_auth + - security_algorithms__snmp + - security_algorithms__snmpv2 + - security_algorithms__snmpv3 + - security_algorithms__srtp + - security_algorithms__ssh + - security_algorithms__ssh_1_5 + - security_algorithms__ssh_2 + - security_algorithms__ssid + - security_algorithms__ssl_tls + - security_algorithms__tkip + - security_algorithms__tls + - security_algorithms__ttls + - security_algorithms__wapi + - security_algorithms__wds + - security_algorithms__wep + - security_algorithms__whql + - security_algorithms__wmm + - security_algorithms__wpa + - security_algorithms__wpa_aes + - security_algorithms__wpa_eap + - security_algorithms__wpa_enterprise + - security_algorithms__wpa_psk + - security_algorithms__wpa_radius + - security_algorithms__wpa_sdk + - security_algorithms__wpa_tkip + - security_algorithms__wpa2 + - security_algorithms__wpa2_aes + - security_algorithms__wpa2_ccmp + - security_algorithms__wpa2_eap + - security_algorithms__wpa2_enterprise + - security_algorithms__wpa2_enterprise_peap + - security_algorithms__wpa2_psk + - security_algorithms__wpa2_radius + - security_algorithms__wpa2_tkip + - security_algorithms__wpa3 + - security_algorithms__wpa3_eap + - security_algorithms__wpa3_enterprise + - security_algorithms__wpa3_psk + - security_algorithms__wpa3_sae + - security_algorithms__wps + - security_algorithms__wps_nfc + - security_algorithms__wps_pbc + - security_algorithms__wps_pin + - security_algorithms__wps_usb + - security_algorithms__other +- id: 1940 + name: Wi-Fi band + friendly_id: wi_fi_band + values: + - wi_fi_band__2_4_ghz + - wi_fi_band__5_ghz + - wi_fi_band__6_ghz + - wi_fi_band__60_ghz + - wi_fi_band__dual_band_2_4_ghz_5_ghz + - wi_fi_band__single_band_2_4_ghz + - wi_fi_band__single_band_60_ghz + - wi_fi_band__tri_band_2_4_ghz_5_ghz_5_ghz + - wi_fi_band__tri_band_2_4_ghz_5_ghz_6_ghz + - wi_fi_band__tri_band_2_4_ghz_5_ghz_60_ghz +- id: 1941 + name: PSTN connectivity options + friendly_id: pstn_connectivity_options + values: + - pstn_connectivity_options__e1_t1 + - pstn_connectivity_options__fxo + - pstn_connectivity_options__fxs + - pstn_connectivity_options__isdn_bri + - pstn_connectivity_options__isdn_pri + - pstn_connectivity_options__pots +- id: 1942 + name: VoIP protocol support + friendly_id: voip_protocol_support + values: + - voip_protocol_support__h_323 + - voip_protocol_support__iax + - voip_protocol_support__mgcp + - voip_protocol_support__rtp + - voip_protocol_support__sccp + - voip_protocol_support__sip +- id: 1943 + name: PoE standard + friendly_id: poe_standard + values: + - poe_standard__ieee_802_3af + - poe_standard__ieee_802_3at + - poe_standard__ieee_802_3bt + - poe_standard__passive +- id: 1944 + name: Compatible filament + friendly_id: compatible_filament + values: + - compatible_filament__acrylonitrile_butadiene_styrene_abs + - compatible_filament__carbon_fiber + - compatible_filament__ceramic + - compatible_filament__conductive + - compatible_filament__flexible + - compatible_filament__food_safe + - compatible_filament__glitter + - compatible_filament__glow_in_the_dark + - compatible_filament__high_impact_polystyrene_hips + - compatible_filament__magnetic + - compatible_filament__marble + - compatible_filament__metal + - compatible_filament__nylon + - compatible_filament__polychromatic + - compatible_filament__polyethylene_terephthalate_glycol_petg + - compatible_filament__polylactic_acid_pla + - compatible_filament__polyvinyl_alcohol_pva + - compatible_filament__recycled_filament + - compatible_filament__resin + - compatible_filament__silk + - compatible_filament__thermoplastic_polyurethane_tpu + - compatible_filament__transparent_clear + - compatible_filament__uv_sensitive + - compatible_filament__water_soluble_support_material + - compatible_filament__wood + - compatible_filament__other +- id: 1945 + name: Enclosure type + friendly_id: enclosure_type + values: + - enclosure_type__diy_enclosure + - enclosure_type__fully_enclosed + - enclosure_type__no_enclosure + - enclosure_type__open_frame + - enclosure_type__partially_enclosed + - enclosure_type__upgradable_enclosure +- id: 1946 + name: Print technology + friendly_id: print_technology + values: + - print_technology__3d_printing + - print_technology__additive_manufacturing + - print_technology__dye_sublimation + - print_technology__fdm + - print_technology__fff + - print_technology__impact + - print_technology__inkjet + - print_technology__laser + - print_technology__led + - print_technology__line_matrix + - print_technology__mem_inkjet + - print_technology__pjp + - print_technology__solid_ink + - print_technology__stereolithography + - print_technology__thermal_transfer +- id: 1947 + name: Printer accessories included + friendly_id: printer_accessories_included + values: + - printer_accessories_included__cleaning_kit + - printer_accessories_included__fuser + - printer_accessories_included__ink_cartridge + - printer_accessories_included__paper_tray + - printer_accessories_included__toner_cartridge + - printer_accessories_included__transfer_roller +- id: 1948 + name: Suitable for printer type + friendly_id: suitable_for_printer_type + values: + - suitable_for_printer_type__barcode_printer + - suitable_for_printer_type__calculator + - suitable_for_printer_type__dot_matrix_printer + - suitable_for_printer_type__fax_machine + - suitable_for_printer_type__id_card_printer + - suitable_for_printer_type__label_printer + - suitable_for_printer_type__photo_printer + - suitable_for_printer_type__pos + - suitable_for_printer_type__time_clock + - suitable_for_printer_type__typewriter + - suitable_for_printer_type__other +- id: 1949 + name: Printing color + friendly_id: printing_color + values: + - printing_color__black + - printing_color__cyan + - printing_color__magenta + - printing_color__yellow +- id: 1950 + name: Duplexing technology + friendly_id: duplexing_technology + values: + - duplexing_technology__automatic_duplexing + - duplexing_technology__duplexing_unit_included + - duplexing_technology__duplexing_unit_optional + - duplexing_technology__manual_duplexing + - duplexing_technology__not_supported +- id: 1951 + name: Compatible paper size + friendly_id: compatible_paper_size + values_from: paper_size +- id: 1952 + name: Printer functions + friendly_id: printer_functions + values: + - printer_functions__cd_dvd_print + - printer_functions__cloud_print + - printer_functions__copy + - printer_functions__duplex_double_sided_print + - printer_functions__email + - printer_functions__fax + - printer_functions__network_print + - printer_functions__photo_print + - printer_functions__print + - printer_functions__scan + - printer_functions__wireless_print +- id: 1953 + name: Filtering modes + friendly_id: filtering_modes + values: + - filtering_modes__auto_mode + - filtering_modes__city_mode + - filtering_modes__filter_mode + - filtering_modes__gps_lockouts + - filtering_modes__highway_mode + - filtering_modes__ka_band_segmentation + - filtering_modes__tsr +- id: 1954 + name: Radar bands + friendly_id: radar_bands + values: + - radar_bands__c + - radar_bands__k + - radar_bands__ka + - radar_bands__ku + - radar_bands__l + - radar_bands__s + - radar_bands__x +- id: 1955 + name: Contrast ratio (typical) + friendly_id: contrast_ratio_typical + values: + - contrast_ratio_typical__1001 + - contrast_ratio_typical__1201 + - contrast_ratio_typical__1501 + - contrast_ratio_typical__2001 + - contrast_ratio_typical__2501 + - contrast_ratio_typical__3001 + - contrast_ratio_typical__3501 + - contrast_ratio_typical__4001 + - contrast_ratio_typical__4501 + - contrast_ratio_typical__5001 + - contrast_ratio_typical__5501 + - contrast_ratio_typical__5801 + - contrast_ratio_typical__6001 + - contrast_ratio_typical__6501 + - contrast_ratio_typical__7001 + - contrast_ratio_typical__7501 + - contrast_ratio_typical__8001 + - contrast_ratio_typical__8501 + - contrast_ratio_typical__9001 + - contrast_ratio_typical__10001 + - contrast_ratio_typical__11001 + - contrast_ratio_typical__12001 + - contrast_ratio_typical__13001 + - contrast_ratio_typical__14001 + - contrast_ratio_typical__14501 + - contrast_ratio_typical__15001 + - contrast_ratio_typical__16001 + - contrast_ratio_typical__16501 + - contrast_ratio_typical__17001 + - contrast_ratio_typical__18001 + - contrast_ratio_typical__20001 + - contrast_ratio_typical__21001 + - contrast_ratio_typical__22001 + - contrast_ratio_typical__23001 + - contrast_ratio_typical__24001 + - contrast_ratio_typical__26001 + - contrast_ratio_typical__27001 + - contrast_ratio_typical__28001 + - contrast_ratio_typical__29001 + - contrast_ratio_typical__30001 + - contrast_ratio_typical__31001 + - contrast_ratio_typical__32001 + - contrast_ratio_typical__33001 + - contrast_ratio_typical__35001 + - contrast_ratio_typical__37001 + - contrast_ratio_typical__37501 + - contrast_ratio_typical__38001 + - contrast_ratio_typical__40001 + - contrast_ratio_typical__41501 + - contrast_ratio_typical__4301 + - contrast_ratio_typical__45001 + - contrast_ratio_typical__46001 + - contrast_ratio_typical__48001 + - contrast_ratio_typical__50001 + - contrast_ratio_typical__53001 + - contrast_ratio_typical__55001 + - contrast_ratio_typical__60001 + - contrast_ratio_typical__65001 + - contrast_ratio_typical__70001 + - contrast_ratio_typical__75001 + - contrast_ratio_typical__80001 + - contrast_ratio_typical__83001 + - contrast_ratio_typical__100001 + - contrast_ratio_typical__110001 + - contrast_ratio_typical__120001 + - contrast_ratio_typical__150001 + - contrast_ratio_typical__200001 + - contrast_ratio_typical__300001 + - contrast_ratio_typical__400001 + - contrast_ratio_typical__500001 + - contrast_ratio_typical__1500001 + - contrast_ratio_typical__2000001 + - contrast_ratio_typical__3000001 + - contrast_ratio_typical__5000001 + - contrast_ratio_typical__10000001 + - contrast_ratio_typical__20000001 + - contrast_ratio_typical__30000001 + - contrast_ratio_typical__100000001 + - contrast_ratio_typical__300000001 + - contrast_ratio_typical__1000000001 + - contrast_ratio_typical__other +- id: 1956 + name: Energy efficiency class (HDR) + friendly_id: energy_efficiency_class_hdr + values: + - energy_efficiency_class_hdr__a+++ + - energy_efficiency_class_hdr__a++ + - energy_efficiency_class_hdr__a+ + - energy_efficiency_class_hdr__a + - energy_efficiency_class_hdr__b + - energy_efficiency_class_hdr__c + - energy_efficiency_class_hdr__d + - energy_efficiency_class_hdr__e + - energy_efficiency_class_hdr__f + - energy_efficiency_class_hdr__g +- id: 1957 + name: Energy efficiency class (SDR) + friendly_id: energy_efficiency_class_sdr + values: + - energy_efficiency_class_sdr__a+++ + - energy_efficiency_class_sdr__a++ + - energy_efficiency_class_sdr__a+ + - energy_efficiency_class_sdr__a + - energy_efficiency_class_sdr__b + - energy_efficiency_class_sdr__c + - energy_efficiency_class_sdr__d + - energy_efficiency_class_sdr__e + - energy_efficiency_class_sdr__f + - energy_efficiency_class_sdr__g +- id: 1958 + name: Native aspect ratio + friendly_id: native_aspect_ratio + values: + - native_aspect_ratio__11 + - native_aspect_ratio__159 + - native_aspect_ratio__1610 + - native_aspect_ratio__1618 + - native_aspect_ratio__169 + - native_aspect_ratio__1710 + - native_aspect_ratio__179 + - native_aspect_ratio__219 + - native_aspect_ratio__241000 + - native_aspect_ratio__32 + - native_aspect_ratio__34 + - native_aspect_ratio__321000 + - native_aspect_ratio__329 + - native_aspect_ratio__43 + - native_aspect_ratio__45 + - native_aspect_ratio__54 + - native_aspect_ratio__85 + - native_aspect_ratio__916 +- id: 1959 + name: HDR format + friendly_id: hdr_format + values: + - hdr_format__advanced_hdr + - hdr_format__dolby_vision + - hdr_format__hdr10 + - hdr_format__hdr10+ + - hdr_format__hlg + - hdr_format__no_hdr +- id: 1960 + name: Smart TV platform + friendly_id: smart_tv_platform + values: + - smart_tv_platform__android_tv + - smart_tv_platform__apple_tvos + - smart_tv_platform__fire_tv + - smart_tv_platform__panasonic_my_home_screen + - smart_tv_platform__roku_tv + - smart_tv_platform__tizen + - smart_tv_platform__vizio_smartcast + - smart_tv_platform__webos +- id: 1961 + name: Television shape + friendly_id: television_shape + values_from: monitor_shape +- id: 1962 + name: Color accuracy standards + friendly_id: color_accuracy_standards + values: + - color_accuracy_standards__adobe_rgb + - color_accuracy_standards__cie_lab + - color_accuracy_standards__cie_lch + - color_accuracy_standards__cie_rgb + - color_accuracy_standards__cie_xyz + - color_accuracy_standards__dci_p3 + - color_accuracy_standards__dicom + - color_accuracy_standards__ebu + - color_accuracy_standards__ntsc + - color_accuracy_standards__pal + - color_accuracy_standards__pantone + - color_accuracy_standards__rec_2020 + - color_accuracy_standards__rec_709 + - color_accuracy_standards__smpte_c + - color_accuracy_standards__srgb +- id: 1963 + name: Video codecs/formats supported + friendly_id: video_codecs_formats_supported + values: + - video_codecs_formats_supported__3g2 + - video_codecs_formats_supported__3gp + - video_codecs_formats_supported__3gpp + - video_codecs_formats_supported__amv + - video_codecs_formats_supported__asf + - video_codecs_formats_supported__asp + - video_codecs_formats_supported__avc + - video_codecs_formats_supported__avchd + - video_codecs_formats_supported__avi + - video_codecs_formats_supported__avs + - video_codecs_formats_supported__avs+ + - video_codecs_formats_supported__bdmv + - video_codecs_formats_supported__dat + - video_codecs_formats_supported__div_x3 + - video_codecs_formats_supported__divx + - video_codecs_formats_supported__divx_hd + - video_codecs_formats_supported__divx_webm + - video_codecs_formats_supported__dv + - video_codecs_formats_supported__dvr_ms + - video_codecs_formats_supported__flv + - video_codecs_formats_supported__h_239 + - video_codecs_formats_supported__h_261 + - video_codecs_formats_supported__h_262 + - video_codecs_formats_supported__h_263 + - video_codecs_formats_supported__h_263+ + - video_codecs_formats_supported__h_264 + - video_codecs_formats_supported__h_264_bp + - video_codecs_formats_supported__h_264+ + - video_codecs_formats_supported__h_264b + - video_codecs_formats_supported__h_265 + - video_codecs_formats_supported__h_265+ + - video_codecs_formats_supported__hevc + - video_codecs_formats_supported__hevc_h_265 + - video_codecs_formats_supported__ifo + - video_codecs_formats_supported__insv + - video_codecs_formats_supported__iso + - video_codecs_formats_supported__iso_blu_ray + - video_codecs_formats_supported__m_jpeg + - video_codecs_formats_supported__m2p + - video_codecs_formats_supported__m2t + - video_codecs_formats_supported__m2ts + - video_codecs_formats_supported__m4v + - video_codecs_formats_supported__mjpg + - video_codecs_formats_supported__mkv + - video_codecs_formats_supported__mod + - video_codecs_formats_supported__mov + - video_codecs_formats_supported__mp4 + - video_codecs_formats_supported__mp43 + - video_codecs_formats_supported__mpeg + - video_codecs_formats_supported__mpeg4_part_2 + - video_codecs_formats_supported__mpeg1 + - video_codecs_formats_supported__mpeg2 + - video_codecs_formats_supported__mpeg2_ps + - video_codecs_formats_supported__mpeg2_ts + - video_codecs_formats_supported__mpeg21 + - video_codecs_formats_supported__mpeg4 + - video_codecs_formats_supported__mpeg4_asp + - video_codecs_formats_supported__mpeg4_sp + - video_codecs_formats_supported__mpeg7 + - video_codecs_formats_supported__mpg + - video_codecs_formats_supported__mpo + - video_codecs_formats_supported__mts + - video_codecs_formats_supported__mtv + - video_codecs_formats_supported__mvc + - video_codecs_formats_supported__mxf + - video_codecs_formats_supported__mxpeg + - video_codecs_formats_supported__mxv + - video_codecs_formats_supported__nv12 + - video_codecs_formats_supported__ogm + - video_codecs_formats_supported__pmp + - video_codecs_formats_supported__prkl + - video_codecs_formats_supported__prores + - video_codecs_formats_supported__ps + - video_codecs_formats_supported__qtff + - video_codecs_formats_supported__quicktime + - video_codecs_formats_supported__raw + - video_codecs_formats_supported__rm + - video_codecs_formats_supported__rmvb + - video_codecs_formats_supported__rv + - video_codecs_formats_supported__rv30 + - video_codecs_formats_supported__rv40 + - video_codecs_formats_supported__shvc + - video_codecs_formats_supported__smv + - video_codecs_formats_supported__sorenson_h_263 + - video_codecs_formats_supported__svaf + - video_codecs_formats_supported__svi + - video_codecs_formats_supported__swf + - video_codecs_formats_supported__tp + - video_codecs_formats_supported__trp + - video_codecs_formats_supported__ts + - video_codecs_formats_supported__ts4 + - video_codecs_formats_supported__vc_1 + - video_codecs_formats_supported__vmw7 + - video_codecs_formats_supported__vob + - video_codecs_formats_supported__vp6 + - video_codecs_formats_supported__vp8 + - video_codecs_formats_supported__vp9 + - video_codecs_formats_supported__vro + - video_codecs_formats_supported__webm + - video_codecs_formats_supported__wm_drm + - video_codecs_formats_supported__wma + - video_codecs_formats_supported__wma_pro + - video_codecs_formats_supported__wmv + - video_codecs_formats_supported__wmv10 + - video_codecs_formats_supported__wmv3 + - video_codecs_formats_supported__wmv7 + - video_codecs_formats_supported__wmv8 + - video_codecs_formats_supported__wmv9 + - video_codecs_formats_supported__wmv9_hd + - video_codecs_formats_supported__xavc + - video_codecs_formats_supported__xavc_hs + - video_codecs_formats_supported__xavc_s + - video_codecs_formats_supported__xavc_i + - video_codecs_formats_supported__xf_avc + - video_codecs_formats_supported__xvid + - video_codecs_formats_supported__yuv + - video_codecs_formats_supported__yuy2 + - video_codecs_formats_supported__other +- id: 1964 + name: Playback disc formats + friendly_id: playback_disc_formats + values: + - playback_disc_formats__aac + - playback_disc_formats__avi + - playback_disc_formats__blu_ray + - playback_disc_formats__cd_audio + - playback_disc_formats__cd_video + - playback_disc_formats__cd_r + - playback_disc_formats__cd_rw + - playback_disc_formats__cd+g + - playback_disc_formats__divx + - playback_disc_formats__dolby_digital + - playback_disc_formats__dolby_truehd + - playback_disc_formats__dsd + - playback_disc_formats__dts + - playback_disc_formats__dvd_audio + - playback_disc_formats__dvd_r + - playback_disc_formats__dvd_ram + - playback_disc_formats__dvd_rw + - playback_disc_formats__dvd_video + - playback_disc_formats__dvd_vr + - playback_disc_formats__dvd+r + - playback_disc_formats__dvd+rw + - playback_disc_formats__flac + - playback_disc_formats__jpeg + - playback_disc_formats__kvcd + - playback_disc_formats__mkv + - playback_disc_formats__mp3 + - playback_disc_formats__mpeg_4 + - playback_disc_formats__picture_cd + - playback_disc_formats__sacd + - playback_disc_formats__svcd + - playback_disc_formats__vcd + - playback_disc_formats__wav + - playback_disc_formats__wma + - playback_disc_formats__wmv + - playback_disc_formats__other +- id: 1965 + name: Video region code + friendly_id: video_region_code + values: + - video_region_code__region_free + - video_region_code__region_1 + - video_region_code__region_2 + - video_region_code__region_3 + - video_region_code__region_4 + - video_region_code__region_5 + - video_region_code__region_6 + - video_region_code__region_a + - video_region_code__region_b + - video_region_code__region_c +- id: 1966 + name: Compression format + friendly_id: compression_format + values: + - compression_format__avchd + - compression_format__avi + - compression_format__divx + - compression_format__dv + - compression_format__flv + - compression_format__h_264 + - compression_format__h_265 + - compression_format__mkv + - compression_format__mov + - compression_format__mp4 + - compression_format__mpeg_2 + - compression_format__mpeg_4 + - compression_format__prores + - compression_format__vc_1 + - compression_format__vp9 + - compression_format__webm + - compression_format__wmv + - compression_format__xavc + - compression_format__xvid + - compression_format__other +- id: 1967 + name: Compatible game format + friendly_id: compatible_game_format + values: + - compatible_game_format__backward_compatibility + - compatible_game_format__digital_download_only + - compatible_game_format__physical_disc + - compatible_game_format__virtual_console +- id: 1968 + name: Compatible resolution + friendly_id: compatible_resolution + values: + - compatible_resolution__1080p + - compatible_resolution__1440p + - compatible_resolution__144p + - compatible_resolution__2160p + - compatible_resolution__240p + - compatible_resolution__360p + - compatible_resolution__4320p + - compatible_resolution__480p + - compatible_resolution__4k_ultra_hd + - compatible_resolution__720p + - compatible_resolution__8k_ultra_hd + - compatible_resolution__full_hd + - compatible_resolution__hd + - compatible_resolution__quad_hd + - compatible_resolution__sd +- id: 1969 + name: Console system + friendly_id: console_system + values: + - console_system__atari_2600 + - console_system__atari_7800 + - console_system__game_boy + - console_system__neo_geo + - console_system__nintendo_2ds + - console_system__nintendo_3ds + - console_system__nintendo_64 + - console_system__nintendo_ds + - console_system__nintendo_entertainment_system_nes + - console_system__nintendo_gamecube + - console_system__nintendo_switch + - console_system__nintendo_wii + - console_system__nintendo_wii_u + - console_system__playstation_1 + - console_system__playstation_2 + - console_system__playstation_3 + - console_system__playstation_4 + - console_system__playstation_5 + - console_system__playstation_portable_psp + - console_system__playstation_vita + - console_system__sega_dreamcast + - console_system__sega_genesis + - console_system__sega_saturn + - console_system__super_nintendo_entertainment_system_snes + - console_system__xbox + - console_system__xbox_360 + - console_system__xbox_one + - console_system__xbox_series_xs + - console_system__other +- id: 1970 + name: Baseball/Softball ball type + friendly_id: baseball_softball_ball_type + values: + - baseball_softball_ball_type__baseball + - baseball_softball_ball_type__softball +- id: 1971 + name: Suitable for camping activity + friendly_id: suitable_for_camping_activity + values: + - suitable_for_camping_activity__backpacking + - suitable_for_camping_activity__camping + - suitable_for_camping_activity__beach +- id: 1972 + name: Golf ball type + friendly_id: golf_ball_type + values: + - golf_ball_type__soft_distance + - golf_ball_type__straight_distance + - golf_ball_type__tour_performance + - golf_ball_type__tour_value +- id: 1973 + name: Core material + friendly_id: core_material + values: + - bow_material__aluminum + - bow_material__carbon_fiber + - bow_material__composite + - bow_material__fiberglass + - bow_material__foam + - bow_material__wood +- id: 1974 + name: Riser material + friendly_id: riser_material + values_from: core_material +- id: 1975 + name: Suitable for snowshoeing activity + friendly_id: suitable_for_snowshoeing_activity + values: + - suitable_for_snowshoeing_activity__hiking + - suitable_for_snowshoeing_activity__recreational_use + - suitable_for_snowshoeing_activity__backcountry_skiing + - suitable_for_snowshoeing_activity__running + - suitable_for_snowshoeing_activity__fitness + - suitable_for_snowshoeing_activity__work +- id: 1976 + name: Beverage product form + friendly_id: beverage_product_form + values: + - beverage_product_form__capsules + - beverage_product_form__frozen + - beverage_product_form__ready_to_drink + - beverage_product_form__shelf_stable + - beverage_product_form__other + - beverage_product_form__concentrate + - beverage_product_form__instant_drink +- id: 1977 + name: Coffee product form + friendly_id: coffee_product_form + values: + - coffee_product_form__coffee_beans + - coffee_product_form__ground + - coffee_product_form__other +- id: 1978 + name: Food product form + friendly_id: food_product_form + values: + - food_product_form__powder + - food_product_form__sheets + - food_product_form__granules + - food_product_form__other + - food_product_form__dried + - food_product_form__fresh + - food_product_form__frozen + - food_product_form__ground + - food_product_form__whole +- id: 1979 + name: Camera lens type + friendly_id: camera_lens_type + values: + - camera_lens_type__cinema + - camera_lens_type__extender + - camera_lens_type__fixed_focus + - camera_lens_type__fisheye + - camera_lens_type__macro + - camera_lens_type__macro_telephoto + - camera_lens_type__standard + - camera_lens_type__standard_zoom + - camera_lens_type__super_telephoto + - camera_lens_type__super_wide + - camera_lens_type__telephoto + - camera_lens_type__telephoto_zoom + - camera_lens_type__tilt_shift + - camera_lens_type__ultra_telephoto_zoom + - camera_lens_type__ultra_wide + - camera_lens_type__wide + - camera_lens_type__wide_angle_macro + - camera_lens_type__wide_fish_eye + - camera_lens_type__wide_zoom +- id: 1980 + name: Suitable for camera type + friendly_id: suitable_for_camera_type + values: + - suitable_for_camera_type__action_sports_camera + - suitable_for_camera_type__bridge_camera + - suitable_for_camera_type__camcorder + - suitable_for_camera_type__camera_drone + - suitable_for_camera_type__cctv_camera + - suitable_for_camera_type__compact_camera + - suitable_for_camera_type__gimbal_camera + - suitable_for_camera_type__instant_print_camera + - suitable_for_camera_type__ip_camera + - suitable_for_camera_type__milc + - suitable_for_camera_type__slr + - suitable_for_camera_type__smartphone + - suitable_for_camera_type__tablet + - suitable_for_camera_type__time_lapse_camera +- id: 1981 + name: Focus adjustment + friendly_id: focus_adjustment + values: + - focus_adjustment__auto + - focus_adjustment__manual +- id: 1982 + name: Focus type + friendly_id: focus_type + values: + - focus_type__ttl + - focus_type__ttl_ct_sir + - focus_type__ttl_iesp +- id: 1983 + name: Bag/Case closure + friendly_id: bag_case_closure + values: + - bag_closure__buckles + - bag_closure__button + - bag_closure__clip + - bag_closure__combination_lock + - bag_closure__drawstring + - bag_closure__elastic + - bag_closure__flap + - bag_closure__hook_loop + - bag_closure__key_lock + - bag_closure__latch + - bag_closure__magnetic + - bag_closure__open_top + - bag_closure__push_lock + - bag_closure__roll_top + - bag_closure__snap + - bag_closure__toggle + - bag_closure__twist_lock + - bag_closure__velcro + - bag_closure__zipper +- id: 1984 + name: Carrying type + friendly_id: carrying_type + values: + - carrying_type__backpack_strap + - carrying_type__belt_loop + - carrying_type__clip_on + - carrying_type__hand_carry + - carrying_type__shoulder_strap +- id: 1985 + name: Lens cap compatible device + friendly_id: lens_cap_compatible_device + values: + - lens_cap_compatible_device__binocular + - lens_cap_compatible_device__digital_camera + - lens_cap_compatible_device__monocular +- id: 1986 + name: Converter functionality + friendly_id: converter_functionality + values: + - converter_functionality__depth_of_field + - converter_functionality__fisheye + - converter_functionality__macro + - converter_functionality__speed_booster + - converter_functionality__teleconverter + - converter_functionality__wide_angle +- id: 1987 + name: Lens filter effects + friendly_id: lens_filter_effects + values: + - lens_filter_effects__color_correction + - lens_filter_effects__flare_effect + - lens_filter_effects__increase_contrast + - lens_filter_effects__infrared_effect + - lens_filter_effects__macro + - lens_filter_effects__reduce_light_intake + - lens_filter_effects__reduce_reflections + - lens_filter_effects__softening_effect + - lens_filter_effects__uv_protection +- id: 1988 + name: Lens filter type + friendly_id: lens_filter_type + values: + - lens_filter_type__close_up + - lens_filter_type__color + - lens_filter_type__diffusion + - lens_filter_type__gradient + - lens_filter_type__infrared + - lens_filter_type__neutral_density + - lens_filter_type__polarizing + - lens_filter_type__starburst +- id: 1989 + name: Color saturation + friendly_id: color_saturation + values: + - color_saturation__low + - color_saturation__normal + - color_saturation__high +- id: 1990 + name: Contrast + friendly_id: contrast + values: + - contrast__low + - contrast__normal + - contrast__high +- id: 1991 + name: Film format + friendly_id: film_format + values: + - film_format__120_220 + - film_format__35mm + - film_format__4x5 + - film_format__5x7 + - film_format__8x10 + - film_format__aps + - film_format__instax_mini + - film_format__instax_square + - film_format__polaroid + - film_format__600_film + - film_format__i_type_film + - film_format__instax_wide + - film_format__spectra_film + - film_format__sx_70_film + - film_format__zink_paper +- id: 1992 + name: Grain + friendly_id: grain + values: + - grain__fine + - grain__normal + - grain__high +- id: 1993 + name: Flash modes + friendly_id: flash_modes + values: + - flash_modes__auto + - flash_modes__fill_in + - flash_modes__flash_off + - flash_modes__flash_on + - flash_modes__forced_off + - flash_modes__forced_on + - flash_modes__high_speed_sync + - flash_modes__manual + - flash_modes__multi + - flash_modes__normal + - flash_modes__pre_flash + - flash_modes__rear_curtain + - flash_modes__red_eye_reduction + - flash_modes__second_curtain_sync + - flash_modes__slave + - flash_modes__slow_synchronization + - flash_modes__soft + - flash_modes__stroboscopic + - flash_modes__suppressed + - flash_modes__ttl +- id: 1994 + name: Flash type + friendly_id: flash_type + values: + - flash_type__bare_bulb + - flash_type__camcorder + - flash_type__compact_camera + - flash_type__macro + - flash_type__off_camera + - flash_type__ring + - flash_type__shoe_mount + - flash_type__slave_camera + - flash_type__studio +- id: 1995 + name: Camera mounting type + friendly_id: camera_mounting_type + values: + - camera_mounting_type__hot_shoe + - camera_mounting_type__rod + - camera_mounting_type__tripod + - camera_mounting_type__lens + - camera_mounting_type__adhesive + - camera_mounting_type__screw + - camera_mounting_type__shoe + - camera_mounting_type__standalone + - camera_mounting_type__clip + - camera_mounting_type__freestanding + - camera_mounting_type__magnetic + - camera_mounting_type__monitor + - camera_mounting_type__bayonet + - camera_mounting_type__clip_on + - camera_mounting_type__rail_mount +- id: 1996 + name: Focus device type + friendly_id: focus_device_type + values: + - focus_device_type__focus_assist_tool + - focus_device_type__focus_crank + - focus_device_type__focus_handle + - focus_device_type__focus_whip + - focus_device_type__follow_focus_system + - focus_device_type__remote_focus_puller +- id: 1997 + name: Camera gear type + friendly_id: camera_gear_type + values: + - camera_gear_type__camera_drive + - camera_gear_type__follow_focus + - camera_gear_type__iris_control + - camera_gear_type__lens_gear_ring + - camera_gear_type__zoom_control +- id: 1998 + name: Camera sensor type + friendly_id: camera_sensor_type + values: + - camera_sensor_type__ccd + - camera_sensor_type__cmos + - camera_sensor_type__emccd + - camera_sensor_type__scmos + - camera_sensor_type__other + - camera_sensor_type__3cmos + - camera_sensor_type__3mos + - camera_sensor_type__bsi + - camera_sensor_type__bsi_cmos + - camera_sensor_type__cmos_ii + - camera_sensor_type__cmos_iii + - camera_sensor_type__exmor_r_cmos + - camera_sensor_type__exmor_rs_cmos + - camera_sensor_type__foveon + - camera_sensor_type__live_mos + - camera_sensor_type__mos + - camera_sensor_type__mos_bsi + - camera_sensor_type__nmos + - camera_sensor_type__super_ccd + - camera_sensor_type__x_trans_cmos_4 +- id: 1999 + name: Image sensor size + friendly_id: image_sensor_size + values: + - image_sensor_size__1 + - image_sensor_size__1_1_7 + - image_sensor_size__1_2_3 + - image_sensor_size__aps_c + - image_sensor_size__full_frame + - image_sensor_size__micro_four_thirds + - image_sensor_size__1_1_6 + - image_sensor_size__1_1_63 + - image_sensor_size__1_1_8 + - image_sensor_size__1_2 + - image_sensor_size__1_2_33 + - image_sensor_size__1_2_4 + - image_sensor_size__1_2_5 + - image_sensor_size__1_2_7 + - image_sensor_size__1_2_8 + - image_sensor_size__1_2_9 + - image_sensor_size__1_3 + - image_sensor_size__1_4 + - image_sensor_size__4_3 + - image_sensor_size__2_3 + - image_sensor_size__1_5_8 + - image_sensor_size__1_5 + - image_sensor_size__1_3_1 + - image_sensor_size__1_3_2 + - image_sensor_size__1_1_65 + - image_sensor_size__1_1_2 +- id: 2000 + name: Camera control type + friendly_id: camera_control_type + values: + - camera_control_type__cable_release + - camera_control_type__intervalometer + - camera_control_type__remote_switch + - camera_control_type__shutter_release +- id: 2001 + name: Remote technology + friendly_id: remote_technology + values: + - remote_technology__bluetooth + - remote_technology__infrared + - remote_technology__mobile_device + - remote_technology__radio + - remote_technology__tethered + - remote_technology__wired + - remote_technology__wireless +- id: 2002 + name: Camera button/knob type + friendly_id: camera_button_knob_type + values: + - camera_button_knob_type__body_cover + - camera_button_knob_type__command_dial_knob + - camera_button_knob_type__function_button + - camera_button_knob_type__lens_aperture_control_ring + - camera_button_knob_type__lens_focus_control_ring + - camera_button_knob_type__mode_dial_knob + - camera_button_knob_type__opening_latch + - camera_button_knob_type__shutter_release_button + - camera_button_knob_type__zoom_control_ring +- id: 2003 + name: Screen/Display design + friendly_id: screen_display_design + values: + - screen_display_design__display_protector + - screen_display_design__picture + - screen_display_design__rotating + - screen_display_design__touch + - screen_display_design__viewfinder +- id: 2004 + name: Silencer/Blimp type + friendly_id: silencer_blimp_type + values: + - silencer_blimp_type__camera_blimp + - silencer_blimp_type__lens_blimp + - silencer_blimp_type__microphone_silencer + - silencer_blimp_type__soundproof_cover + - silencer_blimp_type__underwater_sound_blimp +- id: 2005 + name: Suitable for camera/optics device + friendly_id: suitable_for_camera_optics_device + values: + - suitable_for_camera_optics_device__action_camera + - suitable_for_camera_optics_device__binocular + - suitable_for_camera_optics_device__camcorder + - suitable_for_camera_optics_device__digital_camera + - suitable_for_camera_optics_device__camera_filter + - suitable_for_camera_optics_device__lens + - suitable_for_camera_optics_device__light_meter + - suitable_for_camera_optics_device__selfie_stick + - suitable_for_camera_optics_device__tripod + - suitable_for_camera_optics_device__other +- id: 2006 + name: Camera attachment + friendly_id: camera_attachment + values: + - camera_attachment__angle_viewfinder + - camera_attachment__eyecup_viewfinder + - camera_attachment__eyepiece_adapter + - camera_attachment__lcd_viewfinder + - camera_attachment__magnifying_viewfinder + - camera_attachment__rubber_eyecup + - camera_attachment__sun_hood +- id: 2007 + name: Monitor type + friendly_id: monitor_type + values: + - monitor_type__3d_lut + - monitor_type__4k + - monitor_type__field + - monitor_type__hd + - monitor_type__hdr + - monitor_type__on_camera + - monitor_type__recording + - monitor_type__touchscreen +- id: 2008 + name: Light design + friendly_id: light_design + values: + - light_design__fill + - light_design__led + - light_design__monolight + - light_design__on_camera + - light_design__ring + - light_design__strobe + - light_design__studio +- id: 2009 + name: Tripod/Monopod head type + friendly_id: tripod_monopod_head_type + values: + - tripod_monopod_head_type__ball + - tripod_monopod_head_type__equatorial_mount + - tripod_monopod_head_type__fluid + - tripod_monopod_head_type__geared + - tripod_monopod_head_type__gimbal + - tripod_monopod_head_type__pan + - tripod_monopod_head_type__panoramic + - tripod_monopod_head_type__pistol_grip_heads + - tripod_monopod_head_type__video_heads +- id: 2010 + name: Tripop/Monopod attachment type + friendly_id: tripop_monopod_attachment_type + values: + - tripop_monopod_attachment_type__1_4 + - tripop_monopod_attachment_type__3_8 + - tripop_monopod_attachment_type__universal +- id: 2011 + name: Collar/Mount compatible device + friendly_id: collar_mount_compatible_device + values: + - collar_mount_compatible_device__camera + - collar_mount_compatible_device__lens + - collar_mount_compatible_device__smartphone +- id: 2012 + name: Collar/Mount design + friendly_id: collar_mount_design + values: + - collar_mount_design__ball_head + - collar_mount_design__boom_pole + - collar_mount_design__clamp + - collar_mount_design__plate + - collar_mount_design__quick_release + - collar_mount_design__ring +- id: 2013 + name: Tripop handle type + friendly_id: tripop_handle_type + values: + - tripop_handle_type__crank + - tripop_handle_type__extension + - tripop_handle_type__multi_function + - tripop_handle_type__pan + - tripop_handle_type__pistol_grip + - tripop_handle_type__tilt + - tripop_handle_type__trigger_grip +- id: 2014 + name: Spreader type + friendly_id: spreader_type + values: + - spreader_type__ground_level + - spreader_type__mid_level + - spreader_type__on_ground +- id: 2015 + name: Borescope design + friendly_id: borescope_design + values: + - borescope_design__fiberscope + - borescope_design__flexible + - borescope_design__inspection_camera + - borescope_design__rigid + - borescope_design__videoscope +- id: 2016 + name: Auto focusing modes + friendly_id: auto_focusing_modes + values: + - auto_focusing_modes__ai + - auto_focusing_modes__area + - auto_focusing_modes__centre_weighted + - auto_focusing_modes__continuous + - auto_focusing_modes__contrast_detection + - auto_focusing_modes__far_near + - auto_focusing_modes__flexible_spot + - auto_focusing_modes__monitoring + - auto_focusing_modes__multi_point + - auto_focusing_modes__one_shot + - auto_focusing_modes__selective + - auto_focusing_modes__servo + - auto_focusing_modes__single + - auto_focusing_modes__spot + - auto_focusing_modes__tracking +- id: 2017 + name: Camera display technology + friendly_id: camera_display_technology + values: + - camera_display_technology__amoled + - camera_display_technology__lcd + - camera_display_technology__oled + - camera_display_technology__super_amoled + - camera_display_technology__tft +- id: 2018 + name: Camera HD type + friendly_id: camera_hd_type + values: + - camera_hd_type__4_4k + - camera_hd_type__4k_ultra_hd + - camera_hd_type__5_7k + - camera_hd_type__5_8k + - camera_hd_type__5k_ultra_hd + - camera_hd_type__6k_ultra_hd + - camera_hd_type__8k_ultra_hd + - camera_hd_type__full_hd + - camera_hd_type__hd + - camera_hd_type__not_supported + - camera_hd_type__quad_hd + - camera_hd_type__vga + - camera_hd_type__sd + - camera_hd_type__4k + - camera_hd_type__8k +- id: 2019 + name: Compatible memory cards + friendly_id: compatible_memory_cards + values: + - compatible_memory_cards__cf + - compatible_memory_cards__cf_type_ii + - compatible_memory_cards__cf+ + - compatible_memory_cards__cfast + - compatible_memory_cards__cfast_2_0 + - compatible_memory_cards__cfexpress + - compatible_memory_cards__dv_rs_mmc + - compatible_memory_cards__exd + - compatible_memory_cards__expressp2 + - compatible_memory_cards__eye_fi + - compatible_memory_cards__flu + - compatible_memory_cards__hc_mmc+ + - compatible_memory_cards__microdrive + - compatible_memory_cards__microp2 + - compatible_memory_cards__microsd_transflash + - compatible_memory_cards__microsdhc + - compatible_memory_cards__microsdxc + - compatible_memory_cards__minimmc + - compatible_memory_cards__minisd + - compatible_memory_cards__minisdhc + - compatible_memory_cards__mmc + - compatible_memory_cards__mmc_micro + - compatible_memory_cards__mmc_mobile + - compatible_memory_cards__mmc+ + - compatible_memory_cards__ms + - compatible_memory_cards__ms_duo + - compatible_memory_cards__ms_micro_m2 + - compatible_memory_cards__ms_pro + - compatible_memory_cards__ms_pro_duo + - compatible_memory_cards__ms_pro_duo_hs + - compatible_memory_cards__ms_pro_duo_mark_2 + - compatible_memory_cards__ms_pro_hg + - compatible_memory_cards__ms_pro_hg_duo + - compatible_memory_cards__ms_pro_hg_duo_hx + - compatible_memory_cards__ms_xc_hg_duo + - compatible_memory_cards__msxc + - compatible_memory_cards__nano_memory_nm + - compatible_memory_cards__not_supported + - compatible_memory_cards__p2 + - compatible_memory_cards__psvita + - compatible_memory_cards__rs_mmc + - compatible_memory_cards__sd + - compatible_memory_cards__sdhc + - compatible_memory_cards__sdio + - compatible_memory_cards__sdxc + - compatible_memory_cards__smart_media + - compatible_memory_cards__smart_media_xd + - compatible_memory_cards__sr_memory + - compatible_memory_cards__sxs + - compatible_memory_cards__sxs_pro + - compatible_memory_cards__sxs_1 + - compatible_memory_cards__xd + - compatible_memory_cards__xqd + - compatible_memory_cards__other +- id: 2020 + name: Image formats supported + friendly_id: image_formats_supported + values: + - image_formats_supported__jpeg + - image_formats_supported__dng + - image_formats_supported__jpg + - image_formats_supported__raw + - image_formats_supported__exif + - image_formats_supported__nef + - image_formats_supported__sraw + - image_formats_supported__tiff + - image_formats_supported__c_raw + - image_formats_supported__heif +- id: 2021 + name: Light exposure modes + friendly_id: light_exposure_modes + values: + - light_exposure_modes__auto + - light_exposure_modes__manual + - light_exposure_modes__shutter_priority_ae + - light_exposure_modes__aperture_priority_ae + - light_exposure_modes__touch_priority_ae +- id: 2022 + name: Optical zoom + friendly_id: optical_zoom + values: + - optical_zoom__no_zoom + - optical_zoom__less_than_10x + - optical_zoom__10_20x + - optical_zoom__20_30x + - optical_zoom__more_than_30x +- id: 2023 + name: Photo effects type + friendly_id: photo_effects_type + values: + - photo_effects_type__antique + - photo_effects_type__art + - photo_effects_type__black + - photo_effects_type__calm + - photo_effects_type__cinema + - photo_effects_type__emboss + - photo_effects_type__fader + - photo_effects_type__gray + - photo_effects_type__mirror + - photo_effects_type__mosaic + - photo_effects_type__muted + - photo_effects_type__negative_film + - photo_effects_type__neutral + - photo_effects_type__pastel + - photo_effects_type__positive_film + - photo_effects_type__sepia + - photo_effects_type__skin_tones + - photo_effects_type__solarisation + - photo_effects_type__split_screen + - photo_effects_type__vintage + - photo_effects_type__vivid + - photo_effects_type__white + - photo_effects_type__other +- id: 2024 + name: Scene modes + friendly_id: scene_modes + values: + - scene_modes__3d_photography + - scene_modes__auto + - scene_modes__backlight + - scene_modes__beach + - scene_modes__candlelight + - scene_modes__close_up + - scene_modes__cuisine + - scene_modes__dawn + - scene_modes__documents + - scene_modes__dusk + - scene_modes__faithful + - scene_modes__fine_detail + - scene_modes__fireworks + - scene_modes__flower + - scene_modes__food + - scene_modes__group_photo + - scene_modes__handheld_night_scene + - scene_modes__hdr_backlight_control + - scene_modes__landscape + - scene_modes__monochrome + - scene_modes__night + - scene_modes__panorama + - scene_modes__portrait + - scene_modes__smooth_skin + - scene_modes__snow + - scene_modes__sport + - scene_modes__spotlight + - scene_modes__underwater + - scene_modes__other +- id: 2025 + name: Shooting modes + friendly_id: shooting_modes + values: + - shooting_modes__auto + - shooting_modes__program + - shooting_modes__scene + - shooting_modes__lens_priority + - shooting_modes__shutter_priority + - shooting_modes__aperture_priority + - shooting_modes__movie + - shooting_modes__manual + - shooting_modes__sensitivity_priority + - shooting_modes__intelligent_auto + - shooting_modes__flexible_priority +- id: 2026 + name: Exposure control + friendly_id: exposure_control + values: + - exposure_control__aperture_priority + - exposure_control__automatic + - exposure_control__manual + - exposure_control__program + - exposure_control__shutter_priority +- id: 2027 + name: Film type + friendly_id: film_type + values: + - film_type__16_mm + - film_type__35_mm + - film_type__70_mm + - film_type__120_mm + - film_type__110_mm + - film_type__48mm +- id: 2028 + name: Connection method + friendly_id: connection_method + values: + - connection_method__wired + - connection_method__wireless +- id: 2029 + name: Surveillance camera design + friendly_id: surveillance_camera_design + values: + - surveillance_camera_design__bullet + - surveillance_camera_design__dome + - surveillance_camera_design__hidden + - surveillance_camera_design__panoramic + - surveillance_camera_design__ptz + - surveillance_camera_design__thermal + - surveillance_camera_design__turret +- id: 2030 + name: Surveillance camera mounting type + friendly_id: surveillance_camera_mounting_type + values: + - surveillance_camera_mounting_type__ceiling + - surveillance_camera_mounting_type__desk + - surveillance_camera_mounting_type__floor + - surveillance_camera_mounting_type__pole + - surveillance_camera_mounting_type__wall +- id: 2031 + name: Memory storage type + friendly_id: memory_storage_type + values: + - memory_storage_type__built_in_memory + - memory_storage_type__micro_sd_card + - memory_storage_type__sd_card + - memory_storage_type__cfast_card + - memory_storage_type__xqd_card +- id: 2032 + name: Trail camera design + friendly_id: trail_camera_design + values: + - trail_camera_design__cellular + - trail_camera_design__multi_camera + - trail_camera_design__security + - trail_camera_design__standard +- id: 2033 + name: Webcam design + friendly_id: webcam_design + values: + - webcam_design__conference + - webcam_design__desktop + - webcam_design__laptop + - webcam_design__plug_and_play + - webcam_design__security +- id: 2034 + name: Binocular design + friendly_id: binocular_design + values: + - binocular_monocular_design__astronomy + - binocular_monocular_design__bird_watching + - binocular_monocular_design__compact + - binocular_monocular_design__hunting + - binocular_monocular_design__marine + - binocular_monocular_design__opera + - binocular_monocular_design__standard + - binocular_monocular_design__zoom + - binocular_monocular_design__infrared + - binocular_monocular_design__night_vision + - binocular_monocular_design__thermal +- id: 2035 + name: Monocular design + friendly_id: monocular_design + values_from: binocular_design +- id: 2036 + name: Reticle type + friendly_id: reticle_type + values: + - reticle_type__duplex + - reticle_type__mildot + - reticle_type__bdc + - reticle_type__illuminated + - reticle_type__dot + - reticle_type__german + - reticle_type__target + - reticle_type__rangefinder + - reticle_type__acss + - reticle_type__horus +- id: 2037 + name: Scope/Sight design + friendly_id: scope_sight_design + values: + - scope_sight_design__holographic + - scope_sight_design__iron + - scope_sight_design__laser + - scope_sight_design__night_vision + - scope_sight_design__red_dot + - scope_sight_design__reflex +- id: 2038 + name: Suitable for weapon type + friendly_id: suitable_for_weapon_type + values: + - suitable_for_weapon_type__pistol + - suitable_for_weapon_type__rifle + - suitable_for_weapon_type__shotgun +- id: 2039 + name: Reel capacity + friendly_id: reel_capacity + values: + - reel_capacity__double + - reel_capacity__five + - reel_capacity__quad + - reel_capacity__single + - reel_capacity__six + - reel_capacity__triple +- id: 2040 + name: Timer design + friendly_id: timer_design + values: + - timer_design__analog + - timer_design__digital + - timer_design__enlarging + - timer_design__interval + - timer_design__processing +- id: 2041 + name: Lamp type + friendly_id: lamp_type + values: + - lamp_type__opal + - lamp_type__condenser + - lamp_type__cold_light + - lamp_type__dichroic +- id: 2042 + name: Compatible film type + friendly_id: compatible_film_type + values: + - compatible_film_type__black_white_film + - compatible_film_type__black_white_paper + - compatible_film_type__color_film + - compatible_film_type__color_paper + - compatible_film_type__negative_film + - compatible_film_type__reversal_film +- id: 2043 + name: Photographic chemical form + friendly_id: photographic_chemical_form + values: + - photographic_chemical_form__crystals + - photographic_chemical_form__liquid + - photographic_chemical_form__powder + - photographic_chemical_form__tablets +- id: 2044 + name: Photographic paper size + friendly_id: photographic_paper_size + values: + - photographic_paper_size__11_x_14 + - photographic_paper_size__11_x_17 + - photographic_paper_size__13_x_19 + - photographic_paper_size__4_x_6 + - photographic_paper_size__5_x_7 + - photographic_paper_size__8_x_10 + - photographic_paper_size__9_x_12 + - photographic_paper_size__a3 + - photographic_paper_size__a4 + - photographic_paper_size__a5 + - photographic_paper_size__a6 + - photographic_paper_size__custom + - photographic_paper_size__other +- id: 2045 + name: Photographic paper type + friendly_id: photographic_paper_type + values: + - photographic_paper_type__canvas + - photographic_paper_type__fine_art + - photographic_paper_type__glossy + - photographic_paper_type__lustre + - photographic_paper_type__matte + - photographic_paper_type__metallic + - photographic_paper_type__pearl + - photographic_paper_type__satin + - photographic_paper_type__semi_gloss + - photographic_paper_type__silk +- id: 2046 + name: Display mode + friendly_id: display_mode + values: + - display_mode__analog + - display_mode__digital +- id: 2047 + name: Background design + friendly_id: background_design + values: + - background_design__canvas + - background_design__chroma_key + - background_design__collapsible + - background_design__muslin + - background_design__printed + - background_design__seamless_paper + - background_design__vinyl +- id: 2048 + name: Diffuser design + friendly_id: diffuser_design + values: + - diffuser_design__beauty_dish + - diffuser_design__bounce + - diffuser_design__dome + - diffuser_design__flash_bender + - diffuser_design__honeycomb + - diffuser_design__ring + - diffuser_design__snoot + - diffuser_design__softbox + - diffuser_design__umbrella +- id: 2049 + name: Reflector design + friendly_id: reflector_design + values: + - reflector_design__barndoors + - reflector_design__beauty_dish + - reflector_design__bounce + - reflector_design__honeycomb + - reflector_design__softbox + - reflector_design__umbrella +- id: 2050 + name: Light filtering + friendly_id: light_filtering + values: + - light_filtering__blackout + - light_filtering__color_correction + - light_filtering__color_effects + - light_filtering__diffusion + - light_filtering__general_effects + - light_filtering__patterned +- id: 2051 + name: Projection design + friendly_id: projection_design + values: + - projection_design__custom + - projection_design__logo + - projection_design__pattern + - projection_design__shadow + - projection_design__text +- id: 2052 + name: Softbox mounting type + friendly_id: softbox_mounting_type + values: + - softbox_mounting_type__bowens + - softbox_mounting_type__elinchrom + - softbox_mounting_type__profoto + - softbox_mounting_type__speedlight + - softbox_mounting_type__universal +- id: 2053 + name: Softbox shape + friendly_id: softbox_shape + values: + - softbox_shape__square + - softbox_shape__rectangle + - softbox_shape__octagon + - softbox_shape__round + - softbox_shape__strip +- id: 2054 + name: Negative/Slide storage type + friendly_id: negative_slide_storage_type + values: + - negative_slide_storage_type__archive_storage_box + - negative_slide_storage_type__negative_binder + - negative_slide_storage_type__negative_envelope + - negative_slide_storage_type__negative_file + - negative_slide_storage_type__negative_sleeves + - negative_slide_storage_type__slide_binder + - negative_slide_storage_type__slide_box + - negative_slide_storage_type__slide_carousel + - negative_slide_storage_type__slide_file + - negative_slide_storage_type__slide_storage_pages + - negative_slide_storage_type__slide_tray +- id: 2055 + name: Chemical application + friendly_id: chemical_application + values: + - chemical_application__bonding + - chemical_application__cleaning + - chemical_application__waterproofing +- id: 2056 + name: Chemical safety features + friendly_id: chemical_safety_features + values: + - chemical_safety_features__low_voc + - chemical_safety_features__non_toxic +- id: 2057 + name: Chemical product form + friendly_id: chemical_product_form + values: + - chemical_product_form__flakes + - chemical_product_form__granules + - chemical_product_form__liquid + - chemical_product_form__pellets + - chemical_product_form__gel + - chemical_product_form__powder + - chemical_product_form__stick + - chemical_product_form__tablets +- id: 2058 + name: Chemical container type + friendly_id: chemical_container_type + values: + - chemical_container_type__blister + - chemical_container_type__bottles + - chemical_container_type__jerrican + - chemical_container_type__portion_pack +- id: 2059 + name: Suitable for material type + friendly_id: suitable_for_material_type + values: + - suitable_for_material_type__acrylic + - suitable_for_material_type__aluminum + - suitable_for_material_type__brass + - suitable_for_material_type__brick + - suitable_for_material_type__bronze + - suitable_for_material_type__cardboard + - suitable_for_material_type__cement + - suitable_for_material_type__ceramic + - suitable_for_material_type__concrete + - suitable_for_material_type__copper + - suitable_for_material_type__enamel + - suitable_for_material_type__epoxy + - suitable_for_material_type__fiberboard + - suitable_for_material_type__fiberglass + - suitable_for_material_type__flint + - suitable_for_material_type__glass + - suitable_for_material_type__granite + - suitable_for_material_type__grout + - suitable_for_material_type__hardboard + - suitable_for_material_type__iron + - suitable_for_material_type__leather + - suitable_for_material_type__limestone + - suitable_for_material_type__linen + - suitable_for_material_type__marble + - suitable_for_material_type__metal + - suitable_for_material_type__mortar + - suitable_for_material_type__nylon + - suitable_for_material_type__paper + - suitable_for_material_type__plaster + - suitable_for_material_type__plastic + - suitable_for_material_type__plywood + - suitable_for_material_type__porcelain + - suitable_for_material_type__rubber + - suitable_for_material_type__sandstone + - suitable_for_material_type__steel + - suitable_for_material_type__stone + - suitable_for_material_type__stucco + - suitable_for_material_type__wood + - suitable_for_material_type__other +- id: 2060 + name: Lubricant dispenser type + friendly_id: lubricant_dispenser_type + values: + - lubricant_dispenser_type__aerosol_spray + - lubricant_dispenser_type__bottle + - lubricant_dispenser_type__bucket + - lubricant_dispenser_type__can + - lubricant_dispenser_type__canister + - lubricant_dispenser_type__cartridge + - lubricant_dispenser_type__drum + - lubricant_dispenser_type__pail + - lubricant_dispenser_type__pouch + - lubricant_dispenser_type__tube +- id: 2061 + name: Masonry product form + friendly_id: masonry_product_form + values: + - masonry_product_form__liquid + - masonry_product_form__paste + - masonry_product_form__powder +- id: 2062 + name: Finish + friendly_id: finish + values: + - finish__gloss + - finish__matte + - finish__satin + - finish__metallic +- id: 2063 + name: Intended application + friendly_id: intended_application + values: + - intended_application__cabinets + - intended_application__ceilings + - intended_application__concrete + - intended_application__decks_fences + - intended_application__doors + - intended_application__drywall + - intended_application__exterior_walls + - intended_application__floors + - intended_application__furniture + - intended_application__interior_walls + - intended_application__marine_transport + - intended_application__metal + - intended_application__plastic + - intended_application__radiators + - intended_application__trim_molding + - intended_application__windows + - intended_application__wood + - intended_application__other +- id: 2064 + name: Primer use + friendly_id: primer_use + values: + - primer_use__1k + - primer_use__2_in_1 + - primer_use__2k + - primer_use__3k + - primer_use__base_paint + - primer_use__coloring + - primer_use__filler + - primer_use__finish + - primer_use__impregnating + - primer_use__insulating + - primer_use__protective_coating + - primer_use__sealer +- id: 2065 + name: Product formulation + friendly_id: product_formulation + values: + - product_formulation__base_substance + - product_formulation__ready_mixed +- id: 2066 + name: Sheen/Gloss level + friendly_id: sheen_gloss_level + values: + - sheen_gloss_level__dead_matte + - sheen_gloss_level__deep_matte + - sheen_gloss_level__dull_matte + - sheen_gloss_level__eggshell + - sheen_gloss_level__extra_matte + - sheen_gloss_level__flat_matte + - sheen_gloss_level__gloss + - sheen_gloss_level__hammer + - sheen_gloss_level__high_gloss + - sheen_gloss_level__matte + - sheen_gloss_level__metallic_gloss + - sheen_gloss_level__mirror + - sheen_gloss_level__satin + - sheen_gloss_level__satin_gloss + - sheen_gloss_level__semi_gloss + - sheen_gloss_level__semi_matte + - sheen_gloss_level__semi_satin + - sheen_gloss_level__silk + - sheen_gloss_level__silk_gloss + - sheen_gloss_level__silk_matte + - sheen_gloss_level__smooth + - sheen_gloss_level__soft_gloss + - sheen_gloss_level__soft_sheen +- id: 2067 + name: Varnish/Finish application + friendly_id: varnish_finish_application + values: + - varnish_finish_application__baseboard + - varnish_finish_application__bathtubs + - varnish_finish_application__ceiling + - varnish_finish_application__cooker_hoods + - varnish_finish_application__doors + - varnish_finish_application__facades + - varnish_finish_application__fences + - varnish_finish_application__frames + - varnish_finish_application__furniture + - varnish_finish_application__garden_furniture + - varnish_finish_application__gates + - varnish_finish_application__grills + - varnish_finish_application__pipes + - varnish_finish_application__radiators + - varnish_finish_application__roofs + - varnish_finish_application__stairs + - varnish_finish_application__trims + - varnish_finish_application__universal + - varnish_finish_application__walls + - varnish_finish_application__window_shutters + - varnish_finish_application__windows + - varnish_finish_application__other +- id: 2069 + name: Plumbing primer application + friendly_id: plumbing_primer_application + values: + - plumbing_primer_application__fittings + - plumbing_primer_application__pipes +- id: 2070 + name: Coating/Sealant application + friendly_id: coating_sealant_application + values: + - coating_sealant_application__heat_control + - coating_sealant_application__leak_proofing + - coating_sealant_application__weatherproofing +- id: 2071 + name: Solder/Flux application + friendly_id: solder_flux_application + values: + - solder_flux_application__electronics + - solder_flux_application__plumbing +- id: 2072 + name: Solvent/Thinner application + friendly_id: solvent_thinner_application + values: + - solvent_thinner_application__adhesive_remover + - solvent_thinner_application__epoxy + - solvent_thinner_application__lacquer + - solvent_thinner_application__paint + - solvent_thinner_application__polyurethane + - solvent_thinner_application__shellac + - solvent_thinner_application__stain + - solvent_thinner_application__varnish +- id: 2073 + name: Solvent application + friendly_id: solvent_application + values_from: solvent_thinner_application +- id: 2074 + name: Stripper application + friendly_id: stripper_application + values_from: solvent_thinner_application +- id: 2075 + name: Thinner application + friendly_id: thinner_application + values_from: solvent_thinner_application +- id: 2076 + name: Building consumable form + friendly_id: building_consumable_form + values: + - building_consumable_form__liquid + - building_consumable_form__paste + - building_consumable_form__powder +- id: 2077 + name: Wall patching application + friendly_id: wall_patching_application + values: + - wall_patching_application__ceiling + - wall_patching_application__drywall + - wall_patching_application__masonry + - wall_patching_application__plaster + - wall_patching_application__stucco + - wall_patching_application__wood +- id: 2078 + name: Edge style + friendly_id: edge_style + values: + - edge_style__beveled + - edge_style__bullnose + - edge_style__eased + - edge_style__ogee + - edge_style__square +- id: 2079 + name: Door closer application + friendly_id: door_closer_application + values: + - door_frame_application__internal + - door_frame_application__external +- id: 2080 + name: Door closer design + friendly_id: door_closer_design + values: + - door_closer_design__floor + - door_closer_design__overhead_concealed + - door_closer_design__parallel_arm + - door_closer_design__regular_arm + - door_closer_design__slide_track_arm + - door_closer_design__top_jamb +- id: 2081 + name: Hardware finish + friendly_id: hardware_finish + values: + - hardware_finish__aluminum + - hardware_finish__antique + - hardware_finish__brass + - hardware_finish__bronze + - hardware_finish__brushed + - hardware_finish__chrome + - hardware_finish__gloss + - hardware_finish__gold + - hardware_finish__lacquered + - hardware_finish__matte + - hardware_finish__nickel + - hardware_finish__polished + - hardware_finish__satin + - hardware_finish__silver +- id: 2082 + name: Recommended use + friendly_id: recommended_use + values: + - recommended_use__commercial + - recommended_use__residential + - recommended_use__universal + - recommended_use__industrial +- id: 2083 + name: Suitable for door type + friendly_id: suitable_for_door_type + values: + - suitable_for_door_type__double_leaf + - suitable_for_door_type__single_leaf +- id: 2084 + name: Door frame application + friendly_id: door_frame_application + values_from: door_closer_application +- id: 2085 + name: Door frame finish + friendly_id: door_frame_finish + values: + - door_frame_finish__pre_finished + - door_frame_finish__ready_to_finish +- id: 2086 + name: Door knob function + friendly_id: door_knob_function + values: + - door_knob_function__dummy + - door_knob_function__entry + - door_knob_function__passage + - door_knob_function__privacy +- id: 2087 + name: Door stop placement + friendly_id: door_stop_placement + values: + - door_stop_placement__baseboard + - door_stop_placement__door + - door_stop_placement__floor + - door_stop_placement__hinge_pin + - door_stop_placement__wall +- id: 2088 + name: Door application + friendly_id: door_application + values_from: door_closer_application +- id: 2089 + name: Door glass finish + friendly_id: door_glass_finish + values: + - door_glass_finish__clear + - door_glass_finish__frost + - door_glass_finish__lead + - door_glass_finish__opaque + - door_glass_finish__pattern + - door_glass_finish__no_glass +- id: 2090 + name: Door suitable location + friendly_id: door_suitable_location + values: + - door_suitable_location__back + - door_suitable_location__front + - door_suitable_location__patio +- id: 2091 + name: Door surface finish + friendly_id: door_surface_finish + values: + - door_surface_finish__glazed + - door_surface_finish__unglazed +- id: 2092 + name: Board material + friendly_id: board_material + values: + - board_material__acrylic + - board_material__cork + - board_material__felt + - board_material__glass + - board_material__hardboard + - board_material__melamine + - board_material__porcelain + - board_material__slate +- id: 2093 + name: Hatch suitable location + friendly_id: hatch_suitable_location + values: + - hatch_suitable_location__ceiling + - hatch_suitable_location__floor + - hatch_suitable_location__roof + - hatch_suitable_location__wall +- id: 2094 + name: Hardwood lumber grade + friendly_id: hardwood_lumber_grade + values: + - hardwood_lumber_grade__firsts_and_seconds_fas + - hardwood_lumber_grade__no_1_common + - hardwood_lumber_grade__no_2_common + - hardwood_lumber_grade__no_2a_common + - hardwood_lumber_grade__no_2b_common + - hardwood_lumber_grade__no_3a_common + - hardwood_lumber_grade__no_3b_common + - hardwood_lumber_grade__select +- id: 2095 + name: Plywood grade + friendly_id: plywood_grade + values: + - plywood_grade__a + - plywood_grade__b + - plywood_grade__c + - plywood_grade__d +- id: 2096 + name: Softwood lumber grade + friendly_id: softwood_lumber_grade + values: + - softwood_lumber_grade__c_select + - softwood_lumber_grade__d_select + - softwood_lumber_grade__no_1 + - softwood_lumber_grade__no_2 + - softwood_lumber_grade__no_3 + - softwood_lumber_grade__construction_grade +- id: 2097 + name: Molding application + friendly_id: molding_application + values: + - molding_application__astragal + - molding_application__baseboard + - molding_application__bead_reel + - molding_application__casing + - molding_application__chair_rail + - molding_application__cove + - molding_application__crown + - molding_application__dentil + - molding_application__picture_rail + - molding_application__quarter_round + - molding_application__shoe_molding +- id: 2098 + name: Gutter fitting type + friendly_id: gutter_fitting_type + values: + - gutter_fitting_type__downspout_connector + - gutter_fitting_type__end_cap + - gutter_fitting_type__gutter_connector + - gutter_fitting_type__gutter_elbow + - gutter_fitting_type__gutter_inside_corner + - gutter_fitting_type__gutter_outside_corner + - gutter_fitting_type__gutter_p_trap + - gutter_fitting_type__gutter_pipe_bend + - gutter_fitting_type__gutter_pipe_reducer + - gutter_fitting_type__gutter_pipe_tee + - gutter_fitting_type__gutter_pit_trap + - gutter_fitting_type__gutter_running_outlet + - gutter_fitting_type__gutter_s_trap + - gutter_fitting_type__gutter_u_trap + - gutter_fitting_type__stop_end_running_outlet +- id: 2099 + name: Shutter finish + friendly_id: shutter_finish + values: + - shutter_finish__painted + - shutter_finish__primed + - shutter_finish__stained + - shutter_finish__unfinished +- id: 2100 + name: Installation method + friendly_id: installation_method + values: + - installation_method__lay_in_installation + - installation_method__surface_mount +- id: 2101 + name: Tile design + friendly_id: tile_design + values: + - tile_design__acoustic + - tile_design__arabesque + - tile_design__basketweave + - tile_design__chevron + - tile_design__fish_scale + - tile_design__geometric + - tile_design__herringbone + - tile_design__hexagonal + - tile_design__mosaic + - tile_design__spanish + - tile_design__subway + - tile_design__other +- id: 2102 + name: Tile look + friendly_id: tile_look + values: + - tile_look__3d + - tile_look__cement + - tile_look__glass + - tile_look__marble + - tile_look__metal + - tile_look__stone + - tile_look__wood +- id: 2103 + name: Tile texture + friendly_id: tile_texture + values: + - tile_texture__acoustic + - tile_texture__coffered + - tile_texture__fissured + - tile_texture__glue_up + - tile_texture__sand + - tile_texture__smooth + - tile_texture__textured +- id: 2104 + name: Weatherization application + friendly_id: weatherization_application + values: + - weatherization_application__doors + - weatherization_application__windows +- id: 2105 + name: Weather strip design + friendly_id: weather_strip_design + values: + - weather_strip_design__flat + - weather_strip_design__round +- id: 2106 + name: Glazing type + friendly_id: glazing_type + values: + - glazing_type__double_pane + - glazing_type__single_pane + - glazing_type__triple_pane +- id: 2107 + name: Fencing components + friendly_id: fencing_components + values: + - fencing_components__barbed_wire + - fencing_components__fabric + - fencing_components__fence_topper + - fencing_components__gate + - fencing_components__panel + - fencing_components__picket + - fencing_components__post + - fencing_components__rail + - fencing_components__slat +- id: 2108 + name: Trellis design + friendly_id: trellis_design + values: + - trellis_design__diamond + - trellis_design__square +- id: 2109 + name: Fuel additives + friendly_id: fuel_additives + values: + - fuel_additives__anti_gel + - fuel_additives__corrosion_inhibitor + - fuel_additives__dye + - fuel_additives__stabilizer +- id: 2110 + name: Fuel grade + friendly_id: fuel_grade + values: + - fuel_grade__bioheat + - fuel_grade__premium + - fuel_grade__standard + - fuel_grade__1_k + - fuel_grade__2_k +- id: 2111 + name: Sulfur content + friendly_id: sulfur_content + values: + - sulfur_content__high + - sulfur_content__low + - sulfur_content__ultra_low +- id: 2112 + name: Kerosene application + friendly_id: kerosene_application + values: + - kerosene_application__heater + - kerosene_application__jet_fuel + - kerosene_application__lamp +- id: 2113 + name: Fuel purity + friendly_id: fuel_purity + values: + - fuel_purity__commercial + - fuel_purity__hd_10 + - fuel_purity__hd_5 +- id: 2114 + name: Propane application + friendly_id: propane_application + values: + - propane_application__forklift + - propane_application__grill + - propane_application__heating + - propane_application__recreational_vehicles_rv + - propane_application__torch +- id: 2115 + name: Bracket/Brace design + friendly_id: bracket_brace_design + values: + - bracket_brace_design__angle_bracket + - bracket_brace_design__corner_brace + - bracket_brace_design__countertop_bracket + - bracket_brace_design__decorative_bracket + - bracket_brace_design__flat_brace + - bracket_brace_design__floating_shelf_bracket + - bracket_brace_design__mending_plate + - bracket_brace_design__shelf_bracket + - bracket_brace_design__strap_brace + - bracket_brace_design__t_plate +- id: 2116 + name: Knob/Handle design + friendly_id: knob_handle_design + values: + - knob_handle_design__bail_pull + - knob_handle_design__bar_pull + - knob_handle_design__cup_pull + - knob_handle_design__novelty_knob + - knob_handle_design__pendant_pull + - knob_handle_design__recessed_pull + - knob_handle_design__ring_pull + - knob_handle_design__round_knob + - knob_handle_design__square_knob + - knob_handle_design__t_bar +- id: 2117 + name: Load capacity + friendly_id: load_capacity + values: + - load_capacity__light_duty + - load_capacity__medium_duty + - load_capacity__heavy_duty +- id: 2118 + name: Cord fastening system + friendly_id: cord_fastening_system + values: + - cord_fastening_system__carabiner + - cord_fastening_system__hook + - cord_fastening_system__toggle_ball +- id: 2119 + name: Molding shape + friendly_id: molding_shape + values: + - molding_shape__baluster + - molding_shape__bench + - molding_shape__block + - molding_shape__brick + - molding_shape__column + - molding_shape__figurine + - molding_shape__panel + - molding_shape__paver + - molding_shape__planter + - molding_shape__sphere + - molding_shape__stepping_stone + - molding_shape__other +- id: 2120 + name: Suitable for gas type + friendly_id: suitable_for_gas_type + values_from: fuel_source +- id: 2121 + name: Spike design + friendly_id: spike_design + values: + - spike_design__fence_post + - spike_design__garden_hose_guide + - spike_design__ground_base + - spike_design__landscape_fabric + - spike_design__solar_light + - spike_design__spiral_ground_anchor + - spike_design__tent + - spike_design__tree + - spike_design__umbrella +- id: 2122 + name: Fastener finish + friendly_id: fastener_finish + values: + - fastener_finish__aluminum + - fastener_finish__anodized + - fastener_finish__black_oxide + - fastener_finish__brass + - fastener_finish__bright_zinc_plated_bzp_steel + - fastener_finish__bronze + - fastener_finish__cadmium + - fastener_finish__chrome + - fastener_finish__copper + - fastener_finish__galvanized_steel + - fastener_finish__gold + - fastener_finish__nickel + - fastener_finish__nylon + - fastener_finish__painted + - fastener_finish__plated_steel + - fastener_finish__powder_coated + - fastener_finish__stainless_steel + - fastener_finish__titanium + - fastener_finish__zinc + - fastener_finish__zinc_alloy +- id: 2123 + name: Bolt form + friendly_id: bolt_form + values: + - bolt_form__anchor + - bolt_form__carriage + - bolt_form__elevator + - bolt_form__flange + - bolt_form__hex + - bolt_form__j_bolt + - bolt_form__lag + - bolt_form__machine + - bolt_form__plow + - bolt_form__roofing + - bolt_form__shackle + - bolt_form__shoulder + - bolt_form__socket + - bolt_form__stove + - bolt_form__structural + - bolt_form__tension_control + - bolt_form__toggle + - bolt_form__u_bolt +- id: 2124 + name: Nut form + friendly_id: nut_form + values: + - nut_form__acorn + - nut_form__barrel + - nut_form__blind + - nut_form__cage + - nut_form__castle + - nut_form__coupling + - nut_form__durlok + - nut_form__flange + - nut_form__flat + - nut_form__full + - nut_form__half_moon + - nut_form__hexagon + - nut_form__k_nut + - nut_form__lug + - nut_form__nyloc + - nut_form__rivet + - nut_form__self_locking + - nut_form__shear + - nut_form__slotted + - nut_form__spring + - nut_form__square + - nut_form__t_nut + - nut_form__threaded + - nut_form__u_nut + - nut_form__weld + - nut_form__wing + - nut_form__other +- id: 2125 + name: Rivet form + friendly_id: rivet_form + values: + - rivet_form__blind + - rivet_form__drive + - rivet_form__flush + - rivet_form__friction_lock + - rivet_form__oscar + - rivet_form__self_piercing + - rivet_form__semi_tubular + - rivet_form__shoulder + - rivet_form__solid + - rivet_form__split + - rivet_form__tubular +- id: 2126 + name: Thread direction + friendly_id: thread_direction + values: + - thread_direction__left_hand + - thread_direction__right_hand +- id: 2127 + name: Threaded rod size + friendly_id: threaded_rod_size + values: + - threaded_rod_size__m1_6 + - threaded_rod_size__m2 + - threaded_rod_size__m2_5 + - threaded_rod_size__m3 + - threaded_rod_size__m4 + - threaded_rod_size__m5 + - threaded_rod_size__m6 + - threaded_rod_size__m8 + - threaded_rod_size__m10 + - threaded_rod_size__m12 + - threaded_rod_size__m14 + - threaded_rod_size__m16 + - threaded_rod_size__m18 + - threaded_rod_size__m20 + - threaded_rod_size__m22 + - threaded_rod_size__m24 + - threaded_rod_size__m27 + - threaded_rod_size__m30 + - threaded_rod_size__m33 + - threaded_rod_size__m36 + - threaded_rod_size__m39 + - threaded_rod_size__m42 + - threaded_rod_size__m45 + - threaded_rod_size__m48 + - threaded_rod_size__m52 + - threaded_rod_size__m56 + - threaded_rod_size__m60 + - threaded_rod_size__m64 + - threaded_rod_size__other +- id: 2128 + name: Washer form + friendly_id: washer_form + values: + - washer_form__disc_lock + - washer_form__fender + - washer_form__flat + - washer_form__lock_washer + - washer_form__nordlock + - washer_form__red_fiber + - washer_form__safety + - washer_form__serrated_shake_proof + - washer_form__spring + - washer_form__square_plate + - washer_form__starlock + - washer_form__tab + - washer_form__taper +- id: 2129 + name: Connector design + friendly_id: connector_design + values: + - connector_design__closed_end + - connector_design__open_end + - connector_design__snap +- id: 2130 + name: Hook design + friendly_id: hook_design + values: + - hook_design__double_ended + - hook_design__fixed + - hook_design__screw + - hook_design__spring + - hook_design__swing + - hook_design__swivel +- id: 2131 + name: Metal molding application + friendly_id: metal_molding_application + values: + - metal_molding_application__dental_applicances + - metal_molding_application__figurines + - metal_molding_application__ingots + - metal_molding_application__machinery + - metal_molding_application__jewelry + - metal_molding_application__sculpture + - metal_molding_application__tools + - metal_molding_application__other +- id: 2132 + name: Hardware mounting type + friendly_id: hardware_mounting_type + values: + - hardware_mounting_type__free_standing + - hardware_mounting_type__wall_mounted + - hardware_mounting_type__countertop + - hardware_mounting_type__floor_mounted + - hardware_mounting_type__benchtop + - hardware_mounting_type__portable +- id: 2133 + name: Suitable for water feature type + friendly_id: suitable_for_water_feature_type + values: + - suitable_for_water_feature_type__drainage + - suitable_for_water_feature_type__fountain + - suitable_for_water_feature_type__garden + - suitable_for_water_feature_type__irrigation_system + - suitable_for_water_feature_type__pond + - suitable_for_water_feature_type__water_purification_system + - suitable_for_water_feature_type__water_supply_system +- id: 2134 + name: Dryer technology + friendly_id: dryer_technology + values: + - dryer_technology__desiccant + - dryer_technology__refrigerated +- id: 2135 + name: Duct shape + friendly_id: duct_shape + values: + - duct_shape__flat + - duct_shape__round +- id: 2136 + name: Housing color + friendly_id: housing_color + values_from: color +- id: 2137 + name: HVAC control type + friendly_id: hvac_control_type + values: + - hvac_control_type__digital + - hvac_control_type__manual + - hvac_control_type__programmable + - hvac_control_type__smart +- id: 2138 + name: Key purpose + friendly_id: key_purpose + values: + - key_purpose__car + - key_purpose__door + - key_purpose__padlock + - key_purpose__window +- id: 2139 + name: Security level + friendly_id: security_level + values: + - security_level__high + - security_level__low + - security_level__medium +- id: 2140 + name: Pipe clamp design + friendly_id: pipe_clamp_design + values: + - pipe_clamp_design__band_hanger + - pipe_clamp_design__bell_hanger + - pipe_clamp_design__c_clamp + - pipe_clamp_design__hose + - pipe_clamp_design__insulated_pipe + - pipe_clamp_design__pipe_support + - pipe_clamp_design__repair + - pipe_clamp_design__riser + - pipe_clamp_design__saddle + - pipe_clamp_design__snap + - pipe_clamp_design__u_bolt +- id: 2141 + name: Bathtub base design + friendly_id: bathtub_base_design + values: + - bathtub_base_design__clawfoot + - bathtub_base_design__free_standing + - bathtub_base_design__platform +- id: 2142 + name: Bathtub skirt shape + friendly_id: bathtub_skirt_shape + values: + - bathtub_skirt_shape__corner + - bathtub_skirt_shape__curved + - bathtub_skirt_shape__straight +- id: 2143 + name: Plumbing trap design + friendly_id: plumbing_trap_design + values: + - plumbing_trap_design__bell + - plumbing_trap_design__bottle + - plumbing_trap_design__drum + - plumbing_trap_design__grease_interceptor + - plumbing_trap_design__hepvo + - plumbing_trap_design__p_trap + - plumbing_trap_design__running + - plumbing_trap_design__s_trap +- id: 2144 + name: Connecting thread + friendly_id: connecting_thread + values: + - connecting_thread__1_inch_npt + - connecting_thread__1_1_2_inch_npt + - connecting_thread__1_1_4_inch_npt + - connecting_thread__1_2_inch_ips + - connecting_thread__1_2_inch_npt + - connecting_thread__1_4_inch_npt + - connecting_thread__1_8_inch_npt + - connecting_thread__15_16_inch_27 + - connecting_thread__2_inch_npt + - connecting_thread__3_4_inch_fht + - connecting_thread__3_4_inch_ght + - connecting_thread__3_4_inch_ips + - connecting_thread__3_4_inch_mht + - connecting_thread__3_4_inch_npt + - connecting_thread__3_8_inch_ips + - connecting_thread__3_8_inch_npt + - connecting_thread__55_64_inch_27 +- id: 2145 + name: Faucet thread + friendly_id: faucet_thread + values: + - faucet_thread__dual + - faucet_thread__female + - faucet_thread__male +- id: 2146 + name: Drain location + friendly_id: drain_location + values: + - drain_location__center + - drain_location__left + - drain_location__right +- id: 2147 + name: Shower base design + friendly_id: shower_base_design + values: + - shower_base_design__angular + - shower_base_design__quadrant + - shower_base_design__rectangular + - shower_base_design__square +- id: 2148 + name: Material firmness + friendly_id: material_firmness + values: + - material_firmness__hard + - material_firmness__soft + - material_firmness__flexible + - material_firmness__rigid + - material_firmness__semi_rigid +- id: 2149 + name: Toilet cover design + friendly_id: toilet_cover_design + values: + - toilet_cover_design__elongated + - toilet_cover_design__round +- id: 2150 + name: Flush plate color + friendly_id: flush_plate_color + values_from: color +- id: 2151 + name: Tank color + friendly_id: tank_color + values_from: color +- id: 2152 + name: Shower design + friendly_id: shower_design + values: + - shower_design__alcove + - shower_design__corner + - shower_design__free_standing +- id: 2153 + name: Sink shape + friendly_id: sink_shape + values_from: shape +- id: 2154 + name: Sink mounting type + friendly_id: sink_mounting_type + values: + - sink_mounting_type__counter + - sink_mounting_type__wall_hung +- id: 2155 + name: Sink type + friendly_id: sink_type + values: + - sink_type__half_bowl + - sink_type__single_bowl + - sink_type__one_and_half_bowls + - sink_type__double_bowl +- id: 2156 + name: Bidet mounting type + friendly_id: bidet_mounting_type + values: + - toilet_bidet_mounting_type__floor_mounted + - toilet_bidet_mounting_type__wall_mounted +- id: 2157 + name: Flush system + friendly_id: flush_system + values: + - flush_system__double + - flush_system__single +- id: 2158 + name: Toilet mounting type + friendly_id: toilet_mounting_type + values_from: bidet_mounting_type +- id: 2159 + name: Toilet shape + friendly_id: toilet_shape + values: + - toilet_shape__elongated + - toilet_shape__rectangular + - toilet_shape__round +- id: 2160 + name: Urinal mounting type + friendly_id: urinal_mounting_type + values_from: bidet_mounting_type +- id: 2161 + name: Placement supported + friendly_id: placement_supported + values: + - placement_supported__bike + - placement_supported__ceiling + - placement_supported__floor + - placement_supported__ground + - placement_supported__hand + - placement_supported__in_wall + - placement_supported__pole + - placement_supported__sink + - placement_supported__table + - placement_supported__tv_bracket + - placement_supported__wall + - placement_supported__window +- id: 2162 + name: Motor starting method + friendly_id: motor_starting_method + values: + - motor_starting_method__auto_transformer + - motor_starting_method__dol + - motor_starting_method__frequency_converter + - motor_starting_method__sd + - motor_starting_method__soft +- id: 2163 + name: Circuit breaker panel form + friendly_id: circuit_breaker_panel_form + values: + - circuit_breaker_panel_form__miniature + - circuit_breaker_panel_form__molded_case + - circuit_breaker_panel_form__motor_protective + - circuit_breaker_panel_form__residual_current + - circuit_breaker_panel_form__string +- id: 2164 + name: Circuit breaker design + friendly_id: circuit_breaker_design + values: + - circuit_breaker_design__bolt_on + - circuit_breaker_design__plug_in + - circuit_breaker_design__unit_mount +- id: 2165 + name: Circuit breaker type + friendly_id: circuit_breaker_type + values: + - circuit_breaker_type__arc_fault_circuit_interrupter_afci + - circuit_breaker_type__circuit_breaker_disconnect + - circuit_breaker_type__dual_function_afci_gfci + - circuit_breaker_type__ground_fault_circuit_interrupter_gfci + - circuit_breaker_type__standard + - circuit_breaker_type__thermal_magnetic_circuit_breaker +- id: 2166 + name: Trip type + friendly_id: trip_type + values: + - trip_type__non_interchangeable + - trip_type__interchangeable +- id: 2167 + name: Shrink ratio + friendly_id: shrink_ratio + values: + - shrink_ratio__21 + - shrink_ratio__31 + - shrink_ratio__41 +- id: 2168 + name: Switch control type + friendly_id: switch_control_type + values: + - switch_control_type__button + - switch_control_type__lever + - switch_control_type__rotary + - switch_control_type__scrollbar + - switch_control_type__sensor + - switch_control_type__slider + - switch_control_type__tilt + - switch_control_type__touch +- id: 2169 + name: Ignition system + friendly_id: ignition_system + values: + - ignition_system__automatic + - ignition_system__electronic + - ignition_system__manual +- id: 2170 + name: Socket type + friendly_id: socket_type + values: + - socket_type__ethernet + - socket_type__multimedia + - socket_type__plug + - socket_type__shaver + - socket_type__telephone + - socket_type__tv + - socket_type__satellite + - socket_type__usb +- id: 2171 + name: Solar panel design + friendly_id: solar_panel_design + values: + - solar_panel_design__freestanding + - solar_panel_design__roof_mounted +- id: 2172 + name: Solar cell type + friendly_id: solar_cell_type + values: + - solar_cell_type__monocrystalline_silicon + - solar_cell_type__polycrystalline_silicon + - solar_cell_type__thin_film +- id: 2173 + name: Solar panel connections + friendly_id: solar_panel_connections + values: + - solar_panel_connections__alligator_clips + - solar_panel_connections__anderson_powerpole + - solar_panel_connections__dc_connector + - solar_panel_connections__mc4 + - solar_panel_connections__sae + - solar_panel_connections__usb_type_a + - solar_panel_connections__usb_type_c + - solar_panel_connections__xt60 + - solar_panel_connections__other +- id: 2174 + name: Wall plate style + friendly_id: wall_plate_style + values: + - wall_plate_style__conventional + - wall_plate_style__screwless +- id: 2175 + name: Engine design + friendly_id: engine_design + values: + - engine_design__2_stroke + - engine_design__4_stroke +- id: 2176 + name: Engine purpose + friendly_id: engine_purpose + values: + - engine_purpose__atv + - engine_purpose__chainsaw + - engine_purpose__generator + - engine_purpose__lawnmower + - engine_purpose__leaf_blower + - engine_purpose__motorcycle + - engine_purpose__outboard + - engine_purpose__pressure_washer + - engine_purpose__snow_blower + - engine_purpose__weed_trimmer + - engine_purpose__other +- id: 2177 + name: Fuel supply + friendly_id: fuel_supply + values: + - fuel_supply__avgas + - fuel_supply__biofuel + - fuel_supply__diesel + - fuel_supply__electric + - fuel_supply__gasoline + - fuel_supply__hybrid + - fuel_supply__jet_fuel + - fuel_supply__mogas + - fuel_supply__plug_in_hybrid + - fuel_supply__petrol + - fuel_supply__flex_fuel +- id: 2178 + name: Shaft orientation + friendly_id: shaft_orientation + values: + - shaft_orientation__horizontal + - shaft_orientation__vertical +- id: 2179 + name: Start type + friendly_id: start_type + values: + - start_type__electric + - start_type__pull +- id: 2180 + name: Storage tank application + friendly_id: storage_tank_application + values: + - storage_tank_application__chemicals + - storage_tank_application__fuel + - storage_tank_application__waste + - storage_tank_application__water +- id: 2181 + name: Sandblaster application + friendly_id: sandblaster_application + values: + - sandblaster_application__polishing + - sandblaster_application__sanding +- id: 2182 + name: Sander type + friendly_id: sander_type + values: + - sander_type__belt + - sander_type__detail + - sander_type__disc + - sander_type__file + - sander_type__random_orbital + - sander_type__sanding_roller + - sander_type__sheet + - sander_type__tube_belt +- id: 2183 + name: Rotating direction + friendly_id: rotating_direction + values: + - rotating_direction__left_hand + - rotating_direction__right_hand +- id: 2184 + name: Abrasive material + friendly_id: abrasive_material + values: + - abrasive_material__aluminum + - abrasive_material__ceramic + - abrasive_material__diamond + - abrasive_material__emery + - abrasive_material__flint + - abrasive_material__garnet + - abrasive_material__glass + - abrasive_material__silicon_carbide + - abrasive_material__steel_wool +- id: 2185 + name: Backing material + friendly_id: backing_material + values: + - backing_material__plastic + - backing_material__polyester + - backing_material__polyurethane_pu + - backing_material__polyvinyl_chloride_pvc + - backing_material__rubber +- id: 2186 + name: Grit type + friendly_id: grit_type + values: + - grit_type__coarse + - grit_type__fine + - grit_type__medium + - grit_type__extra_coarse + - grit_type__extra_fine + - grit_type__super_fine + - grit_type__ultra_fine + - grit_type__very_fine +- id: 2187 + name: Sanding application + friendly_id: sanding_application + values: + - sanding_application__deburring + - sanding_application__finishing_work + - sanding_application__removing_paint + - sanding_application__removing_rust + - sanding_application__removing_scale +- id: 2188 + name: Handle color + friendly_id: handle_color + values_from: color +- id: 2189 + name: Blade design + friendly_id: blade_design + values: + - blade_design__fixed + - blade_design__folding + - blade_design__razor + - blade_design__snap_off +- id: 2190 + name: Body material + friendly_id: body_material + values: + - body_material__aluminum + - body_material__composite + - body_material__graphite + - body_material__stainless_steel +- id: 2191 + name: Suitable for pipe type + friendly_id: suitable_for_pipe_type + values: + - suitable_for_pipe_type__acrylonitrile_butadiene_styrene_abs + - suitable_for_pipe_type__cast_iron + - suitable_for_pipe_type__chlorinated_polyvinyl_chloride_cpvc + - suitable_for_pipe_type__copper + - suitable_for_pipe_type__galvanized_steel + - suitable_for_pipe_type__multilayer + - suitable_for_pipe_type__pex + - suitable_for_pipe_type__polyvinyl_chloride_pvc + - suitable_for_pipe_type__stainless_steel + - suitable_for_pipe_type__other +- id: 2192 + name: Chuck type + friendly_id: chuck_type + values: + - chuck_type__key + - chuck_type__keyless + - chuck_type__sds + - chuck_type__sds_max + - chuck_type__sds_plus + - chuck_type__sds_top +- id: 2194 + name: Handle design + friendly_id: handle_design + values: + - handle_design__pistol + - handle_design__straight +- id: 2195 + name: Scaffolding mounting type + friendly_id: scaffolding_mounting_type + values: + - scaffolding_mounting_type__frame + - scaffolding_mounting_type__mobile +- id: 2196 + name: Lathe application + friendly_id: lathe_application + values: + - lathe_application__acrylic_spinning + - lathe_application__glass_working + - lathe_application__metal_spinning + - lathe_application__metalworking + - lathe_application__pottery + - lathe_application__woodworking +- id: 2197 + name: Device technology + friendly_id: device_technology + values: + - device_technology__analog + - device_technology__digital + - device_technology__magnetic + - device_technology__radio + - device_technology__electronic + - device_technology__optical +- id: 2198 + name: Anemometer application + friendly_id: anemometer_application + values: + - anemometer_application__industrial + - anemometer_application__meteorological +- id: 2199 + name: System of measurement + friendly_id: system_of_measurement + values: + - system_of_measurement__imperial + - system_of_measurement__metric +- id: 2200 + name: Detected gases + friendly_id: detected_gases + values: + - gases_detected__butane + - gases_detected__carbon_dioxide_co2 + - gases_detected__carbon_monoxide_co + - gases_detected__difluoromethane + - gases_detected__lpg + - gases_detected__methane + - gases_detected__natural_gas + - gases_detected__propane + - gases_detected__radon + - gases_detected__trichloromethane +- id: 2201 + name: Frequency weighting + friendly_id: frequency_weighting + values: + - frequency_weighting__a_weighting + - frequency_weighting__c_weighting + - frequency_weighting__z_weighting +- id: 2202 + name: Time weighting + friendly_id: time_weighting + values: + - time_weighting__fast + - time_weighting__impulse + - time_weighting__slow +- id: 2203 + name: Tape material + friendly_id: tape_material + values: + - tape_material__fabric + - tape_material__paper + - tape_material__plastic + - tape_material__polyurethane_pu + - tape_material__synthetic + - tape_material__vinyl +- id: 2204 + name: Thermal detector type + friendly_id: thermal_detector_type + values: + - thermal_detector_type__amorphous_silicon_a_si_detector + - thermal_detector_type__indium_antimonide_insb_detector + - thermal_detector_type__mercury_cadmium_telluride_mct_detector + - thermal_detector_type__microbolometer + - thermal_detector_type__qwip + - thermal_detector_type__vox_detector +- id: 2205 + name: Thermocouple type + friendly_id: thermocouple_type + values: + - thermocouple_type__type_b + - thermocouple_type__type_e + - thermocouple_type__type_j + - thermocouple_type__type_k + - thermocouple_type__type_n + - thermocouple_type__type_r + - thermocouple_type__type_s + - thermocouple_type__type_t +- id: 2206 + name: Feed type + friendly_id: feed_type + values: + - feed_type__gravity + - feed_type__siphon + - feed_type__side +- id: 2207 + name: Paint brush design + friendly_id: paint_brush_design + values: + - paint_brush_design__angle + - paint_brush_design__bright + - paint_brush_design__fan + - paint_brush_design__filbert + - paint_brush_design__flat + - paint_brush_design__rigger + - paint_brush_design__round + - paint_brush_design__triangle +- id: 2208 + name: Plunger shape + friendly_id: plunger_shape + values: + - plunger_shape__accordion + - plunger_shape__cup +- id: 2209 + name: Shaft color + friendly_id: shaft_color + values_from: color +- id: 2210 + name: Shaft material + friendly_id: shaft_material + values_from: cocktail_decoration_material +- id: 2211 + name: Suction cup color + friendly_id: suction_cup_color + values_from: color +- id: 2212 + name: Suction cup material + friendly_id: suction_cup_material + values_from: cocktail_decoration_material +- id: 2213 + name: Bevel type + friendly_id: bevel_type + values: + - bevel_type__double + - bevel_type__single +- id: 2214 + name: Socket driver tip + friendly_id: socket_driver_tip + values: + - socket_driver_tip__hex + - socket_driver_tip__pentalobe + - socket_driver_tip__phillips + - socket_driver_tip__pozidriv + - socket_driver_tip__slotted + - socket_driver_tip__spanner + - socket_driver_tip__spline + - socket_driver_tip__square + - socket_driver_tip__torq_set + - socket_driver_tip__torx + - socket_driver_tip__tri_wing + - socket_driver_tip__twelve_point +- id: 2215 + name: Tool operation + friendly_id: tool_operation + values: + - tool_operation__manual + - tool_operation__powered +- id: 2216 + name: Tool key tip + friendly_id: tool_key_tip + values: + - tool_key_tip__hex + - tool_key_tip__pentalobe + - tool_key_tip__phillips + - tool_key_tip__pozidriv + - tool_key_tip__slotted + - tool_key_tip__spanner + - tool_key_tip__spline + - tool_key_tip__square + - tool_key_tip__torq_set + - tool_key_tip__torx + - tool_key_tip__tri_wing + - tool_key_tip__twelve_point +- id: 2217 + name: Drive size + friendly_id: drive_size + values: + - drive_size__1_inch + - drive_size__1_1_2_inch + - drive_size__1_2_inch + - drive_size__1_4_inch + - drive_size__2_1_2_inch + - drive_size__3_4_inch + - drive_size__3_8_inch +- id: 2218 + name: Luggage/Bag closure + friendly_id: luggage_bag_closure + values_from: bag_case_closure +- id: 2219 + name: Thickness type + friendly_id: thickness_type + values: + - thickness_type__thin + - thickness_type__medium + - thickness_type__thick +- id: 2220 + name: Tag fastening + friendly_id: tag_fastening + values: + - tag_fastening__buckles + - tag_fastening__loop + - tag_fastening__strap +- id: 2221 + name: Bottle/Container closure + friendly_id: bottle_container_closure + values: + - bottle_container_closure__flip_cap + - bottle_container_closure__pump + - bottle_container_closure__screw_cap +- id: 2222 + name: Bag strap type + friendly_id: bag_strap_type + values: + - bag_strap_type__adjustable + - bag_strap_type__crossbody + - bag_strap_type__shoulder +- id: 2223 + name: Tote handle type + friendly_id: tote_handle_type + values: + - tote_handle_type__short + - tote_handle_type__long + - tote_handle_type__dual +- id: 2224 + name: Spinner type + friendly_id: spinner_type + values: + - spinner_type__2_wheel + - spinner_type__4_wheel + - spinner_type__8_wheel +- id: 2225 + name: Suitcase handle type + friendly_id: suitcase_handle_type + values: + - suitcase_handle_type__telescopic + - suitcase_handle_type__top_carry + - suitcase_handle_type__side_carry +- id: 2226 + name: Carry options + friendly_id: carry_options + values: + - carry_options__handle + - carry_options__shoulder_strap +- id: 2227 + name: Interior features + friendly_id: interior_features + values: + - interior_features__compartments + - interior_features__dividers + - interior_features__mirror +- id: 2228 + name: Brightness levels + friendly_id: brightness_levels + values: + - brightness_levels__low + - brightness_levels__medium + - brightness_levels__high + - brightness_levels__super_bright +- id: 2229 + name: Light attachment type + friendly_id: light_attachment_type + values: + - light_attachment_type__flexible + - light_attachment_type__fixed +- id: 2230 + name: Bookmark design + friendly_id: bookmark_design + values: + - bookmark_design__tassel + - bookmark_design__ribbon + - bookmark_design__magnetic + - bookmark_design__clip +- id: 2231 + name: Bookmark shape + friendly_id: bookmark_shape + values: + - bookmark_shape__animal + - bookmark_shape__rectangular + - bookmark_shape__round + - bookmark_shape__square +- id: 2232 + name: Page layout + friendly_id: page_layout + values: + - page_layout__alphabetical + - page_layout__tabbed + - page_layout__blank +- id: 2233 + name: Binder ring shape + friendly_id: binder_ring_shape + values: + - binder_ring_shape__round + - binder_ring_shape__d_shaped +- id: 2234 + name: Paper size + friendly_id: paper_size + values: + - paper_size__11_x_14 + - paper_size__11_x_17 + - paper_size__12_x_12 + - paper_size__12_x_18 + - paper_size__18_x_24 + - paper_size__24_x_36 + - paper_size__6_x_6 + - paper_size__8_5_x_11 + - paper_size__9_x_12 + - paper_size__a1 + - paper_size__a2 + - paper_size__a3 + - paper_size__a4 + - paper_size__a5 + - paper_size__a6 + - paper_size__a7 + - paper_size__legal + - paper_size__letter + - paper_size__tabloid + - paper_size__dl + - paper_size__#10 + - paper_size__148_mm_x_210_mm + - paper_size__176_mm_x_250_mm + - paper_size__210_mm_x_297_mm + - paper_size__297_mm_x_420_mm + - paper_size__4_x_6 + - paper_size__5_x_7 + - paper_size__7_25_x_10_5 + - paper_size__8_5_x_14 + - paper_size__8_x_10 + - paper_size__b5 + - paper_size__c5 + - paper_size__custom_size + - paper_size__envelope + - paper_size__executive + - paper_size__photo + - paper_size__postcard + - paper_size__other +- id: 2235 + name: Tab style + friendly_id: tab_style + values: + - tab_style__blank + - tab_style__pre_printed + - tab_style__numbered + - tab_style__alphabetical +- id: 2236 + name: Ring type + friendly_id: ring_type + values: + - ring_type__d_shaped + - ring_type__round + - ring_type__slant +- id: 2237 + name: Binding style + friendly_id: binding_style + values: + - binding_style__coil + - binding_style__comb + - binding_style__wire +- id: 2238 + name: Calendar format + friendly_id: calendar_format + values: + - calendar_format__monthly + - calendar_format__weekly + - calendar_format__daily +- id: 2239 + name: Supply shape + friendly_id: supply_shape + values: + - supply_shape__animal + - supply_shape__fruit + - supply_shape__heart + - supply_shape__oval + - supply_shape__rectangular + - supply_shape__round + - supply_shape__star + - supply_shape__triangular + - supply_shape__vehicle + - supply_shape__other +- id: 2240 + name: Paper type + friendly_id: paper_type + values: + - paper_type__lined + - paper_type__blank + - paper_type__grid + - paper_type__specialty_paper + - paper_type__dot + - paper_type__plain_white + - paper_type__flip_chart +- id: 2241 + name: Sheet color + friendly_id: sheet_color + values_from: color +- id: 2242 + name: Band strength + friendly_id: band_strength + values: + - band_strength__standard + - band_strength__heavy_duty +- id: 2243 + name: Staple wire gauge + friendly_id: staple_wire_gauge + values: + - staple_wire_gauge__fine + - staple_wire_gauge__medium + - staple_wire_gauge__heavy +- id: 2244 + name: Point design + friendly_id: point_design + values: + - point_design__blunt + - point_design__sharp +- id: 2245 + name: Tack/Pushpin head design + friendly_id: tack_pushpin_head_design + values: + - tack_pushpin_head_design__decorative + - tack_pushpin_head_design__flat + - tack_pushpin_head_design__round +- id: 2246 + name: Recording quality + friendly_id: recording_quality + values: + - recording_quality__high + - recording_quality__medium + - recording_quality__low +- id: 2247 + name: Line spacing options + friendly_id: line_spacing_options + values: + - line_spacing_options__single + - line_spacing_options__double + - line_spacing_options__adjustable +- id: 2248 + name: Clip type + friendly_id: clip_type + values: + - clip_type__low_profile + - clip_type__high_capacity +- id: 2249 + name: Lens configuration + friendly_id: lens_configuration + values: + - lens_configuration__single + - lens_configuration__multiple +- id: 2250 + name: Ink color + friendly_id: ink_color + values_from: color +- id: 2251 + name: Stamp type + friendly_id: stamp_type + values: + - stamp_type__self_inking + - stamp_type__pre_inked + - stamp_type__traditional +- id: 2252 + name: Text plate material + friendly_id: text_plate_material + values_from: cocktail_decoration_material +- id: 2253 + name: Pen tip design + friendly_id: pen_tip_design + values: + - pen_felt_tip_design__fine + - pen_felt_tip_design__medium + - pen_felt_tip_design__bold +- id: 2254 + name: Lead grade + friendly_id: lead_grade + values: + - lead_grade__hb + - lead_grade__2b + - lead_grade__4b + - lead_grade__6b + - lead_grade__other + - lead_grade__9h + - lead_grade__8h + - lead_grade__7h + - lead_grade__6h + - lead_grade__5h + - lead_grade__4h + - lead_grade__3h + - lead_grade__2h + - lead_grade__h + - lead_grade__f + - lead_grade__b + - lead_grade__3b + - lead_grade__5b + - lead_grade__7b + - lead_grade__8b + - lead_grade__9b +- id: 2255 + name: Hardness + friendly_id: hardness + values: + - hardness__soft + - hardness__medium + - hardness__hard +- id: 2256 + name: Marker tip design + friendly_id: marker_tip_design + values: + - marker_tip_design__chisel + - marker_tip_design__fine + - marker_tip_design__bullet + - marker_tip_design__brush +- id: 2257 + name: Pen type + friendly_id: pen_type + values: + - pen_type__ballpoint + - pen_type__gel + - pen_type__mechanical_pencil + - pen_type__rollerball + - pen_type__fountain +- id: 2258 + name: Pencil type + friendly_id: pencil_type + values: + - pencil_type__mechanical + - pencil_type__wooden +- id: 2259 + name: Pen color + friendly_id: pen_color + values_from: color +- id: 2260 + name: Felt tip design + friendly_id: felt_tip_design + values_from: pen_tip_design +- id: 2261 + name: Feed system + friendly_id: feed_system + values: + - feed_system__automatic + - feed_system__manual +- id: 2262 + name: Fold type + friendly_id: fold_type + values: + - fold_type__accordion_fold + - fold_type__bi_fold + - fold_type__gate_fold + - fold_type__half_fold + - fold_type__tri_fold + - fold_type__z_fold + - fold_type__letter_fold + - fold_type__double_parallel_fold +- id: 2263 + name: Paperweight design + friendly_id: paperweight_design + values: + - paperweight_design__plain + - paperweight_design__decorative + - paperweight_design__engraved + - paperweight_design__personalized +- id: 2264 + name: Board mounting type + friendly_id: board_mounting_type + values: + - board_mounting_type__easel_backed + - board_mounting_type__free_standing + - board_mounting_type__portable + - board_mounting_type__wall +- id: 2265 + name: Chalkboard surface + friendly_id: chalkboard_surface + values: + - chalkboard_surface__magnetic + - chalkboard_surface__smooth + - chalkboard_surface__traditional +- id: 2266 + name: Frame design + friendly_id: frame_design + values: + - frame_design__aluminum + - frame_design__metal + - frame_design__plastic + - frame_design__wood + - frame_design__frameless +- id: 2267 + name: Board surface + friendly_id: board_surface + values: + - board_surface__cork + - board_surface__fabric + - board_surface__magnetic + - board_surface__smooth +- id: 2268 + name: Zoom type + friendly_id: zoom_type + values: + - zoom_type__digital + - zoom_type__optical +- id: 2269 + name: Laser color + friendly_id: laser_color + values_from: color +- id: 2270 + name: Laser light source + friendly_id: laser_light_source + values: + - laser_light_source__laser_diode + - laser_light_source__led +- id: 2271 + name: Lectern mounting type + friendly_id: lectern_mounting_type + values: + - lectern_mounting_type__floor + - lectern_mounting_type__free_standing + - lectern_mounting_type__tabletop +- id: 2272 + name: Packing materials included + friendly_id: packing_materials_included + values: + - packing_materials_included__air_pillows + - packing_materials_included__bubble_wrap + - packing_materials_included__corrugated_inserts + - packing_materials_included__edge_protectors + - packing_materials_included__packing_foam + - packing_materials_included__packing_inserts + - packing_materials_included__packing_paper + - packing_materials_included__packing_peanuts + - packing_materials_included__stretch_wrap +- id: 2273 + name: Additional features + friendly_id: additional_features + values: + - additional_features__backstage_pass + - additional_features__meet_greet + - additional_features__post_event_activities + - additional_features__vip_package +- id: 2274 + name: Age restrictions + friendly_id: age_restrictions + values: + - age_restrictions__18_years_or_older + - age_restrictions__21_years_or_older + - age_restrictions__all_ages +- id: 2275 + name: Event type + friendly_id: event_type + values: + - event_type__comedy_show + - event_type__concert + - event_type__exhibition + - event_type__festival + - event_type__musical + - event_type__seminar + - event_type__sport_game + - event_type__theater + - event_type__other +- id: 2276 + name: Ticket type + friendly_id: ticket_type + values: + - ticket_type__general_admission + - ticket_type__reserved_seating + - ticket_type__premium_seating + - ticket_type__standing_room +- id: 2277 + name: Candle kit items included + friendly_id: candle_kit_items_included + values: + - candle_kit_items_included__candle_labels + - candle_kit_items_included__candle_wicks + - candle_kit_items_included__mold + - candle_kit_items_included__stirring_tool + - candle_kit_items_included__thermometer + - candle_kit_items_included__wax_melting_pot + - candle_kit_items_included__wick_holders +- id: 2278 + name: Candle type + friendly_id: candle_type + values: + - candle_type__pillar + - candle_type__container + - candle_type__votive + - candle_type__tea_light + - candle_type__taper + - candle_type__floating +- id: 2279 + name: Wax type + friendly_id: wax_type + values: + - wax_type__soy + - wax_type__beeswax + - wax_type__paraffin + - wax_type__gel +- id: 2280 + name: Drawing/Painting kit items included + friendly_id: drawing_painting_kit_items_included + values: + - drawing_painting_kit_items_included__aquarelle_pencil + - drawing_painting_kit_items_included__art_charcoal + - drawing_painting_kit_items_included__chalk + - drawing_painting_kit_items_included__charcoal_pencil + - drawing_painting_kit_items_included__color_pencil + - drawing_painting_kit_items_included__coloring_pad + - drawing_painting_kit_items_included__drawing_stump + - drawing_painting_kit_items_included__fineliner + - drawing_painting_kit_items_included__graphite_pencil + - drawing_painting_kit_items_included__marker + - drawing_painting_kit_items_included__paint + - drawing_painting_kit_items_included__paint_brush + - drawing_painting_kit_items_included__paint_cup + - drawing_painting_kit_items_included__pastel + - drawing_painting_kit_items_included__pastel_pencil + - drawing_painting_kit_items_included__watercolor_pencil +- id: 2281 + name: Suitable for fabric type + friendly_id: suitable_for_fabric_type + values: + - suitable_for_fabric_type__synthetic + - suitable_for_fabric_type__natural_fabric +- id: 2282 + name: Incense fragrance + friendly_id: incense_fragrance + values: + - incense_fragrance__sandalwood + - incense_fragrance__lavender + - incense_fragrance__patchouli + - incense_fragrance__jasmine + - incense_fragrance__rose + - incense_fragrance__citrus + - incense_fragrance__vanilla + - incense_fragrance__frankincense + - incense_fragrance__myrrh + - incense_fragrance__nag_champa + - incense_fragrance__herbal_blends +- id: 2283 + name: Incense type + friendly_id: incense_type + values: + - incense_type__stick + - incense_type__cone + - incense_type__resin + - incense_type__powder +- id: 2284 + name: Ingredients included + friendly_id: ingredients_included + values: + - ingredients_included__natural_herbs + - ingredients_included__resins + - ingredients_included__essential_oils + - ingredients_included__charcoal + - ingredients_included__bamboo_sticks + - ingredients_included__molds + - ingredients_included__other +- id: 2285 + name: Jewelry set type + friendly_id: jewelry_set_type + values: + - jewelry_set_type__bead_set + - jewelry_set_type__jewelry_set + - jewelry_set_type__charm + - jewelry_set_type__necklace + - jewelry_set_type__ring + - jewelry_set_type__earring + - jewelry_set_type__tassel +- id: 2286 + name: Kit type + friendly_id: kit_type + values: + - kit_type__crochet + - kit_type__cross_stitch + - kit_type__embroidery + - kit_type__knitting + - kit_type__quilting + - kit_type__sewing +- id: 2287 + name: Album type + friendly_id: album_type + values: + - album_type__ring_binder + - album_type__pocket_page + - album_type__spiral_bound + - album_type__scrapbook +- id: 2288 + name: Embellishments + friendly_id: embellishments + values: + - embellishments__stickers + - embellishments__die_cuts + - embellishments__chipboard_elements + - embellishments__washi_tape + - embellishments__ribbons + - embellishments__brads + - embellishments__buttons + - embellishments__sequins + - embellishments__gems +- id: 2289 + name: Scrapbook paper type + friendly_id: scrapbook_paper_type + values: + - scrapbook_paper_type__patterned + - scrapbook_paper_type__cardstock + - scrapbook_paper_type__specialty +- id: 2290 + name: Paper finish + friendly_id: paper_finish + values: + - paper_finish__smooth + - paper_finish__textured + - paper_finish__gloss + - paper_finish__matte + - paper_finish__parchment_like + - paper_finish__recycled + - paper_finish__satin + - paper_finish__uncoated +- id: 2291 + name: Paper format + friendly_id: paper_format + values: + - paper_format__block + - paper_format__loose_sheets + - paper_format__pad + - paper_format__sketchbook +- id: 2292 + name: Paper texture + friendly_id: paper_texture + values: + - paper_texture__cold_press + - paper_texture__hot_press + - paper_texture__medium_grain + - paper_texture__rough + - paper_texture__smooth +- id: 2293 + name: Creative art project type + friendly_id: creative_art_project_type + values: + - creative_art_project_type__calligraphy + - creative_art_project_type__crafting + - creative_art_project_type__drawing + - creative_art_project_type__printing + - creative_art_project_type__scrapbooking + - creative_art_project_type__tracing + - creative_art_project_type__other +- id: 2294 + name: Suitable for art technique + friendly_id: suitable_for_art_technique + values: + - suitable_for_art_technique__acrylic_painting + - suitable_for_art_technique__charcoal_drawing + - suitable_for_art_technique__graphite_pencil_drawing + - suitable_for_art_technique__mixed_media_artwork + - suitable_for_art_technique__pastel_drawing + - suitable_for_art_technique__watercolor_paintin +- id: 2295 + name: Button/Snap closure type + friendly_id: button_snap_closure_type + values: + - button_snap_closure_type__decorative + - button_snap_closure_type__invisible + - button_snap_closure_type__magnetic + - button_snap_closure_type__press_stud + - button_snap_closure_type__snap +- id: 2296 + name: Zipper pull style + friendly_id: zipper_pull_style + values: + - zipper_pull_style__plain + - zipper_pull_style__textured + - zipper_pull_style__patterned + - zipper_pull_style__engraved + - zipper_pull_style__embossed + - zipper_pull_style__printed +- id: 2297 + name: Paint form + friendly_id: paint_form + values: + - paint_dye_form__gel + - paint_dye_form__hard + - paint_dye_form__liquid + - paint_dye_form__marker + - paint_dye_form__paste + - paint_dye_form__powder + - paint_dye_form__spray +- id: 2298 + name: Paint type + friendly_id: paint_type + values: + - paint_type__acrylic + - paint_type__acrylic_primer + - paint_type__enamel + - paint_type__fresco + - paint_type__glass + - paint_type__glitter_poster + - paint_type__gouache + - paint_type__hot_wax + - paint_type__ink + - paint_type__oil + - paint_type__pastel + - paint_type__poster + - paint_type__silk + - paint_type__spray + - paint_type__tempera + - paint_type__textile + - paint_type__texturizing_paste + - paint_type__vinyl + - paint_type__water_miscible_oil + - paint_type__water_based + - paint_type__watercolor + - paint_type__weathering_powder +- id: 2299 + name: Art fixative application method + friendly_id: art_fixative_application_method + values: + - art_fixative_application_method__aerosol + - art_fixative_application_method__brush_on +- id: 2300 + name: Suitable for crafting material + friendly_id: suitable_for_crafting_material + values: + - suitable_for_crafting_material__acrylic + - suitable_for_crafting_material__cardboard + - suitable_for_crafting_material__ceramic + - suitable_for_crafting_material__fabric + - suitable_for_crafting_material__foam + - suitable_for_crafting_material__glass + - suitable_for_crafting_material__leather + - suitable_for_crafting_material__metal + - suitable_for_crafting_material__paper + - suitable_for_crafting_material__plastic + - suitable_for_crafting_material__rubber + - suitable_for_crafting_material__wax + - suitable_for_crafting_material__wood +- id: 2301 + name: Ink form + friendly_id: ink_form + values: + - ink_form__bottle + - ink_form__jar + - ink_form__marker + - ink_form__pen + - ink_form__ink_stick +- id: 2302 + name: Glaze finish + friendly_id: glaze_finish + values: + - glaze_finish__clear + - glaze_finish__crackle + - glaze_finish__gloss + - glaze_finish__matte + - glaze_finish__opaque + - glaze_finish__satin + - glaze_finish__textured +- id: 2303 + name: Visual effect + friendly_id: visual_effect + values: + - visual_effect__crystalline + - visual_effect__speckled + - visual_effect__texture + - visual_effect__metallic +- id: 2304 + name: Dye form + friendly_id: dye_form + values_from: paint_form +- id: 2305 + name: Ink type + friendly_id: ink_type + values: + - ink_type__pigment + - ink_type__dye + - ink_type__archival + - ink_type__solvent_based + - ink_type__embossing + - ink_type__stamping +- id: 2306 + name: Paint medium type + friendly_id: paint_medium_type + values: + - paint_medium_type__acrylic + - paint_medium_type__oil + - paint_medium_type__watercolor + - paint_medium_type__gouache + - paint_medium_type__encaustic + - paint_medium_type__pouring + - paint_medium_type__texture + - paint_medium_type__glazing + - paint_medium_type__varnish + - paint_medium_type__retarder +- id: 2307 + name: Foam form + friendly_id: foam_form + values: + - foam_form__ball + - foam_form__blocks + - foam_form__cones + - foam_form__floral_foam + - foam_form__rolls + - foam_form__shapes + - foam_form__sheets + - foam_form__wreath_forms +- id: 2308 + name: Papier mache shape + friendly_id: papier_mache_shape + values: + - papier_mache_shape__animal + - papier_mache_shape__box + - papier_mache_shape__figurine + - papier_mache_shape__letter + - papier_mache_shape__mask + - papier_mache_shape__number + - papier_mache_shape__ornament + - papier_mache_shape__shape +- id: 2309 + name: Wreath design + friendly_id: wreath_design + values: + - wreath_design__floral + - wreath_design__grapevine + - wreath_design__hoop + - wreath_design__metal + - wreath_design__styrofoam + - wreath_design__wire + - wreath_design__wood +- id: 2310 + name: Fiber art project type + friendly_id: fiber_art_project_type + values: + - fiber_art_project_type__amigurumi_making + - fiber_art_project_type__crocheting + - fiber_art_project_type__embroidery + - fiber_art_project_type__knitting + - fiber_art_project_type__macrame + - fiber_art_project_type__rug_making + - fiber_art_project_type__tapestry + - fiber_art_project_type__weaving + - fiber_art_project_type__other +- id: 2311 + name: Knitting project type + friendly_id: knitting_project_type + values: + - knitting_padding_project_type__cushion_making + - knitting_padding_project_type__pillow_making + - knitting_padding_project_type__quilting + - knitting_padding_project_type__sewing_project + - knitting_padding_project_type__stuffed_toy_making + - knitting_padding_project_type__upholstery_crafting + - knitting_padding_project_type__other + - knitting_padding_project_type__bag_making + - knitting_padding_project_type__bookbinding + - knitting_padding_project_type__clothing_embellishments + - knitting_padding_project_type__diy_craft_project + - knitting_padding_project_type__home_decor + - knitting_padding_project_type__jewelry_making + - knitting_padding_project_type__leathercraft + - knitting_padding_project_type__sensory_item_crafting + - knitting_padding_project_type__weighted_blanket_crafting +- id: 2312 + name: Yarn weight category + friendly_id: yarn_weight_category + values: + - yarn_weight_category__fingering + - yarn_weight_category__sock + - yarn_weight_category__babies + - yarn_weight_category__sports + - yarn_weight_category__dk + - yarn_weight_category__worsted + - yarn_weight_category__aran + - yarn_weight_category__afghan + - yarn_weight_category__chunky + - yarn_weight_category__super_bulky + - yarn_weight_category__craft + - yarn_weight_category__rug + - yarn_weight_category__jumbo + - yarn_weight_category__roving + - yarn_weight_category__macram + - yarn_weight_category__felting +- id: 2313 + name: Jewelry project type + friendly_id: jewelry_project_type + values: + - jewelry_project_type__beading_project + - jewelry_project_type__bracelet_making + - jewelry_project_type__earring_making + - jewelry_project_type__jewelry_making + - jewelry_project_type__necklace_making + - jewelry_project_type__pendant_making + - jewelry_project_type__wire_sculpting + - jewelry_project_type__wire_wrapping + - jewelry_project_type__wirework + - jewelry_project_type__other +- id: 2314 + name: Applique/Patch shape + friendly_id: applique_patch_shape + values: + - applique_patch_shape__abstract + - applique_patch_shape__animal + - applique_patch_shape__figure + - applique_patch_shape__floral + - applique_patch_shape__geometric + - applique_patch_shape__letter + - applique_patch_shape__number + - applique_patch_shape__sport_accessory + - applique_patch_shape__symbol +- id: 2315 + name: Textile craft project type + friendly_id: textile_craft_project_type + values: + - textile_craft_project_type__crocheting + - textile_craft_project_type__cross_stitching + - textile_craft_project_type__embellishments + - textile_craft_project_type__hand_embroidery + - textile_craft_project_type__knitting + - textile_craft_project_type__quilting + - textile_craft_project_type__sewing_project + - textile_craft_project_type__upholstery_crafting + - textile_craft_project_type__weaving + - textile_craft_project_type__other +- id: 2316 + name: Patch shape + friendly_id: patch_shape + values_from: applique_patch_shape +- id: 2317 + name: Applique shape + friendly_id: applique_shape + values_from: applique_patch_shape +- id: 2318 + name: Bead shape + friendly_id: bead_shape + values: + - bead_shape__hair_pipe + - bead_shape__heart + - bead_shape__oval + - bead_shape__round + - bead_shape__seed + - bead_shape__square + - bead_shape__star + - bead_shape__tube +- id: 2319 + name: Adhesive type + friendly_id: adhesive_type + values: + - adhesive_type__permanent + - adhesive_type__removable +- id: 2320 + name: Celebration type + friendly_id: celebration_type + values: + - celebration_type__baby_gender_reveal + - celebration_type__baby_shower + - celebration_type__birthday + - celebration_type__christmas + - celebration_type__easter + - celebration_type__graduation + - celebration_type__halloween + - celebration_type__retirement + - celebration_type__summer + - celebration_type__travel + - celebration_type__valentines_day + - celebration_type__wedding + - celebration_type__weddings + - celebration_type__concert + - celebration_type__conference + - celebration_type__theater_performance +- id: 2321 + name: Craft project type + friendly_id: craft_project_type + values: + - craft_project_type__costume_making + - craft_project_type__floral_arrangements + - craft_project_type__hair_accessory_making + - craft_project_type__home_decor + - craft_project_type__jewelry_making + - craft_project_type__mask_making + - craft_project_type__millinery + - craft_project_type__scrapbooking + - craft_project_type__other + - craft_project_type__cardmaking + - craft_project_type__clothing_embellishments + - craft_project_type__gift_wrapping + - craft_project_type__sewing_project + - craft_project_type__diy_craft_project + - craft_project_type__nail_art + - craft_project_type__party_decorations + - craft_project_type__paper_crafting +- id: 2322 + name: Stone shape + friendly_id: stone_shape + values: + - stone_shape__heart + - stone_shape__hexagonal + - stone_shape__marquise + - stone_shape__oval + - stone_shape__pear + - stone_shape__rectangular + - stone_shape__round + - stone_shape__square + - stone_shape__teardrop + - stone_shape__triangular +- id: 2323 + name: Sequin/Glitter shape + friendly_id: sequin_glitter_shape + values: + - sequin_glitter_shape__butterfly + - sequin_glitter_shape__flower + - sequin_glitter_shape__heart + - sequin_glitter_shape__round + - sequin_glitter_shape__square + - sequin_glitter_shape__star +- id: 2324 + name: Glitter shape + friendly_id: glitter_shape + values_from: sequin_glitter_shape +- id: 2325 + name: Sequin shape + friendly_id: sequin_shape + values_from: sequin_glitter_shape +- id: 2326 + name: Labelling project type + friendly_id: labelling_project_type + values: + - labelling_project_type__accessory_making + - labelling_project_type__bag_making + - labelling_project_type__clothing_making + - labelling_project_type__hand_crafting + - labelling_project_type__home_textile_crafting + - labelling_project_type__personalized_gift_making + - labelling_project_type__quilting + - labelling_project_type__other +- id: 2327 + name: Embossing project type + friendly_id: embossing_project_type + values: + - embossing_project_type__cardmaking + - embossing_project_type__diy_craft_project + - embossing_project_type__heat_embossing + - embossing_project_type__mixed_media_project + - embossing_project_type__paper_crafting + - embossing_project_type__rubber_stamping + - embossing_project_type__scrapbooking + - embossing_project_type__other +- id: 2328 + name: Filling/Padding project type + friendly_id: filling_padding_project_type + values_from: knitting_project_type +- id: 2329 + name: Craft/Sculpting project type + friendly_id: craft_sculpting_project_type + values: + - craft_sculpting_project_type__art_project + - craft_sculpting_project_type__casting + - craft_sculpting_project_type__mask_making + - craft_sculpting_project_type__modeling + - craft_sculpting_project_type__mold_making + - craft_sculpting_project_type__object_decoration + - craft_sculpting_project_type__piata_making + - craft_sculpting_project_type__sculpting + - craft_sculpting_project_type__other +- id: 2330 + name: Leather/Vinyl texture + friendly_id: leather_vinyl_texture + values: + - leather_vinyl_texture__distressed + - leather_vinyl_texture__embossed + - leather_vinyl_texture__grainy + - leather_vinyl_texture__metallic + - leather_vinyl_texture__smooth +- id: 2331 + name: Clay texture + friendly_id: clay_texture + values: + - clay_slip_texture__smooth + - clay_slip_texture__medium + - clay_slip_texture__coarse +- id: 2332 + name: Pottery/Sculpting project type + friendly_id: pottery_sculpting_project_type + values_from: craft_sculpting_project_type +- id: 2333 + name: Slip texture + friendly_id: slip_texture + values_from: clay_texture +- id: 2334 + name: Canvas finish + friendly_id: canvas_finish + values: + - canvas_finish__primed + - canvas_finish__unprimed +- id: 2335 + name: Canvas texture + friendly_id: canvas_texture + values: + - canvas_texture__smooth + - canvas_texture__medium_grain + - canvas_texture__heavy_grain +- id: 2336 + name: Care instructions + friendly_id: care_instructions + values: + - care_instructions__machine_washable + - care_instructions__dry_clean_only + - care_instructions__hand_wash + - care_instructions__ironing_instructions +- id: 2337 + name: Fabric design + friendly_id: fabric_design + values: + - fabric_design__woven + - fabric_design__non_woven +- id: 2338 + name: Compatible printer + friendly_id: compatible_printer + values: + - compatible_printer__inkjet + - compatible_printer__laser +- id: 2339 + name: Sewing foot type + friendly_id: sewing_foot_type + values: + - sewing_foot_type__adjustable_bias_binder + - sewing_foot_type__beading + - sewing_foot_type__bias_binder + - sewing_foot_type__binder + - sewing_foot_type__blind_hem + - sewing_foot_type__braiding + - sewing_foot_type__buttonhole + - sewing_foot_type__round_attachment + - sewing_foot_type__clear + - sewing_foot_type__cording + - sewing_foot_type__couching + - sewing_foot_type__darning + - sewing_foot_type__edge_stitching + - sewing_foot_type__free_motion + - sewing_foot_type__fringe + - sewing_foot_type__gathering + - sewing_foot_type__hemmer + - sewing_foot_type__invisible_zipper + - sewing_foot_type__non_stick + - sewing_foot_type__open_toe + - sewing_foot_type__overcasting + - sewing_foot_type__pearl + - sewing_foot_type__pintuck + - sewing_foot_type__piping + - sewing_foot_type__quilting + - sewing_foot_type__rolled_hem + - sewing_foot_type__roller + - sewing_foot_type__ruffler + - sewing_foot_type__satin_stitch + - sewing_foot_type__sequin + - sewing_foot_type__shirring + - sewing_foot_type__smocking + - sewing_foot_type__taping + - sewing_foot_type__teflon + - sewing_foot_type__topstitch + - sewing_foot_type__tucks + - sewing_foot_type__walking + - sewing_foot_type__welt + - sewing_foot_type__zigzag + - sewing_foot_type__zipper + - sewing_foot_type__other +- id: 2340 + name: Sewing machine part category + friendly_id: sewing_machine_part_category + values: + - sewing_machine_part_category__bobbin + - sewing_machine_part_category__bobbin_case + - sewing_machine_part_category__feed_dog + - sewing_machine_part_category__foot_control_pedal + - sewing_machine_part_category__handwheel + - sewing_machine_part_category__light_bulb + - sewing_machine_part_category__motor_belt + - sewing_machine_part_category__needle_plate + - sewing_machine_part_category__needle_set + - sewing_machine_part_category__needle_threader + - sewing_machine_part_category__presser_foot + - sewing_machine_part_category__presser_foot_holder + - sewing_machine_part_category__reverse_lever + - sewing_machine_part_category__stitch_selector_dial + - sewing_machine_part_category__tension_assembly + - sewing_machine_part_category__thread_cutter + - sewing_machine_part_category__thread_guides + - sewing_machine_part_category__thread_spool_pin + - sewing_machine_part_category__thread_stand + - sewing_machine_part_category__thread_take_up_lever + - sewing_machine_part_category__thread_tension_spring + - sewing_machine_part_category__other +- id: 2341 + name: Wire thickness + friendly_id: wire_thickness + values: + - wire_thickness__fine + - wire_thickness__medium + - wire_thickness__thick +- id: 2342 + name: Palette knife shape + friendly_id: palette_knife_shape + values: + - palette_knife_shape__angular + - palette_knife_shape__diamond + - palette_knife_shape__offset + - palette_knife_shape__pointed + - palette_knife_shape__round + - palette_knife_shape__spatula + - palette_knife_shape__straight + - palette_knife_shape__trowel +- id: 2343 + name: Palette design + friendly_id: palette_design + values: + - palette_design__foldable + - palette_design__thumb_hole +- id: 2344 + name: Scissor blade type + friendly_id: scissor_blade_type + values: + - scissor_blade_type__straight + - scissor_blade_type__micro_tip + - scissor_blade_type__curved + - scissor_blade_type__serrated + - scissor_blade_type__scallop + - scissor_blade_type__pinking +- id: 2345 + name: Craft knife design + friendly_id: craft_knife_design + values: + - craft_knife_design__precision + - craft_knife_design__snap_off + - craft_knife_design__straight + - craft_knife_design__swivel +- id: 2346 + name: Brush size + friendly_id: brush_size + values: + - brush_size__0 + - brush_size__1 + - brush_size__2 + - brush_size__4 + - brush_size__6 + - brush_size__8 + - brush_size__10 + - brush_size__12 + - brush_size__14 + - brush_size__16 + - brush_size__18 + - brush_size__20 + - brush_size__24 + - brush_size__other +- id: 2347 + name: Ink application technique + friendly_id: ink_application_technique + values: + - ink_application_technique__ink_application + - ink_application_technique__screen_printing + - ink_application_technique__stenciling +- id: 2348 + name: Decorative stamp design + friendly_id: decorative_stamp_design + values: + - decorative_stamp_design__animal + - decorative_stamp_design__butterflies + - decorative_stamp_design__damask + - decorative_stamp_design__fairytale + - decorative_stamp_design__feathers + - decorative_stamp_design__floral + - decorative_stamp_design__fruits + - decorative_stamp_design__geometric + - decorative_stamp_design__hearts + - decorative_stamp_design__holidays + - decorative_stamp_design__landscape + - decorative_stamp_design__letters + - decorative_stamp_design__mandala + - decorative_stamp_design__musical + - decorative_stamp_design__nautical + - decorative_stamp_design__pattern + - decorative_stamp_design__quote + - decorative_stamp_design__retro_vintage + - decorative_stamp_design__stars + - decorative_stamp_design__travel + - decorative_stamp_design__other +- id: 2349 + name: Squeegee blade design + friendly_id: squeegee_blade_design + values: + - squeegee_blade_design__round + - squeegee_blade_design__straight +- id: 2350 + name: Stencil/Cut shape + friendly_id: stencil_cut_shape + values: + - mold_cut_shape__animal + - mold_cut_shape__bird + - mold_cut_shape__butterfly + - mold_cut_shape__cloud + - mold_cut_shape__fish + - mold_cut_shape__floral + - mold_cut_shape__fruit + - mold_cut_shape__geometric + - mold_cut_shape__heart + - mold_cut_shape__house + - mold_cut_shape__leaf + - mold_cut_shape__letter + - mold_cut_shape__moon + - mold_cut_shape__number + - mold_cut_shape__round + - mold_cut_shape__square + - mold_cut_shape__star + - mold_cut_shape__sun + - mold_cut_shape__tree + - mold_cut_shape__triangular + - mold_cut_shape__vegetable + - mold_cut_shape__vehicle +- id: 2351 + name: Temperature + friendly_id: temperature + values: + - temperature__high + - temperature__low + - temperature__dual +- id: 2352 + name: Hook grip design + friendly_id: hook_grip_design + values: + - hook_grip_design__comfort_grip + - hook_grip_design__ergonomic + - hook_grip_design__non_slip +- id: 2353 + name: Hook size + friendly_id: hook_size + values: + - hook_size__b + - hook_size__g + - hook_size__i + - hook_size__j + - hook_size__k +- id: 2354 + name: Needle eye type + friendly_id: needle_eye_type + values: + - needle_eye_type__large + - needle_eye_type__small + - needle_eye_type__long + - needle_eye_type__split +- id: 2355 + name: Needle size + friendly_id: needle_size + values: + - needle_size__5 + - needle_size__7 + - needle_size__9 + - needle_size__11 + - needle_size__14 + - needle_size__16 + - needle_size__0_10 + - needle_size__80_12 + - needle_size__90_14 + - needle_size__100_16 + - needle_size__110_18 +- id: 2356 + name: Pin size + friendly_id: pin_size + values: + - pin_size__00 + - pin_size__0 + - pin_size__1 + - pin_size__2 + - pin_size__3 + - pin_size__4 +- id: 2357 + name: Pattern distribution format + friendly_id: pattern_distribution_format + values: + - pattern_distribution_format__pdf + - pattern_distribution_format__printed + - pattern_distribution_format__online_tutorials + - pattern_distribution_format__paper +- id: 2358 + name: Skill level + friendly_id: skill_level + values: + - skill_level__beginner + - skill_level__intermediate + - skill_level__advanced + - skill_level__expert + - skill_level__all_levels +- id: 2359 + name: Mold shape + friendly_id: mold_shape + values_from: stencil_cut_shape +- id: 2360 + name: Condition + friendly_id: condition + values: + - condition__gem_mint_gm + - condition__pristine_p + - condition__mint_m + - condition__near_mint_mint_nm_mt + - condition__near_mint_nm + - condition__excellent_mint_ex_mt + - condition__excellent_ex + - condition__very_good_excellent_vg_ex + - condition__very_good_vg + - condition__good_g + - condition__fair_f + - condition__poor_p + - condition__uncirculated + - condition__circulated + - condition__graded +- id: 2361 + name: Autograph type + friendly_id: autograph_type + values: + - autograph_type__art + - autograph_type__automotive + - autograph_type__baseball + - autograph_type__basketball + - autograph_type__boxing + - autograph_type__celebrities + - autograph_type__football + - autograph_type__history + - autograph_type__hockey + - autograph_type__literary + - autograph_type__music + - autograph_type__political + - autograph_type__science + - autograph_type__soccer + - autograph_type__sports + - autograph_type__tennis +- id: 2362 + name: Medium + friendly_id: medium + values: + - medium__artwork + - medium__book + - medium__cd + - medium__memorabilia + - medium__photo + - medium__poster + - medium__sports_equipment + - medium__trading_card + - medium__vinyl_record +- id: 2363 + name: Signature placement + friendly_id: signature_placement + values: + - signature_placement__back + - signature_placement__cover + - signature_placement__exterior + - signature_placement__front + - signature_placement__interior + - signature_placement__multiple + - signature_placement__specific_page + - signature_placement__other +- id: 2364 + name: Country + friendly_id: country + values: + - country__afghanistan + - country__albania + - country__algeria + - country__andorra + - country__angola + - country__antigua_and_barbuda + - country__argentina + - country__armenia + - country__australia + - country__austria + - country__azerbaijan + - country__bahamas + - country__bahrain + - country__bangladesh + - country__barbados + - country__belarus + - country__belgium + - country__belize + - country__benin + - country__bhutan + - country__bolivia + - country__bosnia_and_herzegovina + - country__botswana + - country__brazil + - country__brunei + - country__bulgaria + - country__burkina_faso + - country__burundi + - country__cambodia + - country__cameroon + - country__canada + - country__cape_verde + - country__central_africa + - country__chad + - country__chile + - country__china + - country__colombia + - country__comoros + - country__congo + - country__congo_dem_republic + - country__costa_rica + - country__croatia + - country__cyprus + - country__czechia + - country__denmark + - country__djibouti + - country__dominica + - country__dominican_republic + - country__ecuador + - country__egypt + - country__el_salvador + - country__equatorial_guinea + - country__eritrea + - country__estonia + - country__eswatini + - country__ethiopia + - country__fiji + - country__finland + - country__france + - country__gabon + - country__gambia + - country__georgia + - country__germany + - country__ghana + - country__greece + - country__grenada + - country__guatemala + - country__guinea + - country__guinea_bissau + - country__guyana + - country__haiti + - country__honduras + - country__hungary + - country__iceland + - country__india + - country__indonesia + - country__iraq + - country__ireland + - country__israel + - country__italy + - country__ivory_coast + - country__jamaica + - country__japan + - country__jordan + - country__kazakhstan + - country__kenya + - country__kiribati + - country__kuwait + - country__kyrgyzstan + - country__laos + - country__latvia + - country__lebanon + - country__lesotho + - country__liberia + - country__libya + - country__liechtenstein + - country__lithuania + - country__luxembourg + - country__madagascar + - country__malawi + - country__malaysia + - country__maldives + - country__mali + - country__malta + - country__marshall_islands + - country__mauritania + - country__mauritius + - country__mexico + - country__micronesia + - country__moldova + - country__monaco + - country__mongolia + - country__montenegro + - country__morocco + - country__mozambique + - country__myanmar + - country__namibia + - country__nauru + - country__nepal + - country__netherlands + - country__new_zealand + - country__nicaragua + - country__niger + - country__nigeria + - country__north_macedonia + - country__norway + - country__oman + - country__pakistan + - country__palau + - country__panama + - country__papua_new_guinea + - country__paraguay + - country__peru + - country__philippines + - country__poland + - country__portugal + - country__qatar + - country__romania + - country__rwanda + - country__saint_kitts_and_nevis + - country__saint_lucia + - country__saint_vincent_and_the_grenadines + - country__samoa + - country__san_marino + - country__sao_tome_and_principe + - country__saudi_arabia + - country__senegal + - country__serbia + - country__seychelles + - country__sierra_leone + - country__singapore + - country__slovakia + - country__slovenia + - country__solomon_islands + - country__somalia + - country__south_africa + - country__south_korea + - country__south_sudan + - country__spain + - country__sri_lanka + - country__sudan + - country__suriname + - country__sweden + - country__switzerland + - country__tajikistan + - country__tanzania + - country__thailand + - country__timor_leste + - country__togo + - country__tonga + - country__trinidad_and_tobago + - country__tunisia + - country__turkey + - country__turkmenistan + - country__tuvalu + - country__uganda + - country__ukraine + - country__united_arab_emirates + - country__united_kingdom + - country__united_states + - country__uruguay + - country__uzbekistan + - country__vanuatu + - country__vietnam + - country__yemen + - country__zambia + - country__zimbabwe +- id: 2365 + name: Denomination + friendly_id: denomination + values: + - denomination__1_dollar + - denomination__1000_dollars + - denomination__10_dollars + - denomination__10000_dollars + - denomination__100_dollars + - denomination__20_dollars + - denomination__5_dollars + - denomination__5000_dollars + - denomination__50_dollars + - denomination__500_dollars + - denomination__1_cent_penny + - denomination__10_cents + - denomination__2_dollars + - denomination__25_cents + - denomination__5_cents + - denomination__50_cents + - denomination__aemi +- id: 2366 + name: Card attributes + friendly_id: card_attributes + values: + - card_attributes__autographed + - card_attributes__relic + - card_attributes__rookie + - card_attributes__parallel + - card_attributes__foil + - card_attributes__holographic + - card_attributes__numbered +- id: 2367 + name: Grading + friendly_id: grading + values: + - grading__bccg + - grading__bgs + - grading__bvg + - grading__cgc_trading_cards + - grading__csg + - grading__gai + - grading__gma + - grading__hga + - grading__ksa + - grading__psa + - grading__sgc + - grading__sgc_authentic +- id: 2368 + name: Rarity + friendly_id: rarity + values: + - rarity__common + - rarity__limited_edition + - rarity__promo + - rarity__rare + - rarity__super_rare + - rarity__ultra_rare + - rarity__uncommon +- id: 2369 + name: Trading card packaging + friendly_id: trading_card_packaging + values: + - trading_card_packaging__blister_pack + - trading_card_packaging__booster_pack + - trading_card_packaging__box + - trading_card_packaging__starter_deck + - trading_card_packaging__tin +- id: 2370 + name: Sports theme + friendly_id: sports_theme + values: + - sports_theme__aerobics + - sports_theme__aikido + - sports_theme__air_hockey + - sports_theme__australian_football + - sports_theme__badminton + - sports_theme__ballet + - sports_theme__baseball + - sports_theme__basketball + - sports_theme__boxing + - sports_theme__brazilian_jiu_jitsu + - sports_theme__car_racing + - sports_theme__cheerleading + - sports_theme__climbing + - sports_theme__cricket + - sports_theme__cycling + - sports_theme__dancing + - sports_theme__darts + - sports_theme__field_hockey + - sports_theme__fishing + - sports_theme__floorball + - sports_theme__football + - sports_theme__futsal + - sports_theme__gaelic_football + - sports_theme__golf + - sports_theme__gymnastics + - sports_theme__handball + - sports_theme__hiking + - sports_theme__hockey + - sports_theme__horse_riding + - sports_theme__hunting + - sports_theme__hurling + - sports_theme__ice_hockey + - sports_theme__inline_skating + - sports_theme__judo + - sports_theme__karate + - sports_theme__kickboxing + - sports_theme__krav_maga + - sports_theme__lacrosse + - sports_theme__mixed_martial_arts_mma + - sports_theme__motorcycling + - sports_theme__muay_thai + - sports_theme__netball + - sports_theme__olympics + - sports_theme__padel + - sports_theme__pilates + - sports_theme__racquetball + - sports_theme__rounders + - sports_theme__rugby + - sports_theme__running + - sports_theme__skiing + - sports_theme__snowboarding + - sports_theme__soccer + - sports_theme__softball + - sports_theme__squash + - sports_theme__taekwondo + - sports_theme__team_handball + - sports_theme__tennis + - sports_theme__track_field + - sports_theme__ultimate_frisbee + - sports_theme__universal + - sports_theme__values + - sports_theme__volleyball + - sports_theme__water_polo + - sports_theme__wrestling + - sports_theme__yoga + - sports_theme__other +- id: 2371 + name: Era + friendly_id: era + values: + - era__civil_war + - era__cold_war + - era__korean_war + - era__modern + - era__revolutionary_war + - era__vietnam_war + - era__wild_west + - era__world_war_i + - era__world_war_ii + - era__other +- id: 2372 + name: Printing method + friendly_id: printing_method + values: + - printing_method__engraving + - printing_method__lithography + - printing_method__offset_printing +- id: 2373 + name: Stamp theme + friendly_id: stamp_theme + values: + - stamp_theme__animals + - stamp_theme__architecture + - stamp_theme__art + - stamp_theme__astronomy + - stamp_theme__aviation + - stamp_theme__birds + - stamp_theme__butterflies + - stamp_theme__cars + - stamp_theme__cats + - stamp_theme__chess + - stamp_theme__coins + - stamp_theme__comics + - stamp_theme__dance + - stamp_theme__dinosaurs + - stamp_theme__dogs + - stamp_theme__exploration + - stamp_theme__fairytale + - stamp_theme__famous_people + - stamp_theme__fashion + - stamp_theme__flags + - stamp_theme__floral + - stamp_theme__folklore + - stamp_theme__food_drinks + - stamp_theme__fruits + - stamp_theme__geology + - stamp_theme__history + - stamp_theme__holidays + - stamp_theme__horses + - stamp_theme__indigenous_art + - stamp_theme__insects + - stamp_theme__landmarks + - stamp_theme__literature + - stamp_theme__marine_life + - stamp_theme__movies_tv + - stamp_theme__music + - stamp_theme__mythology + - stamp_theme__national_parks + - stamp_theme__nature + - stamp_theme__olympics + - stamp_theme__religion + - stamp_theme__reptiles + - stamp_theme__science + - stamp_theme__space + - stamp_theme__sports + - stamp_theme__technology + - stamp_theme__theater + - stamp_theme__trains + - stamp_theme__transportation + - stamp_theme__underwater_life + - stamp_theme__weather + - stamp_theme__wildlife + - stamp_theme__world_heritage_sites + - stamp_theme__other +- id: 2374 + name: Authenticity + friendly_id: authenticity + values: + - authenticity__genuine + - authenticity__replica +- id: 2375 + name: Crystal system + friendly_id: crystal_system + values: + - crystal_system__cubic + - crystal_system__tetragonal + - crystal_system__orthorhombic + - crystal_system__hexagonal + - crystal_system__trigonal + - crystal_system__monoclinic + - crystal_system__triclinic +- id: 2376 + name: Fossil type + friendly_id: fossil_type + values: + - fossil_type__amber + - fossil_type__ammonite + - fossil_type__belemnite + - fossil_type__bird + - fossil_type__brachiopod + - fossil_type__coprolite + - fossil_type__coral + - fossil_type__crinoid + - fossil_type__dinosaur_bone + - fossil_type__echinoid + - fossil_type__fish + - fossil_type__gastropod + - fossil_type__insect + - fossil_type__mammal + - fossil_type__petrified_wood + - fossil_type__plant + - fossil_type__reptile + - fossil_type__shark_teeth + - fossil_type__sponge + - fossil_type__trilobite +- id: 2377 + name: Geological era + friendly_id: geological_era + values: + - geological_era__precambrian + - geological_era__paleozoic + - geological_era__mesozoic + - geological_era__cenozoic +- id: 2378 + name: Mineral class + friendly_id: mineral_class + values: + - mineral_class__borates + - mineral_class__carbonates + - mineral_class__cyclosilicates + - mineral_class__halides + - mineral_class__hydroxides + - mineral_class__inosilicates + - mineral_class__native_elements + - mineral_class__nesosilicates + - mineral_class__oxides + - mineral_class__phosphates + - mineral_class__phyllosilicates + - mineral_class__silicates + - mineral_class__sorosilicates + - mineral_class__sulfates + - mineral_class__sulfides + - mineral_class__tectosilicate +- id: 2379 + name: Rock composition + friendly_id: rock_composition + values: + - rock_composition__andesite + - rock_composition__basalt + - rock_composition__breccia + - rock_composition__chalk + - rock_composition__chert + - rock_composition__conglomerate + - rock_composition__diorite + - rock_composition__gabbro + - rock_composition__gneiss + - rock_composition__granite + - rock_composition__limestone + - rock_composition__marble + - rock_composition__obsidian + - rock_composition__pumice + - rock_composition__quartzite + - rock_composition__rhyolite + - rock_composition__sandstone + - rock_composition__schist + - rock_composition__shale + - rock_composition__slate + - rock_composition__other +- id: 2380 + name: Rock formation + friendly_id: rock_formation + values: + - rock_formation__igneous + - rock_formation__sedimentary + - rock_formation__metamorphic +- id: 2381 + name: Scale model accessory type + friendly_id: scale_model_accessory_type + values: + - scale_model_accessory_type__buildings + - scale_model_accessory_type__decals + - scale_model_accessory_type__diorama_accessories + - scale_model_accessory_type__display_stands + - scale_model_accessory_type__figures + - scale_model_accessory_type__landscape_features + - scale_model_accessory_type__lighting + - scale_model_accessory_type__tracks + - scale_model_accessory_type__vehicles + - scale_model_accessory_type__other +- id: 2382 + name: Scale model theme + friendly_id: scale_model_theme + values: + - scale_model_theme__architecture + - scale_model_theme__automotive + - scale_model_theme__aviation + - scale_model_theme__fantasy + - scale_model_theme__history + - scale_model_theme__military + - scale_model_theme__nature + - scale_model_theme__sci_fi +- id: 2383 + name: Kit construction type + friendly_id: kit_construction_type + values: + - kit_construction_type__assembly_kit + - kit_construction_type__preassembled +- id: 2384 + name: Seal stamp design + friendly_id: seal_stamp_design + values: + - seal_stamp_design__animal + - seal_stamp_design__calligraphy + - seal_stamp_design__cultural_symbols + - seal_stamp_design__decorative + - seal_stamp_design__floral + - seal_stamp_design__monogram + - seal_stamp_design__mythological + - seal_stamp_design__personalized + - seal_stamp_design__traditional +- id: 2385 + name: Logo + friendly_id: logo + values: + - logo__college_university_teams + - logo__mlb + - logo__nba + - logo__nfl + - logo__nhl + - logo__soccer_clubs +- id: 2386 + name: Art style + friendly_id: art_style + values: + - art_style__art_nouveau + - art_style__art_deco + - art_style__retro_vintage + - art_style__illustrative + - art_style__typography +- id: 2387 + name: Flavor profile + friendly_id: flavor_profile + values: + - flavor_profile__malty + - flavor_profile__nutty + - flavor_profile__caramel + - flavor_profile__roasty +- id: 2388 + name: Lovibond + friendly_id: lovibond + values: + - lovibond__light + - lovibond__medium + - lovibond__dark +- id: 2389 + name: Potential extract + friendly_id: potential_extract + values: + - potential_extract__low + - potential_extract__medium + - potential_extract__high +- id: 2390 + name: Bottle closure type + friendly_id: bottle_closure_type + values: + - bottle_closure_type__cork + - bottle_closure_type__crown_cap + - bottle_closure_type__swing_top +- id: 2391 + name: Grape variety + friendly_id: grape_variety + values: + - grape_variety__cabernet_sauvignon + - grape_variety__chardonnay + - grape_variety__chenin_blanc + - grape_variety__gewrztraminer + - grape_variety__grenache_garnacha + - grape_variety__malbec + - grape_variety__merlot + - grape_variety__nebbiolo + - grape_variety__pinot_noir + - grape_variety__riesling + - grape_variety__sangiovese + - grape_variety__sauvignon_blanc + - grape_variety__syrah_shiraz + - grape_variety__tempranillo + - grape_variety__zinfandel + - grape_variety__other +- id: 2392 + name: Weight type + friendly_id: weight_type + values: + - weight_type__light + - weight_type__medium + - weight_type__heavy +- id: 2393 + name: Model train accessory type + friendly_id: model_train_accessory_type + values: + - model_train_accessory_type__buildings + - model_train_accessory_type__controls + - model_train_accessory_type__decals + - model_train_accessory_type__figures + - model_train_accessory_type__landscape_features + - model_train_accessory_type__lighting + - model_train_accessory_type__scenery_materials + - model_train_accessory_type__signals + - model_train_accessory_type__tracks + - model_train_accessory_type__vehicles + - model_train_accessory_type__other +- id: 2394 + name: Model train them + friendly_id: model_train_them + values: + - model_train_them__cityscape + - model_train_them__contemporary + - model_train_them__countryside + - model_train_them__historical + - model_train_them__industrial + - model_train_them__modern + - model_train_them__sci_fi +- id: 2395 + name: Model control technology + friendly_id: model_control_technology + values: + - model_control_technology__analog + - model_control_technology__digital + - model_control_technology__wireless +- id: 2396 + name: Compatible brass instrument + friendly_id: compatible_brass_instrument + values: + - compatible_brass_instrument__alto_horn + - compatible_brass_instrument__baritone_horn + - compatible_brass_instrument__bass_trombone + - compatible_brass_instrument__bugle + - compatible_brass_instrument__cornet + - compatible_brass_instrument__euphonium + - compatible_brass_instrument__flugel_horn + - compatible_brass_instrument__french_horn + - compatible_brass_instrument__mellophone + - compatible_brass_instrument__piccolo_trumpet + - compatible_brass_instrument__sousaphone + - compatible_brass_instrument__tenor_horn + - compatible_brass_instrument__trombone + - compatible_brass_instrument__trumpet + - compatible_brass_instrument__tuba + - compatible_brass_instrument__wagner_tuba +- id: 2397 + name: Lubricant form + friendly_id: lubricant_form + values: + - lubricant_form__gel + - lubricant_form__liquid + - lubricant_form__paste + - lubricant_form__oil +- id: 2398 + name: Baton grip design + friendly_id: baton_grip_design + values: + - baton_grip_design__cork_grip + - baton_grip_design__rubber_grip + - baton_grip_design__wooden_handle + - baton_grip_design__plastic_handle +- id: 2399 + name: Tuning modes + friendly_id: tuning_modes + values: + - tuning_modes__chromatic + - tuning_modes__guitar + - tuning_modes__bass + - tuning_modes__violin + - tuning_modes__cello + - tuning_modes__ukulele + - tuning_modes__mandolin + - tuning_modes__banjo + - tuning_modes__brass_instruments + - tuning_modes__woodwind_instruments +- id: 2400 + name: Tuning range + friendly_id: tuning_range + values: + - tuning_range__custom + - tuning_range__drop + - tuning_range__open + - tuning_range__standard +- id: 2401 + name: Beat subdivisions + friendly_id: beat_subdivisions + values: + - beat_subdivisions__quarter_note + - beat_subdivisions__eighth_note + - beat_subdivisions__sixteenth_note + - beat_subdivisions__triplet +- id: 2402 + name: Sound options + friendly_id: sound_options + values: + - sound_options__bell + - sound_options__click + - sound_options__drum + - sound_options__voice_count +- id: 2403 + name: Time signatures + friendly_id: time_signatures + values: + - time_signatures__2_4 + - time_signatures__3_4 + - time_signatures__4_4 + - time_signatures__5_4 + - time_signatures__6_4 + - time_signatures__7_4 + - time_signatures__3_8 + - time_signatures__6_8 + - time_signatures__9_8 + - time_signatures__12_8 +- id: 2404 + name: Height adjustment + friendly_id: height_adjustment + values: + - height_adjustment__fixed_height + - height_adjustment__adjustable_height +- id: 2405 + name: Seat cushioning + friendly_id: seat_cushioning + values: + - seat_cushioning__padded + - seat_cushioning__non_padded +- id: 2406 + name: Seat shape + friendly_id: seat_shape + values: + - seat_shape__contoured + - seat_shape__rectangular + - seat_shape__round + - seat_shape__saddle +- id: 2407 + name: Lyre/Flip folder attachment type + friendly_id: lyre_flip_folder_attachment_type + values: + - lyre_flip_folder_attachment_type__clip_on + - lyre_flip_folder_attachment_type__magnetic + - lyre_flip_folder_attachment_type__lyre_clamp + - lyre_flip_folder_attachment_type__lyre_screw + - lyre_flip_folder_attachment_type__strap +- id: 2408 + name: Page size + friendly_id: page_size + values_from: paper_size +- id: 2409 + name: Compatible instrument + friendly_id: compatible_instrument + values: + - compatible_instrument__accordion + - compatible_instrument__acoustic_guitar + - compatible_instrument__alto_horn + - compatible_instrument__alto_saxophone + - compatible_instrument__banjo + - compatible_instrument__baritone_horn + - compatible_instrument__baritone_saxophone + - compatible_instrument__bass_drum + - compatible_instrument__bass_guitar + - compatible_instrument__bass_trombone + - compatible_instrument__bassoon + - compatible_instrument__bongo + - compatible_instrument__bugle + - compatible_instrument__cello + - compatible_instrument__clarinet + - compatible_instrument__conga_drum + - compatible_instrument__cornet + - compatible_instrument__cowbell + - compatible_instrument__cymbal + - compatible_instrument__digital_wind_instrument + - compatible_instrument__double_bass + - compatible_instrument__drum + - compatible_instrument__electric_guitar + - compatible_instrument__euphonium + - compatible_instrument__floor_tom + - compatible_instrument__flugel_horn + - compatible_instrument__flute + - compatible_instrument__french_horn + - compatible_instrument__gong_drum + - compatible_instrument__guitar + - compatible_instrument__hand_bell + - compatible_instrument__harmonica + - compatible_instrument__harp + - compatible_instrument__keyboard + - compatible_instrument__mandolin + - compatible_instrument__marching_baritone + - compatible_instrument__mellophone + - compatible_instrument__oboe + - compatible_instrument__octoban + - compatible_instrument__organ + - compatible_instrument__piano + - compatible_instrument__piccolo_trumpet + - compatible_instrument__rototom + - compatible_instrument__saxophone + - compatible_instrument__snare_drum + - compatible_instrument__sousaphone + - compatible_instrument__synthesizer + - compatible_instrument__tenor_horn + - compatible_instrument__tenor_saxophone + - compatible_instrument__timbales + - compatible_instrument__tom_tom + - compatible_instrument__trombone + - compatible_instrument__trumpet + - compatible_instrument__tuba + - compatible_instrument__ukulele + - compatible_instrument__viola + - compatible_instrument__violin + - compatible_instrument__wagner_tuba + - compatible_instrument__xylophone + - compatible_instrument__other +- id: 2410 + name: Desk size + friendly_id: desk_size + values_from: accessory_size +- id: 2411 + name: Speaker configuration + friendly_id: speaker_configuration + values: + - speaker_configuration__closed_back + - speaker_configuration__open_back +- id: 2412 + name: Compatible amplifier + friendly_id: compatible_amplifier + values: + - compatible_amplifier__bass + - compatible_amplifier__guitar + - compatible_amplifier__keyboard +- id: 2413 + name: Control functions + friendly_id: control_functions + values: + - control_functions__channel_switching + - control_functions__effects_on_off + - control_functions__tuner_activation + - control_functions__tap_tempo +- id: 2414 + name: Knob function + friendly_id: knob_function + values: + - knob_function__volume + - knob_function__gain + - knob_function__tone + - knob_function__eq + - knob_function__presence + - knob_function__power +- id: 2415 + name: Knob style + friendly_id: knob_style + values: + - knob_style__custom + - knob_style__ribbed + - knob_style__smooth + - knob_style__standard + - knob_style__retro_vintage +- id: 2416 + name: Compatible electric/acoustic instrument + friendly_id: compatible_electric_acoustic_instrument + values: + - compatible_electric_acoustic_instrument__acoustic_guitar + - compatible_electric_acoustic_instrument__digital_wind_instrument + - compatible_electric_acoustic_instrument__electric_accordion + - compatible_electric_acoustic_instrument__electric_banjo + - compatible_electric_acoustic_instrument__electric_bass_guitar + - compatible_electric_acoustic_instrument__electric_cello + - compatible_electric_acoustic_instrument__electric_double_bass + - compatible_electric_acoustic_instrument__electric_drum + - compatible_electric_acoustic_instrument__electric_guitar + - compatible_electric_acoustic_instrument__electric_mandolin + - compatible_electric_acoustic_instrument__electric_organ + - compatible_electric_acoustic_instrument__electric_piano + - compatible_electric_acoustic_instrument__electric_ukulele + - compatible_electric_acoustic_instrument__electric_violin + - compatible_electric_acoustic_instrument__electronic_saxophone + - compatible_electric_acoustic_instrument__electronic_trumpet + - compatible_electric_acoustic_instrument__harmonica_synth + - compatible_electric_acoustic_instrument__keyboard + - compatible_electric_acoustic_instrument__synthesizer + - compatible_electric_acoustic_instrument__other +- id: 2417 + name: Tube component + friendly_id: tube_component + values: + - tube_component__case + - tube_component__footswitch_controller + - tube_component__stand + - tube_component__tone_capsule +- id: 2418 + name: Tube configuration + friendly_id: tube_configuration + values: + - tube_configuration__single_tube + - tube_configuration__matched_pair + - tube_configuration__quartet + - tube_configuration__octet +- id: 2419 + name: Input/Output ports + friendly_id: input_output_ports + values: + - input_output_ports__input_jack + - input_output_ports__output_jack + - input_output_ports__headphone_jack + - input_output_ports__aux + - input_output_ports__audio_output + - input_output_ports__usb +- id: 2420 + name: Sound controls + friendly_id: sound_controls + values: + - sound_controls__gain + - sound_controls__volume + - sound_controls__tone + - sound_controls__equalizer + - sound_controls__reverb + - sound_controls__distortion + - sound_controls__overdrive + - sound_controls__effects_level + - sound_controls__master_volume +- id: 2421 + name: Compatible keyboard configuration + friendly_id: compatible_keyboard_configuration + values: + - compatible_keyboard_configuration__61_key + - compatible_keyboard_configuration__76_key + - compatible_keyboard_configuration__88_key +- id: 2422 + name: Pedal polarity + friendly_id: pedal_polarity + values: + - pedal_polarity__nc + - pedal_polarity__no +- id: 2423 + name: Compatible percussion instrument + friendly_id: compatible_percussion_instrument + values: + - compatible_percussion_instrument__bass_drum + - compatible_percussion_instrument__bongo + - compatible_percussion_instrument__conga_drum + - compatible_percussion_instrument__cowbell + - compatible_percussion_instrument__cymbal + - compatible_percussion_instrument__drum + - compatible_percussion_instrument__drum_set + - compatible_percussion_instrument__floor_tom + - compatible_percussion_instrument__gong_drum + - compatible_percussion_instrument__octoban + - compatible_percussion_instrument__rototom + - compatible_percussion_instrument__snare_drum + - compatible_percussion_instrument__timbales + - compatible_percussion_instrument__tom_tom +- id: 2424 + name: Beater head size + friendly_id: beater_head_size + values_from: accessory_size +- id: 2425 + name: Adjustability + friendly_id: adjustability + values: + - adjustability__adjustable_beater_angle + - adjustability__adjustable_footboard_height + - adjustability__adjustable_spring_tension +- id: 2426 + name: Compatible drum configuration + friendly_id: compatible_drum_configuration + values: + - compatible_drum_configuration__double_bass + - compatible_drum_configuration__hi_hat + - compatible_drum_configuration__single_bass + - compatible_drum_configuration__universal +- id: 2427 + name: Footboard type + friendly_id: footboard_type + values: + - footboard_type__solid + - footboard_type__perforated + - footboard_type__longboard + - footboard_type__shortboard +- id: 2428 + name: Grip texture + friendly_id: grip_texture + values: + - grip_texture__smooth + - grip_texture__lacquered + - grip_texture__dipped + - grip_texture__rubberized + - grip_texture__textured +- id: 2429 + name: Percussion tip shape + friendly_id: percussion_tip_shape + values: + - percussion_tip_shape__acorn + - percussion_tip_shape__barrel + - percussion_tip_shape__round + - percussion_tip_shape__teardrop +- id: 2430 + name: MIDI connectivity + friendly_id: midi_connectivity + values: + - midi_connectivity__midi_in + - midi_connectivity__midi_out + - midi_connectivity__usb_midi +- id: 2431 + name: Sound effects + friendly_id: sound_effects + values: + - sound_effects__reverb + - sound_effects__delay + - sound_effects__eq + - sound_effects__compression + - sound_effects__overdrive +- id: 2432 + name: Percussion stand design + friendly_id: percussion_stand_design + values: + - percussion_stand_design__mount + - percussion_stand_design__rack +- id: 2433 + name: Compatible string instrument + friendly_id: compatible_string_instrument + values: + - compatible_string_instrument__acoustic_bass_guitar + - compatible_string_instrument__acoustic_guitar + - compatible_string_instrument__banjo + - compatible_string_instrument__bass_guitar + - compatible_string_instrument__classical_guitar + - compatible_string_instrument__electric_guitar + - compatible_string_instrument__lap_steel_guitar + - compatible_string_instrument__mandolin + - compatible_string_instrument__semi_acoustic_guitar + - compatible_string_instrument__ukulele + - compatible_string_instrument__universal +- id: 2434 + name: Output level + friendly_id: output_level + values: + - output_level__high + - output_level__medium + - output_level__low +- id: 2435 + name: Pickup mounting type + friendly_id: pickup_mounting_type + values: + - pickup_mounting_type__clip_on + - pickup_mounting_type__screw_on + - pickup_mounting_type__stick_on +- id: 2436 + name: Pickup type + friendly_id: pickup_type + values: + - pickup_type__active + - pickup_type__dogear + - pickup_type__humbucker + - pickup_type__magnetic + - pickup_type__p_90 + - pickup_type__piezo + - pickup_type__single_coil + - pickup_type__soapbar + - pickup_type__soundhole + - pickup_type__undersaddle +- id: 2437 + name: Pickup position + friendly_id: pickup_position + values: + - pickup_position__neck + - pickup_position__bridge + - pickup_position__middle +- id: 2438 + name: Inner color + friendly_id: inner_color + values_from: color +- id: 2439 + name: Inner pattern + friendly_id: inner_pattern + values_from: pattern +- id: 2440 + name: Pick design + friendly_id: pick_design + values: + - pick_design__standard + - pick_design__triangular + - pick_design__teardrop + - pick_design__jazz_iii + - pick_design__thumb_pick +- id: 2441 + name: Music stand design + friendly_id: music_stand_design + values: + - music_stand_design__floor + - music_stand_design__wall +- id: 2442 + name: Strap design + friendly_id: strap_design + values: + - strap_design__embroidered + - strap_design__patterned + - strap_design__plain + - strap_design__printed +- id: 2443 + name: Compatible orchestral string instrument + friendly_id: compatible_orchestral_string_instrument + values: + - compatible_orchestral_string_instrument__cello + - compatible_orchestral_string_instrument__double_bass + - compatible_orchestral_string_instrument__viola + - compatible_orchestral_string_instrument__violin + - compatible_orchestral_string_instrument__universal +- id: 2444 + name: Frog material + friendly_id: frog_material + values_from: instrument_part_material +- id: 2446 + name: Tension + friendly_id: tension + values: + - tension__light + - tension__medium + - tension__heavy + - tension__extra_heavy +- id: 2447 + name: Rosin form + friendly_id: rosin_form + values: + - rosin_form__block + - rosin_form__cake +- id: 2448 + name: Rosin grade + friendly_id: rosin_grade + values: + - rosin_grade__light + - rosin_grade__medium + - rosin_grade__dark +- id: 2449 + name: Ingredient origin + friendly_id: ingredient_origin + values: + - ingredient_origin__natural + - ingredient_origin__synthetic +- id: 2450 + name: Reed strength + friendly_id: reed_strength + values: + - reed_strength__soft + - reed_strength__medium + - reed_strength__hard +- id: 2451 + name: Woodwind care items included + friendly_id: woodwind_care_items_included + values: + - woodwind_care_items_included__cleaning_brush + - woodwind_care_items_included__cleaning_cloth + - woodwind_care_items_included__cleaning_rod + - woodwind_care_items_included__cleaning_swab + - woodwind_care_items_included__cork_grease + - woodwind_care_items_included__flute_plug + - woodwind_care_items_included__pad_paper + - woodwind_care_items_included__polishing_cloth + - woodwind_care_items_included__reed_case + - woodwind_care_items_included__reed_guard + - woodwind_care_items_included__reed_holder + - woodwind_care_items_included__screwdriver + - woodwind_care_items_included__swab +- id: 2452 + name: Compatible clarinet type + friendly_id: compatible_clarinet_type + values: + - compatible_clarinet_type__a_clarinet + - compatible_clarinet_type__b_clarinet + - compatible_clarinet_type__e_clarinet + - compatible_clarinet_type__universal +- id: 2453 + name: Facing + friendly_id: facing + values: + - facing__close + - facing__medium + - facing__open +- id: 2454 + name: Embouchure hole shape + friendly_id: embouchure_hole_shape + values: + - embouchure_hole_shape__oval + - embouchure_hole_shape__round +- id: 2455 + name: Lip plate material + friendly_id: lip_plate_material + values_from: instrument_part_material +- id: 2456 + name: Compatible flute type + friendly_id: compatible_flute_type + values: + - compatible_flute_type__flute + - compatible_flute_type__piccolo + - compatible_flute_type__universal +- id: 2457 + name: Compatible harmonica type + friendly_id: compatible_harmonica_type + values: + - compatible_harmonica_type__diatonic_harmonica + - compatible_harmonica_type__chromatic_harmonica + - compatible_harmonica_type__universal +- id: 2458 + name: Compatible oboe type + friendly_id: compatible_oboe_type + values: + - compatible_oboe_type__english_horn + - compatible_oboe_type__oboe + - compatible_oboe_type__universal +- id: 2459 + name: Cleaning solution + friendly_id: cleaning_solution + values: + - cleaning_solution__recorder_cleaner + - cleaning_solution__cleaning_spray +- id: 2460 + name: Tip opening + friendly_id: tip_opening + values: + - tip_opening__small + - tip_opening__medium + - tip_opening__large +- id: 2461 + name: Accordion tuning + friendly_id: accordion_tuning + values: + - accordion_tuning__concert_pitch + - accordion_tuning__dry + - accordion_tuning__four_voice_double_octave + - accordion_tuning__musette + - accordion_tuning__three_voice_musette + - accordion_tuning__three_voice_octave + - accordion_tuning__tremolo + - accordion_tuning__two_voice_octave + - accordion_tuning__two_voice_unison + - accordion_tuning__wet +- id: 2462 + name: Bass button configuration + friendly_id: bass_button_configuration + values: + - bass_button_configuration__8_bass + - bass_button_configuration__12_bass + - bass_button_configuration__24_bass + - bass_button_configuration__32_bass + - bass_button_configuration__48_bass + - bass_button_configuration__60_bass + - bass_button_configuration__72_bass + - bass_button_configuration__80_bass + - bass_button_configuration__96_bass + - bass_button_configuration__120_bass + - bass_button_configuration__more_than_120 +- id: 2463 + name: Concertina button configuration + friendly_id: concertina_button_configuration + values: + - concertina_button_configuration__104_button_english_concertina + - concertina_button_configuration__20_button_anglo_concertina + - concertina_button_configuration__30_button_anglo_concertina + - concertina_button_configuration__35_button_duet_concertina + - concertina_button_configuration__40_button_anglo_concertina + - concertina_button_configuration__46_button_duet_concertina + - concertina_button_configuration__48_button_english_concertina + - concertina_button_configuration__55_button_duet_concertina + - concertina_button_configuration__56_button_english_concertina + - concertina_button_configuration__64_button_english_concertina + - concertina_button_configuration__65_button_duet_concertina + - concertina_button_configuration__72_button_english_concertina + - concertina_button_configuration__80_button_english_concertina + - concertina_button_configuration__87_button_english_concertina + - concertina_button_configuration__other +- id: 2464 + name: Bell size + friendly_id: bell_size + values_from: accessory_size +- id: 2465 + name: Tuning pitch + friendly_id: tuning_pitch + values: + - tuning_pitch__a + - tuning_pitch__a# + - tuning_pitch__ab + - tuning_pitch__b + - tuning_pitch__bb + - tuning_pitch__c + - tuning_pitch__c# + - tuning_pitch__d + - tuning_pitch__d# + - tuning_pitch__db + - tuning_pitch__e + - tuning_pitch__eb + - tuning_pitch__f + - tuning_pitch__f# + - tuning_pitch__g + - tuning_pitch__g# + - tuning_pitch__gb +- id: 2466 + name: Interface type + friendly_id: interface_type + values: + - interface_type__bluetooth + - interface_type__midi + - interface_type__usb + - interface_type__audio_output +- id: 2467 + name: Key type + friendly_id: key_type + values: + - key_type__weighted + - key_type__semi_weighted + - key_type__synth_action +- id: 2468 + name: Polyphony + friendly_id: polyphony + values: + - polyphony__monophonic + - polyphony__polyphonic + - polyphony__multi_timbral +- id: 2469 + name: Synthesis method + friendly_id: synthesis_method + values: + - synthesis_method__analog + - synthesis_method__digital + - synthesis_method__virtual_analog +- id: 2470 + name: Drum configuration + friendly_id: drum_configuration + values: + - drum_configuration__10_piece + - drum_configuration__4_piece + - drum_configuration__5_piece + - drum_configuration__6_piece + - drum_configuration__7_piece + - drum_configuration__8_piece + - drum_configuration__9_piece + - drum_configuration__shell_pack +- id: 2471 + name: Instrument components + friendly_id: instrument_components + values: + - instrument_components__drum_pads + - instrument_components__cymbal_pads + - instrument_components__drum_module +- id: 2472 + name: Tom-tom design + friendly_id: tom_tom_design + values: + - tom_tom_design__floor + - tom_tom_design__rack +- id: 2473 + name: Keyboard action + friendly_id: keyboard_action + values: + - keyboard_action__hammer_action + - keyboard_action__weighted_keys +- id: 2474 + name: Piano pedals + friendly_id: piano_pedals + values: + - piano_pedals__sustain + - piano_pedals__soft + - piano_pedals__sostenuto +- id: 2475 + name: Piano size + friendly_id: piano_size + values: + - piano_size__baby_grand + - piano_size__concert_grand + - piano_size__console + - piano_size__medium_grand + - piano_size__parlor_grand + - piano_size__semi_concert_grand + - piano_size__spinet + - piano_size__studio + - piano_size__upright +- id: 2477 + name: String instrument size + friendly_id: string_instrument_size + values: + - string_instrument_size__1_2 + - string_instrument_size__1_4 + - string_instrument_size__1_8 + - string_instrument_size__1_10 + - string_instrument_size__1_16 + - string_instrument_size__3_4 + - string_instrument_size__4_4 + - string_instrument_size__7_8 + - string_instrument_size__1_32 + - string_instrument_size__full_size +- id: 2478 + name: Fingerboard material + friendly_id: fingerboard_material + values_from: instrument_part_material +- id: 2479 + name: Guitar size + friendly_id: guitar_size + values: + - guitar_size__1_2 + - guitar_size__1_4 + - guitar_size__3_4 + - guitar_size__concert + - guitar_size__full_size + - guitar_size__jumbo + - guitar_size__parlor + - guitar_size__short_scale +- id: 2480 + name: Neck material + friendly_id: neck_material + values_from: instrument_part_material +- id: 2481 + name: Harp size + friendly_id: harp_size + values: + - harp_size__concert_grand + - harp_size__semi_grand + - harp_size__petite +- id: 2482 + name: Clarinet key system + friendly_id: clarinet_key_system + values: + - clarinet_key_system__albert + - clarinet_key_system__boehm + - clarinet_key_system__oehler +- id: 2483 + name: Mouthpiece + friendly_id: mouthpiece + values: + - mouthpiece__a + - mouthpiece__alto + - mouthpiece__bass + - mouthpiece__bb + - mouthpiece__contra_alto + - mouthpiece__eb +- id: 2484 + name: Flute configuration + friendly_id: flute_configuration + values: + - flute_configuration__b_footjoint + - flute_configuration__closed_hole_plateau + - flute_configuration__inline_g + - flute_configuration__offset_g + - flute_configuration__open_hole_french +- id: 2485 + name: Headjoint cut + friendly_id: headjoint_cut + values: + - headjoint_cut__conical + - headjoint_cut__cylindrical + - headjoint_cut__wave + - headjoint_cut__z_cut +- id: 2486 + name: Tuning + friendly_id: tuning + values: + - tuning__c + - tuning__d + - tuning__e + - tuning__f + - tuning__g + - tuning__a + - tuning__b +- id: 2487 + name: Melodica style + friendly_id: melodica_style + values: + - melodica_style__piano_style + - melodica_style__keyboard_style +- id: 2488 + name: Musical key + friendly_id: musical_key + values: + - musical_key__a_major + - musical_key__a_minor + - musical_key__a# + - musical_key__ab_major + - musical_key__ab_minor + - musical_key__b_major + - musical_key__b_minor + - musical_key__bb_major + - musical_key__bb_minor + - musical_key__c_major + - musical_key__c_minor + - musical_key__c# + - musical_key__d_major + - musical_key__d_minor + - musical_key__d# + - musical_key__db_major + - musical_key__db_minor + - musical_key__e_major + - musical_key__e_minor + - musical_key__eb_major + - musical_key__eb_minor + - musical_key__f_major + - musical_key__f_minor + - musical_key__f# + - musical_key__g_major + - musical_key__g_minor + - musical_key__g# + - musical_key__gb_major + - musical_key__gb_minor +- id: 2489 + name: Oboe key system + friendly_id: oboe_key_system + values: + - oboe_key_system__conservatory + - oboe_key_system__french +- id: 2490 + name: Ocarina style + friendly_id: ocarina_style + values: + - ocarina_style__pendant + - ocarina_style__inline + - ocarina_style__transverse +- id: 2491 + name: Recorder fingering system + friendly_id: recorder_fingering_system + values: + - recorder_fingering_system__baroque + - recorder_fingering_system__german +- id: 2492 + name: Extended saxophone range + friendly_id: extended_saxophone_range + values: + - extended_saxophone_range__high_f#_key + - extended_saxophone_range__low_a_key +- id: 2493 + name: Item style + friendly_id: item_style + values: + - item_style__abstract + - item_style__colorful + - item_style__elegant + - item_style__floral + - item_style__formal + - item_style__geometric + - item_style__minimalist + - item_style__modern + - item_style__novelty + - item_style__retro_vintage + - item_style__rustic + - item_style__other +- id: 2494 + name: Corsage/Boutonnière design + friendly_id: corsage_boutonnire_design + values: + - corsage_boutonnire_design__handheld + - corsage_boutonnire_design__pin_on + - corsage_boutonnire_design__wrist +- id: 2495 + name: Ribbon color + friendly_id: ribbon_color + values_from: color +- id: 2496 + name: Arrangement + friendly_id: arrangement + values: + - arrangement__bouquet + - arrangement__vase + - arrangement__basket + - arrangement__box +- id: 2497 + name: Stem length + friendly_id: stem_length + values: + - stem_length__short + - stem_length__medium + - stem_length__long +- id: 2502 + name: Gift bag handle design + friendly_id: gift_bag_handle_design + values: + - gift_bag_handle_design__rope + - gift_bag_handle_design__ribbon + - gift_bag_handle_design__die_cut +- id: 2503 + name: Card size + friendly_id: card_size + values_from: paper_size +- id: 2504 + name: Personalization design + friendly_id: personalization_design + values: + - personalization_design__printed + - personalization_design__blank + - personalization_design__customizable +- id: 2505 + name: Balloon kit items included + friendly_id: balloon_kit_items_included + values: + - balloon_kit_items_included__clips + - balloon_kit_items_included__pump + - balloon_kit_items_included__ribbon + - balloon_kit_items_included__weights +- id: 2506 + name: Balloon shape + friendly_id: balloon_shape + values: + - balloon_shape__animal_shaped + - balloon_shape__cartoon_character + - balloon_shape__heart + - balloon_shape__round + - balloon_shape__star +- id: 2507 + name: Banner design + friendly_id: banner_design + values: + - banner_design__garland + - banner_design__letters + - banner_design__shapes + - banner_design__tassel +- id: 2508 + name: Birthday candle design + friendly_id: birthday_candle_design + values: + - birthday_candle_design__age_specific + - birthday_candle_design__animal_shaped + - birthday_candle_design__cartoon_character + - birthday_candle_design__sports_accessory +- id: 2509 + name: Cocktail decoration design + friendly_id: cocktail_decoration_design + values: + - cocktail_decoration_design__tropical + - cocktail_decoration_design__polka_dots + - cocktail_decoration_design__striped + - cocktail_decoration_design__novelty_shapes +- id: 2510 + name: Game components + friendly_id: game_components + values: + - game_components__cups + - game_components__deck_of_cards + - game_components__dice + - game_components__game_board + - game_components__jenga_blocks + - game_components__ping_pong_balls + - game_components__other +- id: 2511 + name: Game difficulty + friendly_id: game_difficulty + values: + - game_difficulty__easy + - game_difficulty__medium + - game_difficulty__difficult +- id: 2512 + name: Game name + friendly_id: game_name + values: + - game_name__beer_pong + - game_name__drunk_jenga + - game_name__flip_cup + - game_name__kings_cup + - game_name__never_have_i_ever + - game_name__power_hour + - game_name__quarters + - game_name__ring_of_fire + - game_name__truth_or_drink + - game_name__other +- id: 2513 + name: Straw/Stirrer design + friendly_id: straw_stirrer_design + values: + - straw_stirrer_design__flexible + - straw_stirrer_design__straight + - straw_stirrer_design__umbrella +- id: 2514 + name: Envelope seal design + friendly_id: envelope_seal_design + values: + - envelope_seal_design__monogram + - envelope_seal_design__floral + - envelope_seal_design__foil_stamped + - envelope_seal_design__wax_seal + - envelope_seal_design__personalized +- id: 2515 + name: Program format + friendly_id: program_format + values: + - program_format__booklet + - program_format__folded + - program_format__letter + - program_format__single_sheet +- id: 2516 + name: Noise intensity + friendly_id: noise_intensity + values: + - noise_intensity__low + - noise_intensity__medium + - noise_intensity__high +- id: 2517 + name: Card format + friendly_id: card_format + values: + - card_format__flat_card + - card_format__folded_card + - card_format__pocket_invitation +- id: 2518 + name: Invitation personalization design + friendly_id: invitation_personalization_design + values: + - invitation_personalization_design__customizable + - invitation_personalization_design__blank_spaces + - invitation_personalization_design__rsvp_included +- id: 2519 + name: Piñata design + friendly_id: piata_design + values: + - piata_design__traditional + - piata_design__animal + - piata_design__character + - piata_design__number +- id: 2520 + name: Card holder design + friendly_id: card_holder_design + values: + - card_holder_design__clip_on + - card_holder_design__stand_up + - card_holder_design__photo_holder + - card_holder_design__novelty_shapes +- id: 2521 + name: Card design + friendly_id: card_design + values: + - card_design__tent + - card_design__flat + - card_design__folded +- id: 2522 + name: Fluid type + friendly_id: fluid_type + values: + - fluid_type__water_based + - fluid_type__fog_juice + - fluid_type__dry_ice +- id: 2523 + name: SFX control technology + friendly_id: sfx_control_technology + values: + - sfx_control_technology__dmx + - sfx_control_technology__manual + - sfx_control_technology__remote_control + - sfx_control_technology__sound_activated +- id: 2524 + name: Compatible special effects device + friendly_id: compatible_special_effects_device + values: + - compatible_special_effects_device__led_lights + - compatible_special_effects_device__fog_machine + - compatible_special_effects_device__laser_lights + - compatible_special_effects_device__strobe_lights + - compatible_special_effects_device__lighting_fixtures + - compatible_special_effects_device__gobo_projector +- id: 2525 + name: Award occasion + friendly_id: award_occasion + values: + - award_occasion__academic + - award_occasion__achievement + - award_occasion__employee_recognition + - award_occasion__graduation + - award_occasion__sports_event +- id: 2526 + name: Award design + friendly_id: award_design + values: + - award_design__formal + - award_design__modern + - award_design__elegant + - award_design__fun +- id: 2527 + name: Engraving + friendly_id: engraving + values: + - engraving__custom_text + - engraving__logo_engraving +- id: 2528 + name: Trophy design + friendly_id: trophy_design + values: + - trophy_design__column + - trophy_design__cup + - trophy_design__custom + - trophy_design__diamond + - trophy_design__figurine + - trophy_design__globe + - trophy_design__plaque + - trophy_design__shield + - trophy_design__star +- id: 2529 + name: Academic level + friendly_id: academic_level + values: + - academic_level__undergraduate + - academic_level__graduate + - academic_level__doctoral + - academic_level__postdoctoral + - academic_level__faculty_research +- id: 2530 + name: Publication type + friendly_id: publication_type + values: + - publication_type__journal_article + - publication_type__conference_paper + - publication_type__thesis + - publication_type__dissertation + - publication_type__research_report + - publication_type__book_chapter + - publication_type__technical_report + - publication_type__white_paper + - publication_type__review_article + - publication_type__case_study +- id: 2531 + name: Research focus + friendly_id: research_focus + values: + - research_focus__anthropology + - research_focus__biology + - research_focus__chemistry + - research_focus__computer_science + - research_focus__economics + - research_focus__environmental_science + - research_focus__geography + - research_focus__history + - research_focus__linguistics + - research_focus__literature + - research_focus__philosophy + - research_focus__physics + - research_focus__political_science + - research_focus__psychology + - research_focus__sociology + - research_focus__other +- id: 2532 + name: Research methodology + friendly_id: research_methodology + values: + - research_methodology__experimental + - research_methodology__survey + - research_methodology__qualitative + - research_methodology__quantitative + - research_methodology__case_study + - research_methodology__mixed_methods + - research_methodology__observational + - research_methodology__modeling_and_simulation + - research_methodology__meta_analysis + - research_methodology__literature_review +- id: 2533 + name: Subject area + friendly_id: subject_area + values: + - subject_area__arts + - subject_area__business + - subject_area__education + - subject_area__engineering + - subject_area__health_sciences + - subject_area__humanities + - subject_area__mathematics + - subject_area__science + - subject_area__social_sciences + - subject_area__technology + - subject_area__other +- id: 2534 + name: Time period + friendly_id: time_period + values: + - time_period__contemporary + - time_period__historical + - time_period__prehistoric + - time_period__modern + - time_period__ancient + - time_period__medieval + - time_period__renaissance + - time_period__industrial_revolution + - time_period__20th_century +- id: 2535 + name: Genre + friendly_id: genre + values: + - genre__action_adventure + - genre__animation + - genre__anime + - genre__arts + - genre__biography + - genre__business + - genre__children + - genre__comics_graphic_novels + - genre__crime_mystery + - genre__design + - genre__documentary + - genre__drama + - genre__education + - genre__family + - genre__fantasy + - genre__fashion_beauty + - genre__finance + - genre__food_cooking + - genre__game_show + - genre__gaming + - genre__health_fitness + - genre__historical_fiction + - genre__history + - genre__hobbies_interests + - genre__horror + - genre__humor_comedy + - genre__literature + - genre__marketing + - genre__mental_health + - genre__movies_tv + - genre__music + - genre__news_politics + - genre__parenting + - genre__period_drama + - genre__philosophy + - genre__reality_tv + - genre__relationships + - genre__religion_spirituality + - genre__romance + - genre__sci_fi + - genre__self_help_personal_development + - genre__society_culture + - genre__sports + - genre__supernatural + - genre__suspense + - genre__talk_show + - genre__technology + - genre__thriller_suspense + - genre__travel + - genre__war + - genre__western + - genre__young_adult + - genre__other +- id: 2536 + name: Language version + friendly_id: language_version + values: + - language_version__afr_afrikaans + - language_version__alb_albanian + - language_version__ara_arabic + - language_version__arm_armenian + - language_version__baq_basque + - language_version__bra_brazilian_portuguese + - language_version__bul_bulgarian + - language_version__cat_catalan + - language_version__chi_simpl_chinese_simplified + - language_version__chi_tr_chinese_traditional + - language_version__cro_croatian + - language_version__cze_czech + - language_version__dan_danish + - language_version__deu_german + - language_version__deu_be_german_belgium + - language_version__deu_ch_german_switzerland + - language_version__dut_dutch + - language_version__dut_be_dutch_belgium + - language_version__eng_english + - language_version__eng_in_english_india + - language_version__eng_sg_english_singapore + - language_version__eng_us_english_united_states + - language_version__epo_esperanto + - language_version__esp_spanish + - language_version__esp_mx_spanish_mexico + - language_version__est_estonian + - language_version__fas_farsi + - language_version__fin_finnish + - language_version__fre_french + - language_version__fre_be_french_belgium + - language_version__fre_ch_french_switzerland + - language_version__geo_georgian + - language_version__glg_galician + - language_version__gre_greek + - language_version__gsw_swiss_german + - language_version__heb_hebrew + - language_version__hin_hindi + - language_version__hrv_croatian + - language_version__hun_hungarian + - language_version__ice_icelandic + - language_version__inc_indonesian + - language_version__ind_indonesian + - language_version__ira_iranian + - language_version__ita_italian + - language_version__jpn_japanese + - language_version__kaz_kazakh + - language_version__kir_kirghiz + - language_version__kor_korean + - language_version__kur_kurdish + - language_version__lat_latin + - language_version__lav_latvian + - language_version__lit_lithuanian + - language_version__mal_malay + - language_version__mdr_mandar + - language_version__mon_mongolian + - language_version__multilingual_multilingual_not_specific_to_one_language + - language_version__nep_nepali + - language_version__nor_norwegian + - language_version__per_persian + - language_version__phi_filipino + - language_version__pol_polish + - language_version__por_portuguese + - language_version__por_bra_portuguese_brazil + - language_version__roh_romansh + - language_version__rum_romanian + - language_version__rus_russian + - language_version__scr_croatian + - language_version__slk_slovak + - language_version__slv_slovenian + - language_version__srp_serbian + - language_version__swe_swedish + - language_version__tgl_tagalog + - language_version__tha_thai + - language_version__tib_tibetan + - language_version__tur_turkish + - language_version__ukr_ukrainian + - language_version__vie_vietnamese + - language_version__other +- id: 2537 + name: Target audience + friendly_id: target_audience + values: + - target_audience__adults + - target_audience__kids + - target_audience__suitable_for_all_ages + - target_audience__teens_young_adults +- id: 2538 + name: Book cover type + friendly_id: book_cover_type + values: + - book_cover_type__hardcover + - book_cover_type__paperback + - book_cover_type__soft + - book_cover_type__soft_front_hard_back + - book_cover_type__other +- id: 2539 + name: Media access + friendly_id: media_access + values: + - media_access__digital_subscription + - media_access__online + - media_access__print + - media_access__print_online +- id: 2540 + name: Media theme + friendly_id: media_theme + values: + - media_theme__art_culture + - media_theme__automotive + - media_theme__business_finance + - media_theme__education + - media_theme__entertainment_celebrity + - media_theme__fashion + - media_theme__food_cooking + - media_theme__gaming + - media_theme__gardening + - media_theme__health_wellness + - media_theme__history_heritage + - media_theme__hobby_crafts + - media_theme__home_decor + - media_theme__lgbtq+ + - media_theme__lifestyle + - media_theme__literary_writing + - media_theme__mature + - media_theme__mens_interests + - media_theme__music + - media_theme__news_current_affairs + - media_theme__outdoor_adventure + - media_theme__parenting_family + - media_theme__pets_animals + - media_theme__photography + - media_theme__science_nature + - media_theme__sport_fitness + - media_theme__technology + - media_theme__teen_young_adult + - media_theme__travel + - media_theme__wedding + - media_theme__womens_interests +- id: 2541 + name: Publication frequency + friendly_id: publication_frequency + values: + - publication_frequency__monthly + - publication_frequency__bi_monthly + - publication_frequency__quarterly + - publication_frequency__semi_annual + - publication_frequency__annual + - publication_frequency__weekly + - publication_frequency__bi_weekly + - publication_frequency__daily +- id: 2542 + name: Media section + friendly_id: media_section + values: + - media_section__business_finance + - media_section__entertainment + - media_section__general_news + - media_section__lifestyle + - media_section__politics + - media_section__sport + - media_section__tabloid + - media_section__other +- id: 2543 + name: Download format + friendly_id: download_format + values_from: audio_codecs_formats_supported +- id: 2544 + name: Release schedule + friendly_id: release_schedule + values: + - release_schedule__daily + - release_schedule__weekly + - release_schedule__bi_weekly + - release_schedule__monthly + - release_schedule__irregular + - release_schedule__other +- id: 2545 + name: Product manual area + friendly_id: product_manual_area + values: + - product_manual_area__camera_optics + - product_manual_area__electronics + - product_manual_area__exercise_fitness_equipment + - product_manual_area__household_appliance + - product_manual_area__kitchen_appliance + - product_manual_area__model_toys + - product_manual_area__office_supplies + - product_manual_area__power_tool_equipment + - product_manual_area__vehicle_service + - product_manual_area__carpentry_woodworking_project_plans + - product_manual_area__other +- id: 2546 + name: Media content type + friendly_id: media_content_type + values: + - media_content_type__animated_series + - media_content_type__concert + - media_content_type__documentary + - media_content_type__educational_program + - media_content_type__exercise_fitness_program + - media_content_type__live_performance + - media_content_type__mini_series + - media_content_type__movie + - media_content_type__music_video_compilation + - media_content_type__other + - media_content_type__reality_tv + - media_content_type__special_event_coverage + - media_content_type__sport_event + - media_content_type__stand_up_comedy + - media_content_type__tv_show + - media_content_type__web_series +- id: 2547 + name: MPAA rating + friendly_id: mpaa_rating + values: + - mpaa_rating__g + - mpaa_rating__pg + - mpaa_rating__pg_13 + - mpaa_rating__r + - mpaa_rating__nc_17 + - mpaa_rating__u + - mpaa_rating__nr +- id: 2548 + name: Display recommended use + friendly_id: display_recommended_use + values: + - display_recommended_use__commercial + - display_recommended_use__corporate + - display_recommended_use__education + - display_recommended_use__finance + - display_recommended_use__government + - display_recommended_use__healthcare + - display_recommended_use__retail + - display_recommended_use__transportation + - display_recommended_use__universal +- id: 2549 + name: Totem design + friendly_id: totem_design + values: + - totem_design__double_sided + - totem_design__single_sided +- id: 2550 + name: Animal feed form + friendly_id: animal_feed_form + values: + - animal_feed_form__crumbles + - animal_feed_form__cubes + - animal_feed_form__mash + - animal_feed_form__pellets + - animal_feed_form__solid + - animal_feed_form__paste + - animal_feed_form__powder + - animal_feed_form__liquid + - animal_feed_form__spray + - animal_feed_form__granules + - animal_feed_form__chaff + - animal_feed_form__other +- id: 2551 + name: Livestock food ingredients + friendly_id: livestock_food_ingredients + values: + - livestock_food_ingredients__barley + - livestock_food_ingredients__corn + - livestock_food_ingredients__oats + - livestock_food_ingredients__soybean_meal + - livestock_food_ingredients__wheat +- id: 2552 + name: Chicken feed stage + friendly_id: chicken_feed_stage + values: + - chicken_feed_stage__broiler + - chicken_feed_stage__grower + - chicken_feed_stage__layer + - chicken_feed_stage__scratch + - chicken_feed_stage__starter +- id: 2553 + name: Pig feed stage + friendly_id: pig_feed_stage + values: + - pig_feed_stage__finisher + - pig_feed_stage__grower + - pig_feed_stage__sow + - pig_feed_stage__starter +- id: 2554 + name: Suitable for animal type + friendly_id: suitable_for_animal_type + values: + - suitable_for_animal_type__cow + - suitable_for_animal_type__goat + - suitable_for_animal_type__horse + - suitable_for_animal_type__lama + - suitable_for_animal_type__pig + - suitable_for_animal_type__sheep + - suitable_for_animal_type__universal +- id: 2555 + name: Communication protocols + friendly_id: communication_protocols + values: + - communication_protocols__ethernet + - communication_protocols__modbus + - communication_protocols__profibus + - communication_protocols__profinet + - communication_protocols__serial + - communication_protocols__usb +- id: 2556 + name: Controller design + friendly_id: controller_design + values: + - controller_design__compact + - controller_design__modular + - controller_design__rack_mounted + - controller_design__safety + - controller_design__small +- id: 2557 + name: Phase type + friendly_id: phase_type + values: + - phase_type__single_phase + - phase_type__two_phase + - phase_type__three_phase +- id: 2558 + name: Control method + friendly_id: control_method + values: + - control_method__direct_torque + - control_method__scalar_v_f + - control_method__vector +- id: 2559 + name: Controller drive type + friendly_id: controller_drive_type + values: + - controller_drive_type__ac_powered + - controller_drive_type__dc + - controller_drive_type__servo + - controller_drive_type__stepper +- id: 2560 + name: Mirror handle design + friendly_id: mirror_handle_design + values: + - mirror_handle_design__double_ended + - mirror_handle_design__single_ended +- id: 2561 + name: Dentistry items included + friendly_id: dentistry_items_included + values: + - dentistry_items_included__dental_mirror + - dentistry_items_included__dental_polisher + - dentistry_items_included__interdental_pick + - dentistry_items_included__plaque_removal_tool + - dentistry_items_included__stain_eraser + - dentistry_items_included__whitening_paste +- id: 2562 + name: Prophy cup design + friendly_id: prophy_cup_design + values: + - prophy_cup_design__brush + - prophy_cup_design__ribbed + - prophy_cup_design__webbed +- id: 2563 + name: Dental paste flavor + friendly_id: dental_paste_flavor + values: + - dental_paste_flavor__bubblegum + - dental_paste_flavor__cherry + - dental_paste_flavor__mint + - dental_paste_flavor__unflavored +- id: 2564 + name: Costume theme + friendly_id: costume_theme + values: + - costume_theme__aliens + - costume_theme__angels_demons + - costume_theme__animals + - costume_theme__carnival_mardi_gras + - costume_theme__cartoon_animated_characters + - costume_theme__celebrities + - costume_theme__cultural + - costume_theme__fairytales + - costume_theme__fantasy + - costume_theme__ghosts + - costume_theme__heroes + - costume_theme__historical + - costume_theme__horror + - costume_theme__movie_tv_characters + - costume_theme__mythological + - costume_theme__occupations + - costume_theme__pirates + - costume_theme__princesses + - costume_theme__retro_vintage + - costume_theme__robots + - costume_theme__sci_fi + - costume_theme__sports + - costume_theme__superheroes + - costume_theme__vampires + - costume_theme__villains + - costume_theme__witches_wizards + - costume_theme__zombies + - costume_theme__other + - costume_theme__contemporary +- id: 2565 + name: Prop theme + friendly_id: prop_theme + values_from: costume_theme +- id: 2566 + name: Bullion form + friendly_id: bullion_form + values: + - bullion_form__bars + - bullion_form__coins + - bullion_form__rounds +- id: 2567 + name: Shelf material + friendly_id: shelf_material + values: + - shelf_material__bamboo + - shelf_material__beech_wood + - shelf_material__chrome + - shelf_material__chrome_steel + - shelf_material__glass + - shelf_material__medium_density_fiberboard_mdf + - shelf_material__metal + - shelf_material__oak_wood + - shelf_material__particle_board + - shelf_material__plastic + - shelf_material__stainless_steel + - shelf_material__steel + - shelf_material__wood +- id: 2568 + name: Bottom surface material + friendly_id: bottom_surface_material + values_from: cookware_bakeware_material +- id: 2569 + name: Burner material + friendly_id: burner_material + values_from: cookware_bakeware_material +- id: 2570 + name: Lid material + friendly_id: lid_material + values_from: cookware_bakeware_material +- id: 2571 + name: Jaw material + friendly_id: jaw_material + values_from: blade_material +- id: 2572 + name: Scale material + friendly_id: scale_material + values_from: blade_material +- id: 2573 + name: Bulldozer blade type + friendly_id: bulldozer_blade_type + values: + - bulldozer_blade_type__angle + - bulldozer_blade_type__semi_u + - bulldozer_blade_type__straight_s_blade + - bulldozer_blade_type__universal_u_blade +- id: 2574 + name: Chipper technology + friendly_id: chipper_technology + values: + - chipper_technology__disk + - chipper_technology__drum + - chipper_technology__high_torque_roller + - chipper_technology__screw +- id: 2575 + name: Discharge type + friendly_id: discharge_type + values: + - discharge_type__bottom_dump + - discharge_type__side_dump + - discharge_type__standard + - discharge_type__transfer +- id: 2576 + name: Drive type + friendly_id: drive_type + values: + - drive_type__2wd + - drive_type__4wd + - drive_type__track + - drive_type__fwd + - drive_type__rwd + - drive_type__awd +- id: 2577 + name: Counter shape + friendly_id: counter_shape + values: + - counter_shape__curved + - counter_shape__l_shaped + - counter_shape__straight + - counter_shape__u_shaped +- id: 2578 + name: Rack design + friendly_id: rack_design + values: + - rack_design__compartment + - rack_design__open + - rack_design__stemware +- id: 2579 + name: Bell design + friendly_id: bell_design + values: + - bell_design__call_bell + - bell_design__push + - bell_design__tap +- id: 2580 + name: Bell sound + friendly_id: bell_sound + values: + - bell_sound__chime + - bell_sound__ding + - bell_sound__ding_dong +- id: 2581 + name: Handcuff lock type + friendly_id: handcuff_lock_type + values: + - handcuff_lock_type__double_lock + - handcuff_lock_type__key + - handcuff_lock_type__push_pin +- id: 2582 + name: Detector sensitivity + friendly_id: detector_sensitivity + values: + - detector_sensitivity__adjustable + - detector_sensitivity__fixed +- id: 2583 + name: Automation + friendly_id: automation + values: + - automation__automatic + - automation__manual + - automation__semi_automatic +- id: 2584 + name: Conveyor operation + friendly_id: conveyor_operation + values: + - conveyor_operation__electromagnetic + - conveyor_operation__gravity_driven + - conveyor_operation__manual + - conveyor_operation__powered +- id: 2585 + name: Pneumatic conveyor operation + friendly_id: pneumatic_conveyor_operation + values: + - pneumatic_conveyor_operation__dense_phase + - pneumatic_conveyor_operation__dilute_phase + - pneumatic_conveyor_operation__eco_phase +- id: 2586 + name: Suitable for vehicle type + friendly_id: suitable_for_vehicle_type + values: + - suitable_for_vehicle_type__bus + - suitable_for_vehicle_type__car + - suitable_for_vehicle_type__tractor + - suitable_for_vehicle_type__truck + - suitable_for_vehicle_type__universal +- id: 2587 + name: Operating mode + friendly_id: operating_mode + values: + - operating_mode__semi_automatic +- id: 2588 + name: Tuning fork design + friendly_id: tuning_fork_design + values: + - tuning_fork_design__weighted + - tuning_fork_design__unweighted +- id: 2589 + name: Tuning fork frequency + friendly_id: tuning_fork_frequency + values: + - tuning_fork_frequency__128_hz + - tuning_fork_frequency__256_hz + - tuning_fork_frequency__512_hz +- id: 2590 + name: Compatible patient profile + friendly_id: compatible_patient_profile + values: + - compatible_patient_profile__average + - compatible_patient_profile__bariatric + - compatible_patient_profile__geriatric + - compatible_patient_profile__neonatal + - compatible_patient_profile__pediatric + - compatible_patient_profile__universal +- id: 2591 + name: Stretcher/Gurney intended use + friendly_id: stretcher_gurney_intended_use + values: + - stretcher_gurney_intended_use__ambulance + - stretcher_gurney_intended_use__emergency_transport + - stretcher_gurney_intended_use__fluoroscopy + - stretcher_gurney_intended_use__general_transport + - stretcher_gurney_intended_use__mri + - stretcher_gurney_intended_use__surgical +- id: 2592 + name: Equipment operation + friendly_id: equipment_operation + values_from: tool_operation +- id: 2593 + name: Stethoscope design + friendly_id: stethoscope_design + values: + - stethoscope_design__dual_head + - stethoscope_design__single_head +- id: 2594 + name: Stethoscope technology + friendly_id: stethoscope_technology + values: + - stethoscope_technology__acoustic + - stethoscope_technology__electronic +- id: 2595 + name: Tube color + friendly_id: tube_color + values_from: color +- id: 2596 + name: Chiropractic table design + friendly_id: chiropractic_table_design + values: + - chiropractic_table_design__decompression + - chiropractic_table_design__drop + - chiropractic_table_design__elevation + - chiropractic_table_design__flexion_distraction + - chiropractic_table_design__hylo +- id: 2597 + name: Cart design + friendly_id: cart_design + values: + - cart_design__double_hook + - cart_design__multiple_hook + - cart_design__single_hook + - cart_design__with_base +- id: 2598 + name: Blade shape + friendly_id: blade_shape + values_from: shape +- id: 2599 + name: Scalpel blade number + friendly_id: scalpel_blade_number + values: + - scalpel_blade_number__6 + - scalpel_blade_number__9 + - scalpel_blade_number__10 + - scalpel_blade_number__11 + - scalpel_blade_number__12 + - scalpel_blade_number__13 + - scalpel_blade_number__14 + - scalpel_blade_number__15 + - scalpel_blade_number__16 + - scalpel_blade_number__17 + - scalpel_blade_number__18 + - scalpel_blade_number__19 + - scalpel_blade_number__20 + - scalpel_blade_number__21 + - scalpel_blade_number__22 + - scalpel_blade_number__23 + - scalpel_blade_number__24 + - scalpel_blade_number__25 + - scalpel_blade_number__26 + - scalpel_blade_number__27 + - scalpel_blade_number__34 + - scalpel_blade_number__36 + - scalpel_blade_number__40 + - scalpel_blade_number__60 + - scalpel_blade_number__10a + - scalpel_blade_number__11p + - scalpel_blade_number__12d + - scalpel_blade_number__15a + - scalpel_blade_number__15c + - scalpel_blade_number__15t + - scalpel_blade_number__22a + - scalpel_blade_number__25a + - scalpel_blade_number__d_15 + - scalpel_blade_number__e_11 + - scalpel_blade_number__e11 + - scalpel_blade_number__pm40 + - scalpel_blade_number__pm40b + - scalpel_blade_number__pm60 + - scalpel_blade_number__pm60b + - scalpel_blade_number__other +- id: 2600 + name: Scalpel handle number + friendly_id: scalpel_handle_number + values: + - scalpel_handle_number__3 + - scalpel_handle_number__3l + - scalpel_handle_number__4 + - scalpel_handle_number__4l + - scalpel_handle_number__7 + - scalpel_handle_number__9 +- id: 2601 + name: Medical syringe purpose + friendly_id: medical_syringe_purpose + values: + - medical_syringe_purpose__injection + - medical_syringe_purpose__irrigation + - medical_syringe_purpose__tubing +- id: 2602 + name: Needle gauge + friendly_id: needle_gauge + values: + - needle_gauge__6 + - needle_gauge__7 + - needle_gauge__8 + - needle_gauge__9 + - needle_gauge__10 + - needle_gauge__11 + - needle_gauge__12 + - needle_gauge__13 + - needle_gauge__14 + - needle_gauge__15 + - needle_gauge__16 + - needle_gauge__17 + - needle_gauge__18 + - needle_gauge__19 + - needle_gauge__20 + - needle_gauge__21 + - needle_gauge__22 + - needle_gauge__22s + - needle_gauge__23 + - needle_gauge__24 + - needle_gauge__25 + - needle_gauge__26 + - needle_gauge__26s + - needle_gauge__27 + - needle_gauge__28 + - needle_gauge__29 + - needle_gauge__30 + - needle_gauge__31 + - needle_gauge__32 + - needle_gauge__33 + - needle_gauge__34 + - needle_gauge__other +- id: 2603 + name: Tip design + friendly_id: tip_design + values: + - tip_design__catheter_tip + - tip_design__eccentric_tip + - tip_design__luer_lock + - tip_design__slip_tip +- id: 2604 + name: Drilling method + friendly_id: drilling_method + values: + - drilling_method__dth + - drilling_method__percussion + - drilling_method__rotary + - drilling_method__top_hammer +- id: 2605 + name: Drilling rig orientation + friendly_id: drilling_rig_orientation + values: + - drilling_rig_orientation__directional + - drilling_rig_orientation__horizontal + - drilling_rig_orientation__vertical +- id: 2606 + name: Currencies supported + friendly_id: currencies_supported + values_from: currency +- id: 2607 + name: Verification technology + friendly_id: verification_technology + values: + - verification_technology__color + - verification_technology__infrared + - verification_technology__ink + - verification_technology__magnetic + - verification_technology__metallic_thread + - verification_technology__size + - verification_technology__thickness + - verification_technology__uv + - verification_technology__watermark +- id: 2608 + name: Pad display profile + friendly_id: pad_display_profile + values: + - pad_display_profile__color + - pad_display_profile__monochrome +- id: 2609 + name: Terminal operation + friendly_id: terminal_operation + values: + - terminal_operation__electronic + - terminal_operation__manual +- id: 2610 + name: Currency type + friendly_id: currency_type + values: + - currency_type__bills + - currency_type__coins + - currency_type__tokens +- id: 2611 + name: Chemical grade + friendly_id: chemical_grade + values: + - chemical_grade__food + - chemical_grade__laboratory + - chemical_grade__pharmaceutical + - chemical_grade__reagent +- id: 2612 + name: Chemical purity + friendly_id: chemical_purity + values: + - chemical_purity__90 + - chemical_purity__95 + - chemical_purity__99 +- id: 2613 + name: Autoclave sterilization method + friendly_id: autoclave_sterilization_method + values: + - autoclave_sterilization_method__chemical_vapor + - autoclave_sterilization_method__dry_heat + - autoclave_sterilization_method__steam +- id: 2614 + name: Blending type + friendly_id: blending_type + values: + - blending_type__batch + - blending_type__continuous +- id: 2615 + name: Laboratory freezer design + friendly_id: laboratory_freezer_design + values: + - laboratory_freezer_design__chest + - laboratory_freezer_design__undercounter + - laboratory_freezer_design__upright +- id: 2616 + name: Magnification + friendly_id: magnification + values: + - magnification__0_5x + - magnification__1x + - magnification__2x + - magnification__4x + - magnification__5x + - magnification__10x + - magnification__20x + - magnification__40x + - magnification__50x + - magnification__60x + - magnification__63x + - magnification__100x + - magnification__150x + - magnification__200x + - magnification__other +- id: 2617 + name: Maximum magnification + friendly_id: maximum_magnification + values: + - maximum_magnification__0_5x + - maximum_magnification__1x + - maximum_magnification__2x + - maximum_magnification__4x + - maximum_magnification__5x + - maximum_magnification__10x + - maximum_magnification__20x + - maximum_magnification__40x + - maximum_magnification__50x + - maximum_magnification__60x + - maximum_magnification__63x + - maximum_magnification__100x + - maximum_magnification__150x + - maximum_magnification__200x + - maximum_magnification__other +- id: 2618 + name: Minimum magnification + friendly_id: minimum_magnification + values: + - minimum_magnification__0_5x + - minimum_magnification__1x + - minimum_magnification__2x + - minimum_magnification__4x + - minimum_magnification__5x + - minimum_magnification__10x + - minimum_magnification__20x + - minimum_magnification__40x + - minimum_magnification__50x + - minimum_magnification__60x + - minimum_magnification__63x + - minimum_magnification__100x + - minimum_magnification__150x + - minimum_magnification__200x + - minimum_magnification__other +- id: 2619 + name: Field of view + friendly_id: field_of_view + values: + - field_of_view__plan + - field_of_view__semi_plan + - field_of_view__super_plan +- id: 2620 + name: Illumination technique + friendly_id: illumination_technique + values: + - illumination_technique__brightfield + - illumination_technique__darkfield + - illumination_technique__dic + - illumination_technique__fluorescence + - illumination_technique__phase_contrast +- id: 2621 + name: Preservation type + friendly_id: preservation_type + values: + - preservation_type__dried + - preservation_type__fixed + - preservation_type__fresh + - preservation_type__slide_mounted +- id: 2622 + name: Display sign design + friendly_id: display_sign_design + values: + - display_sign_design__advertising + - display_sign_design__closed + - display_sign_design__custom + - display_sign_design__discount + - display_sign_design__entrance + - display_sign_design__exit + - display_sign_design__open + - display_sign_design__open_closed + - display_sign_design__opening_hours + - display_sign_design__restroom + - display_sign_design__sale + - display_sign_design__wayfinding + - display_sign_design__other +- id: 2623 + name: Emergency/Safety sign design + friendly_id: emergency_safety_sign_design + values: + - emergency_safety_sign_design__assembly_point + - emergency_safety_sign_design__emergency_exit + - emergency_safety_sign_design__exit + - emergency_safety_sign_design__fire_equipment + - emergency_safety_sign_design__fire_exit + - emergency_safety_sign_design__other + - emergency_safety_sign_design__first_aid + - emergency_safety_sign_design__hard_hat_area + - emergency_safety_sign_design__hazardous_materials + - emergency_safety_sign_design__high_voltage + - emergency_safety_sign_design__no_trespassing + - emergency_safety_sign_design__slippery_surface + - emergency_safety_sign_design__staff_only + - emergency_safety_sign_design__alarm_system + - emergency_safety_sign_design__guard_dog + - emergency_safety_sign_design__id_required + - emergency_safety_sign_design__no_entry + - emergency_safety_sign_design__restricted_area + - emergency_safety_sign_design__video_surveillance +- id: 2624 + name: Light features + friendly_id: light_features + values: + - light_features__illuminated + - light_features__non_illuminated + - light_features__photoluminescent +- id: 2625 + name: Facility sign design + friendly_id: facility_sign_design + values: + - facility_sign_design__cafeteria + - facility_sign_design__conference_room + - facility_sign_design__elevator + - facility_sign_design__entrance_exit + - facility_sign_design__first_aid_room + - facility_sign_design__kitchen + - facility_sign_design__lobby + - facility_sign_design__meeting_room + - facility_sign_design__office + - facility_sign_design__parking + - facility_sign_design__reception + - facility_sign_design__restroom + - facility_sign_design__staff_only + - facility_sign_design__stairwell + - facility_sign_design__storage_room + - facility_sign_design__other +- id: 2626 + name: Open/Closed sign design + friendly_id: open_closed_sign_design + values: + - open_closed_sign_design__closed + - open_closed_sign_design__custom + - open_closed_sign_design__open + - open_closed_sign_design__open_closed + - open_closed_sign_design__opening_hours +- id: 2627 + name: Parking sign design + friendly_id: parking_sign_design + values: + - parking_sign_design__accessible_parking + - parking_sign_design__compact_cars_only + - parking_sign_design__customer_visitor_parking + - parking_sign_design__employee_parking + - parking_sign_design__fire_lane + - parking_sign_design__loading_zone + - parking_sign_design__no_parking + - parking_sign_design__permit_parking + - parking_sign_design__reserved_parking + - parking_sign_design__time_limit_parking + - parking_sign_design__other +- id: 2628 + name: Policy sign design + friendly_id: policy_sign_design + values: + - policy_sign_design__employees_only + - policy_sign_design__hand_sanitizer_required + - policy_sign_design__mask_required + - policy_sign_design__no_cell_phones + - policy_sign_design__no_food_or_drink + - policy_sign_design__no_pets + - policy_sign_design__no_photography + - policy_sign_design__no_smoking + - policy_sign_design__no_soliciting + - policy_sign_design__quiet_zone + - policy_sign_design__shirt_and_shoes_required + - policy_sign_design__social_distancing + - policy_sign_design__other +- id: 2629 + name: Retail/Sale sign design + friendly_id: retail_sale_sign_design + values: + - retail_sale_sign_design__clearance + - retail_sale_sign_design__closing_sale + - retail_sale_sign_design__coming_soon + - retail_sale_sign_design__custom + - retail_sale_sign_design__entrance_exit + - retail_sale_sign_design__grand_opening + - retail_sale_sign_design__limited_time_offer + - retail_sale_sign_design__new_arrival + - retail_sale_sign_design__now_hiring + - retail_sale_sign_design__open_closed + - retail_sale_sign_design__restroom + - retail_sale_sign_design__sale + - retail_sale_sign_design__seasonal_sale + - retail_sale_sign_design__special_offer + - retail_sale_sign_design__other +- id: 2630 + name: Road sign design + friendly_id: road_sign_design + values: + - road_sign_design__bike_lane + - road_sign_design__construction_zone + - road_sign_design__do_not_enter + - road_sign_design__merge + - road_sign_design__no_parking + - road_sign_design__no_u_turn + - road_sign_design__one_way + - road_sign_design__pedestrian_crossing + - road_sign_design__school_zone + - road_sign_design__speed_limit + - road_sign_design__stop + - road_sign_design__traffic_signal_ahead + - road_sign_design__yield + - road_sign_design__other +- id: 2631 + name: Warning category + friendly_id: warning_category + values: + - warning_category__emergency + - warning_category__mandatory + - warning_category__prohibition + - warning_category__warning +- id: 2632 + name: Bullet protection level + friendly_id: bullet_protection_level + values: + - bullet_protection_level__ii + - bullet_protection_level__iia + - bullet_protection_level__iii + - bullet_protection_level__iiia + - bullet_protection_level__iv +- id: 2633 + name: Filtration class + friendly_id: filtration_class + values: + - filtration_class__a1 + - filtration_class__a2 + - filtration_class__a3 + - filtration_class__b1 + - filtration_class__b2 + - filtration_class__b3 + - filtration_class__e1 + - filtration_class__e2 + - filtration_class__e3 + - filtration_class__k1 + - filtration_class__k2 + - filtration_class__k3 + - filtration_class__p1 + - filtration_class__p2 + - filtration_class__p3 + - filtration_class__ffp1 + - filtration_class__ffp2 + - filtration_class__ffp3 +- id: 2634 + name: Hardhat class + friendly_id: hardhat_class + values: + - hardhat_class__c_conductive + - hardhat_class__e_electrical + - hardhat_class__g_general +- id: 2635 + name: Protection type + friendly_id: protection_type + values: + - protection_type__type_i + - protection_type__type_ii +- id: 2636 + name: Hazmat suit design + friendly_id: hazmat_suit_design + values: + - hazmat_suit_design__coverall + - hazmat_suit_design__encapsulated + - hazmat_suit_design__lab_coat +- id: 2637 + name: Lens color + friendly_id: lens_color + values_from: color +- id: 2638 + name: Dust mask type + friendly_id: dust_mask_type + values: + - dust_mask_type__cup + - dust_mask_type__flat_fold +- id: 2639 + name: Helmet shade design + friendly_id: helmet_shade_design + values: + - helmet_shade_design__auto_darkening + - helmet_shade_design__fixed + - helmet_shade_design__passive + - helmet_shade_design__variable +- id: 2640 + name: Viewing area height + friendly_id: viewing_area_height + values: + - viewing_area_height__large + - viewing_area_height__medium + - viewing_area_height__small +- id: 2641 + name: Viewing area width + friendly_id: viewing_area_width + values: + - viewing_area_width__large + - viewing_area_width__medium + - viewing_area_width__small +- id: 2642 + name: Compatible programming languages + friendly_id: compatible_programming_languages + values: + - compatible_programming_languages__bash + - compatible_programming_languages__c + - compatible_programming_languages__c# + - compatible_programming_languages__c++ + - compatible_programming_languages__docker + - compatible_programming_languages__go + - compatible_programming_languages__java + - compatible_programming_languages__javascript + - compatible_programming_languages__kotlin + - compatible_programming_languages__kubernetes + - compatible_programming_languages__node_js + - compatible_programming_languages__perl + - compatible_programming_languages__php + - compatible_programming_languages__python + - compatible_programming_languages__pytorch + - compatible_programming_languages__r + - compatible_programming_languages__ruby + - compatible_programming_languages__rust + - compatible_programming_languages__scala + - compatible_programming_languages__shell + - compatible_programming_languages__sql + - compatible_programming_languages__swift + - compatible_programming_languages__tensorflow + - compatible_programming_languages__typescript + - compatible_programming_languages__other +- id: 2643 + name: Compliance certifications + friendly_id: compliance_certifications + values: + - compliance_certifications__cjis + - compliance_certifications__fedramp + - compliance_certifications__fisma + - compliance_certifications__gdpr + - compliance_certifications__hipaa + - compliance_certifications__iso_27001 + - compliance_certifications__pci_dss + - compliance_certifications__soc_1_2_3 + - compliance_certifications__other +- id: 2644 + name: Primary region + friendly_id: primary_region + values: + - primary_region__africa + - primary_region__asia_pacific + - primary_region__europe + - primary_region__latin_america + - primary_region__middle_east + - primary_region__north_america + - primary_region__oceania +- id: 2645 + name: Service type + friendly_id: service_type + values: + - service_type__function_as_a_service_faas + - service_type__infrastructure_as_a_service_iaas + - service_type__platform_as_a_service_paas + - service_type__software_as_a_service_saas +- id: 2646 + name: License type + friendly_id: license_type + values: + - license_type__free_to_use + - license_type__freemium + - license_type__one_time_purchase + - license_type__open_source + - license_type__subscription_based + - license_type__trial_version +- id: 2647 + name: Supported language + friendly_id: supported_language + values_from: language +- id: 2648 + name: User type + friendly_id: user_type + values: + - user_type__individual + - user_type__small_business + - user_type__medium_sized_business_enterprise + - user_type__large_enterprise +- id: 2649 + name: AI application + friendly_id: ai_application + values: + - ai_application__autonomous_system + - ai_application__computer_vision + - ai_application__fraud_detection + - ai_application__natural_language_processing_nlp + - ai_application__predictive_analytics + - ai_application__recommendation_system + - ai_application__speech_recognition +- id: 2650 + name: Deployment type + friendly_id: deployment_type + values: + - deployment_type__cloud_based + - deployment_type__on_premises + - deployment_type__hybrid +- id: 2651 + name: Industry focus + friendly_id: industry_focus + values: + - industry_focus__automotive + - industry_focus__education + - industry_focus__finance + - industry_focus__healthcare + - industry_focus__manufacturing + - industry_focus__marketing + - industry_focus__retail + - industry_focus__other +- id: 2652 + name: Performance metrics + friendly_id: performance_metrics + values: + - performance_metrics__accuracy + - performance_metrics__precision + - performance_metrics__recall + - performance_metrics__f1_score + - performance_metrics__training_time + - performance_metrics__inference_speed +- id: 2653 + name: Training data requirements + friendly_id: training_data_requirements + values: + - training_data_requirements__labeled_data + - training_data_requirements__unlabeled_data + - training_data_requirements__structured_data + - training_data_requirements__unstructured_data +- id: 2654 + name: Customer support channels + friendly_id: customer_support_channels + values: + - customer_support_channels__community_forum + - customer_support_channels__email_support + - customer_support_channels__forum_support + - customer_support_channels__in_app_support + - customer_support_channels__knowledge_base_faqs + - customer_support_channels__live_chat_support + - customer_support_channels__personal_agent + - customer_support_channels__phone_support + - customer_support_channels__social_media_support + - customer_support_channels__training_classes + - customer_support_channels__video_tutorials + - customer_support_channels__webinars +- id: 2655 + name: Software tool type + friendly_id: software_tool_type + values: + - software_tool_type__build_tool + - software_tool_type__compiler + - software_tool_type__debugger + - software_tool_type__gui_designer + - software_tool_type__linker + - software_tool_type__source_code_editor + - software_tool_type__version_control_system +- id: 2656 + name: Utility/Maintenance task type + friendly_id: utility_maintenance_task_type + values: + - utility_maintenance_task_type__antivirus + - utility_maintenance_task_type__data_backup + - utility_maintenance_task_type__data_recovery + - utility_maintenance_task_type__defragmentation + - utility_maintenance_task_type__disk_cleanup + - utility_maintenance_task_type__disk_partitioning + - utility_maintenance_task_type__driver_updater + - utility_maintenance_task_type__file_compression + - utility_maintenance_task_type__registry_cleaner + - utility_maintenance_task_type__system_optimizer + - utility_maintenance_task_type__other +- id: 2657 + name: Education level + friendly_id: education_level + values: + - education_level__elementary_school + - education_level__middle_school + - education_level__high_school + - education_level__college + - education_level__graduate_school + - education_level__professional +- id: 2658 + name: Coverage area + friendly_id: coverage_area + values_from: country +- id: 2659 + name: Coverage region + friendly_id: coverage_region + values: + - coverage_region__caribbean + - coverage_region__central_asia + - coverage_region__east_asia + - coverage_region__europe + - coverage_region__central_america + - coverage_region__middle_east + - coverage_region__north_africa + - coverage_region__north_america + - coverage_region__oceania + - coverage_region__south_america + - coverage_region__south_asia + - coverage_region__sub_saharan_africa +- id: 2660 + name: GPS compatible device + friendly_id: gps_compatible_device + values: + - gps_compatible_device__aviation_device + - gps_compatible_device__gps_navigator + - gps_compatible_device__laptop + - gps_compatible_device__marine_device + - gps_compatible_device__smartphone + - gps_compatible_device__tablet +- id: 2661 + name: Update frequency + friendly_id: update_frequency + values: + - update_frequency__real_time + - update_frequency__daily + - update_frequency__weekly + - update_frequency__monthly + - update_frequency__quarterly + - update_frequency__annually +- id: 2662 + name: Disk format type + friendly_id: disk_format_type + values: + - disk_format_type__cd + - disk_format_type__dvd + - disk_format_type__usb + - disk_format_type__blu_ray +- id: 2663 + name: File format type + friendly_id: file_format_type + values: + - file_format_type__ai + - file_format_type__avi + - file_format_type__bmp + - file_format_type__csv + - file_format_type__doc + - file_format_type__docx + - file_format_type__eot + - file_format_type__eps + - file_format_type__gif + - file_format_type__ico + - file_format_type__indd + - file_format_type__jpeg + - file_format_type__mov + - file_format_type__mp4 + - file_format_type__otf + - file_format_type__pdf + - file_format_type__png + - file_format_type__ppt + - file_format_type__pptx + - file_format_type__psd + - file_format_type__raw + - file_format_type__rtf + - file_format_type__svg + - file_format_type__tiff + - file_format_type__ttf + - file_format_type__webm + - file_format_type__woff + - file_format_type__xls + - file_format_type__xlsx + - file_format_type__other +- id: 2664 + name: Icon type + friendly_id: icon_type + values: + - icon_type__application + - icon_type__device + - icon_type__file_type + - icon_type__folder + - icon_type__process + - icon_type__social_media + - icon_type__system + - icon_type__user_interface + - icon_type__web +- id: 2665 + name: Wallpaper theme + friendly_id: wallpaper_theme + values: + - wallpaper_theme__abstract + - wallpaper_theme__animals + - wallpaper_theme__architecture + - wallpaper_theme__art_illustration + - wallpaper_theme__cars + - wallpaper_theme__games + - wallpaper_theme__holidays + - wallpaper_theme__minimalist + - wallpaper_theme__movies_tv + - wallpaper_theme__nature + - wallpaper_theme__seasonal + - wallpaper_theme__space + - wallpaper_theme__sports + - wallpaper_theme__technology + - wallpaper_theme__other +- id: 2666 + name: Artwork type + friendly_id: artwork_type + values: + - artwork_type__digital_illustration + - artwork_type__digital_painting + - artwork_type__mixed_media + - artwork_type__3d_render + - artwork_type__photomanipulation + - artwork_type__pixel_art + - artwork_type__vector_art + - artwork_type__fractal_art + - artwork_type__typography + - artwork_type__concept_art +- id: 2667 + name: Compatible software platform + friendly_id: compatible_software_platform + values: + - compatible_software_platform__adobe_creative + - compatible_software_platform__canva + - compatible_software_platform__google_workspace + - compatible_software_platform__iwork + - compatible_software_platform__libreoffice + - compatible_software_platform__microsoft_office + - compatible_software_platform__wordpress + - compatible_software_platform__other +- id: 2668 + name: Template type + friendly_id: template_type + values: + - template_type__brochure + - template_type__business_card + - template_type__certificate + - template_type__cover_letter + - template_type__flyer + - template_type__invoice + - template_type__legal_document + - template_type__newsletter + - template_type__powerpoint_presentation + - template_type__report + - template_type__resume + - template_type__wedding_invitation + - template_type__other +- id: 2669 + name: Font style + friendly_id: font_style + values: + - font_style__decorative + - font_style__display + - font_style__handwritten + - font_style__icon + - font_style__monospaced + - font_style__sans_serif + - font_style__script + - font_style__serif + - font_style__slab_serif +- id: 2670 + name: Footage type + friendly_id: footage_type + values: + - footage_type__animations + - footage_type__icons + - footage_type__illustrations + - footage_type__stock_photos + - footage_type__stock_videos + - footage_type__textures + - footage_type__vectors +- id: 2671 + name: Content features + friendly_id: content_features + values: + - content_features__downloadable_content_dlc + - content_features__early_access + - content_features__free_to_play +- id: 2672 + name: ESRB rating + friendly_id: esrb_rating + values: + - esrb_rating__ec_early_childhood + - esrb_rating__e_everyone + - esrb_rating__e10+_everyone_10_and_older + - esrb_rating__t_teen + - esrb_rating__m_mature + - esrb_rating__ao_adults_only + - esrb_rating__rp_rating_pending +- id: 2673 + name: National/Regional rating + friendly_id: national_regional_rating + values: + - national_regional_rating__0 + - national_regional_rating__2 + - national_regional_rating__3 + - national_regional_rating__4 + - national_regional_rating__5 + - national_regional_rating__6 + - national_regional_rating__7 + - national_regional_rating__8 + - national_regional_rating__9 + - national_regional_rating__10 + - national_regional_rating__11 + - national_regional_rating__12 + - national_regional_rating__13 + - national_regional_rating__14 + - national_regional_rating__15 + - national_regional_rating__16 + - national_regional_rating__17 + - national_regional_rating__18 + - national_regional_rating__19 + - national_regional_rating__20 + - national_regional_rating__21 + - national_regional_rating__0_1 + - national_regional_rating__0+ + - national_regional_rating__1012pg + - national_regional_rating__12+ + - national_regional_rating__13+ + - national_regional_rating__14+ + - national_regional_rating__15+ + - national_regional_rating__16+ + - national_regional_rating__17+ + - national_regional_rating__18+ + - national_regional_rating__3+ + - national_regional_rating__4+ + - national_regional_rating__6+ + - national_regional_rating__79pg + - national_regional_rating__7+ + - national_regional_rating__8+ + - national_regional_rating__9+ + - national_regional_rating__a + - national_regional_rating__adv16 + - national_regional_rating__all_ages + - national_regional_rating__atp + - national_regional_rating__b + - national_regional_rating__b15 + - national_regional_rating__c + - national_regional_rating__ctc + - national_regional_rating__d + - national_regional_rating__g + - national_regional_rating__i + - national_regional_rating__ii + - national_regional_rating__iii + - national_regional_rating__l + - national_regional_rating__m + - national_regional_rating__m18 + - national_regional_rating__ma_15+ + - national_regional_rating__p + - national_regional_rating__pg + - national_regional_rating__r_18+ + - national_regional_rating__r13 + - national_regional_rating__r15 + - national_regional_rating__r16 + - national_regional_rating__r18 + - national_regional_rating__rc + - national_regional_rating__su + - national_regional_rating__te + - national_regional_rating__z + - national_regional_rating__other +- id: 2674 + name: PEGI rating + friendly_id: pegi_rating + values: + - pegi_rating__3 + - pegi_rating__7 + - pegi_rating__12 + - pegi_rating__16 + - pegi_rating__18 +- id: 2675 + name: Platform + friendly_id: platform + values: + - platform__amiga + - platform__arcade + - platform__atari_2600 + - platform__atari_7800 + - platform__commodore_64 + - platform__game_boy + - platform__mobile + - platform__neo_geo + - platform__nintendo_2ds + - platform__nintendo_3ds + - platform__nintendo_64 + - platform__nintendo_ds + - platform__nintendo_entertainment_system_nes + - platform__nintendo_gamecube + - platform__nintendo_switch + - platform__nintendo_wii + - platform__nintendo_wii_u + - platform__pc + - platform__playstation_1 + - platform__playstation_2 + - platform__playstation_3 + - platform__playstation_4 + - platform__playstation_5 + - platform__playstation_portable_psp + - platform__playstation_vita + - platform__sega_dreamcast + - platform__sega_genesis + - platform__sega_saturn + - platform__steam + - platform__super_nintendo_entertainment_system_snes + - platform__virtual_reality + - platform__xbox + - platform__xbox_360 + - platform__xbox_one + - platform__xbox_series_xs + - platform__other +- id: 2676 + name: Region code + friendly_id: region_code + values: + - region_code__africa_af + - region_code__asia_as + - region_code__australia_aus + - region_code__europe_eu + - region_code__global_gl + - region_code__japan_jp + - region_code__latin_america_la + - region_code__middle_east_me + - region_code__north_america_na +- id: 2677 + name: Video game genre + friendly_id: video_game_genre + values: + - video_game_genre__action + - video_game_genre__adult + - video_game_genre__adventure + - video_game_genre__arcade + - video_game_genre__brain_training + - video_game_genre__casual + - video_game_genre__driving_racing + - video_game_genre__educational + - video_game_genre__family + - video_game_genre__fighting + - video_game_genre__fitness + - video_game_genre__horror + - video_game_genre__indie + - video_game_genre__massively_multiplayer + - video_game_genre__music + - video_game_genre__party + - video_game_genre__puzzle + - video_game_genre__racing + - video_game_genre__rpg + - video_game_genre__shooter + - video_game_genre__simulation + - video_game_genre__sports + - video_game_genre__strategy + - video_game_genre__survival + - video_game_genre__trivia_quiz + - video_game_genre__unique + - video_game_genre__visual_novel + - video_game_genre__other +- id: 2678 + name: Video game sub-genre + friendly_id: video_game_sub_genre + values: + - video_game_sub_genre__4x + - video_game_sub_genre__artillery + - video_game_sub_genre__auto_battler + - video_game_sub_genre__battle_royale + - video_game_sub_genre__beat_em_up + - video_game_sub_genre__city_building + - video_game_sub_genre__construction_and_management_simulation + - video_game_sub_genre__dating_sim + - video_game_sub_genre__first_person_shooter + - video_game_sub_genre__flight_simulator + - video_game_sub_genre__god_game + - video_game_sub_genre__graphic_adventure + - video_game_sub_genre__hack_and_slash + - video_game_sub_genre__life_simulation + - video_game_sub_genre__metroidvania + - video_game_sub_genre__mmorpg + - video_game_sub_genre__moba + - video_game_sub_genre__party + - video_game_sub_genre__platformer + - video_game_sub_genre__point_and_click_adventure + - video_game_sub_genre__puzzle_platformer + - video_game_sub_genre__real_time_tactics + - video_game_sub_genre__rhythm + - video_game_sub_genre__roguelike + - video_game_sub_genre__sandbox + - video_game_sub_genre__sports_management + - video_game_sub_genre__survival_horror + - video_game_sub_genre__tactical_shooter + - video_game_sub_genre__text_adventure + - video_game_sub_genre__third_person_shooter + - video_game_sub_genre__tower_defense + - video_game_sub_genre__turn_based_tactics + - video_game_sub_genre__vehicle_simulation + - video_game_sub_genre__walking_simulator + - video_game_sub_genre__other +- id: 2679 + name: Compatible aircraft type + friendly_id: compatible_aircraft_type + values: + - compatible_aircraft_type__airplane + - compatible_aircraft_type__balloon + - compatible_aircraft_type__blimp + - compatible_aircraft_type__glider + - compatible_aircraft_type__helicopter +- id: 2680 + name: Item condition + friendly_id: item_condition + values: + - item_condition__certified_pre_owned + - item_condition__new + - item_condition__refurbished + - item_condition__used +- id: 2681 + name: Manufacturer type + friendly_id: manufacturer_type + values: + - manufacturer_type__aftermarket + - manufacturer_type__genuine + - manufacturer_type__oem + - manufacturer_type__third_party +- id: 2682 + name: Charging cable type + friendly_id: charging_cable_type + values: + - charging_cable_type__adapter + - charging_cable_type__level_1 + - charging_cable_type__level_2 + - charging_cable_type__level_3 +- id: 2683 + name: Charging level + friendly_id: charging_level + values: + - charging_level__level_1_120v + - charging_level__level_2_240v + - charging_level__level_3_480v+ +- id: 2684 + name: Input phase type + friendly_id: input_phase_type + values: + - input_phase_type__single_phase + - input_phase_type__three_phase + - input_phase_type__two_phase +- id: 2685 + name: Station type + friendly_id: station_type + values: + - station_type__fast_charging + - station_type__home_charging + - station_type__portable_charging + - station_type__public_charging + - station_type__supercharging +- id: 2686 + name: EV connector/adapter type + friendly_id: ev_connector_adapter_type + values: + - ev_connector_adapter_type__ccs + - ev_connector_adapter_type__chademo + - ev_connector_adapter_type__j1772 + - ev_connector_adapter_type__tesla + - ev_connector_adapter_type__type_2 + - ev_connector_adapter_type__vehicle_to_home_v2h + - ev_connector_adapter_type__vehicle_to_grid_v2g +- id: 2687 + name: EV conversion kit components + friendly_id: ev_conversion_kit_components + values: + - ev_conversion_kit_components__battery_pack + - ev_conversion_kit_components__charger + - ev_conversion_kit_components__controller + - ev_conversion_kit_components__dc_dc_converter + - ev_conversion_kit_components__fuses + - ev_conversion_kit_components__motor + - ev_conversion_kit_components__mounts + - ev_conversion_kit_components__sensors + - ev_conversion_kit_components__throttle + - ev_conversion_kit_components__wiring_harness +- id: 2688 + name: EV battery type + friendly_id: ev_battery_type + values: + - ev_battery_type__flow + - ev_battery_type__lead_acid + - ev_battery_type__lithium_air_li_air + - ev_battery_type__lithium_ion_li_ion + - ev_battery_type__lithium_sulfur_li_s + - ev_battery_type__lithium_titanate_li_ti + - ev_battery_type__nickel_cadmium_ni_cd + - ev_battery_type__nickel_metal_hydride_nimh + - ev_battery_type__sodium_ion_na_ion + - ev_battery_type__solid_state + - ev_battery_type__ultra_capacitor +- id: 2689 + name: Inverter type + friendly_id: inverter_type + values: + - inverter_type__modified_sine_wave + - inverter_type__pure_sine_wave + - inverter_type__square_wave +- id: 2690 + name: Amplifier configuration + friendly_id: amplifier_configuration + values: + - amplifier_configuration__mono + - amplifier_configuration__two_channel + - amplifier_configuration__four_channel + - amplifier_configuration__five_channel + - amplifier_configuration__six_channel + - amplifier_configuration__multi_channel +- id: 2691 + name: Cassette adapter type + friendly_id: cassette_adapter_type + values: + - cassette_adapter_type__3_5mm_to_cassette + - cassette_adapter_type__bluetooth_to_cassette + - cassette_adapter_type__usb_to_cassette +- id: 2692 + name: Compatible player + friendly_id: compatible_player + values: + - compatible_player__cd_player + - compatible_player__ipad + - compatible_player__iphone + - compatible_player__ipod + - compatible_player__laptop + - compatible_player__mp3_player + - compatible_player__portable_dvd_player + - compatible_player__smartphone + - compatible_player__tablet +- id: 2693 + name: Speakerphone type + friendly_id: speakerphone_type + values: + - speakerphone_type__bluetooth + - speakerphone_type__hands_free + - speakerphone_type__wired + - speakerphone_type__wireless +- id: 2694 + name: Engine type + friendly_id: engine_type + values: + - engine_type__diesel + - engine_type__electric + - engine_type__gas + - engine_type__hybrid + - engine_type__petrol + - engine_type__rotary + - engine_type__supercharged + - engine_type__turbocharged +- id: 2695 + name: Motor vehicle type + friendly_id: motor_vehicle_type + values: + - motor_vehicle_type__car + - motor_vehicle_type__truck + - motor_vehicle_type__suv + - motor_vehicle_type__van +- id: 2696 + name: Fit type + friendly_id: fit_type + values: + - fit_type__custom + - fit_type__universal + - fit_type__direct +- id: 2697 + name: Gauge type + friendly_id: gauge_type + values: + - gauge_type__tachometer + - gauge_type__speedometer + - gauge_type__odometer + - gauge_type__fuel_level + - gauge_type__temperature + - gauge_type__pressure + - gauge_type__voltage +- id: 2698 + name: Motor vehicle placement + friendly_id: motor_vehicle_placement + values: + - motor_vehicle_placement__front + - motor_vehicle_placement__rear + - motor_vehicle_placement__left_side + - motor_vehicle_placement__right_side +- id: 2699 + name: Transmission type + friendly_id: transmission_type + values: + - transmission_type__automatic + - transmission_type__manual + - transmission_type__cvt + - transmission_type__dual_clutch + - transmission_type__tiptronic +- id: 2700 + name: Rim/Wheel design + friendly_id: rim_wheel_design + values: + - rim_wheel_design__alloy + - rim_wheel_design__carbon_fiber + - rim_wheel_design__chrome + - rim_wheel_design__forged + - rim_wheel_design__multi_piece + - rim_wheel_design__spoked + - rim_wheel_design__steel +- id: 2701 + name: Vehicle tire type + friendly_id: vehicle_tire_type + values: + - vehicle_tire_type__all_season + - vehicle_tire_type__all_terrain + - vehicle_tire_type__mud_terrain + - vehicle_tire_type__performance + - vehicle_tire_type__run_flat + - vehicle_tire_type__summer + - vehicle_tire_type__touring + - vehicle_tire_type__winter +- id: 2702 + name: Motorcycle tire type + friendly_id: motorcycle_tire_type + values: + - motorcycle_tire_type__adventure + - motorcycle_tire_type__cruiser + - motorcycle_tire_type__dirt + - motorcycle_tire_type__dual_sport + - motorcycle_tire_type__racing + - motorcycle_tire_type__scooter + - motorcycle_tire_type__sport + - motorcycle_tire_type__touring +- id: 2703 + name: ATV/Off-road tire type + friendly_id: atv_off_road_tire_type + values: + - atv_off_road_tire_type__atv + - atv_off_road_tire_type__mud + - atv_off_road_tire_type__off_road_truck + - atv_off_road_tire_type__racing + - atv_off_road_tire_type__rock_crawling + - atv_off_road_tire_type__sand + - atv_off_road_tire_type__snow + - atv_off_road_tire_type__utv +- id: 2704 + name: Wheel part type + friendly_id: wheel_part_type + values: + - wheel_part_type__wheel_bearing + - wheel_part_type__wheel_hub + - wheel_part_type__lug_nut + - wheel_part_type__wheel_spacer + - wheel_part_type__wheel_stud + - wheel_part_type__wheel_weight + - wheel_part_type__wheel_center_cap + - wheel_part_type__wheel_lock +- id: 2705 + name: Vehicle type + friendly_id: vehicle_type + values: + - vehicle_type__car + - vehicle_type__golf_cart + - vehicle_type__motorcycle + - vehicle_type__recreational_vehicle + - vehicle_type__suv + - vehicle_type__truck + - vehicle_type__van + - vehicle_type__watercraft + - vehicle_type__boat + - vehicle_type__jet_ski + - vehicle_type__sailboat + - vehicle_type__yacht +- id: 2706 + name: Vehicle application area + friendly_id: vehicle_application_area + values: + - vehicle_application_area__exterior + - vehicle_application_area__interior + - vehicle_application_area__leather + - vehicle_application_area__metal + - vehicle_application_area__plastic + - vehicle_application_area__rubber + - vehicle_application_area__upholstery + - vehicle_application_area__vinyl + - vehicle_application_area__wheels +- id: 2707 + name: Cover type + friendly_id: cover_type + values: + - cover_type__full_cover + - cover_type__top_cover + - cover_type__roll_up + - cover_type__folding + - cover_type__retractable +- id: 2708 + name: Air freshener form + friendly_id: air_freshener_form + values: + - air_freshener_form__cards + - air_freshener_form__gel + - air_freshener_form__oil + - air_freshener_form__spray + - air_freshener_form__vent_clip +- id: 2709 + name: Car freshener fragrance + friendly_id: car_freshener_fragrance + values: + - car_freshener_fragrance__apple + - car_freshener_fragrance__cherry + - car_freshener_fragrance__citrus + - car_freshener_fragrance__coconut + - car_freshener_fragrance__fresh_linen + - car_freshener_fragrance__lavender + - car_freshener_fragrance__lemon + - car_freshener_fragrance__new_car + - car_freshener_fragrance__pine + - car_freshener_fragrance__strawberry + - car_freshener_fragrance__vanilla + - car_freshener_fragrance__unscented + - car_freshener_fragrance__other +- id: 2710 + name: Antifreeze type + friendly_id: antifreeze_type + values: + - antifreeze_type__concentrate + - antifreeze_type__prediluted +- id: 2711 + name: Viscosity + friendly_id: viscosity + values: + - viscosity__0w_16 + - viscosity__0w_20 + - viscosity__0w_30 + - viscosity__0w_40 + - viscosity__5w_20 + - viscosity__5w_30 + - viscosity__5w_40 + - viscosity__5w_50 + - viscosity__10w_30 + - viscosity__10w_40 + - viscosity__10w_50 + - viscosity__10w_60 + - viscosity__15w_40 + - viscosity__15w_50 + - viscosity__15w_60 + - viscosity__20w_50 + - viscosity__20w_60 + - viscosity__other +- id: 2712 + name: Paint finish + friendly_id: paint_finish + values: + - paint_finish__gloss + - paint_finish__matte + - paint_finish__metallic + - paint_finish__pearl + - paint_finish__satin +- id: 2713 + name: Vehicle paint type + friendly_id: vehicle_paint_type + values: + - vehicle_paint_type__paint_kit + - vehicle_paint_type__spray_paint + - vehicle_paint_type__touch_up_paint +- id: 2714 + name: Charger type + friendly_id: charger_type + values: + - charger_type__trickle + - charger_type__smart + - charger_type__manual +- id: 2715 + name: Filler type + friendly_id: filler_type + values: + - filler_type__lightweight + - filler_type__fiberglass + - filler_type__metal + - filler_type__plastic +- id: 2716 + name: Motorcycle glove purpose + friendly_id: motorcycle_glove_purpose + values: + - motorcycle_glove_purpose__summer + - motorcycle_glove_purpose__winter + - motorcycle_glove_purpose__racing + - motorcycle_glove_purpose__touring + - motorcycle_glove_purpose__off_road +- id: 2717 + name: Hitch class + friendly_id: hitch_class + values: + - hitch_class__class_i + - hitch_class__class_ii + - hitch_class__class_iii + - hitch_class__class_iv + - hitch_class__class_v +- id: 2718 + name: Immobilizer type + friendly_id: immobilizer_type + values: + - immobilizer_type__steering_wheel_lock + - immobilizer_type__pedal_lock + - immobilizer_type__tire_lock +- id: 2719 + name: Flare type + friendly_id: flare_type + values: + - flare_type__traditional + - flare_type__led +- id: 2720 + name: Cage type + friendly_id: cage_type + values: + - cage_type__full_cage + - cage_type__half_cage + - cage_type__roll_bar +- id: 2721 + name: Belt type + friendly_id: belt_type + values: + - belt_type__lap + - belt_type__three_point + - belt_type__five_point +- id: 2722 + name: Rack type + friendly_id: rack_type + values: + - rack_type__roof + - rack_type__hitch + - rack_type__trunk + - rack_type__spare_tire + - rack_type__back_window + - rack_type__floor_mount +- id: 2723 + name: Loading ramp type + friendly_id: loading_ramp_type + values: + - loading_ramp_type__single + - loading_ramp_type__pair + - loading_ramp_type__tri_fold +- id: 2724 + name: Trailer type + friendly_id: trailer_type + values: + - trailer_type__bumper_pull + - trailer_type__conventional + - trailer_type__enclosed + - trailer_type__expandable + - trailer_type__fifth_wheel + - trailer_type__gooseneck + - trailer_type__living_quarters + - trailer_type__open + - trailer_type__single_axle + - trailer_type__tandem_axle + - trailer_type__teardrop +- id: 2725 + name: Bag type + friendly_id: bag_type + values: + - bag_type__saddlebag + - bag_type__tank_bag + - bag_type__tail_bag + - bag_type__tool_bag +- id: 2726 + name: Box type + friendly_id: box_type + values: + - box_type__chest + - box_type__crossover + - box_type__drawer + - box_type__side_mount +- id: 2727 + name: Organizer type + friendly_id: organizer_type + values: + - organizer_type__backseat + - organizer_type__console + - organizer_type__cup_holder + - organizer_type__glove_box + - organizer_type__visor +- id: 2728 + name: Chain type + friendly_id: chain_type + values: + - chain_type__bbb + - chain_type__high_test_ht + - chain_type__proof_coil + - chain_type__stainless_steel_ss +- id: 2729 + name: Line/Rope type + friendly_id: line_rope_type + values: + - line_rope_type__three_strand + - line_rope_type__double_braid + - line_rope_type__single_braid +- id: 2730 + name: Windlass design + friendly_id: windlass_design + values: + - windlass_design__vertical + - windlass_design__horizontal +- id: 2731 + name: Hook type + friendly_id: hook_type + values: + - hook_type__fixed + - hook_type__telescoping +- id: 2732 + name: Ladder type + friendly_id: ladder_type + values: + - ladder_type__fixed + - ladder_type__telescoping + - ladder_type__under_platform + - ladder_type__over_platform +- id: 2733 + name: Cleat type + friendly_id: cleat_type + values: + - cleat_type__open_base + - cleat_type__closed_base + - cleat_type__flip_up +- id: 2734 + name: Step type + friendly_id: step_type + values: + - step_type__single + - step_type__double + - step_type__triple +- id: 2735 + name: Cleaner purpose + friendly_id: cleaner_purpose + values: + - cleaner_purpose__all_purpose + - cleaner_purpose__hull + - cleaner_purpose__deck + - cleaner_purpose__vinyl + - cleaner_purpose__metal +- id: 2736 + name: Polish type + friendly_id: polish_type + values: + - polish_type__all_purpose + - polish_type__hull + - polish_type__deck + - polish_type__vinyl + - polish_type__metal +- id: 2737 + name: Watercraft engine control type + friendly_id: watercraft_engine_control_type + values: + - watercraft_engine_control_type__shift + - watercraft_engine_control_type__steering + - watercraft_engine_control_type__throttle +- id: 2738 + name: Lock placement + friendly_id: lock_placement + values: + - lock_placement__outboard + - lock_placement__inboard +- id: 2739 + name: Watercraft motor mounting type + friendly_id: watercraft_motor_mounting_type + values: + - watercraft_motor_mounting_type__transom + - watercraft_motor_mounting_type__bow + - watercraft_motor_mounting_type__stern +- id: 2740 + name: Propeller blade design + friendly_id: propeller_blade_design + values: + - propeller_blade_design__3_blade + - propeller_blade_design__4_blade + - propeller_blade_design__5_blade +- id: 2741 + name: Meter type + friendly_id: meter_type + values: + - meter_type__analog + - meter_type__digital +- id: 2742 + name: Light type + friendly_id: light_type + values: + - light_type__navigation + - light_type__deck + - light_type__cabin + - light_type__underwater +- id: 2743 + name: Watercraft steering wheel type + friendly_id: watercraft_steering_wheel_type + values: + - watercraft_steering_wheel_type__power + - watercraft_steering_wheel_type__sport + - watercraft_steering_wheel_type__standard +- id: 2744 + name: Body color + friendly_id: body_color + values_from: color +- id: 2745 + name: Upholstery color + friendly_id: upholstery_color + values_from: color +- id: 2746 + name: Car type + friendly_id: car_type + values: + - car_type__sedan + - car_type__coupe + - car_type__convertible + - car_type__hatchback + - car_type__wagon + - car_type__suv + - car_type__crossover +- id: 2747 + name: Truck type + friendly_id: truck_type + values: + - truck_type__pickup + - truck_type__box_truck + - truck_type__dump_truck + - truck_type__flatbed_truck +- id: 2748 + name: Van type + friendly_id: van_type + values: + - van_type__minivan + - van_type__cargo_van + - van_type__passenger_van + - van_type__conversion_van +- id: 2749 + name: Cart type + friendly_id: cart_type + values: + - cart_type__electric + - cart_type__gas +- id: 2750 + name: Motorcycle drive type + friendly_id: motorcycle_drive_type + values: + - motorcycle_drive_type__belt + - motorcycle_drive_type__chain + - motorcycle_drive_type__shaft +- id: 2751 + name: Motorcycle/Scooter type + friendly_id: motorcycle_scooter_type + values: + - motorcycle_scooter_type__cruiser + - motorcycle_scooter_type__dual_sport + - motorcycle_scooter_type__maxi_scooter + - motorcycle_scooter_type__moped + - motorcycle_scooter_type__off_road + - motorcycle_scooter_type__sport + - motorcycle_scooter_type__three_wheel + - motorcycle_scooter_type__touring + - motorcycle_scooter_type__other +- id: 2752 + name: Recreational vehicle type + friendly_id: recreational_vehicle_type + values: + - recreational_vehicle_type__class_a + - recreational_vehicle_type__class_b + - recreational_vehicle_type__class_c + - recreational_vehicle_type__travel_trailer + - recreational_vehicle_type__fifth_wheel + - recreational_vehicle_type__pop_up_camper + - recreational_vehicle_type__truck_camper +- id: 2753 + name: Snowmobile type + friendly_id: snowmobile_type + values: + - snowmobile_type__performance + - snowmobile_type__touring + - snowmobile_type__mountain + - snowmobile_type__utility + - snowmobile_type__youth +- id: 2754 + name: Boat type + friendly_id: boat_type + values: + - boat_type__bowrider + - boat_type__center_console + - boat_type__cuddy_cabin + - boat_type__pontoon + - boat_type__deck_boat +- id: 2755 + name: Watercraft type + friendly_id: watercraft_type + values: + - watercraft_type__stand_up + - watercraft_type__sit_down + - watercraft_type__sport + - watercraft_type__luxury +- id: 2756 + name: Sailboat type + friendly_id: sailboat_type + values: + - sailboat_type__sloop + - sailboat_type__cutter + - sailboat_type__catamaran + - sailboat_type__trimaran + - sailboat_type__yawl +- id: 2757 + name: Yacht type + friendly_id: yacht_type + values: + - yacht_type__explorer + - yacht_type__motor + - yacht_type__sailing + - yacht_type__sport +- id: 2758 + name: Recommended age group + friendly_id: recommended_age_group + values: + - recommended_age_group__0_1_year + - recommended_age_group__1_3_years + - recommended_age_group__3_5_years + - recommended_age_group__6_8_years + - recommended_age_group__9_12_years + - recommended_age_group__13_18_years + - recommended_age_group__1_year_or_older + - recommended_age_group__2_years_or_older + - recommended_age_group__3_years_or_older + - recommended_age_group__4_years_or_older + - recommended_age_group__5_years_or_older + - recommended_age_group__6_years_or_older + - recommended_age_group__7_years_or_older + - recommended_age_group__8_years_or_older + - recommended_age_group__9_years_or_older + - recommended_age_group__10_years_or_older + - recommended_age_group__12_years_or_older + - recommended_age_group__18_years_or_older + - recommended_age_group__babies + - recommended_age_group__toddlers + - recommended_age_group__preschoolers + - recommended_age_group__school_age_children + - recommended_age_group__teens + - recommended_age_group__adults + - recommended_age_group__all_ages + - recommended_age_group__other +- id: 2759 + name: Board game mechanics + friendly_id: board_game_mechanics + values: + - board_game_mechanics__adventure_travel + - board_game_mechanics__area_control + - board_game_mechanics__card_exchange + - board_game_mechanics__cooperative + - board_game_mechanics__deck_building + - board_game_mechanics__deduction_detectives + - board_game_mechanics__economic_simulation + - board_game_mechanics__educational + - board_game_mechanics__escape_game + - board_game_mechanics__family + - board_game_mechanics__hidden_role + - board_game_mechanics__legacy + - board_game_mechanics__party + - board_game_mechanics__quiz_trivia + - board_game_mechanics__race + - board_game_mechanics__role_playing + - board_game_mechanics__strategy + - board_game_mechanics__tile_based + - board_game_mechanics__war_simulation + - board_game_mechanics__words + - board_game_mechanics__worker_placement + - board_game_mechanics__other +- id: 2760 + name: Gameplay skills + friendly_id: gameplay_skills + values: + - gameplay_skills__arithmetic + - gameplay_skills__concentration + - gameplay_skills__deduction + - gameplay_skills__dexterity + - gameplay_skills__drawing + - gameplay_skills__lateral_thinking + - gameplay_skills__learning + - gameplay_skills__matching + - gameplay_skills__memory + - gameplay_skills__negotiation + - gameplay_skills__pattern_recognition + - gameplay_skills__strategic_thinking + - gameplay_skills__tactical_decision_making + - gameplay_skills__other +- id: 2761 + name: Dice shape + friendly_id: dice_shape + values: + - dice_shape__tetrahedron_4_sides + - dice_shape__cube_6_sides + - dice_shape__octahedron_8_sides + - dice_shape__pentagonal_trapezohedron_10_sides + - dice_shape__dodecahedron_12_sides + - dice_shape__icosahedron_20_sides + - dice_shape__other +- id: 2762 + name: RPG genre + friendly_id: rpg_genre + values: + - rpg_genre__crime + - rpg_genre__dragons + - rpg_genre__lovecraftian + - rpg_genre__magic + - rpg_genre__medieval + - rpg_genre__military + - rpg_genre__mythology + - rpg_genre__space + - rpg_genre__steampunk + - rpg_genre__zombies +- id: 2763 + name: Electronic game genre + friendly_id: electronic_game_genre + values_from: video_game_genre +- id: 2764 + name: Playhouse design + friendly_id: playhouse_design + values: + - playhouse_design__floorstanding_playhouse + - playhouse_design__playhouse_on_poles + - playhouse_design__tree_house +- id: 2765 + name: Jumping surface material + friendly_id: jumping_surface_material + values: + - jumping_surface_material__nylon + - jumping_surface_material__polyester + - jumping_surface_material__polyethylene_pe + - jumping_surface_material__polypropylene_pp + - jumping_surface_material__synthetic +- id: 2766 + name: Trampoline design + friendly_id: trampoline_design + values: + - trampoline_design__springfree + - trampoline_design__coil_spring +- id: 2767 + name: Sprinkler shape + friendly_id: sprinkler_shape + values: + - sprinkler_shape__christmas_tree + - sprinkler_shape__cloud + - sprinkler_shape__conical + - sprinkler_shape__cube + - sprinkler_shape__cylinder + - sprinkler_shape__heart + - sprinkler_shape__hexagonal + - sprinkler_shape__octagonal + - sprinkler_shape__oval + - sprinkler_shape__rectangular + - sprinkler_shape__round + - sprinkler_shape__spheric + - sprinkler_shape__square + - sprinkler_shape__star + - sprinkler_shape__triangular + - sprinkler_shape__v_shaped +- id: 2768 + name: Difficulty level + friendly_id: difficulty_level + values: + - difficulty_level__easy + - difficulty_level__medium + - difficulty_level__hard + - difficulty_level__expert +- id: 2769 + name: Puzzle theme + friendly_id: puzzle_theme + values: + - puzzle_theme__aircraft + - puzzle_theme__animals + - puzzle_theme__architecture + - puzzle_theme__art + - puzzle_theme__ballet + - puzzle_theme__cartoons + - puzzle_theme__children + - puzzle_theme__christmas + - puzzle_theme__circus + - puzzle_theme__city + - puzzle_theme__comics + - puzzle_theme__dinosaurs + - puzzle_theme__education + - puzzle_theme__fairy + - puzzle_theme__fantasy + - puzzle_theme__farm + - puzzle_theme__fauna + - puzzle_theme__flags + - puzzle_theme__flora + - puzzle_theme__food_drinks + - puzzle_theme__history + - puzzle_theme__holidays + - puzzle_theme__humor + - puzzle_theme__insects + - puzzle_theme__landscape + - puzzle_theme__maps + - puzzle_theme__movies_tv + - puzzle_theme__music + - puzzle_theme__people + - puzzle_theme__professions + - puzzle_theme__science + - puzzle_theme__shapes + - puzzle_theme__ships + - puzzle_theme__space + - puzzle_theme__sports + - puzzle_theme__toys + - puzzle_theme__trains + - puzzle_theme__vehicles + - puzzle_theme__video_games + - puzzle_theme__other +- id: 2770 + name: Construction set theme + friendly_id: construction_set_theme + values: + - construction_set_theme__aircraft + - construction_set_theme__animals + - construction_set_theme__building + - construction_set_theme__castle + - construction_set_theme__construction_site + - construction_set_theme__pirates + - construction_set_theme__spacecraft + - construction_set_theme__vehicles + - construction_set_theme__watercraft + - construction_set_theme__other +- id: 2771 + name: Doll target gender + friendly_id: doll_target_gender + values_from: target_gender +- id: 2772 + name: Puppet theme + friendly_id: puppet_theme + values: + - puppet_theme__animal + - puppet_theme__fairytale + - puppet_theme__fantastic + - puppet_theme__human + - puppet_theme__insect +- id: 2773 + name: Puppet type + friendly_id: puppet_type + values: + - puppet_type__finger_puppet + - puppet_type__hand_puppet + - puppet_type__marionette + - puppet_type__rod_puppet + - puppet_type__ventriloquists_dummy + - puppet_type__shadow_puppet +- id: 2774 + name: Compatible play vehicle type + friendly_id: compatible_play_vehicle_type + values: + - compatible_play_vehicle_type__airplane + - compatible_play_vehicle_type__boat + - compatible_play_vehicle_type__car + - compatible_play_vehicle_type__construction_vehicle + - compatible_play_vehicle_type__helicopter + - compatible_play_vehicle_type__motorcycle + - compatible_play_vehicle_type__race_car_track_set + - compatible_play_vehicle_type__spacecraft + - compatible_play_vehicle_type__trains_train_set + - compatible_play_vehicle_type__truck +- id: 2775 + name: Riding toy propulsion type + friendly_id: riding_toy_propulsion_type + values: + - riding_toy_propulsion_type__battery_powered + - riding_toy_propulsion_type__electric + - riding_toy_propulsion_type__manual + - riding_toy_propulsion_type__pedal + - riding_toy_propulsion_type__push + - riding_toy_propulsion_type__tow +- id: 2776 + name: Instrument/Accessory finish + friendly_id: instrument_accessory_finish + values: + - instrument_accessory_finish__chrome + - instrument_accessory_finish__nickel + - instrument_accessory_finish__black + - instrument_accessory_finish__gold + - instrument_accessory_finish__brown + - instrument_accessory_finish__natural + - instrument_accessory_finish__reddish_brown + - instrument_accessory_finish__lacquered + - instrument_accessory_finish__plated + - instrument_accessory_finish__brass + - instrument_accessory_finish__gold_plated + - instrument_accessory_finish__pewter + - instrument_accessory_finish__pink_gold_plated + - instrument_accessory_finish__silver_plated + - instrument_accessory_finish__nickel_plated + - instrument_accessory_finish__unlacquered +- id: 2777 + name: Fabric + friendly_id: fabric + values: + - fabric__acrylic + - fabric__angora + - fabric__bamboo + - fabric__canvas + - fabric__cashmere + - fabric__corduroy + - fabric__cork + - fabric__cotton + - fabric__denim + - fabric__faux_fur + - fabric__faux_leather + - fabric__felt + - fabric__flannel + - fabric__fleece + - fabric__fur + - fabric__hemp + - fabric__jute + - fabric__latex + - fabric__leather + - fabric__linen + - fabric__lycra + - fabric__lyocell + - fabric__merino + - fabric__mesh + - fabric__modal + - fabric__mohair + - fabric__neoprene + - fabric__nylon + - fabric__plastic + - fabric__plush + - fabric__polyester + - fabric__rattan + - fabric__rubber + - fabric__satin + - fabric__sherpa + - fabric__silk + - fabric__suede + - fabric__synthetic + - fabric__terrycloth + - fabric__tweed + - fabric__twill + - fabric__velour + - fabric__velvet + - fabric__vinyl + - fabric__viscose + - fabric__wool + - fabric__other +- id: 2778 + name: Size + friendly_id: size + values: + - size__000 + - size__00 + - size__0 + - size__1 + - size__10 + - size__12 + - size__14 + - size__16 + - size__18 + - size__2 + - size__20 + - size__22 + - size__24 + - size__26 + - size__28 + - size__30 + - size__32 + - size__34 + - size__36 + - size__38 + - size__4 + - size__40 + - size__42 + - size__44 + - size__46 + - size__48 + - size__50 + - size__52 + - size__54 + - size__56 + - size__58 + - size__6 + - size__60 + - size__8 + - size__triple_extra_small_xxxs + - size__double_extra_small_xxs + - size__extra_small_xs + - size__small_s + - size__medium_m + - size__large_l + - size__extra_large_xl + - size__double_extra_large_xxl + - size__triple_extra_large_xxxl + - size__four_extra_large_4xl + - size__five_extra_large_5xl + - size__six_extra_large_6xl + - size__preemie + - size__newborn + - size__0_3_months + - size__3_6_months + - size__6_9_months + - size__9_12_months + - size__12_18_months + - size__18_24_months + - size__2_3_years + - size__3_4_years + - size__4_5_years + - size__5_6_years + - size__6_7_years + - size__7_8_years + - size__8_9_years +- id: 2779 + name: Clothing accessory material + friendly_id: clothing_accessory_material + values: + - clothing_accessory_material__burlap + - clothing_accessory_material__canvas + - clothing_accessory_material__cotton + - clothing_accessory_material__denim + - clothing_accessory_material__faux_fur + - clothing_accessory_material__faux_leather + - clothing_accessory_material__felt + - clothing_accessory_material__fleece + - clothing_accessory_material__foam + - clothing_accessory_material__leather + - clothing_accessory_material__linen + - clothing_accessory_material__mesh + - clothing_accessory_material__metal + - clothing_accessory_material__microfiber + - clothing_accessory_material__nylon + - clothing_accessory_material__plastic + - clothing_accessory_material__polyester + - clothing_accessory_material__polyurethane_pu + - clothing_accessory_material__polyvinyl_chloride_pvc + - clothing_accessory_material__rubber + - clothing_accessory_material__satin + - clothing_accessory_material__silicone + - clothing_accessory_material__silk + - clothing_accessory_material__synthetic + - clothing_accessory_material__tweed + - clothing_accessory_material__velvet + - clothing_accessory_material__vinyl + - clothing_accessory_material__wood + - clothing_accessory_material__wool +- id: 2780 + name: Handwear material + friendly_id: handwear_material + values: + - handwear_material__acrylic + - handwear_material__bamboo + - handwear_material__cotton + - handwear_material__elastomer + - handwear_material__ethylene_vinyl_acetate_eva + - handwear_material__faux_fur + - handwear_material__faux_leather + - handwear_material__fleece + - handwear_material__kevlar + - handwear_material__latex + - handwear_material__leather + - handwear_material__mesh + - handwear_material__microfiber + - handwear_material__neoprene + - handwear_material__nitrile + - handwear_material__nylon + - handwear_material__polyester + - handwear_material__polyethylene_pe + - handwear_material__polyurethane_pu + - handwear_material__polyvinyl_chloride_pvc + - handwear_material__satin + - handwear_material__silk + - handwear_material__spandex + - handwear_material__synthetic + - handwear_material__wool + - handwear_material__other +- id: 2781 + name: Jewelry material + friendly_id: jewelry_material + values: + - jewelry_material__acrylic + - jewelry_material__alcantara + - jewelry_material__aluminum + - jewelry_material__bakelite + - jewelry_material__brass + - jewelry_material__bronze + - jewelry_material__carbon_fiber + - jewelry_material__ceramic + - jewelry_material__chrome + - jewelry_material__copper + - jewelry_material__cordura + - jewelry_material__cork + - jewelry_material__diamond + - jewelry_material__duralumin + - jewelry_material__enamel + - jewelry_material__fabric + - jewelry_material__faux_leather + - jewelry_material__fiberglass + - jewelry_material__glass + - jewelry_material__gold + - jewelry_material__iron + - jewelry_material__leather + - jewelry_material__marble + - jewelry_material__metal + - jewelry_material__microfiber + - jewelry_material__nickel + - jewelry_material__nylon + - jewelry_material__palladium + - jewelry_material__plastic + - jewelry_material__platinum + - jewelry_material__porcelain + - jewelry_material__precious_resin + - jewelry_material__red_gold + - jewelry_material__resin + - jewelry_material__rose_gold + - jewelry_material__silver + - jewelry_material__sterling_silver + - jewelry_material__titanium + - jewelry_material__white_gold + - jewelry_material__wood + - jewelry_material__other +- id: 2782 + name: Decoration material + friendly_id: decoration_material + values: + - decoration_material__acrylic + - decoration_material__aluminum + - decoration_material__bamboo + - decoration_material__brass + - decoration_material__bronze + - decoration_material__capiz + - decoration_material__cardboard + - decoration_material__cast_iron + - decoration_material__ceramic + - decoration_material__chrome + - decoration_material__concrete + - decoration_material__copper + - decoration_material__cotton + - decoration_material__crystal + - decoration_material__fabric + - decoration_material__feathers + - decoration_material__felt + - decoration_material__glass + - decoration_material__iron + - decoration_material__leather + - decoration_material__marble + - decoration_material__medium_density_fiberboard_mdf + - decoration_material__melamine + - decoration_material__metal + - decoration_material__nylon + - decoration_material__paper + - decoration_material__papier_mch + - decoration_material__plastic + - decoration_material__polyester + - decoration_material__polypropylene_pp + - decoration_material__polyvinyl_chloride_pvc + - decoration_material__porcelain + - decoration_material__rattan + - decoration_material__resin + - decoration_material__rubber + - decoration_material__satin + - decoration_material__sequins + - decoration_material__silicone + - decoration_material__silk + - decoration_material__stainless_steel + - decoration_material__steel + - decoration_material__stone + - decoration_material__terracotta + - decoration_material__veneer + - decoration_material__vinyl + - decoration_material__wax + - decoration_material__wood + - decoration_material__wool + - decoration_material__zinc + - decoration_material__other +- id: 2783 + name: Footwear material + friendly_id: footwear_material + values: + - footwear_material__canvas + - footwear_material__cotton + - footwear_material__faux_fur + - footwear_material__faux_leather + - footwear_material__fleece + - footwear_material__leather + - footwear_material__linen + - footwear_material__mesh + - footwear_material__neoprene + - footwear_material__nylon + - footwear_material__plastic + - footwear_material__polyester + - footwear_material__polyvinyl_chloride_pvc + - footwear_material__rubber + - footwear_material__satin + - footwear_material__silk + - footwear_material__spandex + - footwear_material__suede + - footwear_material__synthetic + - footwear_material__thermoplastic_polyurethane_tpu + - footwear_material__wool + - footwear_material__other +- id: 2784 + name: Bag/Case material + friendly_id: bag_case_material + values: + - bag_case_material__acrylic + - bag_case_material__alcantara + - bag_case_material__aluminum + - bag_case_material__burlap + - bag_case_material__canvas + - bag_case_material__carbon_fiber + - bag_case_material__cordura + - bag_case_material__cotton + - bag_case_material__denim + - bag_case_material__ethylene_vinyl_acetate_eva + - bag_case_material__faux_leather + - bag_case_material__felt + - bag_case_material__fiberglass + - bag_case_material__leather + - bag_case_material__leatherette + - bag_case_material__linen + - bag_case_material__memory_foam + - bag_case_material__mesh + - bag_case_material__metal + - bag_case_material__microfiber + - bag_case_material__neoprene + - bag_case_material__nylon + - bag_case_material__plastic + - bag_case_material__polyester + - bag_case_material__polyvinyl_chloride_pvc + - bag_case_material__ripstop + - bag_case_material__synthetic + - bag_case_material__thermoplastic_polyurethane_tpu + - bag_case_material__tweed + - bag_case_material__velvet + - bag_case_material__vinyl + - bag_case_material__wood + - bag_case_material__other +- id: 2785 + name: Watch material + friendly_id: watch_material + values: + - watch_band_material__alcantara + - watch_band_material__canvas + - watch_band_material__faux_leather + - watch_band_material__leather + - watch_band_material__mesh + - watch_band_material__metal + - watch_band_material__microfiber + - watch_band_material__nylon + - watch_band_material__plastic + - watch_band_material__polyamide_pa + - watch_band_material__polycarbonate_pc + - watch_band_material__polyester + - watch_band_material__polyurethane_pu + - watch_band_material__rubber + - watch_band_material__silicone + - watch_band_material__stainless_steel + - watch_band_material__thermoplastic_elastomer_tpe + - watch_band_material__thermoplastic_polyurethane_tpu + - watch_band_material__titanium + - watch_band_material__vinyl + - watch_band_material__other +- id: 2786 + name: Furniture/Fixture material + friendly_id: furniture_fixture_material + values: + - furniture_fixture_material__acrylic + - furniture_fixture_material__aluminum + - furniture_fixture_material__bamboo + - furniture_fixture_material__beech_wood + - furniture_fixture_material__brass + - furniture_fixture_material__cedar_wood + - furniture_fixture_material__ceramic + - furniture_fixture_material__cherry_wood + - furniture_fixture_material__concrete + - furniture_fixture_material__fabric + - furniture_fixture_material__faux_leather + - furniture_fixture_material__fiber_reinforced_plastic_frp + - furniture_fixture_material__fiberglass + - furniture_fixture_material__foam + - furniture_fixture_material__glass + - furniture_fixture_material__granite + - furniture_fixture_material__high_density_fiberboard_hdf + - furniture_fixture_material__iron + - furniture_fixture_material__leather + - furniture_fixture_material__maple_wood + - furniture_fixture_material__marble + - furniture_fixture_material__medium_density_fiberboard_mdf + - furniture_fixture_material__melamine + - furniture_fixture_material__metal + - furniture_fixture_material__oak_wood + - furniture_fixture_material__particle_board + - furniture_fixture_material__pine_wood + - furniture_fixture_material__plastic + - furniture_fixture_material__plywood + - furniture_fixture_material__polyurethane_pu + - furniture_fixture_material__polyvinyl_chloride_pvc + - furniture_fixture_material__rattan + - furniture_fixture_material__resin + - furniture_fixture_material__stainless_steel + - furniture_fixture_material__steel + - furniture_fixture_material__teak_wood + - furniture_fixture_material__walnut_wood + - furniture_fixture_material__wicker + - furniture_fixture_material__wood + - furniture_fixture_material__wood_plastic_composite_wpc + - furniture_fixture_material__other +- id: 2787 + name: Rug/Mat material + friendly_id: rug_mat_material + values: + - rug_mat_material__bamboo + - rug_mat_material__coir + - rug_mat_material__cotton + - rug_mat_material__jute + - rug_mat_material__leather + - rug_mat_material__microfiber + - rug_mat_material__nylon + - rug_mat_material__polycarbonate_pc + - rug_mat_material__polyester + - rug_mat_material__polypropylene_pp + - rug_mat_material__polyvinyl_chloride_pvc + - rug_mat_material__rubber + - rug_mat_material__seagrass + - rug_mat_material__silk + - rug_mat_material__sisal + - rug_mat_material__wool +- id: 2788 + name: Mat/Rug shape + friendly_id: mat_rug_shape + values: + - mat_rug_shape__round + - mat_rug_shape__oval + - mat_rug_shape__rectangular + - mat_rug_shape__runner + - mat_rug_shape__semicircular + - mat_rug_shape__square + - mat_rug_shape__other +- id: 2789 + name: Mount material + friendly_id: mount_material + values: + - mount_material__aluminum + - mount_material__brass + - mount_material__ceramic + - mount_material__chrome + - mount_material__glass + - mount_material__leather + - mount_material__metal + - mount_material__nylon + - mount_material__plastic + - mount_material__polyester + - mount_material__polypropylene_pp + - mount_material__rubber + - mount_material__stainless_steel + - mount_material__steel + - mount_material__vinyl + - mount_material__wood +- id: 2790 + name: Hardware material + friendly_id: hardware_material + values: + - hardware_material__aluminum + - hardware_material__brass + - hardware_material__bronze + - hardware_material__carbon_steel + - hardware_material__cast_iron + - hardware_material__ceramic + - hardware_material__chrome_plated + - hardware_material__copper + - hardware_material__galvanized_iron + - hardware_material__iron + - hardware_material__metal + - hardware_material__nickel_plated + - hardware_material__nylon + - hardware_material__plastic + - hardware_material__polyvinyl_chloride_pvc + - hardware_material__stainless_steel + - hardware_material__steel + - hardware_material__titanium + - hardware_material__vinyl + - hardware_material__zinc +- id: 2791 + name: Shower curtain mounting type + friendly_id: shower_curtain_mounting_type + values: + - shower_curtain_mounting_type__grommet + - shower_curtain_mounting_type__ring + - shower_curtain_mounting_type__hidden_tab + - shower_curtain_mounting_type__rod_pocket + - shower_curtain_mounting_type__hanging_hook + - shower_curtain_mounting_type__other +- id: 2792 + name: Brush material + friendly_id: brush_material + values: + - brush_material__bamboo + - brush_material__carbon + - brush_material__ceramic + - brush_material__fleece + - brush_material__graphite + - brush_material__latex + - brush_material__leather + - brush_material__metal + - brush_material__nylon + - brush_material__plastic + - brush_material__rubber + - brush_material__silicone + - brush_material__steel + - brush_material__wood +- id: 2793 + name: Motion sensor type + friendly_id: motion_sensor_type + values: + - motion_sensor_type__infrared + - motion_sensor_type__laser + - motion_sensor_type__microwave + - motion_sensor_type__photocell + - motion_sensor_type__pir + - motion_sensor_type__ultrasonic +- id: 2794 + name: Mounting hardware + friendly_id: mounting_hardware + values: + - mounting_hardware__free_standing + - mounting_hardware__handheld + - mounting_hardware__screws + - mounting_hardware__suction_cup + - mounting_hardware__other + - mounting_hardware__hanger + - mounting_hardware__hook +- id: 2795 + name: Monitor mounting type + friendly_id: monitor_mounting_type + values: + - monitor_mounting_type__armband + - monitor_mounting_type__free_standing + - monitor_mounting_type__wall + - monitor_mounting_type__other +- id: 2796 + name: Artwork frame material + friendly_id: artwork_frame_material + values: + - artwork_frame_material__aluminum + - artwork_frame_material__composite + - artwork_frame_material__gold + - artwork_frame_material__gold_plated + - artwork_frame_material__metal + - artwork_frame_material__plastic + - artwork_frame_material__silver + - artwork_frame_material__silver_plated + - artwork_frame_material__wood +- id: 2797 + name: Upholstery material + friendly_id: upholstery_material + values: + - upholstery_material__acrylic + - upholstery_material__canvas + - upholstery_material__cotton + - upholstery_material__faux_leather + - upholstery_material__leather + - upholstery_material__leatherette + - upholstery_material__linen + - upholstery_material__microfiber + - upholstery_material__nylon + - upholstery_material__polyester + - upholstery_material__polyurethane_pu + - upholstery_material__satin + - upholstery_material__suede + - upholstery_material__velvet + - upholstery_material__vinyl + - upholstery_material__wool +- id: 2798 + name: Basket material + friendly_id: basket_material + values: + - basket_material__fabric + - basket_material__faux_leather + - basket_material__leather + - basket_material__metal + - basket_material__plastic + - basket_material__polyester + - basket_material__rattan + - basket_material__wicker +- id: 2799 + name: Door mat base material + friendly_id: door_mat_base_material + values: + - mat_base_material__cork + - mat_base_material__elastomer + - mat_base_material__ethylene_vinyl_acetate_eva + - mat_base_material__jute + - mat_base_material__latex + - mat_base_material__memory_foam + - mat_base_material__nylon + - mat_base_material__polyethylene_pe + - mat_base_material__polyvinyl_chloride_pvc + - mat_base_material__reed + - mat_base_material__rubber + - mat_base_material__spandex + - mat_base_material__synthetic_rubber + - mat_base_material__thermoplastic_elastomer_tpe + - mat_base_material__vinyl +- id: 2800 + name: Door mat surface material + friendly_id: door_mat_surface_material + values_from: rug_mat_material +- id: 2801 + name: Candle shape + friendly_id: candle_shape + values: + - candle_shape__round + - candle_shape__cylindrical + - candle_shape__square + - candle_shape__egg + - candle_shape__ellipse + - candle_shape__other +- id: 2802 + name: Post material + friendly_id: post_material + values: + - pole_post_material__aluminum + - pole_post_material__fiberglass + - pole_post_material__iron + - pole_post_material__plastic + - pole_post_material__stainless_steel + - pole_post_material__steel + - pole_post_material__wood +- id: 2803 + name: Rug material + friendly_id: rug_material + values_from: rug_mat_material +- id: 2804 + name: Rug shape + friendly_id: rug_shape + values_from: mat_rug_shape +- id: 2805 + name: Tree stand material + friendly_id: tree_stand_material + values: + - tree_stand_material__concrete + - tree_stand_material__metal + - tree_stand_material__plastic +- id: 2806 + name: Throw pillow shape + friendly_id: throw_pillow_shape + values_from: pillow_shape +- id: 2807 + name: Window treatment material + friendly_id: window_treatment_material + values: + - window_treatment_material__aluminum + - window_treatment_material__fiberglass + - window_treatment_material__paper + - window_treatment_material__plastic + - window_treatment_material__polyester + - window_treatment_material__polyvinyl_chloride_pvc + - window_treatment_material__wood + - window_treatment_material__wood_plastic_composite_wpc +- id: 2808 + name: Blind/Shade style + friendly_id: blind_shade_style + values: + - blind_shade_style__vertical_blind + - blind_shade_style__bracket_roller_blind + - blind_shade_style__cassette_roller_blind + - blind_shade_style__roman_blind + - blind_shade_style__venetian_blind + - blind_shade_style__roller_blind + - blind_shade_style__day_night_roller_blind + - blind_shade_style__pleated_shades +- id: 2809 + name: Disposable bag material + friendly_id: disposable_bag_material + values: + - disposable_reusable_item_material__biodegradable_materials + - disposable_reusable_item_material__paper + - disposable_reusable_item_material__plastic + - disposable_reusable_item_material__wood +- id: 2810 + name: Barware material + friendly_id: barware_material + values: + - barware_material__acrylic + - barware_material__aluminum + - barware_material__bamboo + - barware_material__cast_iron + - barware_material__ceramic + - barware_material__cork + - barware_material__crystal + - barware_material__faux_leather + - barware_material__glass + - barware_material__granite + - barware_material__marble + - barware_material__metal + - barware_material__plastic + - barware_material__polypropylene_pp + - barware_material__polyvinyl_chloride_pvc + - barware_material__rubber + - barware_material__silicone + - barware_material__stainless_steel + - barware_material__steel + - barware_material__wood + - barware_material__zinc_alloy + - barware_material__other +- id: 2811 + name: Cookware/Bakeware material + friendly_id: cookware_bakeware_material + values: + - cookware_bakeware_material__aluminum + - cookware_bakeware_material__carbon_steel + - cookware_bakeware_material__cast_iron + - cookware_bakeware_material__ceramic + - cookware_bakeware_material__copper + - cookware_bakeware_material__enamel + - cookware_bakeware_material__glass + - cookware_bakeware_material__metal + - cookware_bakeware_material__silicone + - cookware_bakeware_material__stainless_steel + - cookware_bakeware_material__teflon +- id: 2812 + name: Baking sheet material + friendly_id: baking_sheet_material + values: + - baking_sheet_material__aluminum + - baking_sheet_material__carbon_steel + - baking_sheet_material__silicone + - baking_sheet_material__stainless_steel + - baking_sheet_material__teflon +- id: 2813 + name: Bakeware shape + friendly_id: bakeware_shape + values: + - bakeware_shape__rectangular + - bakeware_shape__square + - bakeware_shape__round + - bakeware_shape__bundt + - bakeware_shape__springform + - bakeware_shape__other +- id: 2814 + name: Food bag material + friendly_id: food_bag_material + values: + - food_bag_material__paper + - food_bag_material__plastic + - food_bag_material__silicone +- id: 2815 + name: Food storage material + friendly_id: food_storage_material + values: + - food_storage_material__acrylic + - food_storage_material__aluminum + - food_storage_material__bamboo + - food_storage_material__beech_wood + - food_storage_material__ceramic + - food_storage_material__clay + - food_storage_material__glass + - food_storage_material__metal + - food_storage_material__plastic + - food_storage_material__rattan + - food_storage_material__stainless_steel + - food_storage_material__wood +- id: 2816 + name: Filter material + friendly_id: filter_material + values: + - filter_material__ceramic + - filter_material__cotton + - filter_material__hemp + - filter_material__metal + - filter_material__paper + - filter_material__plastic + - filter_material__porcelain + - filter_material__silicone + - filter_material__stainless_steel + - filter_material__steel +- id: 2817 + name: Tool/Utensil material + friendly_id: tool_utensil_material + values: + - tool_utensil_material__acacia_wood + - tool_utensil_material__acrylic + - tool_utensil_material__alder_wood + - tool_utensil_material__aluminum + - tool_utensil_material__bamboo + - tool_utensil_material__beech_wood + - tool_utensil_material__brass + - tool_utensil_material__cast_iron + - tool_utensil_material__ceramic + - tool_utensil_material__cotton + - tool_utensil_material__glass + - tool_utensil_material__granite + - tool_utensil_material__iron + - tool_utensil_material__marble + - tool_utensil_material__melamine + - tool_utensil_material__metal + - tool_utensil_material__nylon + - tool_utensil_material__olive_wood + - tool_utensil_material__plastic + - tool_utensil_material__polyethylene_pe + - tool_utensil_material__polypropylene_pp + - tool_utensil_material__polyvinyl_chloride_pvc + - tool_utensil_material__porcelain + - tool_utensil_material__rubber + - tool_utensil_material__silicone + - tool_utensil_material__stainless_steel + - tool_utensil_material__steel + - tool_utensil_material__synthetic + - tool_utensil_material__teak_wood + - tool_utensil_material__wood + - tool_utensil_material__other +- id: 2818 + name: Edge type + friendly_id: edge_type + values: + - edge_type__combination + - edge_type__granton + - edge_type__hollow + - edge_type__micro_serrated + - edge_type__notched + - edge_type__tapered + - edge_type__serrated + - edge_type__straight +- id: 2819 + name: Tableware material + friendly_id: tableware_material + values: + - tableware_material__bamboo + - tableware_material__bone_china + - tableware_material__brass + - tableware_material__cast_iron + - tableware_material__ceramic + - tableware_material__concrete + - tableware_material__earthenware + - tableware_material__glass + - tableware_material__marble + - tableware_material__melamine + - tableware_material__metal + - tableware_material__plastic + - tableware_material__polyvinyl_chloride_pvc + - tableware_material__porcelain + - tableware_material__silicone + - tableware_material__stainless_steel + - tableware_material__steel + - tableware_material__stone + - tableware_material__stoneware + - tableware_material__synthetic + - tableware_material__teak_wood + - tableware_material__wood + - tableware_material__zamak + - tableware_material__other +- id: 2820 + name: Drinkware material + friendly_id: drinkware_material + values: + - drinkware_material__ceramic + - drinkware_material__glass + - drinkware_material__plastic + - drinkware_material__stainless_steel +- id: 2821 + name: Flatware material + friendly_id: flatware_material + values: + - flatware_material__bamboo + - flatware_material__beech_wood + - flatware_material__ceramic + - flatware_material__glass + - flatware_material__gold + - flatware_material__gold_plated + - flatware_material__melamine + - flatware_material__nylon + - flatware_material__plastic + - flatware_material__polyethylene_pe + - flatware_material__polypropylene_pp + - flatware_material__polyvinyl_chloride_pvc + - flatware_material__porcelain + - flatware_material__silicone + - flatware_material__silver + - flatware_material__silver_plated + - flatware_material__stainless_steel + - flatware_material__steel + - flatware_material__synthetic + - flatware_material__thermoplastic_elastomer_tpe + - flatware_material__thermoplastic_polyurethane_tpu + - flatware_material__wood + - flatware_material__other +- id: 2822 + name: Plant support material + friendly_id: plant_support_material + values: + - plant_support_material__bamboo + - plant_support_material__ceramic + - plant_support_material__coir + - plant_support_material__concrete + - plant_support_material__fiberglass + - plant_support_material__glass + - plant_support_material__metal + - plant_support_material__plastic + - plant_support_material__resin + - plant_support_material__stone + - plant_support_material__terracotta + - plant_support_material__wood +- id: 2823 + name: Awning design + friendly_id: awning_design + values: + - awning_design__curved + - awning_design__flat +- id: 2824 + name: Surface texture + friendly_id: surface_texture + values: + - surface_texture__assorted + - surface_texture__dotted + - surface_texture__ribbed + - surface_texture__rugged + - surface_texture__smooth + - surface_texture__textured +- id: 2825 + name: Heat source + friendly_id: heat_source + values: + - heat_source__ac_powered + - heat_source__battery_powered + - heat_source__chemical + - heat_source__hot_water + - heat_source__infrared + - heat_source__microwavable + - heat_source__thermal_gel + - heat_source__usb +- id: 2826 + name: Medical tape material + friendly_id: medical_tape_material + values: + - medical_tape_material__cotton + - medical_tape_material__hydrogel + - medical_tape_material__latex + - medical_tape_material__plastic + - medical_tape_material__polyamide_pa + - medical_tape_material__polyester + - medical_tape_material__polyurethane_pu + - medical_tape_material__silicone + - medical_tape_material__synthetic + - medical_tape_material__viscose +- id: 2827 + name: Food supplement form + friendly_id: food_supplement_form + values: + - medicine_supplement_form__ampoule + - medicine_supplement_form__caplet + - medicine_supplement_form__capsules + - medicine_supplement_form__chewable_tablets + - medicine_supplement_form__drops + - medicine_supplement_form__effervescent_tablets + - medicine_supplement_form__gel + - medicine_supplement_form__granules + - medicine_supplement_form__liquid + - medicine_supplement_form__lozenges + - medicine_supplement_form__oil + - medicine_supplement_form__pill + - medicine_supplement_form__powder + - medicine_supplement_form__softgel + - medicine_supplement_form__spray + - medicine_supplement_form__syrup + - medicine_supplement_form__tablets + - medicine_supplement_form__other +- id: 2828 + name: Hearing aid material + friendly_id: hearing_aid_material + values: + - hearing_aid_material__plastic + - hearing_aid_material__silicone +- id: 2829 + name: Medicine/Drug form + friendly_id: medicine_drug_form + values_from: food_supplement_form +- id: 2830 + name: Support/Brace material + friendly_id: support_brace_material + values: + - support_brace_material__fabric + - support_brace_material__foam + - support_brace_material__neoprene + - support_brace_material__silicone +- id: 2831 + name: Suitable for precious material + friendly_id: suitable_for_precious_material + values: + - suitable_for_precious_material__diamond + - suitable_for_precious_material__gemstone + - suitable_for_precious_material__gold + - suitable_for_precious_material__hard_gemstone + - suitable_for_precious_material__metal + - suitable_for_precious_material__platinum + - suitable_for_precious_material__silver + - suitable_for_precious_material__soft_gemstone +- id: 2832 + name: File shape + friendly_id: file_shape + values: + - file_shape__rectangular + - file_shape__oval + - file_shape__contoured + - file_shape__other +- id: 2833 + name: Eyelash material + friendly_id: eyelash_material + values: + - eyelash_material__silk + - eyelash_material__synthetic +- id: 2834 + name: Polish dry form + friendly_id: polish_dry_form + values: + - polish_dry_form__oil_based + - polish_dry_form__water_based + - polish_dry_form__solvent_based + - polish_dry_form__silicone_based + - polish_dry_form__other +- id: 2836 + name: Candle material + friendly_id: candle_material + values: + - candle_material__beeswax + - candle_material__paraffin_wax + - candle_material__soy_wax +- id: 2837 + name: Ear car application method + friendly_id: ear_car_application_method + values: + - ear_car_application_method__dropper + - ear_car_application_method__nozzle +- id: 2838 + name: Stone material + friendly_id: stone_material + values: + - stone_material__basalt + - stone_material__himalayan_salt_stone + - stone_material__jade + - stone_material__marble +- id: 2839 + name: Massage stone texture + friendly_id: massage_stone_texture + values: + - massage_stone_texture__smooth + - massage_stone_texture__rough +- id: 2840 + name: Stimulator tip shape + friendly_id: stimulator_tip_shape + values: + - stimulator_tip_shape__tapered + - stimulator_tip_shape__conical +- id: 2841 + name: Eyewear lens material + friendly_id: eyewear_lens_material + values: + - eyewear_lens_material__cr_39 + - eyewear_lens_material__glass + - eyewear_lens_material__high_index_plastic + - eyewear_lens_material__nylon + - eyewear_lens_material__plastic + - eyewear_lens_material__polycarbonate_pc + - eyewear_lens_material__thermoplastic_polyurethane_tpu + - eyewear_lens_material__trivex +- id: 2842 + name: Eyewear frame material + friendly_id: eyewear_frame_material + values: + - eyewear_frame_material__acetate + - eyewear_frame_material__bamboo + - eyewear_frame_material__carbon_fiber + - eyewear_frame_material__metal + - eyewear_frame_material__plastic + - eyewear_frame_material__wood +- id: 2843 + name: Gear material + friendly_id: gear_material + values: + - gear_material__acrylic + - gear_material__acrylonitrile_butadiene_styrene_abs + - gear_material__aluminum + - gear_material__canvas + - gear_material__carbon_fiber + - gear_material__ceramic + - gear_material__cotton + - gear_material__denim + - gear_material__elastane + - gear_material__faux_fur + - gear_material__faux_leather + - gear_material__fiberglass + - gear_material__foam + - gear_material__fur + - gear_material__jute + - gear_material__kevlar + - gear_material__latex + - gear_material__leather + - gear_material__linen + - gear_material__lyocell + - gear_material__metal + - gear_material__microfiber + - gear_material__nylon + - gear_material__paper + - gear_material__plastic + - gear_material__polyamide_pa + - gear_material__polyethylene_pe + - gear_material__polypropylene_pp + - gear_material__polyurethane_pu + - gear_material__polyvinyl_chloride_pvc + - gear_material__rope + - gear_material__rubber + - gear_material__silk + - gear_material__spandex + - gear_material__steel + - gear_material__synthetic + - gear_material__tarpaulin + - gear_material__titanium + - gear_material__vinyl + - gear_material__wool + - gear_material__other +- id: 2844 + name: Ball material + friendly_id: ball_material + values: + - ball_material__acrylic + - ball_material__ceramic + - ball_material__cork + - ball_material__cotton + - ball_material__ethylene_vinyl_acetate_eva + - ball_material__faux_leather + - ball_material__foam + - ball_material__latex + - ball_material__leather + - ball_material__microfiber + - ball_material__neoprene + - ball_material__nylon + - ball_material__plastic + - ball_material__polyester + - ball_material__polyurethane_pu + - ball_material__polyvinyl_chloride_pvc + - ball_material__resin + - ball_material__rubber + - ball_material__silicone + - ball_material__synthetic + - ball_material__thermoplastic_polyurethane_tpu + - ball_material__vinyl +- id: 2845 + name: Bat material + friendly_id: bat_material + values: + - bat_material__aluminum + - bat_material__carbon_fiber + - bat_material__composite + - bat_material__metal + - bat_material__wood +- id: 2846 + name: Basketball equipment included + friendly_id: basketball_equipment_included + values: + - basketball_equipment_included__basketball_ball + - basketball_equipment_included__hoop + - basketball_equipment_included__net + - basketball_equipment_included__post +- id: 2847 + name: Punching/Training bag material + friendly_id: punching_training_bag_material + values: + - punching_training_bag_material__canvas + - punching_training_bag_material__fabric + - punching_training_bag_material__foam + - punching_training_bag_material__leather + - punching_training_bag_material__rubber + - punching_training_bag_material__sand + - punching_training_bag_material__sawdust + - punching_training_bag_material__vinyl +- id: 2848 + name: Net material + friendly_id: net_material + values: + - net_material__canvas + - net_material__cotton + - net_material__faux_leather + - net_material__leather + - net_material__nylon + - net_material__plastic + - net_material__polyester + - net_material__polyethylene_pe + - net_material__polypropylene_pp + - net_material__steel + - net_material__vinyl +- id: 2849 + name: Cricket equipment included + friendly_id: cricket_equipment_included + values: + - cricket_equipment_included__abdominal_guard + - cricket_equipment_included__bails + - cricket_equipment_included__cricket_ball + - cricket_equipment_included__cricket_bat + - cricket_equipment_included__gloves + - cricket_equipment_included__helmet + - cricket_equipment_included__kit_bag + - cricket_equipment_included__pads + - cricket_equipment_included__stumps + - cricket_equipment_included__thigh_guard +- id: 2850 + name: Stick material + friendly_id: stick_material + values: + - stick_material__aluminum + - stick_material__carbon + - stick_material__carbon_fiber + - stick_material__fiberglass + - stick_material__kevlar + - stick_material__plastic + - stick_material__titanium + - stick_material__wood +- id: 2851 + name: Lacrosse equipment included + friendly_id: lacrosse_equipment_included + values: + - lacrosse_equipment_included__arm_pads + - lacrosse_equipment_included__athletic_cup + - lacrosse_equipment_included__cleats + - lacrosse_equipment_included__gloves + - lacrosse_equipment_included__helmet + - lacrosse_equipment_included__lacrosse_ball + - lacrosse_equipment_included__lacrosse_stick + - lacrosse_equipment_included__mouthguard + - lacrosse_equipment_included__rib_pads + - lacrosse_equipment_included__shoulder_pads +- id: 2852 + name: Hockey equipment included + friendly_id: hockey_equipment_included + values: + - hockey_equipment_included__athletic_cup + - hockey_equipment_included__chest_protector + - hockey_equipment_included__goalie_blocker + - hockey_equipment_included__goalie_catcher + - hockey_equipment_included__goalie_mask + - hockey_equipment_included__skates + - hockey_equipment_included__stick + - hockey_equipment_included__goalie_pads +- id: 2853 + name: Exercise mat material + friendly_id: exercise_mat_material + values_from: door_mat_base_material +- id: 2854 + name: Racket material + friendly_id: racket_material + values: + - racket_material__aluminum + - racket_material__carbon + - racket_material__carbon_fiber + - racket_material__fiberglass + - racket_material__graphite + - racket_material__kevlar + - racket_material__metal + - racket_material__nylon + - racket_material__plastic + - racket_material__polyurethane_pu + - racket_material__rubber + - racket_material__thermoplastic_elastomer_tpe + - racket_material__titanium + - racket_material__wood +- id: 2855 + name: Net mounting type + friendly_id: net_mounting_type + values: + - net_mounting_type__c_clamp + - net_mounting_type__clip_on + - net_mounting_type__i_bolt + - net_mounting_type__stand_mounted + - net_mounting_type__tripod_stand + - net_mounting_type__other +- id: 2856 + name: Racket string design + friendly_id: racket_string_design + values: + - racket_string_design__mono_filament + - racket_string_design__multi_filament +- id: 2857 + name: Racket string material + friendly_id: racket_string_material + values: + - racket_string_material__kevlar + - racket_string_material__nylon + - racket_string_material__polyamide_pa + - racket_string_material__polyester + - racket_string_material__polyolefin + - racket_string_material__polyurethane_pu + - racket_string_material__vectran +- id: 2858 + name: Exercise equipment material + friendly_id: exercise_equipment_material + values: + - exercise_equipment_material__aluminum + - exercise_equipment_material__foam + - exercise_equipment_material__high_density_polyethylene_hdpe + - exercise_equipment_material__nylon + - exercise_equipment_material__polyethylene_pe + - exercise_equipment_material__polypropylene_pp + - exercise_equipment_material__polyvinyl_chloride_pvc + - exercise_equipment_material__rubber + - exercise_equipment_material__silicone + - exercise_equipment_material__steel + - exercise_equipment_material__synthetic +- id: 2859 + name: Exercise equipment included + friendly_id: exercise_equipment_included + values: + - exercise_equipment_included__exercise_guide + - exercise_equipment_included__handle + - exercise_equipment_included__pump + - exercise_equipment_included__barbell + - exercise_equipment_included__dumbbells + - exercise_equipment_included__elliptical_machine + - exercise_equipment_included__exercise_ball + - exercise_equipment_included__exercise_bike + - exercise_equipment_included__jump_rope + - exercise_equipment_included__resistance_bands + - exercise_equipment_included__treadmill + - exercise_equipment_included__weight_bench + - exercise_equipment_included__yoga_mat +- id: 2860 + name: Bar mounting type + friendly_id: bar_mounting_type + values: + - bar_mounting_type__wall + - bar_mounting_type__ceiling + - bar_mounting_type__door + - bar_mounting_type__joist + - bar_mounting_type__other +- id: 2861 + name: Collar lock type + friendly_id: collar_lock_type + values: + - collar_lock_type__spinlock + - collar_lock_type__spring_clamp +- id: 2862 + name: Ping pong equipment included + friendly_id: ping_pong_equipment_included + values: + - ping_pong_equipment_included__net + - ping_pong_equipment_included__posts + - ping_pong_equipment_included__ping_pong_balls + - ping_pong_equipment_included__ping_pong_paddles +- id: 2863 + name: Watercraft propulsion type + friendly_id: watercraft_propulsion_type + values: + - watercraft_propulsion_type__manual + - watercraft_propulsion_type__motorized +- id: 2864 + name: Diving/Snorkeling equipment included + friendly_id: diving_snorkeling_equipment_included + values: + - diving_snorkeling_equipment_included__dive_bag + - diving_snorkeling_equipment_included__dive_computer + - diving_snorkeling_equipment_included__dive_knife + - diving_snorkeling_equipment_included__fins + - diving_snorkeling_equipment_included__mask + - diving_snorkeling_equipment_included__snorkel + - diving_snorkeling_equipment_included__wetsuit +- id: 2865 + name: Fin material + friendly_id: fin_material + values: + - fin_material__neoprene + - fin_material__plastic + - fin_material__polypropylene_pp + - fin_material__rubber + - fin_material__silicone +- id: 2866 + name: Diving regulator style + friendly_id: diving_regulator_style + values: + - diving_regulator_style__balanced_piston + - diving_regulator_style__diaphragm + - diving_regulator_style__unbalanced_piston +- id: 2867 + name: Snorkel shape + friendly_id: snorkel_shape + values: + - snorkel_shape__j_shaped + - snorkel_shape__contoured + - snorkel_shape__flexible + - snorkel_shape__other +- id: 2868 + name: Ski construction + friendly_id: ski_construction + values: + - ski_construction__cap + - ski_construction__hybrid_cap + - ski_construction__partial_cap + - ski_construction__sidewall +- id: 2869 + name: Windsurfing board style + friendly_id: windsurfing_board_style + values: + - windsurfing_board_style__formula + - windsurfing_board_style__freeride + - windsurfing_board_style__freestyle + - windsurfing_board_style__slalom + - windsurfing_board_style__wave +- id: 2870 + name: Hunting/Survival knife design + friendly_id: hunting_survival_knife_design + values: + - hunting_survival_knife_design__clip_point + - hunting_survival_knife_design__drop_point + - hunting_survival_knife_design__needle_point + - hunting_survival_knife_design__pen + - hunting_survival_knife_design__sheepsfoot + - hunting_survival_knife_design__spey_point + - hunting_survival_knife_design__spear_point + - hunting_survival_knife_design__tanto_point + - hunting_survival_knife_design__wharncliffe + - hunting_survival_knife_design__dagger +- id: 2871 + name: Compass style + friendly_id: compass_style + values: + - compass_style__hand_compass + - compass_style__car_compass + - compass_style__dive_compass +- id: 2872 + name: Carabiner shape + friendly_id: carabiner_shape + values: + - carabiner_shape__pear + - carabiner_shape__hms + - carabiner_shape__d_shaped + - carabiner_shape__offset_d + - carabiner_shape__oval + - carabiner_shape__rectangle + - carabiner_shape__triangle + - carabiner_shape__s_shaped + - carabiner_shape__other +- id: 2873 + name: Crampon attachment type + friendly_id: crampon_attachment_type + values: + - crampon_attachment_type__hybrid + - crampon_attachment_type__step_in + - crampon_attachment_type__strap_on +- id: 2874 + name: Child seat placement + friendly_id: child_seat_placement + values: + - child_seat_placement__front + - child_seat_placement__rear +- id: 2875 + name: Saddle base material + friendly_id: saddle_base_material + values: + - saddle_material__carbon_fiber + - saddle_material__foam + - saddle_material__leather + - saddle_material__metal + - saddle_material__microfiber + - saddle_material__nylon + - saddle_material__plastic + - saddle_material__polypropylene_pp + - saddle_material__rubber + - saddle_material__steel + - saddle_material__titanium + - saddle_material__vinyl +- id: 2876 + name: Saddle seat material + friendly_id: saddle_seat_material + values_from: saddle_base_material +- id: 2877 + name: Tricycle design + friendly_id: tricycle_design + values: + - tricycle_design__upright + - tricycle_design__recumbent +- id: 2878 + name: Tricycle propulsion type + friendly_id: tricycle_propulsion_type + values: + - tricycle_propulsion_type__rear_drive + - tricycle_propulsion_type__front_drive + - tricycle_propulsion_type__push +- id: 2879 + name: Horse grooming accessories included + friendly_id: horse_grooming_accessories_included + values: + - horse_grooming_accessories_included__blades + - horse_grooming_accessories_included__carrying_case + - horse_grooming_accessories_included__cleaning_brush + - horse_grooming_accessories_included__lubricating_oil +- id: 2880 + name: Fishing wire material + friendly_id: fishing_wire_material + values: + - fishing_wire_material__fluorocarbon + - fishing_wire_material__nylon + - fishing_wire_material__polyethylene_pe + - fishing_wire_material__polyethylene_terephthalate_pet + - fishing_wire_material__polyvinyl_chloride_pvc + - fishing_wire_material__polyvinylidene_fluoride_pvdf + - fishing_wire_material__stainless_steel +- id: 2881 + name: Sinker material + friendly_id: sinker_material + values: + - sinker_material__lead + - sinker_material__tungsten + - sinker_material__zinc +- id: 2882 + name: Golf equipment included + friendly_id: golf_equipment_included + values: + - golf_equipment_included__balance_stripe + - golf_equipment_included__ball_holder + - golf_equipment_included__ball_marker + - golf_equipment_included__brush + - golf_equipment_included__cleaner + - golf_equipment_included__cup + - golf_equipment_included__direction_cross + - golf_equipment_included__divot_tool + - golf_equipment_included__finger_support + - golf_equipment_included__flag + - golf_equipment_included__golf_ball_case + - golf_equipment_included__golf_scope + - golf_equipment_included__gps_navigation + - golf_equipment_included__grip + - golf_equipment_included__head_cover + - golf_equipment_included__nameplate + - golf_equipment_included__polishing_pad + - golf_equipment_included__putter_cover + - golf_equipment_included__scoop + - golf_equipment_included__score_counter + - golf_equipment_included__spare_ball + - golf_equipment_included__spike_wrench + - golf_equipment_included__stinger + - golf_equipment_included__tee + - golf_equipment_included__tee_holder +- id: 2883 + name: Arrow fletching material + friendly_id: arrow_fletching_material + values: + - arrow_fletching_material__feathers + - arrow_fletching_material__plastic + - arrow_fletching_material__synthetic +- id: 2884 + name: Nock material + friendly_id: nock_material + values: + - nock_material__aluminum + - nock_material__plastic +- id: 2885 + name: Broadhead/Field point material + friendly_id: broadhead_field_point_material + values: + - broadhead_field_point_material__carbon_steel + - broadhead_field_point_material__stainless_steel +- id: 2886 + name: Arrow material + friendly_id: arrow_material + values: + - arrow_bolt_material__aluminum + - arrow_bolt_material__bamboo + - arrow_bolt_material__carbon_fiber + - arrow_bolt_material__carbon_fiber_reinforced_polymer_cfrp + - arrow_bolt_material__fiberglass + - arrow_bolt_material__wood +- id: 2887 + name: Bolt material + friendly_id: bolt_material + values_from: arrow_material +- id: 2888 + name: Archery equipment included + friendly_id: archery_equipment_included + values: + - archery_equipment_included__bow_stringer + - archery_equipment_included__sight_mount + - archery_equipment_included__stabilizer_mount + - archery_equipment_included__armguard + - archery_equipment_included__arrow_rest + - archery_equipment_included__quiver + - archery_equipment_included__safety_glass_arrows + - archery_equipment_included__sight_pin +- id: 2889 + name: Paintball/Airsoft equipment included + friendly_id: paintball_airsoft_equipment_included + values: + - paintball_airsoft_equipment_included__batteries + - paintball_airsoft_equipment_included__charger + - paintball_airsoft_equipment_included__protective_eyewear + - paintball_airsoft_equipment_included__tactical_vest +- id: 2890 + name: Shell/Frame material + friendly_id: shell_frame_material + values: + - shell_frame_material__aluminum + - shell_frame_material__composite + - shell_frame_material__plastic + - shell_frame_material__polyurethane_pu + - shell_frame_material__rubber +- id: 2891 + name: Paddle equipment included + friendly_id: paddle_equipment_included + values: + - paddle_equipment_included__net + - paddle_equipment_included__posts + - paddle_equipment_included__paddle_balls + - paddle_equipment_included__paddles +- id: 2892 + name: Tetherball equipment included + friendly_id: tetherball_equipment_included + values: + - tetherball_equipment_included__rope + - tetherball_equipment_included__tetherball + - tetherball_equipment_included__tetherball_pole +- id: 2893 + name: Wax application method + friendly_id: wax_application_method + values: + - wax_application_method__cold + - wax_application_method__hot +- id: 2894 + name: Snowboard construction + friendly_id: snowboard_construction + values: + - snowboard_construction__flat + - snowboard_construction__hybrid + - snowboard_construction__camber + - snowboard_construction__rocker +- id: 2895 + name: Foundation material + friendly_id: foundation_material + values: + - foundation_material__fabric + - foundation_material__metal + - foundation_material__pine_wood + - foundation_material__plywood + - foundation_material__polyester + - foundation_material__spruce_wood + - foundation_material__steel + - foundation_material__wood +- id: 2896 + name: Toy/Game material + friendly_id: toy_game_material + values: + - toy_game_material__aluminum + - toy_game_material__cardboard + - toy_game_material__cotton + - toy_game_material__fabric + - toy_game_material__fiberglass + - toy_game_material__fleece + - toy_game_material__foam + - toy_game_material__mesh + - toy_game_material__metal + - toy_game_material__nylon + - toy_game_material__plastic + - toy_game_material__plush + - toy_game_material__polyester + - toy_game_material__rubber + - toy_game_material__silicone + - toy_game_material__steel + - toy_game_material__synthetic + - toy_game_material__tin + - toy_game_material__vinyl + - toy_game_material__wood + - toy_game_material__wool + - toy_game_material__other +- id: 2897 + name: Gravel/Substrate material + friendly_id: gravel_substrate_material + values: + - gravel_substrate_material__clay + - gravel_substrate_material__coral + - gravel_substrate_material__glass + - gravel_substrate_material__quartz + - gravel_substrate_material__stone +- id: 2898 + name: Habitat material + friendly_id: habitat_material + values: + - habitat_material__acrylic + - habitat_material__glass + - habitat_material__mesh + - habitat_material__plastic + - habitat_material__wood +- id: 2899 + name: Waste bag material + friendly_id: waste_bag_material + values_from: disposable_bag_material +- id: 2900 + name: Diaper bag material + friendly_id: diaper_bag_material + values_from: bag_case_material +- id: 2901 + name: Bottle material + friendly_id: bottle_material + values_from: cocktail_decoration_material +- id: 2902 + name: Nursing pillow shape + friendly_id: nursing_pillow_shape + values: + - nursing_pillow_shape__c_shaped + - nursing_pillow_shape__u_shaped + - nursing_pillow_shape__other +- id: 2903 + name: Wire/Rope material + friendly_id: wire_rope_material + values: + - wire_rope_material__aluminum + - wire_rope_material__brass + - wire_rope_material__copper + - wire_rope_material__galvanized_steel + - wire_rope_material__gold + - wire_rope_material__nickel + - wire_rope_material__nickel_plated + - wire_rope_material__nylon + - wire_rope_material__polyester + - wire_rope_material__polypropylene + - wire_rope_material__silver + - wire_rope_material__silver_plated + - wire_rope_material__stainless_steel + - wire_rope_material__steel + - wire_rope_material__vinyl + - wire_rope_material__zinc +- id: 2904 + name: E-reader display technology + friendly_id: e_reader_display_technology + values: + - e_reader_display_technology__e_ink + - e_reader_display_technology__e_ink_carta + - e_reader_display_technology__e_ink_pearl + - e_reader_display_technology__e_ink_triton + - e_reader_display_technology__lcd + - e_reader_display_technology__oled + - e_reader_display_technology__other +- id: 2905 + name: Monitor shape + friendly_id: monitor_shape + values: + - monitor_shape__curved + - monitor_shape__flat +- id: 2906 + name: 3D glasses material + friendly_id: 3d_glasses_material + values_from: cocktail_decoration_material +- id: 2907 + name: Projector light source + friendly_id: projector_light_source + values: + - projector_light_source__laser + - projector_light_source__led + - projector_light_source__metal_halide + - projector_light_source__nsh + - projector_light_source__p_vip + - projector_light_source__shp + - projector_light_source__uhp + - projector_light_source__other +- id: 2908 + name: Cable housing material + friendly_id: cable_housing_material + values: + - cable_housing_material__aluminum + - cable_housing_material__nylon + - cable_housing_material__polyvinyl_chloride_pvc + - cable_housing_material__rubber + - cable_housing_material__stainless_steel + - cable_housing_material__thermoplastic_elastomer_tpe +- id: 2909 + name: Camera lens material + friendly_id: camera_lens_material + values_from: microscope_slide_material +- id: 2910 + name: Masonry material + friendly_id: masonry_material + values: + - masonry_material__brick + - masonry_material__calcium_silicate + - masonry_material__cement + - masonry_material__clay + - masonry_material__concrete + - masonry_material__dolomite + - masonry_material__fly_ash + - masonry_material__granite + - masonry_material__grout + - masonry_material__limestone + - masonry_material__marble + - masonry_material__mortar + - masonry_material__plaster + - masonry_material__sandstone + - masonry_material__slate + - masonry_material__stone +- id: 2911 + name: Garage door material + friendly_id: garage_door_material + values_from: door_material +- id: 2912 + name: Building board material + friendly_id: building_board_material + values: + - building_board_material__cement + - building_board_material__gypsum + - building_board_material__hardboard + - building_board_material__medium_density_fiberboard_mdf + - building_board_material__particle_board + - building_board_material__plywood + - building_board_material__polyvinyl_chloride_pvc + - building_board_material__vinyl + - building_board_material__wood +- id: 2913 + name: Insulation material + friendly_id: insulation_material + values: + - insulation_material__cellulose + - insulation_material__cotton + - insulation_material__fiberglass + - insulation_material__mineral_wool + - insulation_material__phenolic_foam + - insulation_material__polyisocyanurate_pir + - insulation_material__polystyrene_ps + - insulation_material__polyurethane_pu + - insulation_material__straw + - insulation_material__wool +- id: 2914 + name: Lumber/Wood type + friendly_id: lumber_wood_type + values: + - lumber_wood_type__ash_wood + - lumber_wood_type__balsa_wood + - lumber_wood_type__bamboo + - lumber_wood_type__basswood + - lumber_wood_type__birch_wood + - lumber_wood_type__cedar_wood + - lumber_wood_type__cherry_wood + - lumber_wood_type__hickory_wood + - lumber_wood_type__maple_wood + - lumber_wood_type__medium_density_fiberboard_mdf + - lumber_wood_type__oak_wood + - lumber_wood_type__pine_wood + - lumber_wood_type__plywood + - lumber_wood_type__poplar_wood + - lumber_wood_type__redwood + - lumber_wood_type__walnut_wood + - lumber_wood_type__wood +- id: 2915 + name: Flashing material + friendly_id: flashing_material + values: + - flashing_material__aluminum + - flashing_material__copper + - flashing_material__galvanized_steel + - flashing_material__plastic + - flashing_material__rubber +- id: 2916 + name: Shingle/Tile material + friendly_id: shingle_tile_material + values: + - shingle_tile_material__asphalt + - shingle_tile_material__cedar_wood + - shingle_tile_material__clay + - shingle_tile_material__composite + - shingle_tile_material__concrete + - shingle_tile_material__metal + - shingle_tile_material__rubber + - shingle_tile_material__slate +- id: 2917 + name: Siding material + friendly_id: siding_material + values: + - siding_material__aluminum + - siding_material__brick + - siding_material__cement + - siding_material__fiber_cement + - siding_material__metal + - siding_material__stone + - siding_material__stucco + - siding_material__vinyl + - siding_material__wood +- id: 2918 + name: Tile material + friendly_id: tile_material + values: + - tile_material__acoustic_materials + - tile_material__ceramic + - tile_material__glass + - tile_material__gypsum + - tile_material__metal + - tile_material__plastic + - tile_material__stone + - tile_material__vinyl + - tile_material__wood +- id: 2919 + name: Hose material + friendly_id: hose_material + values: + - hose_material__aluminum + - hose_material__copper + - hose_material__metal + - hose_material__plastic + - hose_material__polyvinyl_chloride_pvc + - hose_material__rubber + - hose_material__stainless_steel + - hose_material__vinyl +- id: 2920 + name: Hammer head material + friendly_id: hammer_head_material + values: + - hammer_head_material__aluminum + - hammer_head_material__brass + - hammer_head_material__bronze + - hammer_head_material__carbon_steel + - hammer_head_material__copper + - hammer_head_material__fiberglass + - hammer_head_material__graphite + - hammer_head_material__iron + - hammer_head_material__nylon + - hammer_head_material__plastic + - hammer_head_material__polyurethane_pu + - hammer_head_material__rubber + - hammer_head_material__stainless_steel + - hammer_head_material__steel + - hammer_head_material__wood +- id: 2921 + name: Book cover material + friendly_id: book_cover_material + values: + - book_file_cover_material__cardboard + - book_file_cover_material__leather + - book_file_cover_material__metal + - book_file_cover_material__paper + - book_file_cover_material__plastic + - book_file_cover_material__silicone + - book_file_cover_material__wood +- id: 2922 + name: Office supply material + friendly_id: office_supply_material + values: + - office_supply_material__cardboard + - office_supply_material__glass + - office_supply_material__fabric + - office_supply_material__faux_leather + - office_supply_material__felt + - office_supply_material__leather + - office_supply_material__metal + - office_supply_material__nylon + - office_supply_material__paper + - office_supply_material__plastic + - office_supply_material__polyethylene_pe + - office_supply_material__polyethylene_terephthalate_pet + - office_supply_material__polypropylene_pp + - office_supply_material__polyurethane_pu + - office_supply_material__polyvinyl_chloride_pvc + - office_supply_material__stainless_steel + - office_supply_material__vinyl + - office_supply_material__wood +- id: 2923 + name: Folder/Report cover material + friendly_id: folder_report_cover_material + values_from: book_cover_material +- id: 2924 + name: Office instrument material + friendly_id: office_instrument_material + values: + - office_instrument_material__acrylic + - office_instrument_material__aluminum + - office_instrument_material__brass + - office_instrument_material__bronze + - office_instrument_material__ceramic + - office_instrument_material__copper + - office_instrument_material__gold + - office_instrument_material__hardboard + - office_instrument_material__iron + - office_instrument_material__leather + - office_instrument_material__nickel + - office_instrument_material__pewter + - office_instrument_material__plastic + - office_instrument_material__rubber + - office_instrument_material__silver + - office_instrument_material__stainless_steel + - office_instrument_material__tin + - office_instrument_material__titanium + - office_instrument_material__wood + - office_instrument_material__zinc_steel + - office_instrument_material__other +- id: 2925 + name: Moving/Shipping box material + friendly_id: moving_shipping_box_material + values_from: cocktail_decoration_material +- id: 2926 + name: Fastener material + friendly_id: fastener_material + values: + - fastener_material__aluminum + - fastener_material__bone + - fastener_material__brass + - fastener_material__copper + - fastener_material__fabric + - fastener_material__glass + - fastener_material__leather + - fastener_material__metal + - fastener_material__nickel + - fastener_material__nylon + - fastener_material__pewter + - fastener_material__plastic + - fastener_material__polyamide_pa + - fastener_material__polyester + - fastener_material__polypropylene_pp + - fastener_material__resin + - fastener_material__rubber + - fastener_material__seashell + - fastener_material__silicone + - fastener_material__stainless_steel + - fastener_material__wood + - fastener_material__zinc + - fastener_material__other +- id: 2927 + name: Embellishment/Trim material + friendly_id: embellishment_trim_material + values: + - embellishment_trim_material__bamboo + - embellishment_trim_material__cotton + - embellishment_trim_material__linen + - embellishment_trim_material__nylon + - embellishment_trim_material__polyester + - embellishment_trim_material__silk + - embellishment_trim_material__viscose + - embellishment_trim_material__wool + - embellishment_trim_material__acrylic + - embellishment_trim_material__ceramic + - embellishment_trim_material__copper + - embellishment_trim_material__coral + - embellishment_trim_material__cork + - embellishment_trim_material__felt + - embellishment_trim_material__glass + - embellishment_trim_material__gold + - embellishment_trim_material__metal + - embellishment_trim_material__plastic + - embellishment_trim_material__polypropylene_pp + - embellishment_trim_material__resin + - embellishment_trim_material__rose_gold + - embellishment_trim_material__silver + - embellishment_trim_material__stone + - embellishment_trim_material__wax + - embellishment_trim_material__wood + - embellishment_trim_material__satin + - embellishment_trim_material__velvet + - embellishment_trim_material__paper + - embellishment_trim_material__vinyl + - embellishment_trim_material__rubber + - embellishment_trim_material__spandex + - embellishment_trim_material__crystal + - embellishment_trim_material__gemstone + - embellishment_trim_material__pearl + - embellishment_trim_material__sequins + - embellishment_trim_material__other +- id: 2928 + name: Canvas material + friendly_id: canvas_material + values: + - canvas_material__aida_cloth + - canvas_material__cotton + - canvas_material__linen + - canvas_material__plastic + - canvas_material__synthetic +- id: 2929 + name: Painting canvas material + friendly_id: painting_canvas_material + values: + - painting_canvas_material__cotton + - painting_canvas_material__linen + - painting_canvas_material__synthetic +- id: 2930 + name: Art/Crafting tool material + friendly_id: art_crafting_tool_material + values: + - art_crafting_tool_material__acrylic + - art_crafting_tool_material__aluminum + - art_crafting_tool_material__bamboo + - art_crafting_tool_material__ceramic + - art_crafting_tool_material__copper + - art_crafting_tool_material__cork + - art_crafting_tool_material__ethylene_vinyl_acetate_eva + - art_crafting_tool_material__faux_leather + - art_crafting_tool_material__glass + - art_crafting_tool_material__leather + - art_crafting_tool_material__metal + - art_crafting_tool_material__nickel_plated + - art_crafting_tool_material__plastic + - art_crafting_tool_material__polyvinyl_chloride_pvc + - art_crafting_tool_material__porcelain + - art_crafting_tool_material__rubber + - art_crafting_tool_material__silicone + - art_crafting_tool_material__stainless_steel + - art_crafting_tool_material__steel + - art_crafting_tool_material__wood + - art_crafting_tool_material__wool + - art_crafting_tool_material__other +- id: 2931 + name: Coin material + friendly_id: coin_material + values: + - coin_material__bronze + - coin_material__copper + - coin_material__gold + - coin_material__nickel + - coin_material__silver +- id: 2932 + name: Scale model material + friendly_id: scale_model_material + values: + - scale_model_material__acrylonitrile_butadiene_styrene_abs + - scale_model_material__cardstock + - scale_model_material__metal + - scale_model_material__paper + - scale_model_material__plastic + - scale_model_material__polylactic_acid_pla + - scale_model_material__resin + - scale_model_material__wood +- id: 2933 + name: Instrument accessory material + friendly_id: instrument_accessory_material + values: + - instrument_accessory_material__acrylonitrile_butadiene_styrene_abs + - instrument_accessory_material__aluminum + - instrument_accessory_material__bamboo + - instrument_accessory_material__brass + - instrument_accessory_material__bronze + - instrument_accessory_material__canvas + - instrument_accessory_material__carbon_fiber + - instrument_accessory_material__ceramic + - instrument_accessory_material__clay + - instrument_accessory_material__cotton + - instrument_accessory_material__fabric + - instrument_accessory_material__fiberglass + - instrument_accessory_material__fleece + - instrument_accessory_material__fluorocarbon + - instrument_accessory_material__foam + - instrument_accessory_material__hard_rubber + - instrument_accessory_material__leather + - instrument_accessory_material__medium_density_fiberboard_mdf + - instrument_accessory_material__mesh + - instrument_accessory_material__metal + - instrument_accessory_material__microfiber + - instrument_accessory_material__neoprene + - instrument_accessory_material__nickel + - instrument_accessory_material__nylon + - instrument_accessory_material__plastic + - instrument_accessory_material__plywood + - instrument_accessory_material__polyester + - instrument_accessory_material__rubber + - instrument_accessory_material__silicone + - instrument_accessory_material__silk + - instrument_accessory_material__sponge + - instrument_accessory_material__stainless_steel + - instrument_accessory_material__steel + - instrument_accessory_material__synthetic + - instrument_accessory_material__synthetic_resin + - instrument_accessory_material__wood + - instrument_accessory_material__other +- id: 2934 + name: Drum hardware material + friendly_id: drum_hardware_material + values: + - drum_hardware_material__aluminum + - drum_hardware_material__bamboo + - drum_hardware_material__carbon_fiber + - drum_hardware_material__chrome + - drum_hardware_material__felt + - drum_hardware_material__fiberglass + - drum_hardware_material__fleece + - drum_hardware_material__mesh + - drum_hardware_material__metal + - drum_hardware_material__nylon + - drum_hardware_material__plastic + - drum_hardware_material__rubber + - drum_hardware_material__steel + - drum_hardware_material__synthetic + - drum_hardware_material__wood +- id: 2935 + name: Mallet material + friendly_id: mallet_material + values: + - mallet_material__aluminum + - mallet_material__brass + - mallet_material__bronze + - mallet_material__copper + - mallet_material__faux_leather + - mallet_material__felt + - mallet_material__fiberglass + - mallet_material__graphite + - mallet_material__iron + - mallet_material__leather + - mallet_material__neoprene + - mallet_material__nylon + - mallet_material__plastic + - mallet_material__polyurethane_pu + - mallet_material__rubber + - mallet_material__stainless_steel + - mallet_material__steel + - mallet_material__wood + - mallet_material__yarn +- id: 2936 + name: Instrument part material + friendly_id: instrument_part_material + values: + - instrument_part_material__african_blackwood + - instrument_part_material__bone + - instrument_part_material__boxwood + - instrument_part_material__brass + - instrument_part_material__cork + - instrument_part_material__ebony_wood + - instrument_part_material__faux_ivory + - instrument_part_material__gold + - instrument_part_material__gold_plated + - instrument_part_material__graphite + - instrument_part_material__maple_wood + - instrument_part_material__metal + - instrument_part_material__nickel_silver + - instrument_part_material__plastic + - instrument_part_material__rosewood + - instrument_part_material__rubber + - instrument_part_material__silver + - instrument_part_material__silver_plated + - instrument_part_material__snakewood + - instrument_part_material__synthetic + - instrument_part_material__wood +- id: 2937 + name: Instrument string material + friendly_id: instrument_string_material + values: + - instrument_string_material__bronze + - instrument_string_material__fluorocarbon + - instrument_string_material__nickel + - instrument_string_material__nylon + - instrument_string_material__steel + - instrument_string_material__synthetic +- id: 2938 + name: Bow hair material + friendly_id: bow_hair_material + values: + - bow_hair_material__horsehair + - bow_hair_material__nylon + - bow_hair_material__synthetic +- id: 2939 + name: Swab material + friendly_id: swab_material + values: + - swab_material__cotton + - swab_material__felt + - swab_material__microfiber + - swab_material__paper + - swab_material__plastic + - swab_material__silk + - swab_material__wool +- id: 2940 + name: Instrument material + friendly_id: instrument_material + values: + - instrument_material__african_blackwood + - instrument_material__alder_wood + - instrument_material__aluminum + - instrument_material__ash_wood + - instrument_material__basswood + - instrument_material__beech_wood + - instrument_material__birch_wood + - instrument_material__brass + - instrument_material__brazilwood + - instrument_material__bronze + - instrument_material__carbon_fiber + - instrument_material__ceramic + - instrument_material__cocobolo + - instrument_material__copper + - instrument_material__ebony_wood + - instrument_material__fiberglass + - instrument_material__gold + - instrument_material__gold_plated + - instrument_material__hard_rubber + - instrument_material__mahogany + - instrument_material__maple_wood + - instrument_material__metal + - instrument_material__nickel + - instrument_material__nickel_silver + - instrument_material__nickel_plated + - instrument_material__nylon + - instrument_material__oak_wood + - instrument_material__pernambuco + - instrument_material__plastic + - instrument_material__rosewood + - instrument_material__rubber + - instrument_material__silicone + - instrument_material__silver + - instrument_material__silver_plated + - instrument_material__spruce_wood + - instrument_material__stainless_steel + - instrument_material__steel + - instrument_material__synthetic + - instrument_material__wood + - instrument_material__other +- id: 2941 + name: Instrument bow material + friendly_id: instrument_bow_material + values_from: instrument_material +- id: 2942 + name: Cocktail decoration material + friendly_id: cocktail_decoration_material + values: + - accessory_material__aluminum + - accessory_material__bamboo + - accessory_material__cardboard + - accessory_material__glass + - accessory_material__metal + - accessory_material__paper + - accessory_material__plastic + - accessory_material__rubber + - accessory_material__silicone + - accessory_material__stainless_steel + - accessory_material__wood +- id: 2943 + name: Disposable tableware material + friendly_id: disposable_tableware_material + values_from: disposable_bag_material +- id: 2944 + name: Needle housing material + friendly_id: needle_housing_material + values_from: cocktail_decoration_material +- id: 2945 + name: Shopping bag material + friendly_id: shopping_bag_material + values_from: disposable_bag_material +- id: 2946 + name: Eyepiece/Adapter material + friendly_id: eyepiece_adapter_material + values: + - eyepiece_adapter_material__aluminum + - eyepiece_adapter_material__glass + - eyepiece_adapter_material__metal + - eyepiece_adapter_material__nylon + - eyepiece_adapter_material__plastic + - eyepiece_adapter_material__rubber + - eyepiece_adapter_material__silicone + - eyepiece_adapter_material__steel +- id: 2947 + name: Microscope slide material + friendly_id: microscope_slide_material + values: + - lens_slide_material__glass + - lens_slide_material__plastic +- id: 2948 + name: Item material + friendly_id: item_material + values: + - item_material__acrylonitrile_butadiene_styrene_abs + - item_material__aluminum + - item_material__brass + - item_material__carbon_fiber + - item_material__ceramic + - item_material__chrome + - item_material__copper + - item_material__faux_leather + - item_material__fiberglass + - item_material__glass + - item_material__leather + - item_material__metal + - item_material__neoprene + - item_material__nylon + - item_material__plastic + - item_material__polycarbonate_pc + - item_material__polyethylene_pe + - item_material__polypropylene_pp + - item_material__polyurethane_pu + - item_material__polyvinyl_chloride_pvc + - item_material__rubber + - item_material__silicone + - item_material__stainless_steel + - item_material__synthetic + - item_material__thermoplastic + - item_material__titanium + - item_material__vinyl + - item_material__wood + - item_material__other +- id: 2949 + name: Safety equipment material + friendly_id: safety_equipment_material + values: + - safety_equipment_material__fiberglass + - safety_equipment_material__leather + - safety_equipment_material__metal + - safety_equipment_material__nylon + - safety_equipment_material__plastic + - safety_equipment_material__polyester + - safety_equipment_material__rubber diff --git a/data/attributes/attributes.yml b/data/attributes/attributes.yml deleted file mode 100644 index a95a87fa..00000000 --- a/data/attributes/attributes.yml +++ /dev/null @@ -1,43147 +0,0 @@ ---- -- id: 1 - name: Color - friendly_id: color - values: - - id: 1 - name: Black - - id: 2 - name: Blue - - id: 3 - name: White - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 6 - name: Beige - - id: 7 - name: Brown - - id: 8 - name: Gray - - id: 9 - name: Green - - id: 10 - name: Orange - - id: 11 - name: Pink - - id: 12 - name: Purple - - id: 13 - name: Red - - id: 14 - name: Yellow - - id: 15 - name: Navy - - id: 16 - name: Rose gold - - id: 17 - name: Clear - - id: 657 - name: Bronze - - id: 2865 - name: Multicolor -- id: 3 - name: Pattern - friendly_id: pattern - values: - - id: 1782 - name: Text - - id: 1796 - name: Vehicle - - id: 1868 - name: Geometric - - id: 2283 - name: Birds - - id: 2370 - name: Animals - - id: 2375 - name: Hearts - - id: 2376 - name: Stars - - id: 2866 - name: Camouflage - - id: 2867 - name: Characters - - id: 2868 - name: Checkered - - id: 2869 - name: Christmas - - id: 2870 - name: Dots - - id: 2871 - name: Floral - - id: 2872 - name: Leaves - - id: 2873 - name: Paisley - - id: 2874 - name: Solid - - id: 2875 - name: Striped - - id: 2876 - name: Tie-dye -- id: 4 - name: Material - friendly_id: material - values: - - id: 40 - name: Cotton - - id: 44 - name: Nylon - - id: 45 - name: Polyester - - id: 51 - name: Wool - - id: 52 - name: Faux leather - - id: 60 - name: Linen - - id: 67 - name: Acrylic - - id: 372 - name: Other - - id: 548 - name: Paper - - id: 558 - name: Leather - - id: 559 - name: Plush - - id: 585 - name: Fabric - - id: 589 - name: Polypropylene (PP) - - id: 592 - name: Thermoplastic polyurethane (TPU) - - id: 596 - name: Cork - - id: 601 - name: Metal - - id: 605 - name: Canvas - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 620 - name: Stainless steel - - id: 624 - name: Vinyl - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 643 - name: Ceramic - - id: 656 - name: Brass - - id: 657 - name: Bronze - - id: 665 - name: Chrome - - id: 666 - name: Copper - - id: 671 - name: Graphite - - id: 696 - name: Carbon - - id: 764 - name: Rubber - - id: 773 - name: Cardboard - - id: 806 - name: Thermoplastic elastomer (TPE) - - id: 809 - name: Silicone - - id: 814 - name: Porcelain - - id: 823 - name: Fiberglass - - id: 830 - name: Latex - - id: 860 - name: Iron - - id: 876 - name: Stone - - id: 877 - name: Resin - - id: 879 - name: Clay - - id: 899 - name: Plywood - - id: 929 - name: Concrete - - id: 941 - name: Marble - - id: 1637 - name: Aluminum - - id: 1817 - name: Polyurethane (PU) - - id: 1853 - name: Medium density fiberboard (MDF) - - id: 2996 - name: Polyethylene (PE) - - id: 7695 - name: Coir - - id: 8265 - name: Biodegradable materials -- id: 5 - name: Activity - friendly_id: activity - values: - - id: 69 - name: Baseball - - id: 70 - name: Softball - - id: 71 - name: Basketball - - id: 72 - name: Boxing - - id: 73 - name: Cheerleading - - id: 74 - name: Cricket - - id: 75 - name: Dancing - - id: 76 - name: Field hockey - - id: 77 - name: Lacrosse - - id: 78 - name: Hockey - - id: 79 - name: Gymnastics - - id: 80 - name: Racquetball - - id: 81 - name: Squash - - id: 82 - name: Rugby - - id: 83 - name: Soccer - - id: 84 - name: Handball - - id: 85 - name: Tennis - - id: 86 - name: Volleyball - - id: 87 - name: Wrestling - - id: 88 - name: Yoga - - id: 89 - name: Pilates - - id: 90 - name: Air hockey - - id: 91 - name: Karate - - id: 92 - name: Taekwondo - - id: 93 - name: Judo - - id: 94 - name: Brazilian jiu-jitsu - - id: 95 - name: Muay thai - - id: 96 - name: Krav maga - - id: 97 - name: Aikido - - id: 98 - name: Darts - - id: 99 - name: Climbing - - id: 100 - name: Cycling - - id: 101 - name: Fishing - - id: 102 - name: Golf - - id: 103 - name: Hunting - - id: 104 - name: Aerobics - - id: 105 - name: Ballet - - id: 106 - name: Horse riding - - id: 107 - name: Netball - - id: 108 - name: Padel - - id: 372 - name: Other - - id: 428 - name: Running - - id: 1348 - name: Football - - id: 1397 - name: Motorcycling - - id: 7060 - name: Hiking - - id: 7581 - name: Skiing -- id: 15 - name: Sleeve length type - friendly_id: sleeve_length_type - values: - - id: 169 - name: Short - - id: 174 - name: Sleeveless - - id: 176 - name: Spaghetti strap - - id: 177 - name: Strapless - - id: 1405 - name: 3/4 - - id: 1406 - name: Long - - id: 1407 - name: Cap -- id: 17 - name: Cup size - friendly_id: cup_size - values: - - id: 137 - name: M - - id: 138 - name: L - - id: 1967 - name: A - - id: 1968 - name: B - - id: 1969 - name: C - - id: 1970 - name: D - - id: 1971 - name: E - - id: 1972 - name: F - - id: 1995 - name: G - - id: 2922 - name: AA - - id: 2923 - name: DD - - id: 2924 - name: DDD - - id: 2925 - name: FF - - id: 2926 - name: GG - - id: 2927 - name: H - - id: 2928 - name: HH - - id: 2929 - name: I - - id: 2930 - name: J - - id: 2931 - name: JJ - - id: 2932 - name: K - - id: 2933 - name: N -- id: 30 - name: Age group - friendly_id: age_group - values: - - id: 216 - name: Newborn - - id: 534 - name: All ages - - id: 1515 - name: Kids - - id: 2403 - name: Adults - - id: 2404 - name: Teens - - id: 2974 - name: Babies - - id: 6883 - name: Universal - - id: 10087 - name: 0-6 months - - id: 10088 - name: 6-12 months - - id: 10089 - name: 1-2 years - - id: 10090 - name: Toddlers -- id: 32 - name: Neckline - friendly_id: neckline - values: - - id: 390 - name: V-neck - - id: 627 - name: Round - - id: 628 - name: Square - - id: 4324 - name: Split - - id: 6704 - name: Asymmetric - - id: 6705 - name: Bardot - - id: 6706 - name: Boat - - id: 6707 - name: Cowl - - id: 6708 - name: Halter - - id: 6709 - name: Hooded - - id: 6710 - name: Mandarin - - id: 6711 - name: Crew - - id: 6712 - name: Mock - - id: 6713 - name: Plunging - - id: 6714 - name: Sweetheart - - id: 6715 - name: Turtle - - id: 6716 - name: Wrap -- id: 35 - name: Fit - friendly_id: fit - values: - - id: 418 - name: Tapered leg - - id: 419 - name: Skinny leg - - id: 420 - name: Straight leg - - id: 3102 - name: Wide - - id: 6718 - name: Slim - - id: 6719 - name: Boyfriend - - id: 6720 - name: Mom -- id: 37 - name: Waist rise - friendly_id: waist_rise - values: - - id: 1364 - name: Low - - id: 1365 - name: Mid - - id: 1376 - name: High -- id: 41 - name: Best uses - friendly_id: best_uses - values: - - id: 100 - name: Cycling - - id: 101 - name: Fishing - - id: 426 - name: Lifestyle - - id: 427 - name: Traveling - - id: 428 - name: Running - - id: 429 - name: Sport - - id: 1397 - name: Motorcycling - - id: 7060 - name: Hiking - - id: 7622 - name: Cruising - - id: 10993 - name: Safety - - id: 12959 - name: Aviation - - id: 12960 - name: Maritime activities - - id: 12966 - name: Diving - - id: 12967 - name: Navigation - - id: 12968 - name: Racing - - id: 12969 - name: Sailing - - id: 12970 - name: Water sports -- id: 50 - name: Accessory size - friendly_id: accessory_size - values: - - id: 169 - name: Short - - id: 392 - name: Standard - - id: 1406 - name: Long - - id: 2910 - name: Triple extra small (XXXS) - - id: 2911 - name: Double extra small (XXS) - - id: 2912 - name: Extra small (XS) - - id: 2913 - name: Small (S) - - id: 2914 - name: Medium (M) - - id: 2915 - name: Large (L) - - id: 2916 - name: Extra large (XL) - - id: 2917 - name: Double extra large (XXL) - - id: 2918 - name: Triple extra large (XXXL) - - id: 2919 - name: Four extra large (4XL) - - id: 2920 - name: Five extra large (5XL) - - id: 2921 - name: Six extra large (6XL) - - id: 6882 - name: One size - - id: 10615 - name: Extra short - - id: 10616 - name: Extra long - - id: 10861 - name: Regular (R) - - id: 11119 - name: Compact - - id: 15025 - name: Travel size - - id: 15045 - name: Customizable -- id: 60 - name: Jewelry type - friendly_id: jewelry_type - values: - - id: 546 - name: Fine jewelry - - id: 547 - name: Imitation jewelry -- id: 73 - name: Shape - friendly_id: shape - values: - - id: 372 - name: Other - - id: 627 - name: Round - - id: 628 - name: Square - - id: 1266 - name: Heart - - id: 6996 - name: Octagonal - - id: 6997 - name: Hexagonal - - id: 6998 - name: Triangular - - id: 6999 - name: Pentagonal - - id: 7000 - name: Heptagonal - - id: 7080 - name: Conical - - id: 7321 - name: Oval - - id: 7998 - name: Arrow - - id: 8508 - name: Custom - - id: 8509 - name: Diamond - - id: 10140 - name: Rectangular - - id: 10151 - name: Kidney-shaped - - id: 13848 - name: Flower - - id: 14390 - name: Semicircular - - id: 14638 - name: Star - - id: 14845 - name: Cylindrical -- id: 77 - name: Lens polarization - friendly_id: lens_polarization - values: - - id: 4505 - name: Polarized - - id: 4506 - name: Non-polarized - - id: 6876 - name: Photo polarized -- id: 80 - name: Closure type - friendly_id: closure_type - values: - - id: 372 - name: Other - - id: 839 - name: Velcro - - id: 1600 - name: Buttons - - id: 1650 - name: Magnetic - - id: 3096 - name: Lace-up - - id: 3097 - name: Slip-on - - id: 3098 - name: Zipper - - id: 3099 - name: Hook & loop - - id: 3100 - name: Toggle - - id: 3101 - name: Elastic - - id: 3732 - name: Clip-on - - id: 4453 - name: Snap - - id: 6721 - name: Adjustable/Pull - - id: 6733 - name: Hook & eye - - id: 6797 - name: Buckles - - id: 10488 - name: Straps - - id: 11193 - name: None - - id: 11320 - name: Ties - - id: 11352 - name: Drawstring - - id: 11399 - name: Screw-on - - id: 11410 - name: Adjustable straps - - id: 15429 - name: Clasp -- id: 87 - name: Shoe size - friendly_id: shoe_size - values: - - id: 2878 - name: '0' - - id: 2879 - name: '1' - - id: 2880 - name: '10' - - id: 2881 - name: '12' - - id: 2882 - name: '14' - - id: 2883 - name: '16' - - id: 2884 - name: '18' - - id: 2885 - name: '2' - - id: 2886 - name: '20' - - id: 2887 - name: '22' - - id: 2888 - name: '24' - - id: 2889 - name: '26' - - id: 2890 - name: '28' - - id: 2891 - name: '30' - - id: 2892 - name: '32' - - id: 2893 - name: '34' - - id: 2894 - name: '36' - - id: 2895 - name: '38' - - id: 2896 - name: '4' - - id: 2897 - name: '40' - - id: 2898 - name: '42' - - id: 2899 - name: '44' - - id: 2900 - name: '46' - - id: 2901 - name: '48' - - id: 2902 - name: '50' - - id: 2903 - name: '52' - - id: 2904 - name: '54' - - id: 2905 - name: '56' - - id: 2906 - name: '58' - - id: 2907 - name: '6' - - id: 2908 - name: '60' - - id: 2909 - name: '8' - - id: 2912 - name: Extra small (XS) - - id: 2913 - name: Small (S) - - id: 2914 - name: Medium (M) - - id: 2915 - name: Large (L) - - id: 2916 - name: Extra large (XL) - - id: 2917 - name: Double extra large (XXL) - - id: 2918 - name: Triple extra large (XXXL) - - id: 2935 - name: '0.5' - - id: 2936 - name: '1.5' - - id: 2937 - name: '2.5' - - id: 2938 - name: '3' - - id: 2939 - name: '3.5' - - id: 2940 - name: '4.5' - - id: 2941 - name: '5' - - id: 2942 - name: '5.5' - - id: 2943 - name: '6.5' - - id: 2944 - name: '7' - - id: 2945 - name: '7.5' - - id: 2946 - name: '8.5' - - id: 2947 - name: '9' - - id: 2948 - name: '9.5' - - id: 2949 - name: '15' - - id: 2950 - name: '15.5' - - id: 2951 - name: '16.5' - - id: 2952 - name: '17' - - id: 2953 - name: '17.5' - - id: 2954 - name: '18.5' - - id: 2955 - name: '19' - - id: 2956 - name: '19.5' - - id: 2957 - name: '20.5' - - id: 2958 - name: '21' - - id: 2959 - name: '21.5' - - id: 2960 - name: '22.5' - - id: 2961 - name: '23' - - id: 2962 - name: '23.5' - - id: 2963 - name: '24.5' - - id: 2964 - name: '25' - - id: 2965 - name: '25.5' - - id: 2966 - name: '26.5' - - id: 2967 - name: '27' - - id: 3010 - name: '10.5' - - id: 3011 - name: '11' - - id: 3012 - name: '11.5' - - id: 3013 - name: '12.5' - - id: 3014 - name: '13' - - id: 3015 - name: '13.5' - - id: 3016 - name: '14.5' - - id: 3017 - name: '27.5' - - id: 3018 - name: '28.5' - - id: 3019 - name: '29' - - id: 3020 - name: '29.5' - - id: 3021 - name: '30.5' - - id: 3022 - name: '31' - - id: 3023 - name: '31.5' - - id: 3024 - name: '32.5' - - id: 3025 - name: '33' - - id: 3026 - name: '33.5' - - id: 3027 - name: '34.5' - - id: 3028 - name: '35' - - id: 3029 - name: '35.5' - - id: 3030 - name: '36.5' - - id: 3031 - name: '37' - - id: 3032 - name: '37.5' - - id: 3033 - name: '38.5' - - id: 3034 - name: '39' - - id: 3035 - name: '39.5' - - id: 3036 - name: '40.5' - - id: 3037 - name: '41' - - id: 3038 - name: '41.5' - - id: 3039 - name: '42.5' - - id: 3040 - name: '43' - - id: 3041 - name: '43.5' - - id: 3042 - name: '44.5' - - id: 3043 - name: '45' - - id: 3044 - name: '45.5' - - id: 3045 - name: '46.5' - - id: 3046 - name: '47' - - id: 3047 - name: '47.5' - - id: 3048 - name: '48.5' - - id: 3049 - name: '49' - - id: 3050 - name: '49.5' - - id: 3051 - name: '50.5' - - id: 3052 - name: '51' - - id: 3053 - name: '51.5' - - id: 3054 - name: '52.5' - - id: 3055 - name: '53' - - id: 3056 - name: '53.5' - - id: 3057 - name: '54.5' - - id: 3058 - name: '55' - - id: 3059 - name: '55.5' - - id: 3060 - name: '56.5' - - id: 3061 - name: '57' - - id: 3062 - name: '57.5' - - id: 3063 - name: '58.5' - - id: 3064 - name: '59' - - id: 3065 - name: '59.5' -- id: 98 - name: Chain link type - friendly_id: chain_link_type - values: - - id: 372 - name: Other - - id: 600 - name: Mesh - - id: 619 - name: Rope - - id: 627 - name: Round - - id: 1266 - name: Heart - - id: 1363 - name: Flat - - id: 3115 - name: Cable - - id: 4817 - name: Singapore - - id: 5023 - name: Foxtail - - id: 6761 - name: Ball/Bead - - id: 6764 - name: Byzantine/Birdcage - - id: 6772 - name: Figaro - - id: 6774 - name: Franco - - id: 6775 - name: Gourmette/Curb - - id: 6776 - name: Herringbone - - id: 6777 - name: Infinity - - id: 6779 - name: Marine/Anchor - - id: 6782 - name: Omega - - id: 6784 - name: Popcorn/Coreana - - id: 6787 - name: Rolo/Belcher - - id: 6791 - name: Serpentine - - id: 6792 - name: Snake - - id: 6793 - name: Trace - - id: 6794 - name: Twisted curb - - id: 6795 - name: Venetian - - id: 6796 - name: Wheat/Espiga -- id: 105 - name: Ring size - friendly_id: ring_size - values: - - id: 136 - name: S - - id: 137 - name: M - - id: 138 - name: L - - id: 1967 - name: A - - id: 1968 - name: B - - id: 1969 - name: C - - id: 1970 - name: D - - id: 1971 - name: E - - id: 1972 - name: F - - id: 1995 - name: G - - id: 2879 - name: '1' - - id: 2880 - name: '10' - - id: 2881 - name: '12' - - id: 2885 - name: '2' - - id: 2895 - name: '38' - - id: 2896 - name: '4' - - id: 2897 - name: '40' - - id: 2898 - name: '42' - - id: 2899 - name: '44' - - id: 2900 - name: '46' - - id: 2901 - name: '48' - - id: 2902 - name: '50' - - id: 2903 - name: '52' - - id: 2904 - name: '54' - - id: 2905 - name: '56' - - id: 2906 - name: '58' - - id: 2907 - name: '6' - - id: 2908 - name: '60' - - id: 2909 - name: '8' - - id: 2927 - name: H - - id: 2929 - name: I - - id: 2930 - name: J - - id: 2932 - name: K - - id: 2933 - name: N - - id: 2935 - name: '0.5' - - id: 2936 - name: '1.5' - - id: 2937 - name: '2.5' - - id: 2938 - name: '3' - - id: 2939 - name: '3.5' - - id: 2940 - name: '4.5' - - id: 2941 - name: '5' - - id: 2942 - name: '5.5' - - id: 2943 - name: '6.5' - - id: 2944 - name: '7' - - id: 2945 - name: '7.5' - - id: 2946 - name: '8.5' - - id: 2947 - name: '9' - - id: 2948 - name: '9.5' - - id: 3010 - name: '10.5' - - id: 3011 - name: '11' - - id: 3012 - name: '11.5' - - id: 3013 - name: '12.5' - - id: 3014 - name: '13' - - id: 3034 - name: '39' - - id: 3037 - name: '41' - - id: 3040 - name: '43' - - id: 3043 - name: '45' - - id: 3046 - name: '47' - - id: 3049 - name: '49' - - id: 3052 - name: '51' - - id: 3055 - name: '53' - - id: 3058 - name: '55' - - id: 3061 - name: '57' - - id: 3064 - name: '59' - - id: 3069 - name: '61' - - id: 3070 - name: '62' - - id: 3071 - name: '63' - - id: 3072 - name: '64' - - id: 3073 - name: '65' - - id: 3074 - name: '66' - - id: 3075 - name: '67' - - id: 3076 - name: '68' - - id: 3077 - name: '69' - - id: 3078 - name: O - - id: 3079 - name: P - - id: 3080 - name: Q - - id: 3081 - name: R - - id: 3082 - name: T - - id: 3083 - name: U - - id: 3084 - name: V - - id: 3085 - name: W - - id: 3086 - name: X - - id: 3087 - name: Y - - id: 3088 - name: Z -- id: 108 - name: Clasp type - friendly_id: clasp_type - values: - - id: 632 - name: Butterfly - - id: 1243 - name: Deployment - - id: 6880 - name: Buckle -- id: 114 - name: Band color - friendly_id: band_color - values: - - id: 1 - name: Black - - id: 2 - name: Blue - - id: 3 - name: White - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 6 - name: Beige - - id: 7 - name: Brown - - id: 8 - name: Gray - - id: 9 - name: Green - - id: 10 - name: Orange - - id: 11 - name: Pink - - id: 12 - name: Purple - - id: 13 - name: Red - - id: 14 - name: Yellow - - id: 15 - name: Navy - - id: 16 - name: Rose gold - - id: 17 - name: Clear - - id: 657 - name: Bronze - - id: 2865 - name: Multicolor -- id: 115 - name: Band material - friendly_id: band_material - values: - - id: 44 - name: Nylon - - id: 45 - name: Polyester - - id: 52 - name: Faux leather - - id: 372 - name: Other - - id: 558 - name: Leather - - id: 592 - name: Thermoplastic polyurethane (TPU) - - id: 600 - name: Mesh - - id: 601 - name: Metal - - id: 605 - name: Canvas - - id: 615 - name: Microfiber - - id: 616 - name: Polycarbonate (PC) - - id: 620 - name: Stainless steel - - id: 623 - name: Titanium - - id: 624 - name: Vinyl - - id: 626 - name: Plastic - - id: 764 - name: Rubber - - id: 806 - name: Thermoplastic elastomer (TPE) - - id: 809 - name: Silicone - - id: 919 - name: Alcantara - - id: 1817 - name: Polyurethane (PU) - - id: 2251 - name: Polyamide (PA) -- id: 116 - name: Case color - friendly_id: case_color - values: - - id: 1 - name: Black - - id: 2 - name: Blue - - id: 3 - name: White - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 6 - name: Beige - - id: 7 - name: Brown - - id: 8 - name: Gray - - id: 9 - name: Green - - id: 10 - name: Orange - - id: 11 - name: Pink - - id: 12 - name: Purple - - id: 13 - name: Red - - id: 14 - name: Yellow - - id: 15 - name: Navy - - id: 16 - name: Rose gold - - id: 17 - name: Clear - - id: 657 - name: Bronze - - id: 2865 - name: Multicolor -- id: 118 - name: Dial color - friendly_id: dial_color - values: - - id: 1 - name: Black - - id: 2 - name: Blue - - id: 3 - name: White - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 6 - name: Beige - - id: 7 - name: Brown - - id: 8 - name: Gray - - id: 9 - name: Green - - id: 10 - name: Orange - - id: 11 - name: Pink - - id: 12 - name: Purple - - id: 13 - name: Red - - id: 14 - name: Yellow - - id: 15 - name: Navy - - id: 16 - name: Rose gold - - id: 17 - name: Clear - - id: 657 - name: Bronze - - id: 2865 - name: Multicolor -- id: 128 - name: Heel height type - friendly_id: heel_height_type - values: - - id: 1363 - name: Flat - - id: 1364 - name: Low - - id: 1365 - name: Mid - - id: 1376 - name: High - - id: 1377 - name: Very high -- id: 131 - name: Temple color - friendly_id: temple_color - values: - - id: 1 - name: Black - - id: 2 - name: Blue - - id: 3 - name: White - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 6 - name: Beige - - id: 7 - name: Brown - - id: 8 - name: Gray - - id: 9 - name: Green - - id: 10 - name: Orange - - id: 11 - name: Pink - - id: 12 - name: Purple - - id: 13 - name: Red - - id: 14 - name: Yellow - - id: 15 - name: Navy - - id: 16 - name: Rose gold - - id: 17 - name: Clear - - id: 657 - name: Bronze - - id: 2865 - name: Multicolor -- id: 134 - name: Theme - friendly_id: theme - values: - - id: 372 - name: Other - - id: 1247 - name: Modern - - id: 1518 - name: Fantasy - - id: 1520 - name: Sci-fi - - id: 1528 - name: Retro/Vintage - - id: 1532 - name: Princesses - - id: 2370 - name: Animals - - id: 2871 - name: Floral - - id: 6760 - name: Celebrities - - id: 7307 - name: Beach - - id: 7716 - name: Food & drinks - - id: 7718 - name: Space - - id: 7721 - name: Literature - - id: 7722 - name: Art - - id: 7723 - name: History - - id: 7725 - name: Science - - id: 7726 - name: Mythology - - id: 7728 - name: Landmarks - - id: 7729 - name: Spirituality - - id: 7896 - name: Architecture - - id: 7897 - name: Cartoons - - id: 7898 - name: City - - id: 7899 - name: Comics - - id: 7900 - name: Ethnic - - id: 7902 - name: Fashion - - id: 7905 - name: Landscape - - id: 7907 - name: Music - - id: 7910 - name: Romantic - - id: 7913 - name: Video games - - id: 7914 - name: World map - - id: 8268 - name: Holidays - - id: 8270 - name: Numbers - - id: 8512 - name: Nature - - id: 10256 - name: Travel - - id: 11419 - name: Anime - - id: 14641 - name: Alphabet - - id: 14642 - name: Movies & TV - - id: 14643 - name: Sea/Ocean - - id: 14644 - name: Sports - - id: 14645 - name: Superheroes - - id: 14646 - name: Cars - - id: 15125 - name: Pop culture -- id: 837 - name: Target gender - friendly_id: target_gender - values: - - id: 18 - name: Female - - id: 19 - name: Male - - id: 20 - name: Unisex -- id: 843 - name: Usage type - friendly_id: usage_type - values: - - id: 1082 - name: Disposable - - id: 1083 - name: Reusable - - id: 10243 - name: Refillable -- id: 844 - name: Attachment options - friendly_id: attachment_options - values: - - id: 3132 - name: Clip - - id: 6348 - name: Magnet - - id: 6877 - name: Lanyard - - id: 6878 - name: Pin -- id: 845 - name: Device interface - friendly_id: device_interface - values: - - id: 372 - name: Other - - id: 1251 - name: Bluetooth - - id: 1252 - name: Wi-Fi - - id: 7271 - name: USB - - id: 7751 - name: Infrared - - id: 7786 - name: RFID - - id: 11570 - name: DVI - - id: 11571 - name: Ethernet - - id: 11573 - name: HDMI - - id: 11575 - name: NFC - - id: 11576 - name: Satellite - - id: 11614 - name: 12G-SDI - - id: 11615 - name: 2.5 mm - - id: 11616 - name: 3.5 mm - - id: 11617 - name: 3G-SDI - - id: 11618 - name: 6.35 mm - - id: 11619 - name: 6G-SDI - - id: 11620 - name: AUX - - id: 11621 - name: Banana connector - - id: 11622 - name: Binding post - - id: 11623 - name: BNC - - id: 11624 - name: Coaxial - - id: 11625 - name: Coaxial (F-Type) - - id: 11626 - name: Component video - - id: 11627 - name: Composite video - - id: 11628 - name: DIN - - id: 11629 - name: Display port - - id: 11630 - name: DVI-I - - id: 11631 - name: eSATA - - id: 11632 - name: Firewire - - id: 11633 - name: HD-SDI - - id: 11634 - name: I2C - - id: 11635 - name: IDE (PATA) - - id: 11636 - name: Lightning - - id: 11637 - name: M.2 - - id: 11638 - name: Micro BNC - - id: 11639 - name: Micro DIN - - id: 11640 - name: Micro SD card - - id: 11641 - name: Micro USB - - id: 11642 - name: Micro XLR - - id: 11643 - name: Micro-VGA - - id: 11644 - name: Mini-DIN - - id: 11645 - name: Mini-VGA - - id: 11646 - name: Molex - - id: 11647 - name: NL2 - - id: 11648 - name: NL4 - - id: 11649 - name: PCIe - - id: 11650 - name: PS/2 - - id: 11651 - name: RCA - - id: 11652 - name: S-video - - id: 11653 - name: SATA - - id: 11654 - name: SCART - - id: 11655 - name: SCSI - - id: 11656 - name: SD card - - id: 11657 - name: SDI - - id: 11658 - name: SMA - - id: 11659 - name: SPI - - id: 11660 - name: Tethering - - id: 11661 - name: Thunderbolt - - id: 11662 - name: TOSLINK - - id: 11663 - name: TRS - - id: 11664 - name: UART - - id: 11665 - name: VGA - - id: 11666 - name: Wireless charging - - id: 11667 - name: Wireless display - - id: 11668 - name: XLR - - id: 11669 - name: XLR-5 - - id: 13572 - name: MIDI -- id: 846 - name: Shoe fit - friendly_id: shoe_fit - values: - - id: 3102 - name: Wide - - id: 3103 - name: Narrow - - id: 3104 - name: Regular -- id: 847 - name: Toe style - friendly_id: toe_style - values: - - id: 627 - name: Round - - id: 628 - name: Square - - id: 1407 - name: Cap - - id: 3105 - name: Pointed - - id: 3110 - name: Wingtip - - id: 3330 - name: Almond - - id: 5877 - name: Open - - id: 6800 - name: Moc - - id: 6801 - name: Peep -- id: 894 - name: Absorbency level - friendly_id: absorbency_level - values: - - id: 3104 - name: Regular - - id: 3661 - name: Light - - id: 3662 - name: Moderate - - id: 3663 - name: Heavy - - id: 3665 - name: Overnight - - id: 4288 - name: Super -- id: 1178 - name: Pants length type - friendly_id: pants_length_type - values: - - id: 166 - name: Knee - - id: 230 - name: Above the knee - - id: 231 - name: Capri - - id: 232 - name: Cropped - - id: 233 - name: Footed - - id: 1406 - name: Long -- id: 1181 - name: Face color - friendly_id: face_color - values: - - id: 1 - name: Black - - id: 2 - name: Blue - - id: 3 - name: White - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 6 - name: Beige - - id: 7 - name: Brown - - id: 8 - name: Gray - - id: 9 - name: Green - - id: 10 - name: Orange - - id: 11 - name: Pink - - id: 12 - name: Purple - - id: 13 - name: Red - - id: 14 - name: Yellow - - id: 15 - name: Navy - - id: 16 - name: Rose gold - - id: 17 - name: Clear - - id: 657 - name: Bronze - - id: 2865 - name: Multicolor -- id: 1190 - name: Skirt/Dress length type - friendly_id: skirt_dress_length_type - values: - - id: 166 - name: Knee - - id: 167 - name: Maxi - - id: 168 - name: Midi - - id: 169 - name: Short - - id: 4293 - name: Mini -- id: 1191 - name: Bra strap type - friendly_id: bra_strap_type - values: - - id: 392 - name: Standard - - id: 393 - name: Racerback - - id: 394 - name: Cross-back - - id: 395 - name: Adjustable - - id: 396 - name: Convertible -- id: 1192 - name: Bra support level - friendly_id: bra_support_level - values: - - id: 1364 - name: Low - - id: 1376 - name: High - - id: 1511 - name: Medium -- id: 1193 - name: Top length type - friendly_id: top_length_type - values: - - id: 165 - name: Crop top - - id: 339 - name: Bodysuit - - id: 1406 - name: Long - - id: 1511 - name: Medium -- id: 1194 - name: Underwear style - friendly_id: underwear_style - values: - - id: 467 - name: Trunk - - id: 519 - name: Classic briefs - - id: 520 - name: High-cut briefs - - id: 521 - name: Control briefs - - id: 522 - name: Hipster panties - - id: 523 - name: Boyshorts - - id: 524 - name: Bikini panties - - id: 525 - name: Tanga panties - - id: 526 - name: Thong panties - - id: 527 - name: G-string panties - - id: 529 - name: Boxer - - id: 532 - name: Raw-cut briefs - - id: 6870 - name: Boxer briefs - - id: 6871 - name: Briefs -- id: 1195 - name: Bra closure type - friendly_id: bra_closure_type - values: - - id: 3176 - name: Back - - id: 6195 - name: Front - - id: 6872 - name: Pull-on (no closure) -- id: 1196 - name: Bra coverage - friendly_id: bra_coverage - values: - - id: 372 - name: Other - - id: 411 - name: Plunge - - id: 2745 - name: Full - - id: 6873 - name: Demi - - id: 6874 - name: Quarter - - id: 6875 - name: Minimal -- id: 1197 - name: Shapewear support level - friendly_id: shapewear_support_level - values: - - id: 2969 - name: Level 1 - - id: 2970 - name: Level 2 - - id: 2971 - name: Level 3 - - id: 2972 - name: Level 4 - - id: 2973 - name: Level 5 -- id: 1198 - name: Nightgown style - friendly_id: nightgown_style - values: - - id: 356 - name: Babydoll - - id: 476 - name: Chemise -- id: 1199 - name: Hair type - friendly_id: hair_type - values: - - id: 549 - name: Curly - - id: 550 - name: Dry - - id: 551 - name: Normal - - id: 552 - name: Straight - - id: 553 - name: Wavy -- id: 1200 - name: Suspender style - friendly_id: suspender_style - values: - - id: 765 - name: X-back suspender - - id: 766 - name: Y-back suspender -- id: 1201 - name: Watch display - friendly_id: watch_display - values: - - id: 1656 - name: Digital - - id: 2523 - name: Analog - - id: 6879 - name: Ana-Digi -- id: 1202 - name: Watch accessory style - friendly_id: watch_accessory_style - values: - - id: 1246 - name: Classic - - id: 1247 - name: Modern - - id: 1248 - name: Sporty -- id: 1203 - name: Occasion style - friendly_id: occasion_style - values: - - id: 1291 - name: Casual - - id: 6881 - name: Dress -- id: 1204 - name: Boot style - friendly_id: boot_style - values: - - id: 1349 - name: Boots - - id: 1350 - name: Booties -- id: 1205 - name: Mounting type - friendly_id: mounting_type - values: - - id: 372 - name: Other - - id: 6884 - name: Floor - - id: 6885 - name: Free-standing - - id: 7056 - name: Wall - - id: 7057 - name: Ceiling - - id: 7192 - name: Tabletop - - id: 7732 - name: Hanging - - id: 8072 - name: Built-in - - id: 8296 - name: Undercounter - - id: 10154 - name: Portable - - id: 14391 - name: Counter - - id: 14542 - name: Mobile -- id: 1206 - name: Ball size - friendly_id: ball_size - values: - - id: 2403 - name: Adults - - id: 2878 - name: '0' - - id: 2879 - name: '1' - - id: 2885 - name: '2' - - id: 2896 - name: '4' - - id: 2907 - name: '6' - - id: 2938 - name: '3' - - id: 2941 - name: '5' - - id: 2944 - name: '7' - - id: 4293 - name: Mini - - id: 6886 - name: Junior - - id: 6887 - name: Youth - - id: 6888 - name: Giant -- id: 1207 - name: Sport - friendly_id: sport - values: - - id: 69 - name: Baseball - - id: 70 - name: Softball - - id: 71 - name: Basketball - - id: 72 - name: Boxing - - id: 74 - name: Cricket - - id: 76 - name: Field hockey - - id: 77 - name: Lacrosse - - id: 78 - name: Hockey - - id: 80 - name: Racquetball - - id: 81 - name: Squash - - id: 82 - name: Rugby - - id: 83 - name: Soccer - - id: 84 - name: Handball - - id: 85 - name: Tennis - - id: 86 - name: Volleyball - - id: 87 - name: Wrestling - - id: 107 - name: Netball - - id: 1348 - name: Football - - id: 6883 - name: Universal - - id: 6914 - name: Australian football - - id: 6915 - name: Badminton - - id: 6916 - name: Floorball - - id: 6917 - name: Futsal - - id: 6918 - name: Gaelic football - - id: 6919 - name: Hurling - - id: 6920 - name: Ice hockey - - id: 6921 - name: Ultimate frisbee - - id: 6922 - name: Water polo - - id: 6983 - name: Inline skating - - id: 6984 - name: Rounders - - id: 6985 - name: Team handball - - id: 6986 - name: Track & field - - id: 6990 - name: Kickboxing - - id: 6991 - name: Mixed martial arts (MMA) - - id: 7581 - name: Skiing - - id: 7641 - name: Snowboarding - - id: 15126 - name: Car racing -- id: 1208 - name: Hand side - friendly_id: hand_side - values: - - id: 6889 - name: Left - - id: 6890 - name: Right - - id: 6891 - name: Both sides -- id: 1209 - name: Bat standard - friendly_id: bat_standard - values: - - id: 6893 - name: BBCOR - - id: 6894 - name: BESR - - id: 6895 - name: Little league - - id: 6896 - name: NCAA - - id: 6897 - name: NFHS - - id: 6898 - name: USA bat standard - - id: 6899 - name: USSSA - - id: 6905 - name: ASA - - id: 6906 - name: ISA - - id: 6907 - name: ISF - - id: 6908 - name: NSA -- id: 1210 - name: Swing weighting - friendly_id: swing_weighting - values: - - id: 6901 - name: Balanced - - id: 6902 - name: Endload -- id: 1212 - name: Compatible ball type - friendly_id: compatible_ball_type - values: - - id: 69 - name: Baseball - - id: 85 - name: Tennis - - id: 102 - name: Golf - - id: 6903 - name: Softballs - - id: 6904 - name: Wiffle -- id: 1213 - name: Sports discipline - friendly_id: sports_discipline - values: - - id: 6909 - name: Fastpitch softball - - id: 6910 - name: Slowpitch softball -- id: 1214 - name: Suitable space - friendly_id: suitable_space - values: - - id: 6911 - name: Indoors - - id: 6912 - name: Outdoors - - id: 8463 - name: Above ground - - id: 8464 - name: Below ground -- id: 1216 - name: Grip type - friendly_id: grip_type - values: - - id: 6937 - name: Belgian - - id: 6938 - name: Bent french - - id: 6939 - name: French - - id: 6940 - name: German - - id: 6941 - name: Hungarian - - id: 6942 - name: Italian - - id: 6943 - name: Pistol - - id: 6944 - name: Russian - - id: 6945 - name: Schermasport - - id: 6946 - name: Straight French - - id: 6947 - name: Visconti -- id: 1217 - name: Player position - friendly_id: player_position - values: - - id: 6956 - name: Attacker - - id: 6957 - name: Defender - - id: 6958 - name: Goalie - - id: 6959 - name: Midfielder - - id: 6970 - name: Field player -- id: 1218 - name: Recommended skill level - friendly_id: recommended_skill_level - values: - - id: 6960 - name: Beginner - - id: 6961 - name: Intermediate - - id: 6962 - name: Expert -- id: 1219 - name: Fastener type - friendly_id: fastener_type - values: - - id: 1650 - name: Magnetic - - id: 6971 - name: Mechanical -- id: 1220 - name: Blade curve - friendly_id: blade_curve - values: - - id: 1365 - name: Mid - - id: 5877 - name: Open - - id: 6972 - name: Closed - - id: 6973 - name: Heel - - id: 6974 - name: Toe -- id: 1221 - name: Power source - friendly_id: power_source - values: - - id: 372 - name: Other - - id: 662 - name: Charcoal - - id: 6971 - name: Mechanical - - id: 6977 - name: Manual - - id: 6987 - name: Batteries - - id: 6988 - name: Hydraulic - - id: 6989 - name: Solar - - id: 7083 - name: Hybrid - - id: 7266 - name: Alcohol - - id: 7268 - name: Butane - - id: 7270 - name: Propane - - id: 7271 - name: USB - - id: 7751 - name: Infrared - - id: 7773 - name: AC-powered - - id: 8035 - name: Ethanol - - id: 8062 - name: Natural gas - - id: 8063 - name: Oil - - id: 8064 - name: Hot water - - id: 8067 - name: Pellet - - id: 8630 - name: Firewood - - id: 10400 - name: Rechargeable - - id: 10480 - name: Cigar lighter - - id: 10483 - name: DC-powered - - id: 11085 - name: Battery-powered - - id: 14324 - name: Pneumatic - - id: 14421 - name: Gasoline - - id: 14422 - name: Diesel - - id: 16698 - name: Vehicle electrical system -- id: 1222 - name: Material hardness - friendly_id: material_hardness - values: - - id: 1511 - name: Medium - - id: 6992 - name: Extra soft - - id: 6993 - name: Soft - - id: 6994 - name: Hard - - id: 6995 - name: Extra hard - - id: 7045 - name: Low resistance - - id: 7046 - name: High resistance -- id: 1223 - name: Dynamic level - friendly_id: dynamic_level - values: - - id: 7001 - name: Orange dot - - id: 7002 - name: Double yellow dot - - id: 7003 - name: Yellow dot - - id: 7004 - name: White dot - - id: 7005 - name: Green dot - - id: 7006 - name: Red dot - - id: 7007 - name: Blue dot -- id: 1224 - name: Frame material - friendly_id: frame_material - values: - - id: 52 - name: Faux leather - - id: 64 - name: Bamboo - - id: 67 - name: Acrylic - - id: 372 - name: Other - - id: 558 - name: Leather - - id: 585 - name: Fabric - - id: 601 - name: Metal - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 620 - name: Stainless steel - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 643 - name: Ceramic - - id: 656 - name: Brass - - id: 801 - name: Steel - - id: 821 - name: Foam - - id: 822 - name: Granite - - id: 823 - name: Fiberglass - - id: 856 - name: Melamine - - id: 858 - name: Rattan - - id: 860 - name: Iron - - id: 877 - name: Resin - - id: 888 - name: Particle board - - id: 899 - name: Plywood - - id: 929 - name: Concrete - - id: 941 - name: Marble - - id: 997 - name: High density fiberboard (HDF) - - id: 1009 - name: Maple wood - - id: 1637 - name: Aluminum - - id: 1817 - name: Polyurethane (PU) - - id: 1853 - name: Medium density fiberboard (MDF) - - id: 2557 - name: Beech wood - - id: 2988 - name: Fiber reinforced plastic (FRP) - - id: 2995 - name: Oak wood - - id: 3009 - name: Wood plastic composite (WPC) - - id: 6754 - name: Pine wood - - id: 7925 - name: Wicker - - id: 8351 - name: Teak wood - - id: 10111 - name: Cherry wood - - id: 10112 - name: Walnut wood - - id: 16861 - name: Cedar wood -- id: 1227 - name: Racket gauge - friendly_id: racket_gauge - values: - - id: 2882 - name: '14' - - id: 2883 - name: '16' - - id: 2884 - name: '18' - - id: 2886 - name: '20' - - id: 2887 - name: '22' - - id: 2949 - name: '15' - - id: 2952 - name: '17' - - id: 2955 - name: '19' - - id: 2958 - name: '21' - - id: 3014 - name: '13' - - id: 7017 - name: 15L - - id: 7018 - name: 16L -- id: 1228 - name: Swing style - friendly_id: swing_style - values: - - id: 7019 - name: Compact strokes - - id: 7020 - name: Moderate strokes - - id: 7021 - name: Long strokes -- id: 1229 - name: Resistance system - friendly_id: resistance_system - values: - - id: 1650 - name: Magnetic - - id: 7023 - name: Air - - id: 7024 - name: Electromagnetic - - id: 7025 - name: Hydraulic piston - - id: 7026 - name: Water -- id: 1230 - name: Resistance level - friendly_id: resistance_level - values: - - id: 1511 - name: Medium - - id: 3661 - name: Light - - id: 3663 - name: Heavy - - id: 7031 - name: Very light - - id: 7032 - name: Very heavy -- id: 1231 - name: Compatible bench positions - friendly_id: compatible_bench_positions - values: - - id: 1363 - name: Flat - - id: 7033 - name: Decline - - id: 7034 - name: Incline -- id: 1232 - name: Compatible exercises - friendly_id: compatible_exercises - values: - - id: 7047 - name: Chin-ups - - id: 7048 - name: Dips - - id: 7049 - name: Inverted rows - - id: 7050 - name: Knee raises - - id: 7051 - name: L-sits - - id: 7052 - name: Leg raises - - id: 7053 - name: Pull-ups - - id: 7054 - name: Push-ups - - id: 7055 - name: Split squats -- id: 1233 - name: Weight bar activity - friendly_id: weight_bar_activity - values: - - id: 7061 - name: Mixed use - - id: 7062 - name: Powerlifting - - id: 7063 - name: Specialty - - id: 7064 - name: Technique training - - id: 7065 - name: Weightlifting -- id: 1234 - name: Weight bar type - friendly_id: weight_bar_type - values: - - id: 2874 - name: Solid - - id: 7066 - name: Cambered - - id: 7067 - name: Curl - - id: 7068 - name: Safety squat - - id: 7069 - name: Swiss - - id: 7070 - name: Trap -- id: 1235 - name: Compatible weight lifting accessory - friendly_id: compatible_weight_lifting_accessory - values: - - id: 7035 - name: Barbell - - id: 7071 - name: Dumbbell -- id: 1236 - name: Lock type - friendly_id: lock_type - values: - - id: 372 - name: Other - - id: 1650 - name: Magnetic - - id: 7776 - name: Code - - id: 7777 - name: Combination lock - - id: 7778 - name: Double key - - id: 7779 - name: Electronic - - id: 7780 - name: Fingerprint reader - - id: 7784 - name: Latch - - id: 12649 - name: Biometric lock - - id: 12650 - name: Key lock - - id: 12651 - name: No lock - - id: 12652 - name: Padlock loop - - id: 12653 - name: RFID lock - - id: 12654 - name: Smart lock - - id: 12655 - name: Tool less locking mechanism -- id: 1237 - name: J-cup type - friendly_id: j_cup_type - values: - - id: 1363 - name: Flat - - id: 3104 - name: Regular - - id: 7074 - name: Lowered - - id: 7075 - name: Sandwich -- id: 1238 - name: Pull-up bar - friendly_id: pull_up_bar - values: - - id: 392 - name: Standard - - id: 7076 - name: Globe grip - - id: 7077 - name: Multi-grip - - id: 7078 - name: Raw -- id: 1239 - name: Cue style - friendly_id: cue_style - values: - - id: 552 - name: Straight - - id: 7080 - name: Conical - - id: 7081 - name: Double - - id: 7082 - name: European - - id: 7083 - name: Hybrid - - id: 7084 - name: Pro -- id: 1240 - name: Cue type - friendly_id: cue_type - values: - - id: 169 - name: Short - - id: 7085 - name: Break - - id: 7086 - name: Carom - - id: 7087 - name: House - - id: 7088 - name: Jump - - id: 7089 - name: Masse - - id: 7090 - name: Play - - id: 7091 - name: Snooker -- id: 1241 - name: Cue wrap - friendly_id: cue_wrap - values: - - id: 44 - name: Nylon - - id: 429 - name: Sport - - id: 558 - name: Leather - - id: 596 - name: Cork - - id: 764 - name: Rubber - - id: 809 - name: Silicone - - id: 811 - name: Leatherette - - id: 7092 - name: No wrap - - id: 7093 - name: Irish linen - - id: 7094 - name: Luxury leather - - id: 7095 - name: Ultra skin -- id: 1242 - name: Joint style - friendly_id: joint_style - values: - - id: 372 - name: Other - - id: 7096 - name: 1/2 x 13 - - id: 7097 - name: 3/8 x 10 - - id: 7098 - name: 3/8 x 10 flat - - id: 7099 - name: 3/8 x 10 piloted - - id: 7100 - name: 3/8 x 10 wood - - id: 7101 - name: 3/8 x 11 - - id: 7102 - name: 3/8 x 11 flat - - id: 7103 - name: 3/8 x 11 flush - - id: 7104 - name: 3/8 x 11 full - - id: 7105 - name: 3/8 x 11 partial - - id: 7106 - name: 3/8 x 11 piloted - - id: 7107 - name: 3/8 x 11 wood - - id: 7108 - name: 3/8 x 14 - - id: 7109 - name: 3/8 x 8 - - id: 7110 - name: 5/16 x 11 - - id: 7111 - name: 5/16 x 12 - - id: 7112 - name: 5/16 x 14 - - id: 7113 - name: 5/16 x 14 flat - - id: 7114 - name: 5/16 x 14 flush - - id: 7115 - name: 5/16 x 14 full - - id: 7116 - name: 5/16 x 14 partial - - id: 7117 - name: 5/16 x 14 piloted - - id: 7118 - name: 5/16 x 14 wood - - id: 7119 - name: 5/16 x 18 - - id: 7120 - name: 5/16 x 18 flat - - id: 7121 - name: 5/16 x 18 piloted - - id: 7122 - name: 5/16 x 18 wood - - id: 7123 - name: Accu-Loc - - id: 7124 - name: Bullet - - id: 7125 - name: Flat-faced - - id: 7126 - name: LBM - - id: 7127 - name: Lucasi custom solid core low deflection - - id: 7128 - name: Lucasi hybrid zero flex slim - - id: 7129 - name: McDermott 3/8 x 10 - - id: 7130 - name: McDermott quick release - - id: 7131 - name: Mezz united joint - - id: 7132 - name: Mezz wavy joint - - id: 7133 - name: No joint - - id: 7134 - name: OB-1, OB-2, OB Classic, OB Pro - - id: 7135 - name: Pechauer speed joint - - id: 7136 - name: Piloted - - id: 7137 - name: Predator radial - - id: 7138 - name: Predator uniloc - - id: 7139 - name: Quick release - - id: 7140 - name: Radial - - id: 7141 - name: SBJ - - id: 7142 - name: Schon 5/16 x 14 - - id: 7143 - name: Southwest 5/16 x 14 - - id: 7144 - name: Speed joint - - id: 7145 - name: Speed-loc - - id: 7146 - name: True-loc - - id: 7147 - name: Uni-loc - - id: 7148 - name: Vantage 3/8 x 10 - - id: 7149 - name: Viking quick release - - id: 7150 - name: Viking radial - - id: 7151 - name: Wood-to-wood -- id: 1243 - name: Light color - friendly_id: light_color - values: - - id: 1 - name: Black - - id: 2 - name: Blue - - id: 3 - name: White - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 6 - name: Beige - - id: 7 - name: Brown - - id: 8 - name: Gray - - id: 9 - name: Green - - id: 10 - name: Orange - - id: 11 - name: Pink - - id: 12 - name: Purple - - id: 13 - name: Red - - id: 14 - name: Yellow - - id: 15 - name: Navy - - id: 16 - name: Rose gold - - id: 17 - name: Clear - - id: 657 - name: Bronze - - id: 2865 - name: Multicolor -- id: 1244 - name: Light temperature - friendly_id: light_temperature - values: - - id: 7152 - name: Ember glow - - id: 7153 - name: Warm white - - id: 7154 - name: Cool white - - id: 7155 - name: Daylight - - id: 7156 - name: Blue light -- id: 1245 - name: Games included - friendly_id: games_included - values: - - id: 90 - name: Air hockey - - id: 98 - name: Darts - - id: 372 - name: Other - - id: 7159 - name: Backgammon - - id: 7160 - name: Billiard - - id: 7161 - name: Blackjack - - id: 7162 - name: Bowling - - id: 7163 - name: Cards - - id: 7164 - name: Checkers - - id: 7165 - name: Chess - - id: 7166 - name: Chinese checkers - - id: 7167 - name: Dominoes - - id: 7168 - name: Foosball - - id: 7169 - name: Ludo - - id: 7170 - name: Manji - - id: 7171 - name: Marbles - - id: 7172 - name: Nok hockey - - id: 7173 - name: Pick-up sticks - - id: 7174 - name: Poker dice - - id: 7175 - name: Shuffleboard - - id: 7176 - name: Snakes & ladders - - id: 7177 - name: Steeplechase - - id: 7178 - name: Table tennis - - id: 7179 - name: Tic-tac-toe - - id: 7180 - name: Train chess -- id: 1246 - name: Frame color - friendly_id: frame_color - values: - - id: 1 - name: Black - - id: 2 - name: Blue - - id: 3 - name: White - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 6 - name: Beige - - id: 7 - name: Brown - - id: 8 - name: Gray - - id: 9 - name: Green - - id: 10 - name: Orange - - id: 11 - name: Pink - - id: 12 - name: Purple - - id: 13 - name: Red - - id: 14 - name: Yellow - - id: 15 - name: Navy - - id: 16 - name: Rose gold - - id: 17 - name: Clear - - id: 657 - name: Bronze - - id: 2865 - name: Multicolor -- id: 1248 - name: Display technology - friendly_id: display_technology - values: - - id: 372 - name: Other - - id: 1656 - name: Digital - - id: 2523 - name: Analog - - id: 7195 - name: LED - - id: 7196 - name: TFT - - id: 7771 - name: LCD - - id: 8324 - name: OLED - - id: 10189 - name: Monochrome - - id: 10190 - name: Color - - id: 10198 - name: AMOLED - - id: 10199 - name: E-ink - - id: 10200 - name: IPS - - id: 10201 - name: MIP - - id: 10202 - name: PMOLED - - id: 10203 - name: SAMOLED - - id: 11670 - name: CRT - - id: 11671 - name: DLP - - id: 11672 - name: LCoS - - id: 11673 - name: MicroLED - - id: 11674 - name: Mini-LED - - id: 11675 - name: Plasma - - id: 11676 - name: QLED - - id: 11677 - name: TN - - id: 11678 - name: VA - - id: 13379 - name: AHVA - - id: 13380 - name: PLS - - id: 16137 - name: FLD - - id: 16138 - name: LCM - - id: 16139 - name: SVA - - id: 16140 - name: TFT-LCD - - id: 16141 - name: VFD -- id: 1249 - name: Water sport - friendly_id: water_sport - values: - - id: 6883 - name: Universal - - id: 7204 - name: Scuba diving - - id: 7205 - name: Freediving - - id: 7206 - name: Snorkeling - - id: 7242 - name: Kayaking - - id: 7243 - name: Synchronized swimming - - id: 7244 - name: Waterdance -- id: 1250 - name: Fin pocket type - friendly_id: fin_pocket_type - values: - - id: 7207 - name: Full foot - - id: 7208 - name: Open heel -- id: 1251 - name: Blade type - friendly_id: blade_type - values: - - id: 552 - name: Straight - - id: 1363 - name: Flat - - id: 7737 - name: Curved - - id: 8334 - name: Hollow -- id: 1253 - name: Kitesurfing style - friendly_id: kitesurfing_style - values: - - id: 7220 - name: Big air kitesurfing - - id: 7221 - name: Foiling kitesurfing - - id: 7222 - name: Freeride kitesurfing - - id: 7223 - name: Freestyle kitesurfing - - id: 7224 - name: Snow kitesurfing - - id: 7225 - name: Speed kitesurfing - - id: 7226 - name: Wave riding -- id: 1254 - name: Fin profile - friendly_id: fin_profile - values: - - id: 7227 - name: Five-fin - - id: 7228 - name: Quad - - id: 7229 - name: Single - - id: 7230 - name: Thruster - - id: 7231 - name: Twin -- id: 1255 - name: Board concave shape - friendly_id: board_concave_shape - values: - - id: 1363 - name: Flat - - id: 7140 - name: Radial - - id: 7232 - name: Convex - - id: 7233 - name: Double-concave - - id: 7234 - name: V-concave - - id: 7235 - name: W-concave -- id: 1256 - name: Board profile - friendly_id: board_profile - values: - - id: 1363 - name: Flat - - id: 7236 - name: Camber - - id: 7237 - name: Rocker -- id: 1257 - name: Rocker type - friendly_id: rocker_type - values: - - id: 1363 - name: Flat - - id: 7083 - name: Hybrid - - id: 7236 - name: Camber - - id: 7237 - name: Rocker - - id: 7249 - name: Early rise -- id: 1258 - name: Anchor type - friendly_id: anchor_type - values: - - id: 7250 - name: Fluke - - id: 7251 - name: Grapnel - - id: 7252 - name: Mushroom - - id: 7253 - name: Plow - - id: 7254 - name: Screw - - id: 16746 - name: Claw -- id: 1259 - name: Bedding size - friendly_id: bedding_size - values: - - id: 392 - name: Standard - - id: 7081 - name: Double - - id: 7229 - name: Single - - id: 7231 - name: Twin - - id: 7261 - name: Bunk - - id: 8525 - name: California king - - id: 8526 - name: King - - id: 8527 - name: Queen -- id: 1261 - name: Product certifications & standards - friendly_id: product_certifications_and_standards - values: - - id: 372 - name: Other - - id: 7265 - name: Silicone-free - - id: 7990 - name: Fair trade - - id: 8656 - name: Gluten-free - - id: 8657 - name: Halal - - id: 8659 - name: Kosher - - id: 8664 - name: No artificial colors - - id: 8669 - name: Non-GMO - - id: 8671 - name: Organic - - id: 8675 - name: Vegan - - id: 8678 - name: Alcohol-free - - id: 10305 - name: Natural ingredients - - id: 10311 - name: ASC - - id: 10312 - name: B corporation - - id: 10313 - name: Cruelty-free - - id: 10314 - name: Ecocert - - id: 10315 - name: GMP - - id: 10316 - name: GRAS - - id: 10317 - name: Informed choice - - id: 10318 - name: ISO - - id: 10319 - name: Marine stewardship council (MSC) - - id: 10320 - name: NSF - - id: 10321 - name: Pregnancy safe - - id: 10322 - name: Rainforest alliance - - id: 10323 - name: UL - - id: 10324 - name: USDA organic - - id: 10560 - name: Dermatologist tested - - id: 10561 - name: Dye-free - - id: 10562 - name: EWG verified - - id: 10563 - name: Leaping bunny certified - - id: 10564 - name: Made safe certified - - id: 10565 - name: Natrue certified - - id: 10566 - name: Oil-free - - id: 10567 - name: Paraben-free - - id: 10568 - name: PETA approved - - id: 10569 - name: Phthalate-free - - id: 10570 - name: RSPO certified - - id: 10571 - name: SPF protection - - id: 10572 - name: Sulfate-free - - id: 10722 - name: DBP - - id: 10723 - name: Free from formaldehyde - - id: 10724 - name: Free from toluene - - id: 10725 - name: Non-toxic - - id: 10849 - name: Cosmos organic - - id: 10911 - name: All-natural ingredients - - id: 10912 - name: EU organic - - id: 10913 - name: No artificial fragrance - - id: 10914 - name: Non-GMO project verified -- id: 1263 - name: Knife type - friendly_id: knife_type - values: - - id: 103 - name: Hunting - - id: 7252 - name: Mushroom - - id: 7275 - name: Pen - - id: 7282 - name: Multi-tool - - id: 7283 - name: Barlow - - id: 7284 - name: Camper - - id: 7285 - name: Canoe - - id: 7286 - name: Congress - - id: 7287 - name: Toothpick - - id: 7288 - name: Peanut - - id: 7289 - name: Muskrat - - id: 7290 - name: Melon tester - - id: 7291 - name: Cotton sampler - - id: 7292 - name: Sodbuster - - id: 7293 - name: Stockman - - id: 7294 - name: Sunfish - - id: 7295 - name: Trapper - - id: 7296 - name: Collector - - id: 7297 - name: Utensil - - id: 7298 - name: EDC -- id: 1264 - name: Outdoor walking activity - friendly_id: outdoor_walking_activity - values: - - id: 7060 - name: Hiking - - id: 7299 - name: Nordic walking - - id: 7300 - name: Trail running - - id: 7301 - name: Trekking -- id: 1266 - name: Carabiner gate type - friendly_id: carabiner_gate_type - values: - - id: 7309 - name: Auto-locking - - id: 7310 - name: Bent gate - - id: 7311 - name: Non-locking - - id: 7312 - name: Screw gate - - id: 7313 - name: Snap gate - - id: 7314 - name: Straight gate - - id: 7315 - name: Twist lock - - id: 7316 - name: Wire gate -- id: 1267 - name: Attachment type - friendly_id: attachment_type - values: - - id: 3099 - name: Hook & loop - - id: 3732 - name: Clip-on - - id: 7327 - name: Strap-on - - id: 7759 - name: Screws - - id: 8072 - name: Built-in - - id: 10466 - name: Snap-on - - id: 15873 - name: Latches -- id: 1268 - name: Climbing activity - friendly_id: climbing_activity - values: - - id: 7328 - name: Mountaineering - - id: 7329 - name: Trad climbing - - id: 7330 - name: Ice climbing - - id: 7331 - name: Sport climbing -- id: 1269 - name: Harness closure type - friendly_id: harness_closure_type - values: - - id: 3098 - name: Zipper - - id: 3099 - name: Hook & loop - - id: 7332 - name: Drop seat buckle - - id: 7333 - name: Grommet - - id: 7334 - name: Side release buckle -- id: 1270 - name: Compatible bike type - friendly_id: compatible_bike_type - values: - - id: 6976 - name: Electric - - id: 7083 - name: Hybrid - - id: 7335 - name: Downhill - - id: 7336 - name: Mountain - - id: 7337 - name: Road -- id: 1271 - name: Vehicle placement - friendly_id: vehicle_placement - values: - - id: 6195 - name: Front - - id: 7339 - name: Rear - - id: 7340 - name: Left side - - id: 7341 - name: Right side - - id: 7342 - name: Saddle - - id: 7343 - name: Frame -- id: 1272 - name: Connectivity technology - friendly_id: connectivity_technology - values: - - id: 372 - name: Other - - id: 1251 - name: Bluetooth - - id: 1252 - name: Wi-Fi - - id: 1542 - name: LTE - - id: 7271 - name: USB - - id: 7346 - name: Wired - - id: 7347 - name: Wireless - - id: 7751 - name: Infrared - - id: 8028 - name: Radio - - id: 10197 - name: ANT+ - - id: 10231 - name: ANT - - id: 11115 - name: Cellular - - id: 11220 - name: DECT - - id: 11569 - name: AirPlay - - id: 11570 - name: DVI - - id: 11571 - name: Ethernet - - id: 11572 - name: GPS - - id: 11573 - name: HDMI - - id: 11574 - name: Miracast - - id: 11575 - name: NFC - - id: 11576 - name: Satellite - - id: 11577 - name: Wireless dongle -- id: 1273 - name: Speed settings - friendly_id: speed_settings - values: - - id: 7229 - name: Single - - id: 7348 - name: Average - - id: 7349 - name: Comparing - - id: 7350 - name: Current - - id: 7351 - name: Maximum - - id: 7352 - name: Minimum - - id: 7353 - name: Speed without motor assistance - - id: 10558 - name: Multiple - - id: 10559 - name: Variable -- id: 1274 - name: Hitch type - friendly_id: hitch_type - values: - - id: 7354 - name: Axle-mounted - - id: 7355 - name: Frame-mounted - - id: 7356 - name: Seat post - - id: 7357 - name: Trailer arm -- id: 1275 - name: Bicycle brake type - friendly_id: bicycle_brake_type - values: - - id: 7358 - name: Cantilever - - id: 7359 - name: Center-pull - - id: 7360 - name: Coaster - - id: 7361 - name: Disc - - id: 7362 - name: Drum - - id: 7363 - name: Hydraulic disc - - id: 7364 - name: Hydraulic rim - - id: 7365 - name: N-brake - - id: 7366 - name: Rim - - id: 7367 - name: Roller - - id: 7368 - name: U-brake - - id: 7369 - name: V-brake -- id: 1276 - name: Cable type - friendly_id: cable_type - values: - - id: 6976 - name: Electric - - id: 7370 - name: Brake - - id: 7371 - name: Cable housing - - id: 7372 - name: Dropper post cable - - id: 7373 - name: Gear - - id: 7374 - name: Hydraulic brake hose - - id: 7375 - name: Tandem -- id: 1278 - name: Cycling style - friendly_id: cycling_style - values: - - id: 7376 - name: Cross-country cycling - - id: 7377 - name: Mountain cycling - - id: 7378 - name: Road racing - - id: 7379 - name: City cycling - - id: 7380 - name: Track racing - - id: 7381 - name: Triathlon - - id: 7382 - name: BMX racing - - id: 7383 - name: Recreational cycling - - id: 7387 - name: MTB racing - - id: 7388 - name: Training -- id: 1280 - name: Valve type - friendly_id: valve_type - values: - - id: 7384 - name: Presta - - id: 7385 - name: Schrader - - id: 7386 - name: Woods -- id: 1281 - name: Tire bead type - friendly_id: tire_bead_type - values: - - id: 7219 - name: Flexible - - id: 7389 - name: Folding - - id: 7390 - name: TS - - id: 7391 - name: Rigid - - id: 7392 - name: TR -- id: 1282 - name: Gearing type - friendly_id: gearing_type - values: - - id: 7393 - name: Chain - - id: 7394 - name: Chainless - - id: 7395 - name: Belt -- id: 1283 - name: Wheel type - friendly_id: wheel_type - values: - - id: 2874 - name: Solid - - id: 7401 - name: Inflatable -- id: 1284 - name: Boot type - friendly_id: boot_type - values: - - id: 7402 - name: Half chaps - - id: 7403 - name: Full chaps - - id: 7582 - name: Hard boot - - id: 7583 - name: Soft boot - - id: 7584 - name: Semi-soft boot - - id: 7585 - name: Reinforced boot -- id: 1285 - name: Product form - friendly_id: product_form - values: - - id: 372 - name: Other - - id: 783 - name: Gel - - id: 821 - name: Foam - - id: 2874 - name: Solid - - id: 6932 - name: Pads - - id: 6968 - name: Stick - - id: 7404 - name: Paste - - id: 7405 - name: Powder - - id: 7406 - name: Liquid - - id: 7407 - name: Spray - - id: 7926 - name: Film - - id: 8063 - name: Oil - - id: 8191 - name: Cream - - id: 8646 - name: Milk - - id: 10246 - name: Wipes - - id: 10263 - name: Ointment - - id: 10264 - name: Roll-on - - id: 10265 - name: Lotion - - id: 10487 - name: Suppository - - id: 10610 - name: Pencil - - id: 10611 - name: Cream-to-powder - - id: 10613 - name: Loose powder - - id: 10614 - name: Pressed powder - - id: 10619 - name: Serum - - id: 10841 - name: Foaming lotion - - id: 10842 - name: Mousse - - id: 10843 - name: Towelette - - id: 11129 - name: Tablets - - id: 16912 - name: Kohl -- id: 1286 - name: Horse category - friendly_id: horse_category - values: - - id: 392 - name: Standard - - id: 7417 - name: Cob - - id: 7418 - name: Draft horse - - id: 7419 - name: Miniature horse - - id: 7420 - name: Pony - - id: 7421 - name: Warmblood -- id: 1287 - name: Clothing type - friendly_id: clothing_type - values: - - id: 7424 - name: Bootfoot - - id: 7425 - name: Chest - - id: 7426 - name: Hip - - id: 7427 - name: Stockingfoot - - id: 7428 - name: Thigh - - id: 7429 - name: Waist -- id: 1288 - name: Hoop shape - friendly_id: hoop_shape - values: - - id: 627 - name: Round - - id: 7319 - name: D-shaped - - id: 7322 - name: Rectangle - - id: 7434 - name: Teardrop -- id: 1289 - name: Angling style - friendly_id: angling_style - values: - - id: 7435 - name: Baitcasting - - id: 7436 - name: Centerpin - - id: 7437 - name: Fly fishing - - id: 7438 - name: Ice fishing - - id: 7439 - name: Spinning - - id: 7440 - name: Surfcasting - - id: 7441 - name: Trolling -- id: 1290 - name: Gear ratio - friendly_id: gear_ratio - values: - - id: 7442 - name: '6:1' - - id: 7443 - name: '7:1' - - id: 7444 - name: 7.2:1 - - id: 7445 - name: '4:1' - - id: 7446 - name: 4.5:1 - - id: 7447 - name: '1:1' - - id: 7448 - name: '3:1' - - id: 7449 - name: 5.2:1 - - id: 7450 - name: 5.5:1 - - id: 7451 - name: 4.9:1 - - id: 7452 - name: 5.1:1 - - id: 7453 - name: 4.1:1 -- id: 1291 - name: Spool material - friendly_id: spool_material - values: - - id: 620 - name: Stainless steel - - id: 626 - name: Plastic - - id: 671 - name: Graphite - - id: 696 - name: Carbon - - id: 787 - name: Magnesium - - id: 1319 - name: Duralumin - - id: 1637 - name: Aluminum -- id: 1292 - name: Butt cap material - friendly_id: butt_cap_material - values: - - id: 65 - name: Ethylene vinyl acetate (EVA) - - id: 596 - name: Cork - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 764 - name: Rubber - - id: 882 - name: Composite - - id: 1637 - name: Aluminum - - id: 16921 - name: Hypalon -- id: 1293 - name: Fishing rod action - friendly_id: fishing_rod_action - values: - - id: 3662 - name: Moderate - - id: 7454 - name: Slow - - id: 7455 - name: Moderate-fast - - id: 7456 - name: Fast - - id: 7457 - name: Extra fast -- id: 1294 - name: Fishing rod power - friendly_id: fishing_rod_power - values: - - id: 1511 - name: Medium - - id: 3661 - name: Light - - id: 3663 - name: Heavy - - id: 7458 - name: Ultra light - - id: 7459 - name: Medium-light - - id: 7460 - name: Medium-heavy - - id: 7461 - name: Extra heavy -- id: 1295 - name: Handle material - friendly_id: handle_material - values: - - id: 44 - name: Nylon - - id: 62 - name: Synthetic - - id: 64 - name: Bamboo - - id: 65 - name: Ethylene vinyl acetate (EVA) - - id: 372 - name: Other - - id: 558 - name: Leather - - id: 596 - name: Cork - - id: 601 - name: Metal - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 620 - name: Stainless steel - - id: 623 - name: Titanium - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 643 - name: Ceramic - - id: 656 - name: Brass - - id: 657 - name: Bronze - - id: 666 - name: Copper - - id: 671 - name: Graphite - - id: 764 - name: Rubber - - id: 785 - name: Galvanized steel - - id: 806 - name: Thermoplastic elastomer (TPE) - - id: 809 - name: Silicone - - id: 818 - name: Duroplast - - id: 823 - name: Fiberglass - - id: 860 - name: Iron - - id: 863 - name: Carbon steel - - id: 1001 - name: Carbide - - id: 1022 - name: Beryllium - - id: 1637 - name: Aluminum - - id: 8321 - name: Teflon - - id: 8398 - name: G-10 -- id: 1296 - name: Rod material - friendly_id: rod_material - values: - - id: 64 - name: Bamboo - - id: 65 - name: Ethylene vinyl acetate (EVA) - - id: 596 - name: Cork - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 671 - name: Graphite - - id: 764 - name: Rubber - - id: 823 - name: Fiberglass - - id: 1637 - name: Aluminum -- id: 1297 - name: Tip type - friendly_id: tip_type - values: - - id: 3115 - name: Cable - - id: 7462 - name: Chisel - - id: 7463 - name: Double barb - - id: 7464 - name: Harpoon - - id: 7465 - name: Paralyzer - - id: 7466 - name: Single barb - - id: 7467 - name: Slip - - id: 7468 - name: Spring-loaded - - id: 7469 - name: Trident -- id: 1298 - name: Club subset - friendly_id: club_subset - values: - - id: 7500 - name: Blade putter - - id: 7501 - name: Fairway wood - - id: 7502 - name: Gap wedge - - id: 7503 - name: Lob wedge - - id: 7504 - name: Long iron - - id: 7505 - name: Mallet putter - - id: 7506 - name: Mid iron - - id: 7507 - name: Mid mallet putter - - id: 7508 - name: Peripheral weighted putter - - id: 7509 - name: Pitching wedge - - id: 7510 - name: Sand wedge - - id: 7511 - name: Short iron - - id: 7512 - name: Traditional blade putter - - id: 7513 - name: Ultra lob wedge -- id: 1299 - name: Club type - friendly_id: club_type - values: - - id: 625 - name: Wood - - id: 860 - name: Iron - - id: 7083 - name: Hybrid - - id: 7514 - name: Chipper - - id: 7515 - name: Driver - - id: 7516 - name: Fairway - - id: 7517 - name: Putter - - id: 7518 - name: Utility - - id: 7519 - name: Wedge -- id: 1300 - name: Shaft flex - friendly_id: shaft_flex - values: - - id: 3104 - name: Regular - - id: 7520 - name: Extra stiff - - id: 7521 - name: Stiff - - id: 7522 - name: Active - - id: 7523 - name: Senior - - id: 7524 - name: Ladies -- id: 1301 - name: Parachuting activity - friendly_id: parachuting_activity - values: - - id: 7526 - name: BASE jumping - - id: 7527 - name: Hang gliding - - id: 7528 - name: High altitude balloon jumping - - id: 7529 - name: Military parachuting - - id: 7530 - name: Parachute acrobatics - - id: 7531 - name: Parachute racing - - id: 7532 - name: Parachute rescue - - id: 7533 - name: Parachute skiing - - id: 7534 - name: Parachute surfing - - id: 7535 - name: Parachute testing - - id: 7536 - name: Paragliding - - id: 7537 - name: Skydiving - - id: 7538 - name: Smoke jumping -- id: 1302 - name: Archery activity - friendly_id: archery_activity - values: - - id: 7539 - name: Outdoor hunting - - id: 7540 - name: Targets practice -- id: 1303 - name: Archery style - friendly_id: archery_style - values: - - id: 7541 - name: 3D archery - - id: 7542 - name: Bowhunting - - id: 7543 - name: Compound target - - id: 7544 - name: Recreational -- id: 1306 - name: String material - friendly_id: string_material - values: - - id: 828 - name: Kevlar - - id: 947 - name: Vectran - - id: 7545 - name: Dacron - - id: 16923 - name: High-modulus polyethylene (HMPE) -- id: 1307 - name: Quiver style - friendly_id: quiver_style - values: - - id: 1247 - name: Modern - - id: 3176 - name: Back - - id: 7395 - name: Belt - - id: 7426 - name: Hip - - id: 7554 - name: Bow - - id: 7555 - name: Field - - id: 7556 - name: Ground - - id: 7557 - name: Pocket - - id: 7558 - name: Shoulder - - id: 7559 - name: Traditional -- id: 1308 - name: Animal type - friendly_id: animal_type - values: - - id: 372 - name: Other - - id: 2283 - name: Birds - - id: 7560 - name: Beavers - - id: 7561 - name: Boars - - id: 7562 - name: Bobcats - - id: 7563 - name: Coyotes - - id: 7564 - name: Deer - - id: 7565 - name: Ducks - - id: 7566 - name: Foxes - - id: 7567 - name: Geese - - id: 7568 - name: Gophers - - id: 7569 - name: Mice - - id: 7570 - name: Moles - - id: 7571 - name: Rabbits - - id: 7572 - name: Raccoons - - id: 7573 - name: Rats - - id: 7574 - name: Squirrels - - id: 7575 - name: Turkeys - - id: 8223 - name: Cats - - id: 8224 - name: Chipmunks - - id: 8225 - name: Dogs - - id: 8226 - name: Groundhogs - - id: 8227 - name: Possums - - id: 8228 - name: Skunks - - id: 11109 - name: Ferrets - - id: 11110 - name: Guinea pigs - - id: 11111 - name: Hamsters - - id: 11112 - name: Reptiles - - id: 11150 - name: Chameleons - - id: 11151 - name: Frogs - - id: 11152 - name: Geckos - - id: 11153 - name: Hermit crabs - - id: 11154 - name: Lizards - - id: 11155 - name: Snakes - - id: 11156 - name: Turtles - - id: 11162 - name: Rodents - - id: 11165 - name: Chinchillas - - id: 11166 - name: Gerbils - - id: 15844 - name: Cattle - - id: 15845 - name: Chickens - - id: 15846 - name: Goats - - id: 15847 - name: Mixed herd - - id: 15848 - name: Pigs - - id: 15849 - name: Sheep -- id: 1310 - name: Inline skating style - friendly_id: inline_skating_style - values: - - id: 7586 - name: Aggressive inline skating - - id: 7587 - name: Freestyle slalom inline skating - - id: 7588 - name: Roller hockey inline skating - - id: 7589 - name: Artistic inline skating - - id: 7590 - name: Downhill inline skating - - id: 7591 - name: Recreational inline skating - - id: 7592 - name: Speed inline skating -- id: 1311 - name: Ramp type - friendly_id: ramp_type - values: - - id: 7597 - name: Bank ramp - - id: 7598 - name: Bowl - - id: 7599 - name: Drop-in ramp - - id: 7600 - name: Fly box - - id: 7601 - name: Fun box - - id: 7602 - name: Grind box - - id: 7603 - name: Half-pipe - - id: 7604 - name: Kicker ramp - - id: 7605 - name: Launch ramp - - id: 7606 - name: Ledge - - id: 7607 - name: Manual pad - - id: 7608 - name: Mini-ramp - - id: 7609 - name: Pyramid - - id: 7610 - name: Quarter-pipe - - id: 7611 - name: Rail - - id: 7612 - name: Snake run - - id: 7613 - name: Spine ramp - - id: 7614 - name: Step-up ramp - - id: 7615 - name: Vert ramp - - id: 7616 - name: Wall ride -- id: 1312 - name: Board type - friendly_id: board_type - values: - - id: 1246 - name: Classic - - id: 7617 - name: Cruiser - - id: 7618 - name: Longboard - - id: 7619 - name: Mini-cruiser - - id: 7620 - name: Mountainboard - - id: 7621 - name: Special shape -- id: 1313 - name: Skateboarding style - friendly_id: skateboarding_style - values: - - id: 7257 - name: Freestyle - - id: 7258 - name: Slalom - - id: 7335 - name: Downhill - - id: 7622 - name: Cruising - - id: 7623 - name: Off-road - - id: 7624 - name: Park - - id: 7625 - name: Ramp - - id: 7626 - name: Street -- id: 1314 - name: Wheel hardness - friendly_id: wheel_hardness - values: - - id: 7627 - name: 75A - - id: 7628 - name: 78A - - id: 7629 - name: 80A - - id: 7630 - name: 81A - - id: 7631 - name: 82A - - id: 7632 - name: 83A - - id: 7633 - name: 84A - - id: 7634 - name: 86A - - id: 7635 - name: 90A - - id: 7636 - name: 97A - - id: 7637 - name: 101A -- id: 1315 - name: Wheel hub placement - friendly_id: wheel_hub_placement - values: - - id: 7638 - name: Centerset wheel - - id: 7639 - name: Offset wheel - - id: 7640 - name: Side-set wheel -- id: 1316 - name: Application method - friendly_id: application_method - values: - - id: 783 - name: Gel - - id: 2874 - name: Solid - - id: 7404 - name: Paste - - id: 7405 - name: Powder - - id: 7406 - name: Liquid - - id: 7407 - name: Spray - - id: 7410 - name: Granules - - id: 8191 - name: Cream -- id: 1317 - name: Skiing style - friendly_id: skiing_style - values: - - id: 7644 - name: All-mountain skiing - - id: 7645 - name: Backcountry skiing - - id: 7646 - name: Carve skiing - - id: 7647 - name: Freeride skiing - - id: 7648 - name: Freestyle skiing - - id: 7649 - name: Park skiing - - id: 7650 - name: Piste skiing - - id: 7651 - name: Powder skiing - - id: 7652 - name: Race skiing - - id: 7653 - name: Touring - - id: 7655 - name: Cross-country skiing - - id: 7656 - name: Ski touring - - id: 7657 - name: Downhill skiing - - id: 7658 - name: Alpine skiing - - id: 7659 - name: Ski racing - - id: 7660 - name: Nordic skiing -- id: 1318 - name: Riding style - friendly_id: riding_style - values: - - id: 7256 - name: Freeride - - id: 7257 - name: Freestyle - - id: 7258 - name: Slalom - - id: 7624 - name: Park - - id: 7654 - name: All-mountain -- id: 1319 - name: Binding mount - friendly_id: binding_mount - values: - - id: 7661 - name: 2x2 disc - - id: 7662 - name: 3D disc - - id: 7663 - name: 4D - - id: 7664 - name: 4x4 disc - - id: 7665 - name: EST channel system -- id: 1320 - name: Flexibility rating - friendly_id: flexibility_rating - values: - - id: 2879 - name: '1' - - id: 2880 - name: '10' - - id: 2885 - name: '2' - - id: 2896 - name: '4' - - id: 2907 - name: '6' - - id: 2909 - name: '8' - - id: 2938 - name: '3' - - id: 2941 - name: '5' - - id: 2944 - name: '7' - - id: 2947 - name: '9' -- id: 1321 - name: Shoe binding type - friendly_id: shoe_binding_type - values: - - id: 7326 - name: Step-in - - id: 7667 - name: Strap-in - - id: 7668 - name: Speed entry - - id: 7685 - name: Boa - - id: 7686 - name: Hyperlink - - id: 7687 - name: Quick release buckle - - id: 7688 - name: Ratchet strap - - id: 7689 - name: Webbing strap -- id: 1322 - name: Toe strap type - friendly_id: toe_strap_type - values: - - id: 7669 - name: Toe cap strap - - id: 7670 - name: Traditional toe strap - - id: 7671 - name: Hybrid toe strap - - id: 7672 - name: One piece strap - - id: 7673 - name: 3D -- id: 1323 - name: Snowboarding style - friendly_id: snowboarding_style - values: - - id: 7674 - name: Park snowboarding - - id: 7675 - name: Backcountry snowboarding - - id: 7676 - name: Freestyle snowboarding - - id: 7677 - name: All-mountain snowboarding - - id: 7678 - name: Freeriding - - id: 7679 - name: Race snowboarding - - id: 7680 - name: Powder snowboarding -- id: 1324 - name: Stiffness - friendly_id: stiffness - values: - - id: 1511 - name: Medium - - id: 6993 - name: Soft - - id: 7521 - name: Stiff -- id: 1325 - name: Snowboard design - friendly_id: snowboard_design - values: - - id: 7681 - name: Twin tip - - id: 7682 - name: Directional twin - - id: 7683 - name: Directional - - id: 7684 - name: Tapered -- id: 1326 - name: Terrain - friendly_id: terrain - values: - - id: 1363 - name: Flat - - id: 7336 - name: Mountain - - id: 7693 - name: Rolling -- id: 1327 - name: Pile type - friendly_id: pile_type - values: - - id: 559 - name: Plush - - id: 563 - name: Velvet - - id: 1364 - name: Low - - id: 3115 - name: Cable - - id: 7697 - name: Berber - - id: 7698 - name: Braided - - id: 7699 - name: Cut - - id: 7700 - name: Cut & loop - - id: 7701 - name: Flatweave - - id: 7702 - name: Frieze - - id: 7703 - name: Hand-knotted - - id: 7704 - name: Hand-tufted - - id: 7705 - name: Level loop - - id: 7706 - name: Loop - - id: 7707 - name: Machine made - - id: 7708 - name: Multi-level loop - - id: 7709 - name: Saxony - - id: 7710 - name: Shag - - id: 7711 - name: Textured saxony - - id: 7712 - name: Tufted -- id: 1328 - name: Housing material - friendly_id: housing_material - values: - - id: 52 - name: Faux leather - - id: 64 - name: Bamboo - - id: 67 - name: Acrylic - - id: 372 - name: Other - - id: 558 - name: Leather - - id: 585 - name: Fabric - - id: 601 - name: Metal - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 620 - name: Stainless steel - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 643 - name: Ceramic - - id: 656 - name: Brass - - id: 801 - name: Steel - - id: 821 - name: Foam - - id: 822 - name: Granite - - id: 823 - name: Fiberglass - - id: 856 - name: Melamine - - id: 858 - name: Rattan - - id: 860 - name: Iron - - id: 877 - name: Resin - - id: 888 - name: Particle board - - id: 899 - name: Plywood - - id: 929 - name: Concrete - - id: 941 - name: Marble - - id: 997 - name: High density fiberboard (HDF) - - id: 1009 - name: Maple wood - - id: 1637 - name: Aluminum - - id: 1817 - name: Polyurethane (PU) - - id: 1853 - name: Medium density fiberboard (MDF) - - id: 2557 - name: Beech wood - - id: 2988 - name: Fiber reinforced plastic (FRP) - - id: 2995 - name: Oak wood - - id: 3009 - name: Wood plastic composite (WPC) - - id: 6754 - name: Pine wood - - id: 7925 - name: Wicker - - id: 8351 - name: Teak wood - - id: 10111 - name: Cherry wood - - id: 10112 - name: Walnut wood - - id: 16861 - name: Cedar wood -- id: 1329 - name: Rod shape - friendly_id: rod_shape - values: - - id: 372 - name: Other - - id: 552 - name: Straight - - id: 7737 - name: Curved - - id: 7738 - name: L-shaped - - id: 7739 - name: U-shaped -- id: 1330 - name: Camera shape - friendly_id: camera_shape - values: - - id: 372 - name: Other - - id: 7124 - name: Bullet - - id: 7740 - name: Dome - - id: 7741 - name: Box -- id: 1331 - name: Control type - friendly_id: control_type - values: - - id: 7347 - name: Wireless - - id: 7742 - name: Button - - id: 7743 - name: Lever - - id: 7744 - name: Not available - - id: 7745 - name: Rotary - - id: 7746 - name: Scrollbar - - id: 7747 - name: Sensor - - id: 7748 - name: Slider - - id: 7749 - name: Tilt - - id: 7750 - name: Touch -- id: 1332 - name: Sensor type - friendly_id: sensor_type - values: - - id: 7751 - name: Infrared - - id: 8046 - name: Biomimetic - - id: 8047 - name: Electrochemical - - id: 8048 - name: MOS -- id: 1333 - name: Light source - friendly_id: light_source - values: - - id: 7195 - name: LED - - id: 7751 - name: Infrared - - id: 7760 - name: Incandescent - - id: 7761 - name: Fluorescent - - id: 7762 - name: Halogen - - id: 14538 - name: Xenon -- id: 1334 - name: Display resolution - friendly_id: display_resolution - values: - - id: 372 - name: Other - - id: 7763 - name: 1024 x 768 - - id: 7764 - name: 1280 x 768 - - id: 7765 - name: 1280 x 1024 - - id: 7766 - name: 1366 x 768 - - id: 7767 - name: 1440 x 900 - - id: 7768 - name: 1680 x 1050 - - id: 7769 - name: 1920 x 1080 - - id: 7770 - name: 4096 x 2160 - - id: 11695 - name: 1080p - - id: 11696 - name: 1440p - - id: 11697 - name: 144p - - id: 11698 - name: 2160p - - id: 11699 - name: 240p - - id: 11700 - name: 360p - - id: 11701 - name: 4320p - - id: 11702 - name: 480p - - id: 11703 - name: 4K ultra HD - - id: 11704 - name: 720p - - id: 11705 - name: 8K ultra HD - - id: 11706 - name: Full HD - - id: 11707 - name: HD - - id: 11708 - name: Quad HD - - id: 11709 - name: SD - - id: 13784 - name: 5K ultra HD - - id: 14579 - name: 2560 × 1440 -- id: 1335 - name: Keypad style - friendly_id: keypad_style - values: - - id: 1656 - name: Digital - - id: 6971 - name: Mechanical - - id: 7788 - name: Alphanumeric - - id: 7789 - name: Biometric - - id: 7790 - name: Numeric - - id: 7791 - name: Touch-sensitive -- id: 1336 - name: Compatible lock type - friendly_id: compatible_lock_type - values: - - id: 1650 - name: Magnetic - - id: 7776 - name: Code - - id: 7777 - name: Combination lock - - id: 7778 - name: Double key - - id: 7779 - name: Electronic - - id: 7780 - name: Fingerprint reader - - id: 12650 - name: Key lock - - id: 12652 - name: Padlock loop - - id: 12653 - name: RFID lock -- id: 1337 - name: RFID frequency - friendly_id: rfid_frequency - values: - - id: 1364 - name: Low - - id: 1376 - name: High - - id: 7792 - name: Ultra-high -- id: 1338 - name: Plant class - friendly_id: plant_class - values: - - id: 372 - name: Other - - id: 7793 - name: Arecidae - - id: 7794 - name: Apiales - - id: 7795 - name: Aquifoliaceae - - id: 7796 - name: Asparagales - - id: 7797 - name: Asterales - - id: 7798 - name: Brassicales - - id: 7799 - name: Bryophyta - - id: 7800 - name: Caryophyllales - - id: 7801 - name: Charophyceae - - id: 7802 - name: Chlorophyceae - - id: 7803 - name: Commelinidae - - id: 7804 - name: Coniferopsida - - id: 7805 - name: Cornales - - id: 7806 - name: Cucurbitales - - id: 7807 - name: Cycadopsida - - id: 7808 - name: Dilleniidae - - id: 7809 - name: Dioscoreales - - id: 7810 - name: Ericales - - id: 7811 - name: Equisetopsida - - id: 7812 - name: Fabidae - - id: 7813 - name: Fagales - - id: 7814 - name: Geraniales - - id: 7815 - name: Ginkgopsida - - id: 7816 - name: Gnetidae - - id: 7817 - name: Gnetopsida - - id: 7818 - name: Lamiales - - id: 7819 - name: Liliopsida - - id: 7820 - name: Lycopodiopsida - - id: 7821 - name: Magnoliidae - - id: 7822 - name: Magnoliopsida - - id: 7823 - name: Malpighiales - - id: 7824 - name: Marchantiophyta - - id: 7825 - name: Myrtales - - id: 7826 - name: Ophioglossopsida - - id: 7827 - name: Oxalidales - - id: 7828 - name: Pinopsida - - id: 7829 - name: Piperales - - id: 7830 - name: Poales - - id: 7831 - name: Polypodiopsida - - id: 7832 - name: Psilotopsida - - id: 7833 - name: Ranunculales - - id: 7834 - name: Rosales - - id: 7835 - name: Rosidae - - id: 7836 - name: Santalales - - id: 7837 - name: Sapindales - - id: 7838 - name: Saxifragales - - id: 7839 - name: Solanales - - id: 7840 - name: Vitales - - id: 7841 - name: Zingiberales -- id: 1339 - name: Plant name - friendly_id: plant_name - values: - - id: 40 - name: Cotton - - id: 64 - name: Bamboo - - id: 372 - name: Other - - id: 770 - name: Willow - - id: 1015 - name: Eucalyptus - - id: 1033 - name: Pine - - id: 7842 - name: Aeonium - - id: 7843 - name: Allium - - id: 7844 - name: Alocasia - - id: 7845 - name: Aloe vera - - id: 7846 - name: Amaryllis - - id: 7847 - name: Anthurium - - id: 7848 - name: Aralia - - id: 7849 - name: Bonsai - - id: 7850 - name: Bougainvillea - - id: 7851 - name: Boxwood - - id: 7852 - name: Cactus - - id: 7853 - name: Calathea - - id: 7854 - name: Cherry - - id: 7855 - name: Chrysanthemum - - id: 7856 - name: Dahlia - - id: 7857 - name: Echeveria - - id: 7858 - name: Edelweiss - - id: 7859 - name: Ficus - - id: 7860 - name: Fir - - id: 7861 - name: Galanthus - - id: 7862 - name: Grass - - id: 7863 - name: Hydrangea - - id: 7864 - name: Ivy - - id: 7865 - name: Magnolia - - id: 7866 - name: Miscanthus sinensis - - id: 7867 - name: Monstera - - id: 7868 - name: Olive - - id: 7869 - name: Orchid - - id: 7870 - name: Palm - - id: 7871 - name: Pampas grass - - id: 7872 - name: Papyrus - - id: 7873 - name: Peony - - id: 7874 - name: Phalaenopsis - - id: 7875 - name: Philodendron - - id: 7876 - name: Poinsettia - - id: 7877 - name: Protea - - id: 7878 - name: Ranunculus - - id: 7879 - name: Rose - - id: 7880 - name: Sansevieria - - id: 7881 - name: Water lily - - id: 7882 - name: Wildflower - - id: 7883 - name: Zamioculcas - - id: 7947 - name: Jasmine - - id: 7948 - name: Lavender - - id: 8532 - name: Begonia - - id: 8533 - name: Bird of paradise - - id: 8534 - name: Crocus - - id: 8535 - name: Cyclamen - - id: 8536 - name: Daffodil - - id: 8537 - name: Daisy - - id: 8538 - name: Dandelion - - id: 8539 - name: Echinacea - - id: 8540 - name: Fern - - id: 8541 - name: Forsythia - - id: 8542 - name: Gardenia - - id: 8543 - name: Geranium - - id: 8544 - name: Hibiscus - - id: 8545 - name: Hosta - - id: 8546 - name: Honeysuckle - - id: 8547 - name: Hyacinth - - id: 8548 - name: Lily - - id: 8549 - name: Marigold - - id: 8550 - name: Pansy - - id: 8551 - name: Petunia - - id: 8552 - name: Rubber plant - - id: 8553 - name: Spider plant - - id: 8554 - name: Sunflower - - id: 8555 - name: Sweet pea - - id: 8556 - name: Tulip - - id: 8557 - name: Venus flytrap - - id: 8558 - name: Violet - - id: 8559 - name: Weeping fig - - id: 8560 - name: Yarrow - - id: 8561 - name: Yucca - - id: 8562 - name: Zinnia - - id: 8603 - name: Aubergine - - id: 8604 - name: Basil - - id: 8605 - name: Bay leaves - - id: 8606 - name: Bell pepper - - id: 8607 - name: Cherry tomato - - id: 8608 - name: Chervil - - id: 8609 - name: Chives - - id: 8610 - name: Cilantro - - id: 8611 - name: Coriander - - id: 8612 - name: Courgette - - id: 8613 - name: Cucumber - - id: 8614 - name: Curry leaves - - id: 8615 - name: Dill - - id: 8616 - name: Fennel - - id: 8617 - name: Grape vine - - id: 8618 - name: Marjoram - - id: 8619 - name: Mint - - id: 8620 - name: Oregano - - id: 8621 - name: Parsley - - id: 8622 - name: Rosemary - - id: 8623 - name: Sage - - id: 8624 - name: Tarragon - - id: 8625 - name: Thyme - - id: 8626 - name: Tomato -- id: 1340 - name: Frame - friendly_id: frame - values: - - id: 67 - name: Acrylic - - id: 605 - name: Canvas - - id: 1247 - name: Modern - - id: 3132 - name: Clip - - id: 7698 - name: Braided - - id: 7885 - name: Floater - - id: 7886 - name: Framed - - id: 7887 - name: Gallery wrapped - - id: 7888 - name: Matted - - id: 7889 - name: Ornate - - id: 7890 - name: Poster - - id: 7891 - name: Rustic - - id: 7892 - name: Shadow box - - id: 7893 - name: Unframed -- id: 1341 - name: Cover material - friendly_id: cover_material - values: - - id: 40 - name: Cotton - - id: 44 - name: Nylon - - id: 45 - name: Polyester - - id: 51 - name: Wool - - id: 52 - name: Faux leather - - id: 54 - name: Denim - - id: 55 - name: Viscose - - id: 57 - name: Modal - - id: 60 - name: Linen - - id: 62 - name: Synthetic - - id: 63 - name: Fur - - id: 64 - name: Bamboo - - id: 67 - name: Acrylic - - id: 372 - name: Other - - id: 555 - name: Fleece - - id: 556 - name: Flannel - - id: 557 - name: Felt - - id: 558 - name: Leather - - id: 565 - name: Twill - - id: 566 - name: Neoprene - - id: 594 - name: Faux fur - - id: 596 - name: Cork - - id: 600 - name: Mesh - - id: 605 - name: Canvas - - id: 613 - name: Jute - - id: 621 - name: Tarpaulin - - id: 624 - name: Vinyl - - id: 626 - name: Plastic - - id: 764 - name: Rubber - - id: 830 - name: Latex - - id: 858 - name: Rattan - - id: 983 - name: Mohair - - id: 1007 - name: Lycra - - id: 1042 - name: Hemp -- id: 1342 - name: Filler material - friendly_id: filler_material - values: - - id: 40 - name: Cotton - - id: 45 - name: Polyester - - id: 51 - name: Wool - - id: 62 - name: Synthetic - - id: 555 - name: Fleece - - id: 557 - name: Felt - - id: 559 - name: Plush - - id: 789 - name: Memory foam - - id: 990 - name: Polystyrene (PS) - - id: 1803 - name: Feathers - - id: 1817 - name: Polyurethane (PU) - - id: 11000 - name: Microbeads - - id: 16899 - name: Buckwheat hulls - - id: 16900 - name: Down feather -- id: 1343 - name: Filler support - friendly_id: filler_support - values: - - id: 395 - name: Adjustable - - id: 559 - name: Plush - - id: 789 - name: Memory foam - - id: 830 - name: Latex - - id: 1511 - name: Medium - - id: 6993 - name: Soft - - id: 7919 - name: Buckwheat - - id: 7920 - name: Down - - id: 7921 - name: Extra firm - - id: 7922 - name: Firm - - id: 7923 - name: Microbead - - id: 7924 - name: Mid-plush -- id: 1344 - name: Suitable for chair type - friendly_id: suitable_for_chair_type - values: - - id: 6883 - name: Universal - - id: 7306 - name: Camping - - id: 7927 - name: Bench - - id: 7928 - name: Sofa - - id: 7929 - name: Spa - - id: 7930 - name: Stool -- id: 1346 - name: Finial shape - friendly_id: finial_shape - values: - - id: 372 - name: Other - - id: 7936 - name: Acorn - - id: 7937 - name: Ball - - id: 7938 - name: Spear -- id: 1347 - name: Flag shape - friendly_id: flag_shape - values: - - id: 372 - name: Other - - id: 6998 - name: Triangular - - id: 7434 - name: Teardrop - - id: 7939 - name: Pennant - - id: 10140 - name: Rectangular -- id: 1348 - name: Units of measurement - friendly_id: units_of_measurement - values: - - id: 7943 - name: Inches (in) - - id: 7944 - name: Centimeters (cm) - - id: 7952 - name: Millimeters (mm) - - id: 8325 - name: Fahrenheit (°F) - - id: 8326 - name: Celsius (°C) - - id: 8345 - name: Cups (c) - - id: 8346 - name: Quarts (qt) - - id: 8347 - name: Liters (l) - - id: 8348 - name: Milliliters (ml) - - id: 14555 - name: Board feet (bft) - - id: 14556 - name: Feet per second (ft/s) - - id: 14557 - name: Kilometers per hour (km/h) - - id: 14558 - name: Knots (kn) - - id: 14559 - name: Meters per second (m/s) - - id: 14560 - name: Miles per hour (mph) - - id: 14561 - name: Unspecified - - id: 14565 - name: Feet (ft) - - id: 14566 - name: Meters (m) - - id: 14567 - name: Micrometers (μm) - - id: 14568 - name: Yards (yd) -- id: 1349 - name: Scent - friendly_id: scent - values: - - id: 372 - name: Other - - id: 1015 - name: Eucalyptus - - id: 1033 - name: Pine - - id: 2871 - name: Floral - - id: 7854 - name: Cherry - - id: 7879 - name: Rose - - id: 7945 - name: Cinnamon - - id: 7946 - name: Citrus - - id: 7947 - name: Jasmine - - id: 7948 - name: Lavender - - id: 7949 - name: Ocean breeze - - id: 7950 - name: Sandalwood - - id: 7951 - name: Vanilla - - id: 8180 - name: Fresh linen - - id: 8181 - name: Tea tree - - id: 9068 - name: Strawberry - - id: 9936 - name: Oriental - - id: 10017 - name: Herbal - - id: 10491 - name: Aquatic - - id: 10492 - name: Unscented - - id: 10771 - name: Fruity - - id: 10772 - name: Woody -- id: 1350 - name: Magnet type - friendly_id: magnet_type - values: - - id: 623 - name: Titanium - - id: 643 - name: Ceramic - - id: 847 - name: Mylar - - id: 948 - name: Neodymium - - id: 1022 - name: Beryllium - - id: 7953 - name: Cobalt - - id: 7954 - name: Ferrite - - id: 7955 - name: NdFeB - - id: 7956 - name: Neo titanium - - id: 7957 - name: Rubidium - - id: 7958 - name: Strontium - - id: 15419 - name: Alnico -- id: 1351 - name: Style - friendly_id: style - values: - - id: 372 - name: Other - - id: 1246 - name: Classic - - id: 1247 - name: Modern - - id: 1528 - name: Retro/Vintage - - id: 7559 - name: Traditional - - id: 7891 - name: Rustic - - id: 7959 - name: Farmhouse - - id: 7963 - name: Bohemian - - id: 7964 - name: Scandinavian - - id: 8505 - name: Barroco - - id: 8506 - name: Colonial - - id: 8507 - name: Contemporary - - id: 8510 - name: Industrial - - id: 8511 - name: Minimalist - - id: 8514 - name: Transitional - - id: 8515 - name: Victorian -- id: 1352 - name: Fixation type - friendly_id: fixation_type - values: - - id: 7965 - name: Fixing pin - - id: 7966 - name: Fixing screw - - id: 7967 - name: Fixing spike -- id: 1353 - name: Egg decorating items included - friendly_id: egg_decorating_items_included - values: - - id: 7968 - name: Decorating brush - - id: 7969 - name: Dye tablets - - id: 7970 - name: Egg dippers - - id: 7971 - name: Egg stands - - id: 7972 - name: Glitter - - id: 7973 - name: Instruction booklet - - id: 7974 - name: Markers - - id: 7975 - name: Paint - - id: 7976 - name: Stickers - - id: 7977 - name: Wax crayons -- id: 1354 - name: Suitable for furniture type - friendly_id: suitable_for_furniture_type - values: - - id: 6883 - name: Universal - - id: 7928 - name: Sofa - - id: 7978 - name: Armchair - - id: 7979 - name: Corner sofa - - id: 7980 - name: Chair - - id: 7981 - name: Chaise longue - - id: 7982 - name: Footstool -- id: 1355 - name: Vase shape - friendly_id: vase_shape - values: - - id: 627 - name: Round - - id: 628 - name: Square - - id: 7080 - name: Conical - - id: 7252 - name: Mushroom - - id: 7321 - name: Oval - - id: 7984 - name: Bottle - - id: 7985 - name: Gourd - - id: 7986 - name: Jar - - id: 7987 - name: Pitcher - - id: 7988 - name: Turnip - - id: 7989 - name: Urn - - id: 14845 - name: Cylindrical -- id: 1356 - name: Sustainability - friendly_id: sustainability - values: - - id: 7990 - name: Fair trade - - id: 7991 - name: Handcrafted - - id: 7992 - name: Responsibly sourced -- id: 1357 - name: Wallpaper application method - friendly_id: wallpaper_application_method - values: - - id: 7993 - name: Peel & stick - - id: 7994 - name: Pre-pasted - - id: 7995 - name: Requires paste -- id: 1358 - name: Roof decor shape - friendly_id: roof_decor_shape - values: - - id: 372 - name: Other - - id: 7996 - name: Rooster - - id: 7997 - name: Horse - - id: 7998 - name: Arrow - - id: 7999 - name: Sailboat -- id: 1359 - name: Control technology - friendly_id: control_technology - values: - - id: 6977 - name: Manual - - id: 7193 - name: Motorized -- id: 1360 - name: Light control - friendly_id: light_control - values: - - id: 6989 - name: Solar - - id: 8002 - name: Blackout - - id: 8003 - name: Light filtering - - id: 8004 - name: Opaque - - id: 8005 - name: Room darkening - - id: 8006 - name: Semi-opaque - - id: 8007 - name: Sheer - - id: 8008 - name: Translucent -- id: 1361 - name: Film application method - friendly_id: film_application_method - values: - - id: 8017 - name: Self-adhesive - - id: 8018 - name: Static cling -- id: 1362 - name: Alert type - friendly_id: alert_type - values: - - id: 8019 - name: Sound alarms - - id: 8020 - name: Visual alerts - - id: 8021 - name: Smartphone notifications -- id: 1363 - name: Emergency items included - friendly_id: emergency_items_included - values: - - id: 6987 - name: Batteries - - id: 7026 - name: Water - - id: 7578 - name: Charger - - id: 8022 - name: Blanket - - id: 8023 - name: First aid kit - - id: 8024 - name: Flashlight - - id: 8025 - name: Food - - id: 8026 - name: Hygiene products - - id: 8027 - name: Powerbank - - id: 8028 - name: Radio - - id: 8029 - name: Whistle -- id: 1364 - name: Stove airflow - friendly_id: stove_airflow - values: - - id: 8031 - name: Primary - - id: 8032 - name: Secondary - - id: 8033 - name: Tertiary -- id: 1365 - name: Extinguisher rating - friendly_id: extinguisher_rating - values: - - id: 8036 - name: Class A - - id: 8037 - name: Class B - - id: 8038 - name: Class C - - id: 8039 - name: Class D -- id: 1366 - name: Extinguishing agent type - friendly_id: extinguishing_agent_type - values: - - id: 821 - name: Foam - - id: 7026 - name: Water - - id: 8040 - name: Carbon dioxide (CO2) - - id: 8041 - name: Clean agent - - id: 8042 - name: Powder (dry chemical) - - id: 8043 - name: Wet chemical -- id: 1367 - name: Suitable for fire class - friendly_id: suitable_for_fire_class - values: - - id: 1967 - name: A - - id: 1968 - name: B - - id: 1969 - name: C - - id: 1970 - name: D - - id: 1971 - name: E - - id: 1972 - name: F -- id: 1368 - name: Detector type - friendly_id: detector_type - values: - - id: 8044 - name: Fixed temperature heat - - id: 8045 - name: Rate-of-rise heat - - id: 8049 - name: Air-sampling - - id: 8050 - name: Combi - - id: 8051 - name: Ionization - - id: 8052 - name: Optical - - id: 8053 - name: Optical beam - - id: 8054 - name: Photoelectric reflection -- id: 1369 - name: Compatible vacuum type - friendly_id: compatible_vacuum_type - values: - - id: 6883 - name: Universal - - id: 6968 - name: Stick - - id: 7362 - name: Drum - - id: 7940 - name: Cylinder - - id: 8055 - name: Handheld - - id: 8056 - name: Robot - - id: 8057 - name: Steam -- id: 1370 - name: Energy efficiency class - friendly_id: energy_efficiency_class - values: - - id: 1967 - name: A - - id: 1968 - name: B - - id: 1969 - name: C - - id: 1970 - name: D - - id: 1971 - name: E - - id: 1972 - name: F - - id: 1995 - name: G - - id: 8058 - name: A+++ - - id: 8059 - name: A++ - - id: 8060 - name: A+ -- id: 1371 - name: Boiler system - friendly_id: boiler_system - values: - - id: 8050 - name: Combi - - id: 8061 - name: Solo -- id: 1372 - name: Evaporation technology - friendly_id: evaporation_technology - values: - - id: 7756 - name: Ultrasonic - - id: 8057 - name: Steam - - id: 8065 - name: Impeller - - id: 8066 - name: Natural -- id: 1373 - name: Operation method - friendly_id: operation_method - values: - - id: 6988 - name: Hydraulic - - id: 8068 - name: Belt drive - - id: 8069 - name: Chain drive -- id: 1374 - name: Loading type - friendly_id: loading_type - values: - - id: 8070 - name: Front-load - - id: 8071 - name: Top-load -- id: 1375 - name: Garment steamer design - friendly_id: garment_steamer_design - values: - - id: 7396 - name: Upright - - id: 8055 - name: Handheld - - id: 8073 - name: Steam brush -- id: 1376 - name: Soleplate type - friendly_id: soleplate_type - values: - - id: 4 - name: Gold - - id: 372 - name: Other - - id: 620 - name: Stainless steel - - id: 623 - name: Titanium - - id: 643 - name: Ceramic - - id: 1316 - name: Palladium - - id: 1637 - name: Aluminum - - id: 8074 - name: Alumite - - id: 8075 - name: Anodilium - - id: 8076 - name: Auto clean - - id: 8077 - name: Auto clean catalys - - id: 8078 - name: Careeza - - id: 8079 - name: Ceramic glide - - id: 8080 - name: Ceramic ultra glide - - id: 8081 - name: Ceranium - - id: 8082 - name: Ceranium glisse - - id: 8083 - name: Cerilium - - id: 8084 - name: Cross steam - - id: 8085 - name: Diamond 4D - - id: 8086 - name: Diamond glide - - id: 8087 - name: Dual Thermolon - - id: 8088 - name: Durilium - - id: 8089 - name: Durilium airglide - - id: 8090 - name: Durilium airglide auto clean - - id: 8091 - name: Durilium airglide auto clean ultra thin - - id: 8092 - name: Durilium auto clean - - id: 8093 - name: Dynaglide - - id: 8094 - name: Eloxal - - id: 8095 - name: Eloxal plus - - id: 8096 - name: Glide x soleplate - - id: 8097 - name: Glissium - - id: 8098 - name: Honeycomb - - id: 8099 - name: Microsteam - - id: 8100 - name: Nano steel - - id: 8101 - name: Nano-silver ceramic - - id: 8102 - name: Non-stick - - id: 8103 - name: Pearlonic 380 - - id: 8104 - name: Pro ceramic - - id: 8105 - name: Protect - - id: 8106 - name: PTFE - - id: 8107 - name: RESILIUM - - id: 8108 - name: Saphir - - id: 8109 - name: SteamGlide - - id: 8110 - name: SteamGlide elite - - id: 8111 - name: T-ionic glide - - id: 8112 - name: Tourmaline ceramic - - id: 8113 - name: Ultragliss - - id: 8114 - name: Ultragliss durilium - - id: 8115 - name: XL duraglide - - id: 8116 - name: Xpress glide -- id: 1377 - name: Washing programs - friendly_id: washing_programs - values: - - id: 40 - name: Cotton - - id: 51 - name: Wool - - id: 61 - name: Silk - - id: 237 - name: Jeans - - id: 372 - name: Other - - id: 429 - name: Sport - - id: 615 - name: Microfiber - - id: 8057 - name: Steam - - id: 8117 - name: Anti-allergy - - id: 8118 - name: Auto - - id: 8119 - name: Baby care - - id: 8120 - name: Beddings - - id: 8121 - name: Bio - - id: 8122 - name: Black color - - id: 8123 - name: Cold wash - - id: 8124 - name: Delicate - - id: 8125 - name: Easy care - - id: 8126 - name: Eco - - id: 8127 - name: Hand - - id: 8128 - name: Intensive - - id: 8129 - name: Lingerie - - id: 8130 - name: Mixed colors - - id: 8131 - name: Outdoor - - id: 8132 - name: Pillow - - id: 8133 - name: Pre-wash - - id: 8134 - name: Quick wash - - id: 8135 - name: Rinse - - id: 8136 - name: Shoes - - id: 8137 - name: Spin & drain - - id: 8138 - name: Spin only - - id: 8139 - name: Towel - - id: 8140 - name: White color -- id: 1378 - name: Cleaning surfaces - friendly_id: cleaning_surfaces - values: - - id: 372 - name: Other - - id: 585 - name: Fabric - - id: 8141 - name: Carpet - - id: 8142 - name: Glass surfaces - - id: 8143 - name: Laminate flooring - - id: 8144 - name: Stair steps - - id: 8145 - name: Tiles - - id: 8146 - name: Upholstery - - id: 8147 - name: Vinyl flooring - - id: 8148 - name: Wood flooring - - id: 8170 - name: Rug - - id: 8177 - name: Appliances - - id: 8178 - name: Bathroom fixtures - - id: 8179 - name: Countertops - - id: 8182 - name: Stone flooring - - id: 8183 - name: Clothing - - id: 8184 - name: Hard surfaces - - id: 8185 - name: Pet bedding - - id: 8192 - name: Grout lines - - id: 8193 - name: Kitchen sinks - - id: 8194 - name: Stovetops -- id: 1379 - name: Dirt separating method - friendly_id: dirt_separating_method - values: - - id: 8149 - name: Cyclonic - - id: 8150 - name: Filtering - - id: 8151 - name: Multi cyclonic - - id: 8152 - name: Aqua filtering -- id: 1380 - name: Dry/Wet cleaning - friendly_id: dry_wet_cleaning - values: - - id: 550 - name: Dry - - id: 8153 - name: Wet - - id: 8154 - name: Dry & wet -- id: 1381 - name: Dust container type - friendly_id: dust_container_type - values: - - id: 8050 - name: Combi - - id: 8155 - name: Dust bag - - id: 8156 - name: Bagless -- id: 1382 - name: Vacuum air filtering technology - friendly_id: vacuum_air_filtering_technology - values: - - id: 392 - name: Standard - - id: 696 - name: Carbon - - id: 7026 - name: Water - - id: 8157 - name: Allergy - - id: 8158 - name: EPA - - id: 8159 - name: HEPA - - id: 8160 - name: Microfilter - - id: 8161 - name: Odor - - id: 8162 - name: Pet - - id: 8163 - name: Pre-motor - - id: 8164 - name: Post-motor - - id: 8165 - name: S-class - - id: 8166 - name: Washable -- id: 1383 - name: Orientation - friendly_id: orientation - values: - - id: 8167 - name: Horizontal - - id: 8168 - name: Vertical -- id: 1384 - name: Dispenser type - friendly_id: dispenser_type - values: - - id: 6968 - name: Stick - - id: 7407 - name: Spray - - id: 7741 - name: Box - - id: 7984 - name: Bottle - - id: 7986 - name: Jar - - id: 8261 - name: Case - - id: 8496 - name: Tube - - id: 8827 - name: Can - - id: 9163 - name: Capsules - - id: 10245 - name: Pump bottle - - id: 10246 - name: Wipes - - id: 10264 - name: Roll-on - - id: 10325 - name: Ampoule - - id: 10489 - name: Sachet - - id: 10507 - name: Pouch - - id: 10598 - name: Pot - - id: 10610 - name: Pencil - - id: 10634 - name: Palette - - id: 11347 - name: Squeeze bottle - - id: 13745 - name: Pan -- id: 1385 - name: Ingredients - friendly_id: ingredients - values: - - id: 372 - name: Other - - id: 7026 - name: Water - - id: 7845 - name: Aloe vera - - id: 8171 - name: Surfactants - - id: 8172 - name: Solvents - - id: 8173 - name: Builders - - id: 8174 - name: Fragrances - - id: 8175 - name: Dyes - - id: 8176 - name: Preservatives - - id: 8202 - name: Enzymes - - id: 8215 - name: Pyrethrins - - id: 8216 - name: Neonicotinoids - - id: 8217 - name: Glyphosate - - id: 8218 - name: Emulsifiers - - id: 8219 - name: Stabilizers - - id: 8220 - name: Deet - - id: 8221 - name: Picaridin - - id: 8222 - name: Lemon eucalyptus oil - - id: 8439 - name: 2,4-d - - id: 10384 - name: Vitamin E - - id: 10734 - name: Lanolin - - id: 10799 - name: Calendula - - id: 11350 - name: Zinc oxide - - id: 11351 - name: Petroleum jelly -- id: 1386 - name: Targeted stains - friendly_id: targeted_stains - values: - - id: 8025 - name: Food - - id: 8063 - name: Oil - - id: 8186 - name: Dander - - id: 8187 - name: Feces - - id: 8188 - name: Mud - - id: 8189 - name: Urine - - id: 8190 - name: Vomit - - id: 8199 - name: Blood - - id: 8200 - name: Coffee - - id: 8201 - name: Ink -- id: 1387 - name: Cleaning purpose - friendly_id: cleaning_purpose - values: - - id: 585 - name: Fabric - - id: 8195 - name: Stains - - id: 8196 - name: Refreshing -- id: 1388 - name: Blade material - friendly_id: blade_material - values: - - id: 601 - name: Metal - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 620 - name: Stainless steel - - id: 623 - name: Titanium - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 643 - name: Ceramic - - id: 774 - name: Cast iron - - id: 801 - name: Steel - - id: 809 - name: Silicone - - id: 823 - name: Fiberglass - - id: 860 - name: Iron - - id: 863 - name: Carbon steel - - id: 1001 - name: Carbide - - id: 1637 - name: Aluminum - - id: 2981 - name: Carbon fiber - - id: 8198 - name: Damascus steel - - id: 8398 - name: G-10 - - id: 8509 - name: Diamond - - id: 14470 - name: High-speed steel - - id: 16902 - name: VG-10 -- id: 1389 - name: Washing method - friendly_id: washing_method - values: - - id: 6883 - name: Universal - - id: 8203 - name: Hand washing - - id: 8204 - name: Machine washing -- id: 1390 - name: Suitable for pest type - friendly_id: suitable_for_pest_type - values: - - id: 8205 - name: Mole - - id: 8206 - name: Gopher - - id: 8207 - name: Rodent - - id: 8208 - name: Rabbit - - id: 8209 - name: Mouse - - id: 8210 - name: Rat - - id: 8211 - name: Beaver - - id: 8212 - name: Fox - - id: 8213 - name: Squirrel - - id: 8214 - name: Snail - - id: 8409 - name: Fungi - - id: 8410 - name: Bacteria - - id: 8411 - name: Viruses - - id: 8412 - name: Nematodes - - id: 8413 - name: Phytoplasmas - - id: 8414 - name: Oomycetes - - id: 8415 - name: Parasitic plants -- id: 1391 - name: Bug type - friendly_id: bug_type - values: - - id: 8229 - name: Ants - - id: 8230 - name: Bed bugs - - id: 8231 - name: Bees - - id: 8232 - name: Cockroaches - - id: 8233 - name: Fleas - - id: 8234 - name: Flies - - id: 8235 - name: Gnats - - id: 8236 - name: Hornets - - id: 8237 - name: Mosquitoes - - id: 8238 - name: Moths - - id: 8239 - name: Silverfish - - id: 8240 - name: Spiders - - id: 8241 - name: Ticks - - id: 8242 - name: Wasps -- id: 1392 - name: Format supported - friendly_id: format_supported - values: - - id: 372 - name: Other - - id: 8243 - name: 10 × 15 cm - - id: 8244 - name: 11 × 14 in - - id: 8245 - name: 12 × 16 in - - id: 8246 - name: 13 × 18 cm - - id: 8247 - name: 15 × 20 cm - - id: 8248 - name: 16 × 20 in - - id: 8249 - name: 18 × 24 cm - - id: 8250 - name: 20 × 24 in - - id: 8251 - name: 20 × 25 cm - - id: 8252 - name: 20 × 30 cm - - id: 8253 - name: 24 × 30 cm - - id: 8254 - name: 30 × 40 cm - - id: 8255 - name: 40 × 50 cm - - id: 8256 - name: 5 × 7 in - - id: 8257 - name: 50 × 60 cm - - id: 8258 - name: 8 × 10 in - - id: 8259 - name: 8 × 12 in - - id: 8260 - name: 9 × 13 cm -- id: 1393 - name: Stationery binding type - friendly_id: stationery_binding_type - values: - - id: 8261 - name: Case - - id: 8262 - name: Perfect - - id: 8263 - name: Saddle stitch - - id: 8264 - name: Spiral -- id: 1394 - name: Bakeware pieces included - friendly_id: bakeware_pieces_included - values: - - id: 8271 - name: Baking sheets - - id: 8272 - name: Cake pan - - id: 8273 - name: Loaf pan - - id: 8274 - name: Muffin tin - - id: 8275 - name: Pie dish -- id: 1395 - name: Compatible hob type - friendly_id: compatible_hob_type - values: - - id: 643 - name: Ceramic - - id: 7762 - name: Halogen - - id: 8034 - name: Gas - - id: 8278 - name: Induction - - id: 8279 - name: Sealed plate -- id: 1397 - name: Suitable for food processor type - friendly_id: suitable_for_food_processor_type - values: - - id: 8282 - name: Food blender - - id: 8283 - name: Food grinder - - id: 8284 - name: Food mixer -- id: 1398 - name: Coffee input type - friendly_id: coffee_input_type - values: - - id: 8285 - name: Coffee beans - - id: 8286 - name: Coffee capsules - - id: 8287 - name: Coffee pods -- id: 1399 - name: Hob type - friendly_id: hob_type - values: - - id: 643 - name: Ceramic - - id: 7762 - name: Halogen - - id: 8034 - name: Gas - - id: 8050 - name: Combi - - id: 8279 - name: Sealed plate - - id: 8289 - name: Coil - - id: 8290 - name: Zone induction - - id: 8291 - name: Zoneless induction -- id: 1400 - name: Top surface material - friendly_id: top_surface_material - values: - - id: 620 - name: Stainless steel - - id: 643 - name: Ceramic - - id: 774 - name: Cast iron - - id: 801 - name: Steel - - id: 857 - name: Tempered glass - - id: 16903 - name: Glass-ceramic -- id: 1401 - name: Star rating - friendly_id: star_rating - values: - - id: 2879 - name: '1' - - id: 2885 - name: '2' - - id: 2896 - name: '4' - - id: 2907 - name: '6' - - id: 2938 - name: '3' - - id: 2941 - name: '5' -- id: 1402 - name: Compatible recipes - friendly_id: compatible_recipes - values: - - id: 8297 - name: Frozen yogurt - - id: 8298 - name: Fruit ice - - id: 8299 - name: Gelato - - id: 8300 - name: Ice cream - - id: 8301 - name: Sherbet - - id: 8302 - name: Sorbet -- id: 1403 - name: Oven accessories included - friendly_id: oven_accessories_included - values: - - id: 8303 - name: Roasting pan - - id: 8304 - name: Rotisserie attachment - - id: 8305 - name: Wire rack -- id: 1404 - name: Extraction type - friendly_id: extraction_type - values: - - id: 396 - name: Convertible - - id: 8306 - name: Ducted - - id: 8307 - name: Ductless -- id: 1405 - name: Grease filter material - friendly_id: grease_filter_material - values: - - id: 62 - name: Synthetic - - id: 600 - name: Mesh - - id: 601 - name: Metal - - id: 620 - name: Stainless steel - - id: 662 - name: Charcoal - - id: 696 - name: Carbon - - id: 801 - name: Steel - - id: 823 - name: Fiberglass - - id: 1637 - name: Aluminum -- id: 1406 - name: Soda maker accessories included - friendly_id: soda_maker_accessories_included - values: - - id: 8308 - name: Carbonating cylinder - - id: 8309 - name: Reusable bottle - - id: 8310 - name: Soda maker unit - - id: 8311 - name: Syrup -- id: 1407 - name: Water filter application - friendly_id: water_filter_application - values: - - id: 8312 - name: Coffee machine - - id: 8313 - name: Drinking water appliance - - id: 8314 - name: Food preparation - - id: 8315 - name: Ice machine - - id: 8316 - name: Oven - - id: 8317 - name: Steamer - - id: 8318 - name: Tea brewing -- id: 1408 - name: Bristle material - friendly_id: bristle_material - values: - - id: 40 - name: Cotton - - id: 44 - name: Nylon - - id: 52 - name: Faux leather - - id: 60 - name: Linen - - id: 558 - name: Leather - - id: 589 - name: Polypropylene (PP) - - id: 601 - name: Metal - - id: 615 - name: Microfiber - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 620 - name: Stainless steel - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 764 - name: Rubber - - id: 809 - name: Silicone - - id: 8320 - name: Natural bristle - - id: 8321 - name: Teflon - - id: 16893 - name: Boar bristle - - id: 16894 - name: Horsehair - - id: 16895 - name: Synthetic bristle -- id: 1410 - name: Food dispenser type - friendly_id: food_dispenser_type - values: - - id: 8327 - name: Cereals - - id: 8328 - name: Grains - - id: 8329 - name: Pasta - - id: 8330 - name: Seeds - - id: 8331 - name: Sweets -- id: 1411 - name: Kitchen utensil items included - friendly_id: kitchen_utensil_items_included - values: - - id: 8335 - name: Bottle opener - - id: 8336 - name: Can opener - - id: 8337 - name: Ladle - - id: 8338 - name: Pasta server - - id: 8339 - name: Peeler - - id: 8340 - name: Slotted spoon - - id: 8341 - name: Solid spoon - - id: 8342 - name: Spatula - - id: 8343 - name: Tongs - - id: 8344 - name: Whisk -- id: 1412 - name: Pasta shape type - friendly_id: pasta_shape_type - values: - - id: 8353 - name: Spaghetti - - id: 8354 - name: Linguine - - id: 8355 - name: Fettuccine - - id: 8356 - name: Lasagna - - id: 8357 - name: Ravioli - - id: 8358 - name: Tortellini - - id: 8359 - name: Gnocchi - - id: 8360 - name: Penne - - id: 8361 - name: Rigatoni - - id: 8362 - name: Farfalle -- id: 1413 - name: Coffee/Tea set pieces included - friendly_id: coffee_tea_set_pieces_included - values: - - id: 7488 - name: Scoop - - id: 8363 - name: Coffee pot - - id: 8364 - name: Creamer - - id: 8365 - name: Cups - - id: 8366 - name: Saucers - - id: 8367 - name: Sugar bowl - - id: 8368 - name: Teapot - - id: 8369 - name: Teaspoons - - id: 8370 - name: Tray -- id: 1414 - name: Dinnerware pieces included - friendly_id: dinnerware_pieces_included - values: - - id: 8365 - name: Cups - - id: 8366 - name: Saucers - - id: 8371 - name: Bowls - - id: 8372 - name: Butter dish - - id: 8373 - name: Dinner plates - - id: 8374 - name: Mugs - - id: 8375 - name: Pepper shaker - - id: 8376 - name: Salad plate - - id: 8377 - name: Salt shaker - - id: 8378 - name: Serving bowl - - id: 8379 - name: Serving platter -- id: 1415 - name: Drinkware pieces included - friendly_id: drinkware_pieces_included - values: - - id: 7987 - name: Pitcher - - id: 8380 - name: Champagne flutes - - id: 8381 - name: Coasters - - id: 8382 - name: Highball glasses - - id: 8383 - name: Ice bucket - - id: 8384 - name: Lowball glasses - - id: 8385 - name: Martini glasses - - id: 8386 - name: Shot glasses - - id: 8387 - name: Wine glasses -- id: 1416 - name: Flatware pieces included - friendly_id: flatware_pieces_included - values: - - id: 8388 - name: Butter knife - - id: 8389 - name: Dinner fork - - id: 8390 - name: Dinner knife - - id: 8391 - name: Salad fork - - id: 8392 - name: Serving spoon - - id: 8393 - name: Soup spoon - - id: 8394 - name: Steak knife - - id: 8395 - name: Sugar spoon - - id: 8396 - name: Teaspoon -- id: 1417 - name: Gardening use - friendly_id: gardening_use - values: - - id: 392 - name: Standard - - id: 8400 - name: Flower gardening - - id: 8401 - name: Landscaping - - id: 8402 - name: Mulching - - id: 8403 - name: Plant growth - - id: 8404 - name: Soil quality - - id: 8405 - name: Vegetable gardening - - id: 8450 - name: Multi-purpose -- id: 1418 - name: Pest control method - friendly_id: pest_control_method - values: - - id: 7410 - name: Granules - - id: 8406 - name: Liquid spray - - id: 8407 - name: Dust - - id: 8408 - name: Biological -- id: 1419 - name: Nutrient content - friendly_id: nutrient_content - values: - - id: 666 - name: Copper - - id: 787 - name: Magnesium - - id: 860 - name: Iron - - id: 865 - name: Zinc - - id: 8416 - name: Nitrogen - - id: 8417 - name: Phosphorus - - id: 8418 - name: Potassium - - id: 8419 - name: Calcium - - id: 8420 - name: Sulfur - - id: 8421 - name: Manganese - - id: 8422 - name: Molybdenum - - id: 8423 - name: Boron -- id: 1420 - name: Compatible gardening tool - friendly_id: compatible_gardening_tool - values: - - id: 8424 - name: Fork - - id: 8425 - name: Lawn roller - - id: 8426 - name: Machete - - id: 8427 - name: Pruning saw - - id: 8428 - name: Pruning shears - - id: 8429 - name: Rake - - id: 8430 - name: Shovel - - id: 8431 - name: Sickle - - id: 8432 - name: Spade - - id: 8433 - name: Sprayer - - id: 8434 - name: Spreader - - id: 8435 - name: Trowel -- id: 1421 - name: Teeth material - friendly_id: teeth_material - values: - - id: 601 - name: Metal - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 620 - name: Stainless steel - - id: 623 - name: Titanium - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 643 - name: Ceramic - - id: 774 - name: Cast iron - - id: 801 - name: Steel - - id: 809 - name: Silicone - - id: 823 - name: Fiberglass - - id: 860 - name: Iron - - id: 863 - name: Carbon steel - - id: 1001 - name: Carbide - - id: 1637 - name: Aluminum - - id: 2981 - name: Carbon fiber - - id: 8198 - name: Damascus steel - - id: 8398 - name: G-10 - - id: 8509 - name: Diamond - - id: 14470 - name: High-speed steel - - id: 16902 - name: VG-10 -- id: 1422 - name: Cutting method - friendly_id: cutting_method - values: - - id: 8436 - name: Anvil - - id: 8437 - name: Bypass - - id: 8438 - name: Scissor -- id: 1423 - name: Tank material - friendly_id: tank_material - values: - - id: 64 - name: Bamboo - - id: 548 - name: Paper - - id: 601 - name: Metal - - id: 620 - name: Stainless steel - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 764 - name: Rubber - - id: 773 - name: Cardboard - - id: 809 - name: Silicone - - id: 1637 - name: Aluminum -- id: 1424 - name: Screen material - friendly_id: screen_material - values: - - id: 45 - name: Polyester - - id: 601 - name: Metal - - id: 616 - name: Polycarbonate (PC) - - id: 620 - name: Stainless steel - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 801 - name: Steel - - id: 823 - name: Fiberglass - - id: 1637 - name: Aluminum -- id: 1425 - name: Targeted pests - friendly_id: targeted_pests - values: - - id: 8440 - name: Mold - - id: 8441 - name: Algae - - id: 8442 - name: Lichen - - id: 8443 - name: Moss - - id: 8444 - name: Weed -- id: 1426 - name: Awning construction type - friendly_id: awning_construction_type - values: - - id: 7401 - name: Inflatable - - id: 8451 - name: Fixed - - id: 8452 - name: Retractable -- id: 1427 - name: Cover color - friendly_id: cover_color - values: - - id: 1 - name: Black - - id: 2 - name: Blue - - id: 3 - name: White - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 6 - name: Beige - - id: 7 - name: Brown - - id: 8 - name: Gray - - id: 9 - name: Green - - id: 10 - name: Orange - - id: 11 - name: Pink - - id: 12 - name: Purple - - id: 13 - name: Red - - id: 14 - name: Yellow - - id: 15 - name: Navy - - id: 16 - name: Rose gold - - id: 17 - name: Clear - - id: 657 - name: Bronze - - id: 2865 - name: Multicolor -- id: 1428 - name: Cover pattern - friendly_id: cover_pattern - values: - - id: 1782 - name: Text - - id: 1796 - name: Vehicle - - id: 1868 - name: Geometric - - id: 2283 - name: Birds - - id: 2370 - name: Animals - - id: 2375 - name: Hearts - - id: 2376 - name: Stars - - id: 2866 - name: Camouflage - - id: 2867 - name: Characters - - id: 2868 - name: Checkered - - id: 2869 - name: Christmas - - id: 2870 - name: Dots - - id: 2871 - name: Floral - - id: 2872 - name: Leaves - - id: 2873 - name: Paisley - - id: 2874 - name: Solid - - id: 2875 - name: Striped - - id: 2876 - name: Tie-dye -- id: 1429 - name: Frame pattern - friendly_id: frame_pattern - values: - - id: 1782 - name: Text - - id: 1796 - name: Vehicle - - id: 1868 - name: Geometric - - id: 2283 - name: Birds - - id: 2370 - name: Animals - - id: 2375 - name: Hearts - - id: 2376 - name: Stars - - id: 2866 - name: Camouflage - - id: 2867 - name: Characters - - id: 2868 - name: Checkered - - id: 2869 - name: Christmas - - id: 2870 - name: Dots - - id: 2871 - name: Floral - - id: 2872 - name: Leaves - - id: 2873 - name: Paisley - - id: 2874 - name: Solid - - id: 2875 - name: Striped - - id: 2876 - name: Tie-dye -- id: 1430 - name: Compatible hammock design - friendly_id: compatible_hammock_design - values: - - id: 7343 - name: Frame - - id: 7732 - name: Hanging -- id: 1431 - name: Canopy material - friendly_id: canopy_material - values: - - id: 40 - name: Cotton - - id: 44 - name: Nylon - - id: 45 - name: Polyester - - id: 624 - name: Vinyl - - id: 626 - name: Plastic - - id: 823 - name: Fiberglass - - id: 2251 - name: Polyamide (PA) -- id: 1432 - name: Outdoor power accessories included - friendly_id: outdoor_power_accessories_included - values: - - id: 8454 - name: Battery charger - - id: 8455 - name: Blower - - id: 8456 - name: Chainsaw - - id: 8457 - name: Ear plugs - - id: 8458 - name: Hedge trimmer - - id: 8459 - name: Lawn mower - - id: 8460 - name: Safety glasses - - id: 8461 - name: Trimmer -- id: 1433 - name: Propulsion type - friendly_id: propulsion_type - values: - - id: 7400 - name: Push - - id: 8462 - name: Tow - - id: 14455 - name: Pull - - id: 15889 - name: Pull/Push - - id: 15890 - name: Self-propelled - - id: 15891 - name: Ride-on -- id: 1434 - name: Sprinkler head type - friendly_id: sprinkler_head_type - values: - - id: 1363 - name: Flat - - id: 7879 - name: Rose - - id: 8280 - name: Cone - - id: 8466 - name: Shower - - id: 8467 - name: Jet -- id: 1435 - name: Bulb size - friendly_id: bulb_size - values: - - id: 8468 - name: A15 - - id: 8469 - name: A19 - - id: 8470 - name: A21 - - id: 8471 - name: BR30 - - id: 8472 - name: BR40 - - id: 8473 - name: C7 - - id: 8474 - name: C9 - - id: 8475 - name: G25 - - id: 8476 - name: PAR20 - - id: 8477 - name: PAR30 - - id: 8478 - name: PAR38 - - id: 8479 - name: T2 - - id: 8480 - name: T4 - - id: 8481 - name: T5 - - id: 8482 - name: T8 -- id: 1436 - name: Bulb type - friendly_id: bulb_type - values: - - id: 7195 - name: LED - - id: 7760 - name: Incandescent - - id: 7761 - name: Fluorescent - - id: 7762 - name: Halogen - - id: 10575 - name: Neon -- id: 1437 - name: Bulb cap type - friendly_id: bulb_cap_type - values: - - id: 8483 - name: E10 - - id: 8484 - name: E12 - - id: 8485 - name: E26 - - id: 8486 - name: E27 - - id: 8487 - name: G4 - - id: 8488 - name: G9 - - id: 8489 - name: GU10 - - id: 8490 - name: GU24 - - id: 8491 - name: MR16 -- id: 1438 - name: Bulb shape - friendly_id: bulb_shape - values: - - id: 372 - name: Other - - id: 7124 - name: Bullet - - id: 8264 - name: Spiral - - id: 8492 - name: A-shape - - id: 8493 - name: Globe - - id: 8494 - name: Candle - - id: 8495 - name: Reflector - - id: 8496 - name: Tube - - id: 8497 - name: Edison - - id: 8498 - name: PAR -- id: 1439 - name: Timer type - friendly_id: timer_type - values: - - id: 8518 - name: Daily - - id: 8519 - name: Weekly -- id: 1440 - name: Oil type - friendly_id: oil_type - values: - - id: 8520 - name: Paraffin oil - - id: 8521 - name: Lamp oil - - id: 8522 - name: Kerosene - - id: 8523 - name: Mineral oil - - id: 8524 - name: Citronella oil -- id: 1441 - name: Bedding pieces included - friendly_id: bedding_pieces_included - values: - - id: 8528 - name: Bottom sheet - - id: 8529 - name: Pillowcase - - id: 8530 - name: Top sheet -- id: 1442 - name: Closure style - friendly_id: closure_style - values: - - id: 7559 - name: Traditional - - id: 8531 - name: Concealed -- id: 1443 - name: Pole material - friendly_id: pole_material - values: - - id: 620 - name: Stainless steel - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 801 - name: Steel - - id: 823 - name: Fiberglass - - id: 860 - name: Iron - - id: 1637 - name: Aluminum -- id: 1444 - name: Flower color - friendly_id: flower_color - values: - - id: 1 - name: Black - - id: 2 - name: Blue - - id: 3 - name: White - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 6 - name: Beige - - id: 7 - name: Brown - - id: 8 - name: Gray - - id: 9 - name: Green - - id: 10 - name: Orange - - id: 11 - name: Pink - - id: 12 - name: Purple - - id: 13 - name: Red - - id: 14 - name: Yellow - - id: 15 - name: Navy - - id: 16 - name: Rose gold - - id: 17 - name: Clear - - id: 657 - name: Bronze - - id: 2865 - name: Multicolor -- id: 1445 - name: Plant characteristics - friendly_id: plant_characteristics - values: - - id: 8563 - name: Attracts pollinators - - id: 8564 - name: Cold hardy - - id: 8565 - name: Deer-resistant - - id: 8566 - name: Disease resistant - - id: 8567 - name: Drought resistant - - id: 8568 - name: Edible - - id: 8569 - name: Evergreen - - id: 8570 - name: Fast-growing - - id: 8571 - name: Flowering - - id: 8572 - name: Fragrant - - id: 8573 - name: Groundcover - - id: 8574 - name: Self-fertile - - id: 8575 - name: Self-pollinating -- id: 1446 - name: Sunlight - friendly_id: sunlight - values: - - id: 8576 - name: Full sun - - id: 8577 - name: Partial shade - - id: 8578 - name: Shade -- id: 1447 - name: Culinary botanical name - friendly_id: culinary_botanical_name - values: - - id: 8579 - name: Allium schoenoprasum - - id: 8580 - name: Anethum graveolens - - id: 8581 - name: Anthriscus cerefolium - - id: 8582 - name: Artemisia dracunculus - - id: 8583 - name: Capsicum annuum - - id: 8584 - name: Coriandrum sativum - - id: 8585 - name: Cucumis sativus - - id: 8586 - name: Cucurbita pepo - - id: 8587 - name: Foeniculum vulgare - - id: 8588 - name: Laurus nobilis - - id: 8589 - name: Lavandula angustifolia - - id: 8590 - name: Mentha - - id: 8591 - name: Murraya koenigii - - id: 8592 - name: Ocimum basilicum - - id: 8593 - name: Origanum majorana - - id: 8594 - name: Origanum vulgare - - id: 8595 - name: Petroselinum crispum - - id: 8596 - name: Rosmarinus officinalis - - id: 8597 - name: Salvia officinalis - - id: 8598 - name: Solanum lycopersicum - - id: 8599 - name: Solanum lycopersicum var. cerasiforme - - id: 8600 - name: Solanum melongena - - id: 8601 - name: Thymus vulgaris - - id: 8602 - name: Vitis vinifera -- id: 1448 - name: Suitable for pool type - friendly_id: suitable_for_pool_type - values: - - id: 8627 - name: Above-ground pool - - id: 8628 - name: Built-in pool - - id: 8629 - name: Inflatable pool -- id: 1449 - name: Wall material - friendly_id: wall_material - values: - - id: 6754 - name: Pine wood - - id: 8631 - name: Hemlock - - id: 16861 - name: Cedar wood - - id: 16905 - name: Aspen wood - - id: 16906 - name: Spruce wood -- id: 1450 - name: Humidity control - friendly_id: humidity_control - values: - - id: 8635 - name: '0.58' - - id: 8636 - name: '0.62' - - id: 8637 - name: '0.65' - - id: 8638 - name: '0.68' - - id: 8639 - name: '0.72' - - id: 8640 - name: '0.75' -- id: 1451 - name: Allergen information - friendly_id: allergen_information - values: - - id: 1036 - name: Wheat - - id: 8641 - name: Celery - - id: 8642 - name: Crustaceans - - id: 8643 - name: Eggs - - id: 8644 - name: Fish - - id: 8645 - name: Lupin - - id: 8646 - name: Milk - - id: 8647 - name: Molluscs - - id: 8648 - name: Mustard - - id: 8649 - name: Nuts - - id: 8650 - name: Peanuts - - id: 8651 - name: Sesame - - id: 8652 - name: Soybeans - - id: 8653 - name: Sulphites - - id: 8654 - name: Sulphur dioxide -- id: 1452 - name: Dietary preferences - friendly_id: dietary_preferences - values: - - id: 372 - name: Other - - id: 8655 - name: Dairy-free - - id: 8656 - name: Gluten-free - - id: 8657 - name: Halal - - id: 8658 - name: Keto - - id: 8659 - name: Kosher - - id: 8660 - name: Lactose-free - - id: 8661 - name: Low fat - - id: 8662 - name: Low sodium - - id: 8664 - name: No artificial colors - - id: 8665 - name: No artificial flavors - - id: 8666 - name: No artificial sweeteners - - id: 8667 - name: No preservatives - - id: 8669 - name: Non-GMO - - id: 8670 - name: Nut-free - - id: 8671 - name: Organic - - id: 8672 - name: Paleo - - id: 8673 - name: Soy-free - - id: 8674 - name: Sugar-free - - id: 8675 - name: Vegan - - id: 8676 - name: Vegetarian - - id: 8677 - name: Wholegrain - - id: 8678 - name: Alcohol-free - - id: 9424 - name: Decaffeinated - - id: 9425 - name: Mountain shade grown - - id: 9426 - name: Single origin - - id: 9428 - name: No added MSG - - id: 9627 - name: High protein -- id: 1453 - name: Beer style - friendly_id: beer_style - values: - - id: 4 - name: Gold - - id: 7 - name: Brown - - id: 13 - name: Red - - id: 17 - name: Clear - - id: 372 - name: Other - - id: 550 - name: Dry - - id: 2745 - name: Full - - id: 3661 - name: Light - - id: 3663 - name: Heavy - - id: 8679 - name: Amber - - id: 8680 - name: Astringent - - id: 8681 - name: Bitter - - id: 8682 - name: Cloudy - - id: 8683 - name: Complex - - id: 8684 - name: Creamy - - id: 8685 - name: Crisp - - id: 8686 - name: Hazy - - id: 8689 - name: Smooth - - id: 8690 - name: Sweet - - id: 8691 - name: Unfiltered - - id: 8692 - name: Unpasteurised - - id: 15240 - name: High carbonation - - id: 15241 - name: Low carbonation -- id: 1454 - name: Beer variety - friendly_id: beer_variety - values: - - id: 372 - name: Other - - id: 8681 - name: Bitter - - id: 8693 - name: Altbier - - id: 8705 - name: American pale ale (APA) - - id: 8767 - name: Fruit lambic - - id: 8781 - name: Gose - - id: 8782 - name: Gueuze - - id: 8789 - name: Kölsch - - id: 8790 - name: Kriek - - id: 8791 - name: Lambic - - id: 8797 - name: Pale lager - - id: 8798 - name: Pilsner - - id: 8800 - name: Saison ale - - id: 9996 - name: Amber/Red ale - - id: 9997 - name: Barleywine - - id: 9998 - name: Belgian ale - - id: 9999 - name: Brown ale - - id: 10000 - name: Dark lager - - id: 10001 - name: Dark wheat beer/Dunkelweizen - - id: 10002 - name: English pale ale (EPA) - - id: 10003 - name: German lager - - id: 10004 - name: Golden ale - - id: 10005 - name: India pale ale (IPA) - - id: 10006 - name: Lager - - id: 10007 - name: Porter - - id: 10008 - name: Smoked beer/Rauchbier - - id: 10009 - name: Sour ale - - id: 10010 - name: Stout - - id: 10011 - name: Strong ale - - id: 10012 - name: Strong bitter - - id: 10013 - name: Wheat beer/Weizenbier - - id: 10014 - name: White beer/Witbier -- id: 1455 - name: Country of origin - friendly_id: country_of_origin - values: - - id: 4817 - name: Singapore - - id: 8807 - name: Australia - - id: 8808 - name: Austria - - id: 8809 - name: Belgium - - id: 8810 - name: Brazil - - id: 8811 - name: Canada - - id: 8812 - name: China - - id: 8814 - name: Denmark - - id: 8815 - name: Germany - - id: 8816 - name: Ireland - - id: 8817 - name: Japan - - id: 8818 - name: Mexico - - id: 8819 - name: Netherlands - - id: 8820 - name: Poland - - id: 8821 - name: South Africa - - id: 8822 - name: Spain - - id: 8823 - name: Thailand - - id: 8824 - name: United Kingdom - - id: 8825 - name: United States - - id: 8834 - name: Afghanistan - - id: 8835 - name: Albania - - id: 8836 - name: Algeria - - id: 8837 - name: Andorra - - id: 8838 - name: Angola - - id: 8839 - name: Antigua and Barbuda - - id: 8840 - name: Argentina - - id: 8841 - name: Armenia - - id: 8842 - name: Azerbaijan - - id: 8843 - name: Bahamas - - id: 8844 - name: Bahrain - - id: 8845 - name: Bangladesh - - id: 8846 - name: Barbados - - id: 8847 - name: Belarus - - id: 8848 - name: Belize - - id: 8849 - name: Benin - - id: 8850 - name: Bhutan - - id: 8851 - name: Bolivia - - id: 8852 - name: Bosnia and Herzegovina - - id: 8853 - name: Botswana - - id: 8854 - name: Brunei - - id: 8855 - name: Bulgaria - - id: 8856 - name: Burkina Faso - - id: 8857 - name: Burundi - - id: 8858 - name: Cambodia - - id: 8859 - name: Cameroon - - id: 8860 - name: Cape Verde - - id: 8861 - name: Central Africa - - id: 8862 - name: Chad - - id: 8863 - name: Chile - - id: 8864 - name: Colombia - - id: 8865 - name: Comoros - - id: 8866 - name: Congo - - id: 8867 - name: Congo (Dem. Republic) - - id: 8868 - name: Costa Rica - - id: 8869 - name: Croatia - - id: 8870 - name: Cyprus - - id: 8871 - name: Czechia - - id: 8872 - name: Djibouti - - id: 8873 - name: Dominica - - id: 8874 - name: Dominican Republic - - id: 8875 - name: Ecuador - - id: 8876 - name: Egypt - - id: 8877 - name: El Salvador - - id: 8878 - name: Equatorial Guinea - - id: 8879 - name: Eritrea - - id: 8880 - name: Estonia - - id: 8881 - name: Eswatini - - id: 8882 - name: Ethiopia - - id: 8883 - name: Fiji - - id: 8884 - name: Finland - - id: 8885 - name: France - - id: 8886 - name: Gabon - - id: 8887 - name: Gambia - - id: 8888 - name: Georgia - - id: 8889 - name: Ghana - - id: 8890 - name: Greece - - id: 8891 - name: Grenada - - id: 8892 - name: Guatemala - - id: 8893 - name: Guinea - - id: 8894 - name: Guinea-Bissau - - id: 8895 - name: Guyana - - id: 8896 - name: Haiti - - id: 8897 - name: Honduras - - id: 8898 - name: Hungary - - id: 8899 - name: Iceland - - id: 8900 - name: India - - id: 8901 - name: Indonesia - - id: 8902 - name: Iraq - - id: 8903 - name: Israel - - id: 8904 - name: Italy - - id: 8905 - name: Ivory Coast - - id: 8906 - name: Jamaica - - id: 8907 - name: Jordan - - id: 8908 - name: Kazakhstan - - id: 8909 - name: Kenya - - id: 8910 - name: Kiribati - - id: 8911 - name: Kuwait - - id: 8912 - name: Kyrgyzstan - - id: 8913 - name: Laos - - id: 8914 - name: Latvia - - id: 8915 - name: Lebanon - - id: 8916 - name: Lesotho - - id: 8917 - name: Liberia - - id: 8918 - name: Libya - - id: 8919 - name: Liechtenstein - - id: 8920 - name: Lithuania - - id: 8921 - name: Luxembourg - - id: 8922 - name: Madagascar - - id: 8923 - name: Malawi - - id: 8924 - name: Malaysia - - id: 8925 - name: Maldives - - id: 8926 - name: Mali - - id: 8927 - name: Malta - - id: 8928 - name: Marshall Islands - - id: 8929 - name: Mauritania - - id: 8930 - name: Mauritius - - id: 8931 - name: Micronesia - - id: 8932 - name: Moldova - - id: 8933 - name: Monaco - - id: 8934 - name: Mongolia - - id: 8935 - name: Montenegro - - id: 8936 - name: Morocco - - id: 8937 - name: Mozambique - - id: 8938 - name: Myanmar - - id: 8939 - name: Namibia - - id: 8940 - name: Nauru - - id: 8941 - name: Nepal - - id: 8942 - name: New Zealand - - id: 8943 - name: Nicaragua - - id: 8944 - name: Niger - - id: 8945 - name: Nigeria - - id: 8946 - name: North Macedonia - - id: 8947 - name: Norway - - id: 8948 - name: Oman - - id: 8949 - name: Pakistan - - id: 8950 - name: Palau - - id: 8951 - name: Panama - - id: 8952 - name: Papua New Guinea - - id: 8953 - name: Paraguay - - id: 8954 - name: Peru - - id: 8955 - name: Philippines - - id: 8956 - name: Portugal - - id: 8957 - name: Qatar - - id: 8958 - name: Romania - - id: 8959 - name: Rwanda - - id: 8960 - name: Saint Kitts and Nevis - - id: 8961 - name: Saint Lucia - - id: 8962 - name: Saint Vincent and the Grenadines - - id: 8963 - name: Samoa - - id: 8964 - name: San Marino - - id: 8965 - name: Sao Tome and Principe - - id: 8966 - name: Saudi Arabia - - id: 8967 - name: Senegal - - id: 8968 - name: Serbia - - id: 8969 - name: Seychelles - - id: 8970 - name: Sierra Leone - - id: 8971 - name: Slovakia - - id: 8972 - name: Slovenia - - id: 8973 - name: Solomon Islands - - id: 8974 - name: Somalia - - id: 8975 - name: South Korea - - id: 8976 - name: South Sudan - - id: 8977 - name: Sri Lanka - - id: 8978 - name: Sudan - - id: 8979 - name: Suriname - - id: 8980 - name: Sweden - - id: 8981 - name: Switzerland - - id: 8982 - name: Tajikistan - - id: 8983 - name: Tanzania - - id: 8984 - name: Timor-Leste - - id: 8985 - name: Togo - - id: 8986 - name: Tonga - - id: 8987 - name: Trinidad and Tobago - - id: 8988 - name: Tunisia - - id: 8989 - name: Turkey - - id: 8990 - name: Turkmenistan - - id: 8991 - name: Tuvalu - - id: 8992 - name: Uganda - - id: 8993 - name: Ukraine - - id: 8994 - name: United Arab Emirates - - id: 8995 - name: Uruguay - - id: 8996 - name: Uzbekistan - - id: 8997 - name: Vanuatu - - id: 8998 - name: Vietnam - - id: 8999 - name: Yemen - - id: 9000 - name: Zambia - - id: 9001 - name: Zimbabwe -- id: 1456 - name: Package type - friendly_id: package_type - values: - - id: 372 - name: Other - - id: 920 - name: Tin - - id: 6968 - name: Stick - - id: 7741 - name: Box - - id: 7984 - name: Bottle - - id: 7986 - name: Jar - - id: 8261 - name: Case - - id: 8496 - name: Tube - - id: 8826 - name: Glass bottle - - id: 8827 - name: Can - - id: 8828 - name: Keg - - id: 9429 - name: Plastic bottle - - id: 9653 - name: Plastic container - - id: 9654 - name: Glass container - - id: 10242 - name: Dispenser - - id: 10245 - name: Pump bottle - - id: 10489 - name: Sachet - - id: 10505 - name: Flip-top - - id: 10506 - name: Squeeze tube - - id: 10507 - name: Pouch - - id: 10508 - name: Refill - - id: 10598 - name: Pot - - id: 10788 - name: Canister - - id: 10789 - name: Shaker - - id: 11036 - name: Bag - - id: 15025 - name: Travel size - - id: 16669 - name: Spray bottle -- id: 1457 - name: Bitter variery - friendly_id: bitter_variery - values: - - id: 2871 - name: Floral - - id: 10015 - name: Aromatic - - id: 10016 - name: Fruit - - id: 10017 - name: Herbal - - id: 10018 - name: Spicy -- id: 1458 - name: Flavor - friendly_id: flavor - values: - - id: 10 - name: Orange - - id: 372 - name: Other - - id: 992 - name: Coconut - - id: 3330 - name: Almond - - id: 7854 - name: Cherry - - id: 7879 - name: Rose - - id: 7945 - name: Cinnamon - - id: 7951 - name: Vanilla - - id: 8200 - name: Coffee - - id: 8619 - name: Mint - - id: 9005 - name: Apple - - id: 9008 - name: Banana - - id: 9012 - name: Blueberry - - id: 9015 - name: Caramel - - id: 9020 - name: Chocolate - - id: 9025 - name: Dulce de leche - - id: 9027 - name: Elderflower - - id: 9031 - name: Ginger - - id: 9042 - name: Lemon - - id: 9045 - name: Lime - - id: 9046 - name: Lychee - - id: 9047 - name: Mango - - id: 9050 - name: Matcha - - id: 9054 - name: Mojito - - id: 9057 - name: Peach - - id: 9064 - name: Raspberry - - id: 9065 - name: Salted caramel - - id: 9068 - name: Strawberry - - id: 9071 - name: Tropical - - id: 9072 - name: Unflavored -- id: 1459 - name: Hard cider variety - friendly_id: hard_cider_variety - values: - - id: 8690 - name: Sweet - - id: 10019 - name: Bittersharp - - id: 10020 - name: Bittersweet - - id: 10021 - name: Brut - - id: 10022 - name: Demi-sec - - id: 10023 - name: Doux - - id: 10024 - name: Sharp -- id: 1460 - name: Absinthe style - friendly_id: absinthe_style - values: - - id: 10025 - name: Distilled - - id: 10026 - name: Mixed -- id: 1461 - name: Absinthe variety - friendly_id: absinthe_variety - values: - - id: 7963 - name: Bohemian - - id: 8679 - name: Amber - - id: 10027 - name: Blanche - - id: 10028 - name: Flavored - - id: 10029 - name: Hausgemacht - - id: 10030 - name: Macerated - - id: 10031 - name: Rouge - - id: 10032 - name: Verte -- id: 1462 - name: Brandy variety - friendly_id: brandy_variety - values: - - id: 9092 - name: Armagnac - - id: 9093 - name: Brandy - - id: 9094 - name: Brandy de Jerez - - id: 9095 - name: Calvados - - id: 9096 - name: Cognac - - id: 9097 - name: Grappa - - id: 9098 - name: Macieira - - id: 9099 - name: Metaxa -- id: 1463 - name: Gin variety - friendly_id: gin_variety - values: - - id: 9100 - name: Flavored gin - - id: 9101 - name: Genever gin - - id: 9102 - name: London dry gin - - id: 9103 - name: Old Tom gin - - id: 9104 - name: Plymouth gin -- id: 1464 - name: Liqueur variety - friendly_id: liqueur_variety - values: - - id: 9105 - name: Coffee liqueur - - id: 9106 - name: Chocolate liqueur - - id: 9107 - name: Berry liqueur - - id: 9108 - name: Cream liqueur - - id: 9109 - name: Fruit liqueur - - id: 9110 - name: Nut liqueur - - id: 9111 - name: Herbal liqueur - - id: 9112 - name: Floral liqueur - - id: 9113 - name: Rice liqueur -- id: 1465 - name: Rum grade - friendly_id: rum_grade - values: - - id: 4 - name: Gold - - id: 3661 - name: Light - - id: 9423 - name: Dark - - id: 10028 - name: Flavored - - id: 10033 - name: Agricultural - - id: 10034 - name: Overproof - - id: 10035 - name: Premium - - id: 10036 - name: Spiced -- id: 1466 - name: Spirit dilution - friendly_id: spirit_dilution - values: - - id: 9122 - name: Diluted - - id: 9123 - name: Undiluted -- id: 1467 - name: Region - friendly_id: region - values: - - id: 372 - name: Other - - id: 9124 - name: Guanajuato - - id: 9125 - name: Jalisco - - id: 9126 - name: Kentucky - - id: 9127 - name: Los Altos - - id: 9128 - name: Michoacán - - id: 9129 - name: Nayarit - - id: 9130 - name: Tamaulipas - - id: 9135 - name: Bangalore - - id: 9136 - name: Campbeltown - - id: 9137 - name: County - - id: 9138 - name: Highlands - - id: 9139 - name: Hokkaido - - id: 9140 - name: Indiana - - id: 9141 - name: Irish - - id: 9142 - name: Islay - - id: 9143 - name: Lowlands - - id: 9144 - name: Miyagikyo - - id: 9145 - name: Nagahama - - id: 9146 - name: Pennsylvania - - id: 9147 - name: Speyside - - id: 9148 - name: Tasmania - - id: 9149 - name: Tennessee - - id: 9150 - name: Texas - - id: 9151 - name: Victoria - - id: 9152 - name: Yamazaki - - id: 9229 - name: Montepulciano - - id: 9284 - name: Abruzzo - - id: 9285 - name: Aconcagua Valley - - id: 9286 - name: Adelaide Hills - - id: 9287 - name: Adelaide Plains - - id: 9288 - name: Agrelo - - id: 9289 - name: Ahr - - id: 9290 - name: Alentejo - - id: 9291 - name: Almansa - - id: 9292 - name: Alsace - - id: 9293 - name: Alt Penedès - - id: 9294 - name: Alto Adige - - id: 9295 - name: Alto Cachapoal - - id: 9296 - name: Alto Maipo - - id: 9297 - name: Alto Valle del Río Colorado - - id: 9298 - name: Alto Valle del Río Negro - - id: 9299 - name: Alto Valle del Río Neuquén - - id: 9300 - name: Apulia - - id: 9301 - name: Baden - - id: 9302 - name: Bairrada - - id: 9303 - name: Barolo - - id: 9304 - name: Barossa Valley - - id: 9305 - name: Beaujolais - - id: 9306 - name: Bekaa Valley - - id: 9307 - name: Bolgheri - - id: 9308 - name: Bordeaux - - id: 9309 - name: Burgundy - - id: 9310 - name: California - - id: 9311 - name: Central Otago - - id: 9312 - name: Champagne - - id: 9313 - name: Chianti - - id: 9314 - name: Colchagua Valley - - id: 9315 - name: Constantia - - id: 9316 - name: Coonawarra - - id: 9317 - name: Corsica - - id: 9318 - name: Côtes de Beaune - - id: 9319 - name: Côtes de Bordeaux - - id: 9320 - name: Côtes de Nuits - - id: 9321 - name: Côtes de Provence - - id: 9322 - name: Côtes du Rhône - - id: 9323 - name: Crete - - id: 9324 - name: Curicó Valley - - id: 9325 - name: Danube - - id: 9326 - name: Darling - - id: 9327 - name: Douro Valley - - id: 9328 - name: Elqui Valley - - id: 9329 - name: Emilia-Romagna - - id: 9330 - name: Finger Lakes - - id: 9331 - name: Franschhoek - - id: 9332 - name: Galicia - - id: 9333 - name: Gisborne - - id: 9334 - name: Great southern - - id: 9335 - name: Hawke's Bay - - id: 9336 - name: Hemel-en-Aarde Valley - - id: 9337 - name: Hunter Valley - - id: 9338 - name: Jerez - - id: 9339 - name: Kamptal - - id: 9340 - name: Langhe - - id: 9341 - name: Languedoc-Roussillon - - id: 9342 - name: Lodi - - id: 9343 - name: Loire Valley - - id: 9344 - name: Macedon Ranges - - id: 9345 - name: Margaret River - - id: 9346 - name: Marlborough - - id: 9347 - name: McLaren Vale - - id: 9348 - name: Mendocino - - id: 9349 - name: Mendoza - - id: 9350 - name: Montalcino - - id: 9351 - name: Mornington Peninsula - - id: 9352 - name: Mosel - - id: 9353 - name: Nahe - - id: 9354 - name: Napa Valley - - id: 9355 - name: Niagara Peninsula - - id: 9356 - name: Okanagan Valley - - id: 9357 - name: Oregon - - id: 9358 - name: Penedès - - id: 9359 - name: Pfalz - - id: 9360 - name: Piedmont - - id: 9361 - name: Piemonte - - id: 9362 - name: Priorat - - id: 9363 - name: Puglia - - id: 9364 - name: Rheingau - - id: 9365 - name: Rheinhessen - - id: 9366 - name: Rhône Valley - - id: 9367 - name: Rías Baixas - - id: 9368 - name: Ribera del Duero - - id: 9369 - name: Rioja - - id: 9370 - name: Robertson - - id: 9371 - name: Rueda - - id: 9372 - name: Sancerre - - id: 9373 - name: Santa Barbara County - - id: 9374 - name: Santa Cruz Mountains - - id: 9375 - name: Sicily - - id: 9376 - name: Sonoma County - - id: 9377 - name: Stellenbosch - - id: 9378 - name: Swartland - - id: 9379 - name: Tokaj - - id: 9380 - name: Toro - - id: 9381 - name: Tuscany - - id: 9382 - name: Umbria - - id: 9383 - name: Valle de Guadalupe - - id: 9384 - name: Valle de Uco - - id: 9385 - name: Veneto - - id: 9386 - name: Vinho Verde - - id: 9387 - name: Wachau - - id: 9388 - name: Walker Bay - - id: 9389 - name: Western Cape - - id: 9390 - name: Willamette Valley - - id: 9391 - name: Yarra Valley - - id: 9392 - name: Yucatán Peninsula - - id: 9393 - name: Zagorje-Medimurje -- id: 1468 - name: Tequila variety - friendly_id: tequila_variety - values: - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 10037 - name: Aged - - id: 10038 - name: Rested -- id: 1469 - name: Whiskey style - friendly_id: whiskey_style - values: - - id: 10039 - name: Blended malt - - id: 10040 - name: Cask strength - - id: 10041 - name: Single cask - - id: 10042 - name: Single malt -- id: 1470 - name: Whiskey variety - friendly_id: whiskey_variety - values: - - id: 775 - name: Corn - - id: 1036 - name: Wheat - - id: 9157 - name: Bourbon - - id: 9158 - name: Scotch - - id: 9628 - name: Rye - - id: 10043 - name: Malt -- id: 1471 - name: Base spirit - friendly_id: base_spirit - values: - - id: 9093 - name: Brandy - - id: 9167 - name: Gin - - id: 9168 - name: Liquor - - id: 9169 - name: Rum - - id: 9170 - name: Tequila - - id: 9171 - name: Vodka - - id: 9172 - name: Whiskey -- id: 1475 - name: Wine sweetness - friendly_id: wine_sweetness - values: - - id: 550 - name: Dry - - id: 1511 - name: Medium - - id: 8690 - name: Sweet - - id: 10044 - name: Medium dry - - id: 15262 - name: Off-dry - - id: 15263 - name: Semi-sweet -- id: 1476 - name: Wine variety - friendly_id: wine_variety - values: - - id: 2 - name: Blue - - id: 3 - name: White - - id: 10 - name: Orange - - id: 13 - name: Red - - id: 9312 - name: Champagne - - id: 10045 - name: Rosé -- id: 1477 - name: Coffee roast - friendly_id: coffee_roast - values: - - id: 1511 - name: Medium - - id: 3661 - name: Light - - id: 7459 - name: Medium-light - - id: 9422 - name: Medium-dark - - id: 9423 - name: Dark -- id: 1478 - name: Fruit source - friendly_id: fruit_source - values: - - id: 9594 - name: Not from concentrate - - id: 9595 - name: Concentrate -- id: 1479 - name: Fat content - friendly_id: fat_content - values: - - id: 8661 - name: Low fat - - id: 9597 - name: Skimmed - - id: 9598 - name: Semi-skimmed - - id: 9599 - name: Whole - - id: 9702 - name: Full fat - - id: 9703 - name: Fat-free - - id: 9704 - name: Reduced fat -- id: 1480 - name: Soda variety - friendly_id: soda_variety - values: - - id: 10 - name: Orange - - id: 9600 - name: Cola - - id: 9601 - name: Ginger ale - - id: 9602 - name: Ginger beer - - id: 9603 - name: Lemon-lime - - id: 9604 - name: Soda cream - - id: 9605 - name: Tonic water -- id: 1482 - name: Tea input type - friendly_id: tea_input_type - values: - - id: 9163 - name: Capsules - - id: 9612 - name: Loose - - id: 9613 - name: Bags - - id: 9614 - name: Pods - - id: 9615 - name: K-cups - - id: 9616 - name: T-disks - - id: 9617 - name: Blossoms - - id: 9618 - name: Instant - - id: 9619 - name: Compressed -- id: 1483 - name: Vinegar drink variety - friendly_id: vinegar_drink_variety - values: - - id: 9621 - name: Kombucha - - id: 9622 - name: Oxymel - - id: 9623 - name: Posca - - id: 9624 - name: Shrubs - - id: 9625 - name: Switchel - - id: 9626 - name: Vinegar tonic -- id: 1484 - name: Flour/Grain type - friendly_id: flour_grain_type - values: - - id: 372 - name: Other - - id: 775 - name: Corn - - id: 1036 - name: Wheat - - id: 7919 - name: Buckwheat - - id: 8649 - name: Nuts - - id: 9438 - name: Barley - - id: 9522 - name: Oats - - id: 9540 - name: Quinoa - - id: 9544 - name: Rice - - id: 9628 - name: Rye - - id: 9629 - name: Sorghum - - id: 9630 - name: Spelt - - id: 9631 - name: Triticale - - id: 11355 - name: Multigrain -- id: 1485 - name: Heat level - friendly_id: heat_level - values: - - id: 1511 - name: Medium - - id: 7643 - name: Hot - - id: 9650 - name: Mild - - id: 9651 - name: Very hot - - id: 9652 - name: Extremely hot -- id: 1486 - name: Baking purpose - friendly_id: baking_purpose - values: - - id: 372 - name: Other - - id: 9633 - name: Biscuits - - id: 9635 - name: Brownies - - id: 9644 - name: Muffins - - id: 9657 - name: Bread - - id: 9660 - name: Carrot cake - - id: 9661 - name: Cheesecake - - id: 9664 - name: Crème brûlée - - id: 9665 - name: Crumble - - id: 9668 - name: Gingerbread - - id: 9670 - name: Meringue - - id: 9675 - name: Pie crust - - id: 9676 - name: Pizza dough - - id: 9678 - name: Rustic bread - - id: 9679 - name: Shortbread - - id: 10046 - name: Chocolate cake - - id: 10047 - name: Cookies - - id: 10048 - name: Macaroons - - id: 10049 - name: Muesli bars - - id: 10050 - name: Pancakes - - id: 10051 - name: Waffles -- id: 1487 - name: Cooking wine variety - friendly_id: cooking_wine_variety - values: - - id: 3 - name: White - - id: 13 - name: Red - - id: 9544 - name: Rice - - id: 10052 - name: Marsala - - id: 10053 - name: Sherry -- id: 1488 - name: Gel strength - friendly_id: gel_strength - values: - - id: 9687 - name: High bloom - - id: 9688 - name: Low bloom - - id: 9689 - name: Medium bloom -- id: 1489 - name: Vinegar variety - friendly_id: vinegar_variety - values: - - id: 895 - name: Cane - - id: 8328 - name: Grains - - id: 9621 - name: Kombucha - - id: 10016 - name: Fruit - - id: 10054 - name: Balsamic - - id: 10055 - name: Spirits -- id: 1490 - name: Coffee creamer variety - friendly_id: coffee_creamer_variety - values: - - id: 7406 - name: Liquid - - id: 10056 - name: Non-dairy - - id: 10057 - name: Powdered -- id: 1491 - name: Nut butter variety - friendly_id: nut_butter_variety - values: - - id: 690 - name: Walnut - - id: 3330 - name: Almond - - id: 7288 - name: Peanut - - id: 9018 - name: Cashew - - id: 9037 - name: Hazelnut - - id: 9058 - name: Pecan - - id: 9060 - name: Pistachio - - id: 10058 - name: Brazil nut - - id: 10059 - name: Macadamia nut -- id: 1492 - name: Dry bean variety - friendly_id: dry_bean_variety - values: - - id: 8652 - name: Soybeans - - id: 9442 - name: Black beans - - id: 9461 - name: Chickpeas - - id: 9501 - name: Kidney beans - - id: 9725 - name: Brown lentils - - id: 9726 - name: Butter beans - - id: 9727 - name: Cannellini beans - - id: 9728 - name: Green lentils - - id: 9729 - name: Green split peas - - id: 9730 - name: Pinto beans - - id: 9731 - name: Red lentils - - id: 9732 - name: Yellow lentils - - id: 9733 - name: Yellow split peas -- id: 1493 - name: Cooking method - friendly_id: cooking_method - values: - - id: 9734 - name: Baking - - id: 9735 - name: Barbecuing - - id: 9736 - name: Boiling - - id: 9737 - name: Braising - - id: 9738 - name: Broiling - - id: 9739 - name: Deep frying - - id: 9740 - name: Frying - - id: 9741 - name: Grilling - - id: 9742 - name: Microwaving - - id: 9743 - name: Pan frying - - id: 9744 - name: Poaching - - id: 9745 - name: Roasting - - id: 9746 - name: Sautéing - - id: 9747 - name: Steaming - - id: 9748 - name: Stewing - - id: 9749 - name: Stir frying -- id: 1494 - name: Canned meat variety - friendly_id: canned_meat_variety - values: - - id: 9750 - name: Canned beef - - id: 9751 - name: Canned chicken - - id: 9752 - name: Canned ham - - id: 9753 - name: Canned meatballs - - id: 9754 - name: Canned meatloaf - - id: 9755 - name: Canned pork - - id: 9756 - name: Canned turkey -- id: 1495 - name: Cuisine - friendly_id: cuisine - values: - - id: 372 - name: Other - - id: 6939 - name: French - - id: 6942 - name: Italian - - id: 7964 - name: Scandinavian - - id: 9762 - name: Balkan - - id: 9764 - name: British - - id: 9765 - name: Cajun - - id: 9766 - name: Caribbean - - id: 9767 - name: Chinese - - id: 9768 - name: Creole - - id: 9770 - name: East African - - id: 9771 - name: Eastern European - - id: 9774 - name: Hawaiian - - id: 9775 - name: Indian - - id: 9779 - name: Japanese - - id: 9780 - name: Korean - - id: 9781 - name: Latin American - - id: 9785 - name: Mediterranean - - id: 9786 - name: Mexican - - id: 9787 - name: Middle Eastern - - id: 9789 - name: North African - - id: 9790 - name: Oceanian - - id: 9793 - name: South African - - id: 9796 - name: Spanish - - id: 9797 - name: Thai - - id: 9799 - name: Vietnamese - - id: 9800 - name: West African - - id: 10060 - name: Central European - - id: 10061 - name: Southeast Asian - - id: 10062 - name: Southern United States - - id: 10063 - name: Southwestern United States -- id: 1496 - name: Meat cut - friendly_id: meat_cut - values: - - id: 372 - name: Other - - id: 1266 - name: Heart - - id: 7342 - name: Saddle - - id: 7556 - name: Ground - - id: 7558 - name: Shoulder - - id: 9599 - name: Whole - - id: 9801 - name: Brisket - - id: 9802 - name: Burgers - - id: 9803 - name: Cheek - - id: 9804 - name: Chuck - - id: 9805 - name: Flank - - id: 9806 - name: Forequarter - - id: 9807 - name: Kidney - - id: 9808 - name: Liver - - id: 9809 - name: Oxtail - - id: 9812 - name: Rump - - id: 9813 - name: Shank - - id: 9814 - name: Short loin - - id: 9815 - name: Short ribs - - id: 9816 - name: Sirloin - - id: 9817 - name: Tenderloin - - id: 9818 - name: Tongue - - id: 9819 - name: Tripe - - id: 9820 - name: Backstrap - - id: 9821 - name: Front shoulder - - id: 9822 - name: Haunch - - id: 9823 - name: Hindquarter - - id: 9824 - name: Jerky - - id: 9825 - name: Meatballs - - id: 9826 - name: Neck - - id: 9827 - name: Ribs - - id: 9829 - name: Sausages - - id: 9830 - name: Stew meat - - id: 9834 - name: Chops - - id: 9836 - name: Loin - - id: 9837 - name: Rack - - id: 9838 - name: Sweetbreads - - id: 9839 - name: Belly - - id: 9840 - name: Blade - - id: 9842 - name: Ham - - id: 9843 - name: Hock - - id: 9844 - name: Jowl - - id: 9847 - name: Spareribs - - id: 9849 - name: Breasts - - id: 9850 - name: Drumsticks - - id: 9852 - name: Thighs - - id: 9853 - name: Wings - - id: 10064 - name: Legs -- id: 1497 - name: Seafood type - friendly_id: seafood_type - values: - - id: 372 - name: Other - - id: 9548 - name: Salmon - - id: 9573 - name: Tuna - - id: 9854 - name: Anchovy - - id: 9855 - name: Barramundi - - id: 9856 - name: Bass - - id: 9857 - name: Calamari - - id: 9858 - name: Carp - - id: 9859 - name: Catfish - - id: 9860 - name: Clam - - id: 9861 - name: Cod - - id: 9862 - name: Crab - - id: 9863 - name: Crawfish - - id: 9864 - name: Cuttlefish - - id: 9865 - name: Eel - - id: 9866 - name: Flounder - - id: 9867 - name: Grouper - - id: 9868 - name: Haddock - - id: 9869 - name: Halibut - - id: 9870 - name: Herring - - id: 9871 - name: Lobster - - id: 9872 - name: Mackerel - - id: 9873 - name: Mahi-mahi - - id: 9874 - name: Mussel - - id: 9875 - name: Octopus - - id: 9876 - name: Oyster - - id: 9877 - name: Perch - - id: 9878 - name: Pike - - id: 9879 - name: Pollock - - id: 9880 - name: Sardine - - id: 9881 - name: Scallop - - id: 9882 - name: Shrimp - - id: 9883 - name: Snapper - - id: 9884 - name: Sole - - id: 9885 - name: Squid - - id: 9886 - name: Swordfish - - id: 9887 - name: Tilapia - - id: 9888 - name: Trout -- id: 1498 - name: Pasta type - friendly_id: pasta_type - values: - - id: 372 - name: Other - - id: 8353 - name: Spaghetti - - id: 8354 - name: Linguine - - id: 8355 - name: Fettuccine - - id: 8356 - name: Lasagna - - id: 8358 - name: Tortellini - - id: 8359 - name: Gnocchi - - id: 8360 - name: Penne - - id: 8361 - name: Rigatoni - - id: 8362 - name: Farfalle - - id: 9892 - name: Angel hair - - id: 9893 - name: Bucatini - - id: 9894 - name: Campanelle - - id: 9895 - name: Cannelloni - - id: 9896 - name: Capellini - - id: 9897 - name: Casarecce - - id: 9898 - name: Cavatappi - - id: 9899 - name: Cazzetti - - id: 9900 - name: Conchiglie - - id: 9901 - name: Ditalini - - id: 9902 - name: Dumplings - - id: 9903 - name: Elbow macaroni - - id: 9904 - name: Fusilli - - id: 9905 - name: Gemelli - - id: 9907 - name: Macaroni - - id: 9908 - name: Manicotti - - id: 9909 - name: Mostaccioli - - id: 9910 - name: Orzo - - id: 9911 - name: Orecchiette - - id: 9912 - name: Paccheri - - id: 9913 - name: Pappardelle - - id: 9914 - name: Radiatori - - id: 9915 - name: Rotelle - - id: 9916 - name: Rotini - - id: 9917 - name: Tagliatelle - - id: 9918 - name: Vermicelli - - id: 9919 - name: Ziti -- id: 1499 - name: Heating instructions - friendly_id: heating_instructions - values: - - id: 7753 - name: Microwave - - id: 8316 - name: Oven - - id: 9920 - name: Bain-marie - - id: 9921 - name: Hob - - id: 9922 - name: Stovetop -- id: 1500 - name: Meat type - friendly_id: meat_type - values: - - id: 8208 - name: Rabbit - - id: 8989 - name: Turkey - - id: 9441 - name: Beef - - id: 9460 - name: Chicken - - id: 9536 - name: Pork - - id: 9831 - name: Venison - - id: 9923 - name: Bison - - id: 9924 - name: Duck - - id: 9925 - name: Goat - - id: 9926 - name: Lamb - - id: 9927 - name: Ostrich - - id: 9928 - name: Pheasant - - id: 9929 - name: Plant-based - - id: 9930 - name: Quail - - id: 9931 - name: Wild boar -- id: 1501 - name: Tobacco type - friendly_id: tobacco_type - values: - - id: 9798 - name: Turkish - - id: 9932 - name: Burley - - id: 9933 - name: Cavendish - - id: 9934 - name: Latakia - - id: 9935 - name: Maryland - - id: 9936 - name: Oriental - - id: 9937 - name: Perique - - id: 9938 - name: Virginia -- id: 1502 - name: Cigar body - friendly_id: cigar_body - values: - - id: 1511 - name: Medium - - id: 2745 - name: Full - - id: 9650 - name: Mild - - id: 9939 - name: Medium to full - - id: 9940 - name: Mild to medium -- id: 1503 - name: Pipe shape - friendly_id: pipe_shape - values: - - id: 372 - name: Other - - id: 7160 - name: Billiard - - id: 7317 - name: Pear - - id: 7941 - name: Egg - - id: 8626 - name: Tomato - - id: 9005 - name: Apple - - id: 9941 - name: Blowfish - - id: 9942 - name: Bulldog - - id: 9943 - name: Calabash - - id: 9944 - name: Canadian - - id: 9945 - name: Cavalier - - id: 9947 - name: Churchwarden - - id: 9948 - name: Cutty - - id: 9949 - name: Dublin - - id: 9950 - name: Freehand - - id: 9951 - name: Gourd calabash - - id: 9952 - name: Lovat - - id: 9953 - name: Panel - - id: 9954 - name: Poker - - id: 9955 - name: Prince - - id: 9956 - name: Volcano - - id: 10065 - name: Chimneys -- id: 1506 - name: E-liquid flavor - friendly_id: e_liquid_flavor - values: - - id: 10 - name: Orange - - id: 372 - name: Other - - id: 992 - name: Coconut - - id: 7945 - name: Cinnamon - - id: 7951 - name: Vanilla - - id: 8200 - name: Coffee - - id: 8619 - name: Mint - - id: 9005 - name: Apple - - id: 9012 - name: Blueberry - - id: 9015 - name: Caramel - - id: 9020 - name: Chocolate - - id: 9047 - name: Mango - - id: 9059 - name: Pineapple - - id: 9064 - name: Raspberry - - id: 9068 - name: Strawberry - - id: 9073 - name: Watermelon - - id: 9600 - name: Cola - - id: 9972 - name: Bubblegum - - id: 9976 - name: Cotton candy - - id: 9982 - name: Menthol - - id: 9987 - name: Tobacco - - id: 10069 - name: Cereal -- id: 1507 - name: E-liquid variety - friendly_id: e_liquid_variety - values: - - id: 3104 - name: Regular - - id: 9989 - name: Freebase nicotine - - id: 9991 - name: Nicotine salt - - id: 9992 - name: Short fill - - id: 9995 - name: Zero nicotine - - id: 10073 - name: Nicotine shot -- id: 1508 - name: Nut processing method - friendly_id: nut_processing_method - values: - - id: 7078 - name: Raw - - id: 9889 - name: Candied - - id: 9890 - name: Roasted - - id: 9891 - name: Salted -- id: 1509 - name: Coil connection - friendly_id: coil_connection - values: - - id: 8451 - name: Fixed - - id: 10066 - name: Changeable -- id: 1510 - name: E-cigarette/Vaporizer style - friendly_id: e_cigarette_vaporizer_style - values: - - id: 1082 - name: Disposable - - id: 6968 - name: Stick - - id: 7275 - name: Pen - - id: 9957 - name: Box mod - - id: 9962 - name: Pod mod - - id: 9969 - name: Mod - - id: 10067 - name: Cigalike - - id: 10068 - name: Pod -- id: 1511 - name: Vaping style - friendly_id: vaping_style - values: - - id: 10070 - name: Direct-to-lung (DTL) - - id: 10071 - name: Mouth-to-lung (MTL) - - id: 10072 - name: Restricted direct-to-lung (RDTL) -- id: 1512 - name: VG/PG ratio - friendly_id: vg_pg_ratio - values: - - id: 10074 - name: 30:70 - - id: 10075 - name: 40:60 - - id: 10076 - name: '45:55' - - id: 10077 - name: '50:50' - - id: 10078 - name: '60:40' - - id: 10079 - name: '65:35' - - id: 10080 - name: '70:30' - - id: 10081 - name: '75:25' - - id: 10082 - name: '80:20' - - id: 10083 - name: '90:10' - - id: 10084 - name: '100:00' -- id: 1513 - name: Compatible mattress size - friendly_id: compatible_mattress_size - values: - - id: 392 - name: Standard - - id: 7081 - name: Double - - id: 7229 - name: Single - - id: 7231 - name: Twin - - id: 7261 - name: Bunk - - id: 8525 - name: California king - - id: 8526 - name: King - - id: 8527 - name: Queen -- id: 1514 - name: Firmness - friendly_id: firmness - values: - - id: 1511 - name: Medium - - id: 6992 - name: Extra soft - - id: 6993 - name: Soft - - id: 7921 - name: Extra firm - - id: 7922 - name: Firm - - id: 10095 - name: Medium firm - - id: 10096 - name: Medium soft -- id: 1515 - name: Slat material - friendly_id: slat_material - values: - - id: 601 - name: Metal - - id: 625 - name: Wood - - id: 899 - name: Plywood - - id: 1853 - name: Medium density fiberboard (MDF) - - id: 2557 - name: Beech wood - - id: 2995 - name: Oak wood - - id: 6754 - name: Pine wood - - id: 16906 - name: Spruce wood -- id: 1516 - name: Seat color - friendly_id: seat_color - values: - - id: 1 - name: Black - - id: 2 - name: Blue - - id: 3 - name: White - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 6 - name: Beige - - id: 7 - name: Brown - - id: 8 - name: Gray - - id: 9 - name: Green - - id: 10 - name: Orange - - id: 11 - name: Pink - - id: 12 - name: Purple - - id: 13 - name: Red - - id: 14 - name: Yellow - - id: 15 - name: Navy - - id: 16 - name: Rose gold - - id: 17 - name: Clear - - id: 657 - name: Bronze - - id: 2865 - name: Multicolor -- id: 1518 - name: Seat type - friendly_id: seat_type - values: - - id: 600 - name: Mesh - - id: 1363 - name: Flat - - id: 6994 - name: Hard - - id: 10099 - name: Padded - - id: 10100 - name: Upholstered strap - - id: 10101 - name: Upholstered padded - - id: 10102 - name: Strap - - id: 10103 - name: Upholstered - - id: 10104 - name: Air filled - - id: 10105 - name: Nest - - id: 10106 - name: Swing bag - - id: 10107 - name: Bucket (cradle) -- id: 1519 - name: Door color - friendly_id: door_color - values: - - id: 1 - name: Black - - id: 2 - name: Blue - - id: 3 - name: White - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 6 - name: Beige - - id: 7 - name: Brown - - id: 8 - name: Gray - - id: 9 - name: Green - - id: 10 - name: Orange - - id: 11 - name: Pink - - id: 12 - name: Purple - - id: 13 - name: Red - - id: 14 - name: Yellow - - id: 15 - name: Navy - - id: 16 - name: Rose gold - - id: 17 - name: Clear - - id: 657 - name: Bronze - - id: 2865 - name: Multicolor -- id: 1520 - name: Door material - friendly_id: door_material - values: - - id: 372 - name: Other - - id: 601 - name: Metal - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 620 - name: Stainless steel - - id: 624 - name: Vinyl - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 801 - name: Steel - - id: 823 - name: Fiberglass - - id: 860 - name: Iron - - id: 882 - name: Composite - - id: 888 - name: Particle board - - id: 899 - name: Plywood - - id: 997 - name: High density fiberboard (HDF) - - id: 1009 - name: Maple wood - - id: 1637 - name: Aluminum - - id: 1817 - name: Polyurethane (PU) - - id: 1853 - name: Medium density fiberboard (MDF) - - id: 2557 - name: Beech wood - - id: 2995 - name: Oak wood - - id: 6754 - name: Pine wood - - id: 8352 - name: Alder wood - - id: 10092 - name: Mahogany - - id: 10111 - name: Cherry wood - - id: 10112 - name: Walnut wood - - id: 16924 - name: Poplar wood -- id: 1521 - name: Door type - friendly_id: door_type - values: - - id: 10108 - name: Hinged - - id: 10109 - name: Sliding -- id: 1522 - name: Top color - friendly_id: top_color - values: - - id: 1 - name: Black - - id: 2 - name: Blue - - id: 3 - name: White - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 6 - name: Beige - - id: 7 - name: Brown - - id: 8 - name: Gray - - id: 9 - name: Green - - id: 10 - name: Orange - - id: 11 - name: Pink - - id: 12 - name: Purple - - id: 13 - name: Red - - id: 14 - name: Yellow - - id: 15 - name: Navy - - id: 16 - name: Rose gold - - id: 17 - name: Clear - - id: 657 - name: Bronze - - id: 2865 - name: Multicolor -- id: 1523 - name: Top material - friendly_id: top_material - values: - - id: 52 - name: Faux leather - - id: 64 - name: Bamboo - - id: 67 - name: Acrylic - - id: 372 - name: Other - - id: 558 - name: Leather - - id: 585 - name: Fabric - - id: 601 - name: Metal - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 620 - name: Stainless steel - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 643 - name: Ceramic - - id: 656 - name: Brass - - id: 801 - name: Steel - - id: 821 - name: Foam - - id: 822 - name: Granite - - id: 823 - name: Fiberglass - - id: 856 - name: Melamine - - id: 858 - name: Rattan - - id: 860 - name: Iron - - id: 877 - name: Resin - - id: 888 - name: Particle board - - id: 899 - name: Plywood - - id: 929 - name: Concrete - - id: 941 - name: Marble - - id: 997 - name: High density fiberboard (HDF) - - id: 1009 - name: Maple wood - - id: 1637 - name: Aluminum - - id: 1817 - name: Polyurethane (PU) - - id: 1853 - name: Medium density fiberboard (MDF) - - id: 2557 - name: Beech wood - - id: 2988 - name: Fiber reinforced plastic (FRP) - - id: 2995 - name: Oak wood - - id: 3009 - name: Wood plastic composite (WPC) - - id: 6754 - name: Pine wood - - id: 7925 - name: Wicker - - id: 8351 - name: Teak wood - - id: 10111 - name: Cherry wood - - id: 10112 - name: Walnut wood - - id: 16861 - name: Cedar wood -- id: 1524 - name: Leg color - friendly_id: leg_color - values: - - id: 1 - name: Black - - id: 2 - name: Blue - - id: 3 - name: White - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 6 - name: Beige - - id: 7 - name: Brown - - id: 8 - name: Gray - - id: 9 - name: Green - - id: 10 - name: Orange - - id: 11 - name: Pink - - id: 12 - name: Purple - - id: 13 - name: Red - - id: 14 - name: Yellow - - id: 15 - name: Navy - - id: 16 - name: Rose gold - - id: 17 - name: Clear - - id: 657 - name: Bronze - - id: 2865 - name: Multicolor -- id: 1525 - name: Leg material - friendly_id: leg_material - values: - - id: 52 - name: Faux leather - - id: 64 - name: Bamboo - - id: 67 - name: Acrylic - - id: 372 - name: Other - - id: 558 - name: Leather - - id: 585 - name: Fabric - - id: 601 - name: Metal - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 620 - name: Stainless steel - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 643 - name: Ceramic - - id: 656 - name: Brass - - id: 801 - name: Steel - - id: 821 - name: Foam - - id: 822 - name: Granite - - id: 823 - name: Fiberglass - - id: 856 - name: Melamine - - id: 858 - name: Rattan - - id: 860 - name: Iron - - id: 877 - name: Resin - - id: 888 - name: Particle board - - id: 899 - name: Plywood - - id: 929 - name: Concrete - - id: 941 - name: Marble - - id: 997 - name: High density fiberboard (HDF) - - id: 1009 - name: Maple wood - - id: 1637 - name: Aluminum - - id: 1817 - name: Polyurethane (PU) - - id: 1853 - name: Medium density fiberboard (MDF) - - id: 2557 - name: Beech wood - - id: 2988 - name: Fiber reinforced plastic (FRP) - - id: 2995 - name: Oak wood - - id: 3009 - name: Wood plastic composite (WPC) - - id: 6754 - name: Pine wood - - id: 7925 - name: Wicker - - id: 8351 - name: Teak wood - - id: 10111 - name: Cherry wood - - id: 10112 - name: Walnut wood - - id: 16861 - name: Cedar wood -- id: 1526 - name: Wine rack design - friendly_id: wine_rack_design - values: - - id: 1247 - name: Modern - - id: 7518 - name: Utility - - id: 7559 - name: Traditional - - id: 10110 - name: Decorative -- id: 1527 - name: Backrest type - friendly_id: backrest_type - values: - - id: 600 - name: Mesh - - id: 6994 - name: Hard - - id: 10099 - name: Padded - - id: 10100 - name: Upholstered strap - - id: 10101 - name: Upholstered padded - - id: 10102 - name: Strap - - id: 10103 - name: Upholstered -- id: 1528 - name: Massage technique - friendly_id: massage_technique - values: - - id: 7693 - name: Rolling - - id: 10115 - name: Clapping - - id: 10116 - name: Foot reflex zone - - id: 10117 - name: Kneading - - id: 10118 - name: Shiatsu - - id: 10119 - name: Swedish - - id: 10120 - name: Tapping - - id: 10121 - name: Combo - - id: 10122 - name: Wavelet - - id: 10123 - name: Pummeling - - id: 10124 - name: Beat - - id: 10125 - name: Compression - - id: 10126 - name: Percussive - - id: 10927 - name: Deep tissue -- id: 1529 - name: Treatment area - friendly_id: treatment_area - values: - - id: 3176 - name: Back - - id: 7429 - name: Waist - - id: 9826 - name: Neck - - id: 9852 - name: Thighs - - id: 10128 - name: Arms - - id: 10129 - name: Buttocks - - id: 10130 - name: Calves - - id: 10131 - name: Feet - - id: 10132 - name: Lumbar region - - id: 10133 - name: Shoulders -- id: 1530 - name: Hanging chair design - friendly_id: hanging_chair_design - values: - - id: 10134 - name: With stand - - id: 10135 - name: Without stand -- id: 1531 - name: Back type - friendly_id: back_type - values: - - id: 10136 - name: Backless - - id: 10137 - name: Full back - - id: 10138 - name: Low back -- id: 1532 - name: Tabletop shape - friendly_id: tabletop_shape - values: - - id: 627 - name: Round - - id: 628 - name: Square - - id: 7321 - name: Oval - - id: 10140 - name: Rectangular - - id: 10150 - name: Free-form - - id: 10151 - name: Kidney-shaped - - id: 10152 - name: Trapezoidal - - id: 14390 - name: Semicircular -- id: 1533 - name: Seat pattern - friendly_id: seat_pattern - values: - - id: 1782 - name: Text - - id: 1796 - name: Vehicle - - id: 1868 - name: Geometric - - id: 2283 - name: Birds - - id: 2370 - name: Animals - - id: 2375 - name: Hearts - - id: 2376 - name: Stars - - id: 2866 - name: Camouflage - - id: 2867 - name: Characters - - id: 2868 - name: Checkered - - id: 2869 - name: Christmas - - id: 2870 - name: Dots - - id: 2871 - name: Floral - - id: 2872 - name: Leaves - - id: 2873 - name: Paisley - - id: 2874 - name: Solid - - id: 2875 - name: Striped - - id: 2876 - name: Tie-dye -- id: 1534 - name: Tabletop color - friendly_id: tabletop_color - values: - - id: 1 - name: Black - - id: 2 - name: Blue - - id: 3 - name: White - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 6 - name: Beige - - id: 7 - name: Brown - - id: 8 - name: Gray - - id: 9 - name: Green - - id: 10 - name: Orange - - id: 11 - name: Pink - - id: 12 - name: Purple - - id: 13 - name: Red - - id: 14 - name: Yellow - - id: 15 - name: Navy - - id: 16 - name: Rose gold - - id: 17 - name: Clear - - id: 657 - name: Bronze - - id: 2865 - name: Multicolor -- id: 1535 - name: Tabletop material - friendly_id: tabletop_material - values: - - id: 52 - name: Faux leather - - id: 64 - name: Bamboo - - id: 67 - name: Acrylic - - id: 372 - name: Other - - id: 558 - name: Leather - - id: 585 - name: Fabric - - id: 601 - name: Metal - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 620 - name: Stainless steel - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 643 - name: Ceramic - - id: 656 - name: Brass - - id: 801 - name: Steel - - id: 821 - name: Foam - - id: 822 - name: Granite - - id: 823 - name: Fiberglass - - id: 856 - name: Melamine - - id: 858 - name: Rattan - - id: 860 - name: Iron - - id: 877 - name: Resin - - id: 888 - name: Particle board - - id: 899 - name: Plywood - - id: 929 - name: Concrete - - id: 941 - name: Marble - - id: 997 - name: High density fiberboard (HDF) - - id: 1009 - name: Maple wood - - id: 1637 - name: Aluminum - - id: 1817 - name: Polyurethane (PU) - - id: 1853 - name: Medium density fiberboard (MDF) - - id: 2557 - name: Beech wood - - id: 2988 - name: Fiber reinforced plastic (FRP) - - id: 2995 - name: Oak wood - - id: 3009 - name: Wood plastic composite (WPC) - - id: 6754 - name: Pine wood - - id: 7925 - name: Wicker - - id: 8351 - name: Teak wood - - id: 10111 - name: Cherry wood - - id: 10112 - name: Walnut wood - - id: 16861 - name: Cedar wood -- id: 1536 - name: Tabletop pattern - friendly_id: tabletop_pattern - values: - - id: 1782 - name: Text - - id: 1796 - name: Vehicle - - id: 1868 - name: Geometric - - id: 2283 - name: Birds - - id: 2370 - name: Animals - - id: 2375 - name: Hearts - - id: 2376 - name: Stars - - id: 2866 - name: Camouflage - - id: 2867 - name: Characters - - id: 2868 - name: Checkered - - id: 2869 - name: Christmas - - id: 2870 - name: Dots - - id: 2871 - name: Floral - - id: 2872 - name: Leaves - - id: 2873 - name: Paisley - - id: 2874 - name: Solid - - id: 2875 - name: Striped - - id: 2876 - name: Tie-dye -- id: 1537 - name: Seat structure - friendly_id: seat_structure - values: - - id: 2874 - name: Solid - - id: 7925 - name: Wicker - - id: 10155 - name: Grid -- id: 1538 - name: Suitable for storage type - friendly_id: suitable_for_storage_type - values: - - id: 10156 - name: Bicycle - - id: 10157 - name: Cushions - - id: 10158 - name: Garbage - - id: 10159 - name: Garden tools -- id: 1539 - name: Suitable location - friendly_id: suitable_location - values: - - id: 372 - name: Other - - id: 10160 - name: Balcony - - id: 10161 - name: Bathroom - - id: 10162 - name: Bedroom - - id: 10163 - name: Children's room - - id: 10164 - name: Corridor - - id: 10165 - name: Courtyard - - id: 10166 - name: Dining room - - id: 10167 - name: Entrance - - id: 10168 - name: Garage - - id: 10169 - name: Garden - - id: 10170 - name: Hallway - - id: 10171 - name: Kitchen - - id: 10172 - name: Laundry room - - id: 10173 - name: Living room - - id: 10174 - name: Patio - - id: 10175 - name: Porch - - id: 10176 - name: Storage room - - id: 10177 - name: Toilet -- id: 1540 - name: Backrest upholstery material - friendly_id: backrest_upholstery_material - values: - - id: 40 - name: Cotton - - id: 44 - name: Nylon - - id: 45 - name: Polyester - - id: 51 - name: Wool - - id: 52 - name: Faux leather - - id: 60 - name: Linen - - id: 67 - name: Acrylic - - id: 558 - name: Leather - - id: 561 - name: Suede - - id: 563 - name: Velvet - - id: 605 - name: Canvas - - id: 615 - name: Microfiber - - id: 624 - name: Vinyl - - id: 763 - name: Satin - - id: 811 - name: Leatherette - - id: 1817 - name: Polyurethane (PU) -- id: 1541 - name: Seat upholstery material - friendly_id: seat_upholstery_material - values: - - id: 40 - name: Cotton - - id: 44 - name: Nylon - - id: 45 - name: Polyester - - id: 51 - name: Wool - - id: 52 - name: Faux leather - - id: 60 - name: Linen - - id: 67 - name: Acrylic - - id: 558 - name: Leather - - id: 561 - name: Suede - - id: 563 - name: Velvet - - id: 605 - name: Canvas - - id: 615 - name: Microfiber - - id: 624 - name: Vinyl - - id: 763 - name: Satin - - id: 811 - name: Leatherette - - id: 1817 - name: Polyurethane (PU) -- id: 1542 - name: Leg pattern - friendly_id: leg_pattern - values: - - id: 1782 - name: Text - - id: 1796 - name: Vehicle - - id: 1868 - name: Geometric - - id: 2283 - name: Birds - - id: 2370 - name: Animals - - id: 2375 - name: Hearts - - id: 2376 - name: Stars - - id: 2866 - name: Camouflage - - id: 2867 - name: Characters - - id: 2868 - name: Checkered - - id: 2869 - name: Christmas - - id: 2870 - name: Dots - - id: 2871 - name: Floral - - id: 2872 - name: Leaves - - id: 2873 - name: Paisley - - id: 2874 - name: Solid - - id: 2875 - name: Striped - - id: 2876 - name: Tie-dye -- id: 1543 - name: Acupuncture model format - friendly_id: acupuncture_model_format - values: - - id: 10180 - name: Miniature - - id: 10181 - name: Life-size - - id: 10182 - name: Desktop -- id: 1544 - name: Acupuncture model type - friendly_id: acupuncture_model_type - values: - - id: 1523 - name: Animal - - id: 3176 - name: Back - - id: 8127 - name: Hand - - id: 10183 - name: Ear - - id: 10184 - name: Foot - - id: 10185 - name: Head - - id: 10186 - name: Human body -- id: 1545 - name: Needle material - friendly_id: needle_material - values: - - id: 4 - name: Gold - - id: 620 - name: Stainless steel - - id: 623 - name: Titanium - - id: 679 - name: Nickel - - id: 8504 - name: Silver-plated -- id: 1546 - name: Bed pan type - friendly_id: bed_pan_type - values: - - id: 392 - name: Standard - - id: 10187 - name: Bariatric - - id: 10188 - name: Fracture bed pan -- id: 1547 - name: Activity tracker design - friendly_id: activity_tracker_design - values: - - id: 3732 - name: Clip-on - - id: 7772 - name: Armband - - id: 10191 - name: Waist belt - - id: 10192 - name: Wristband -- id: 1548 - name: Compatible operating system - friendly_id: compatible_operating_system - values: - - id: 10193 - name: iOS - - id: 10194 - name: Android - - id: 10195 - name: Windows - - id: 10196 - name: macOS -- id: 1549 - name: Tracking metrics - friendly_id: tracking_metrics - values: - - id: 10205 - name: Blood pressure - - id: 10206 - name: Body fat - - id: 10207 - name: Calories - - id: 10208 - name: Distance traveled - - id: 10209 - name: Heart rate - - id: 10210 - name: Sleep - - id: 10211 - name: Steps -- id: 1550 - name: Measuring method - friendly_id: measuring_method - values: - - id: 8052 - name: Optical - - id: 10212 - name: BIA - - id: 10213 - name: Calipers -- id: 1551 - name: Metrics supported - friendly_id: metrics_supported - values: - - id: 10214 - name: Body fat percentage - - id: 10215 - name: Body water percentage - - id: 10216 - name: Bone mass - - id: 10217 - name: Muscle mass -- id: 1552 - name: Weight unit supported - friendly_id: weight_unit_supported - values: - - id: 10218 - name: Pounds (lbs) - - id: 10219 - name: Kilograms (kg) - - id: 10220 - name: Stones (st) -- id: 1553 - name: Test format - friendly_id: test_format - values: - - id: 1656 - name: Digital - - id: 10221 - name: App-based - - id: 10222 - name: Midstream - - id: 10223 - name: Monitor - - id: 10224 - name: Test strip - - id: 10449 - name: Test cassette - - id: 10450 - name: Test cup -- id: 1554 - name: Measuring type - friendly_id: measuring_type - values: - - id: 6883 - name: Universal - - id: 10183 - name: Ear - - id: 10225 - name: Oral - - id: 10226 - name: Rectal - - id: 10227 - name: Underarm - - id: 10228 - name: Forehead - - id: 10232 - name: Breast - - id: 10233 - name: Clothes - - id: 10234 - name: Finger - - id: 10235 - name: Wrist -- id: 1555 - name: Temperature measurement - friendly_id: temperature_measurement - values: - - id: 8325 - name: Fahrenheit (°F) - - id: 8326 - name: Celsius (°C) -- id: 1556 - name: Test sample - friendly_id: test_sample - values: - - id: 7930 - name: Stool - - id: 8189 - name: Urine - - id: 8199 - name: Blood - - id: 10229 - name: Contact thermometer - - id: 10230 - name: Remote sensing thermometer - - id: 10420 - name: Breath - - id: 10421 - name: Saliva - - id: 10422 - name: Stool test - - id: 10423 - name: Swab -- id: 1557 - name: Condom type - friendly_id: condom_type - values: - - id: 18 - name: Female - - id: 19 - name: Male -- id: 1558 - name: Texture - friendly_id: texture - values: - - id: 6993 - name: Soft - - id: 8684 - name: Creamy - - id: 8689 - name: Smooth - - id: 10462 - name: Lightweight - - id: 10711 - name: Absorbent - - id: 10712 - name: Cushiony - - id: 10713 - name: Non-greasy - - id: 10714 - name: Silky - - id: 10718 - name: Velvety - - id: 10719 - name: Butter-like - - id: 10936 - name: Heavyweight -- id: 1559 - name: Suitable for skin type - friendly_id: suitable_for_skin_type - values: - - id: 550 - name: Dry - - id: 551 - name: Normal - - id: 6883 - name: Universal - - id: 7209 - name: Combination - - id: 8153 - name: Wet - - id: 10247 - name: All skin types - - id: 10248 - name: Sensitive - - id: 10493 - name: Aging - - id: 10494 - name: Demanding - - id: 10495 - name: Mature - - id: 10496 - name: Oily - - id: 10497 - name: Problem - - id: 10498 - name: Rough - - id: 10499 - name: Very dry - - id: 10500 - name: With redness -- id: 1560 - name: Application area - friendly_id: application_area - values: - - id: 3176 - name: Back - - id: 7425 - name: Chest - - id: 7429 - name: Waist - - id: 9826 - name: Neck - - id: 9852 - name: Thighs - - id: 10064 - name: Legs - - id: 10128 - name: Arms - - id: 10129 - name: Buttocks - - id: 10131 - name: Feet - - id: 10133 - name: Shoulders - - id: 10185 - name: Head - - id: 10249 - name: Abdomen - - id: 10250 - name: Eyes - - id: 10251 - name: Hips - - id: 10252 - name: Lips - - id: 10257 - name: Knees - - id: 10838 - name: Face - - id: 10952 - name: Full body - - id: 10953 - name: Hamstrings -- id: 1562 - name: First aid kit usage - friendly_id: first_aid_kit_usage - values: - - id: 429 - name: Sport - - id: 8510 - name: Industrial - - id: 10156 - name: Bicycle - - id: 10253 - name: Car - - id: 10254 - name: Home - - id: 10255 - name: Pets - - id: 10256 - name: Travel -- id: 1563 - name: Body area - friendly_id: body_area - values: - - id: 372 - name: Other - - id: 3176 - name: Back - - id: 9826 - name: Neck - - id: 10064 - name: Legs - - id: 10131 - name: Feet - - id: 10133 - name: Shoulders - - id: 10257 - name: Knees - - id: 10258 - name: Wrists - - id: 10838 - name: Face - - id: 10846 - name: Hands - - id: 10872 - name: Heels - - id: 10873 - name: Soles - - id: 10874 - name: Toes - - id: 10952 - name: Full body - - id: 10986 - name: Bikini line -- id: 1564 - name: Treatment objective - friendly_id: treatment_objective - values: - - id: 10259 - name: Muscle pain - - id: 10260 - name: Joint pain - - id: 10261 - name: Swelling - - id: 10262 - name: Fever - - id: 10625 - name: Hydration - - id: 10857 - name: Ear cleaning - - id: 10858 - name: Earwax removal - - id: 10859 - name: Ear infection relief - - id: 10865 - name: Constipation relief - - id: 10866 - name: Bowel cleansing - - id: 10867 - name: Preparation for a medical procedure - - id: 10868 - name: Vaginal pH balancing - - id: 10869 - name: Relieving irritation - - id: 10875 - name: Comfort - - id: 10876 - name: Pain relief - - id: 10877 - name: Support - - id: 10998 - name: Obstructive sleep apnea - - id: 10999 - name: Snoring -- id: 1565 - name: Ice pack type - friendly_id: ice_pack_type - values: - - id: 10266 - name: Bead pack - - id: 10267 - name: Clay pack - - id: 10268 - name: Flexible ice blanket - - id: 10269 - name: Foam pack - - id: 10270 - name: Gel pack - - id: 10271 - name: Ice bag - - id: 10272 - name: Instant (chemical-based) -- id: 1566 - name: Product sterility - friendly_id: product_sterility - values: - - id: 10277 - name: Sterile - - id: 10278 - name: Non-sterile -- id: 1567 - name: Dietary use - friendly_id: dietary_use - values: - - id: 9627 - name: High protein - - id: 10279 - name: Energy - - id: 10280 - name: Meal replacement - - id: 10281 - name: Weight loss - - id: 10282 - name: Muscle building - - id: 10283 - name: Endurance - - id: 10284 - name: Low carb - - id: 10285 - name: High fiber - - id: 10286 - name: Recovery - - id: 10287 - name: Performance - - id: 10288 - name: Snacking - - id: 10289 - name: Balanced nutrition - - id: 10290 - name: Weight gain - - id: 10291 - name: Calorie control - - id: 10292 - name: Blood sugar control -- id: 1568 - name: Texture level - friendly_id: texture_level - values: - - id: 10293 - name: Level 1 (puréed) - - id: 10294 - name: Level 2 (minced) - - id: 10295 - name: Level 3 (soft or bite-sized foods) -- id: 1569 - name: Ingredient category - friendly_id: ingredient_category - values: - - id: 62 - name: Synthetic - - id: 372 - name: Other - - id: 784 - name: Fiber - - id: 7915 - name: Herbs - - id: 8202 - name: Enzymes - - id: 8671 - name: Organic - - id: 9929 - name: Plant-based - - id: 10296 - name: Amino acids - - id: 10297 - name: Animal-derived - - id: 10298 - name: Antioxidants - - id: 10299 - name: Artificial ingredients - - id: 10300 - name: Botanicals - - id: 10301 - name: Dairy-based - - id: 10302 - name: Fruit extracts - - id: 10303 - name: Minerals - - id: 10304 - name: Mushroom extracts - - id: 10305 - name: Natural ingredients - - id: 10306 - name: Omega fatty acids - - id: 10307 - name: Probiotics - - id: 10308 - name: Protein - - id: 10309 - name: Vegetable extracts - - id: 10310 - name: Vitamins - - id: 15837 - name: Fatty acids -- id: 1570 - name: Detailed ingredients - friendly_id: detailed_ingredients - values: - - id: 372 - name: Other - - id: 787 - name: Magnesium - - id: 860 - name: Iron - - id: 865 - name: Zinc - - id: 1042 - name: Hemp - - id: 7945 - name: Cinnamon - - id: 7948 - name: Lavender - - id: 8417 - name: Phosphorus - - id: 8418 - name: Potassium - - id: 8419 - name: Calcium - - id: 8421 - name: Manganese - - id: 8539 - name: Echinacea - - id: 8622 - name: Rosemary - - id: 9031 - name: Ginger - - id: 9038 - name: Honey - - id: 9050 - name: Matcha - - id: 9523 - name: Olive oil - - id: 10306 - name: Omega fatty acids - - id: 10334 - name: L-carnitine - - id: 10335 - name: L-cysteine - - id: 10336 - name: L-glutamine - - id: 10337 - name: L-valine - - id: 10338 - name: Taurine - - id: 10339 - name: Vitamin B5 - - id: 10340 - name: Collagen - - id: 10341 - name: Inulin - - id: 10342 - name: Acacia - - id: 10343 - name: Acai - - id: 10344 - name: Aloe - - id: 10345 - name: Animal protein - - id: 10346 - name: Arnica - - id: 10347 - name: Artichoke - - id: 10348 - name: Chamomile - - id: 10349 - name: Chlorophyll - - id: 10350 - name: Creatine - - id: 10351 - name: Curcumin - - id: 10352 - name: Egg protein - - id: 10353 - name: Flaxseed - - id: 10354 - name: Ginseng - - id: 10355 - name: Green tea - - id: 10356 - name: Guarana - - id: 10357 - name: Iodine - - id: 10358 - name: Lecithin - - id: 10359 - name: Milk protein - - id: 10360 - name: Moringa - - id: 10361 - name: Plant-based protein - - id: 10362 - name: Propolis - - id: 10363 - name: Rosehip - - id: 10364 - name: Royal jelly - - id: 10365 - name: Selenium - - id: 10366 - name: Sodium - - id: 10367 - name: Soy protein - - id: 10368 - name: Spirulina - - id: 10369 - name: Stevia - - id: 10370 - name: Tapioca - - id: 10371 - name: Trace minerals - - id: 10372 - name: Vitamin A - - id: 10373 - name: Vitamin B - - id: 10374 - name: Vitamin B1 - - id: 10375 - name: Vitamin B12 - - id: 10376 - name: Vitamin B2 - - id: 10377 - name: Vitamin B3 - - id: 10378 - name: Vitamin B6 - - id: 10379 - name: Vitamin B7 - - id: 10380 - name: Vitamin B9 (folic acid) - - id: 10381 - name: Vitamin C - - id: 10382 - name: Vitamin D - - id: 10383 - name: Vitamin D3 - - id: 10384 - name: Vitamin E - - id: 10385 - name: Vitamin K - - id: 10386 - name: Vitamin K1 - - id: 10387 - name: Vitamin K2 - - id: 10388 - name: Vitamin K3 - - id: 10389 - name: Whey protein - - id: 10390 - name: Yeast - - id: 10391 - name: Bacillus subtilis - - id: 10392 - name: Bacillus coagulans - - id: 10393 - name: Bifidobacterium bifidum - - id: 10394 - name: Lacticaseibacillus rhamnosus - - id: 10395 - name: Lactobacillus acidophilus - - id: 10396 - name: Lacticaseibacillus casei - - id: 10397 - name: Mannan-oligosaccharide (MOS) - - id: 10398 - name: Fructooligosaccharides (FOS) - - id: 10399 - name: Natural flavors - - id: 10726 - name: Almond oil - - id: 10727 - name: Argan oil - - id: 10728 - name: Beeswax - - id: 10729 - name: Coconut oil - - id: 10730 - name: Glycerin - - id: 10731 - name: Hyaluronic acid - - id: 10732 - name: Jojoba oil - - id: 10733 - name: Keratin - - id: 10734 - name: Lanolin - - id: 10735 - name: Lemongrass oil - - id: 10736 - name: Peppermint oil - - id: 10737 - name: Salicylic acid - - id: 10738 - name: Shea butter - - id: 10739 - name: Sunflower seed oil - - id: 10740 - name: Tea tree oil -- id: 1571 - name: Battery type - friendly_id: battery_type - values: - - id: 1082 - name: Disposable - - id: 10400 - name: Rechargeable -- id: 1572 - name: Technology level - friendly_id: technology_level - values: - - id: 6961 - name: Intermediate - - id: 10035 - name: Premium - - id: 10401 - name: Basic - - id: 10402 - name: Advanced -- id: 1573 - name: Diaper type - friendly_id: diaper_type - values: - - id: 6932 - name: Pads - - id: 7053 - name: Pull-ups - - id: 10403 - name: Diapers -- id: 1574 - name: Light spectrum - friendly_id: light_spectrum - values: - - id: 7156 - name: Blue light - - id: 10405 - name: Adjustable light spectrum - - id: 10406 - name: Full spectrum - - id: 10407 - name: Green light - - id: 10408 - name: Infrared light - - id: 10409 - name: Multi-spectrum - - id: 10410 - name: Near-infrared light (NIR) - - id: 10411 - name: Red light - - id: 10412 - name: UV light - - id: 10413 - name: White light -- id: 1575 - name: System range - friendly_id: system_range - values: - - id: 10414 - name: Home-based - - id: 10415 - name: On-the-go (GPS) -- id: 1576 - name: Test method - friendly_id: test_method - values: - - id: 10416 - name: At-home test (self-administered) - - id: 10417 - name: Lab analysis - - id: 10418 - name: Point-of-care test - - id: 10419 - name: RDT -- id: 1577 - name: Allergen test type - friendly_id: allergen_test_type - values: - - id: 8025 - name: Food - - id: 10255 - name: Pets - - id: 10424 - name: Bugs - - id: 10425 - name: Environmental -- id: 1578 - name: Blood test kit components - friendly_id: blood_test_kit_components - values: - - id: 10224 - name: Test strip - - id: 10426 - name: Adhesive bandages - - id: 10427 - name: Alcohol prep pads - - id: 10428 - name: Blood collection pipettes - - id: 10429 - name: Disposable gloves - - id: 10430 - name: Gauze pads - - id: 10431 - name: Sample collection bag - - id: 10432 - name: Sterile lancets - - id: 10433 - name: Test tube -- id: 1579 - name: Detectable drugs - friendly_id: detectable_drugs - values: - - id: 10434 - name: Amphetamine - - id: 10435 - name: Barbiturates - - id: 10436 - name: Benzodiazepines - - id: 10437 - name: Buprenorphine - - id: 10438 - name: Ecstasy - - id: 10439 - name: Marijuana - - id: 10440 - name: Methadone - - id: 10441 - name: Methamphetamine - - id: 10442 - name: Opiates - - id: 10443 - name: Oxycodone - - id: 10444 - name: Phencyclidine -- id: 1580 - name: Pregnancy test sensitivity - friendly_id: pregnancy_test_sensitivity - values: - - id: 10445 - name: Early detection - - id: 10446 - name: Standard detection -- id: 1581 - name: Result display - friendly_id: result_display - values: - - id: 1656 - name: Digital - - id: 10447 - name: Line-based - - id: 10448 - name: Plus/Minus symbol -- id: 1582 - name: Mobility scooter type - friendly_id: mobility_scooter_type - values: - - id: 10256 - name: Travel - - id: 10451 - name: 3-wheel - - id: 10452 - name: 4-wheel - - id: 10453 - name: Folding/Portable - - id: 10454 - name: Heavy-duty (bariatric) -- id: 1583 - name: Stair lifts control type - friendly_id: stair_lifts_control_type - values: - - id: 10455 - name: Handheld remote - - id: 10456 - name: Wall-mounted switch -- id: 1584 - name: Stair lifts safety features - friendly_id: stair_lifts_safety_features - values: - - id: 10457 - name: Emergency stop - - id: 10458 - name: Obstacle sensors - - id: 10459 - name: Seat belt -- id: 1585 - name: Staircase type - friendly_id: staircase_type - values: - - id: 552 - name: Straight - - id: 7737 - name: Curved - - id: 8131 - name: Outdoor - - id: 10460 - name: Multi-level -- id: 1586 - name: Transfer boards surface type - friendly_id: transfer_boards_surface_type - values: - - id: 8689 - name: Smooth - - id: 10099 - name: Padded - - id: 10461 - name: Non-slip -- id: 1587 - name: Wheelchair type - friendly_id: wheelchair_type - values: - - id: 6976 - name: Electric - - id: 6977 - name: Manual - - id: 7389 - name: Folding - - id: 10187 - name: Bariatric - - id: 10462 - name: Lightweight - - id: 10463 - name: Transport - - id: 10464 - name: Pediatric - - id: 10465 - name: Reclining -- id: 1588 - name: Compatible walking aid equipment - friendly_id: compatible_walking_aid_equipment - values: - - id: 10468 - name: Canes & walking sticks - - id: 10469 - name: Crutches - - id: 10470 - name: Walkers -- id: 1589 - name: Crutch type - friendly_id: crutch_type - values: - - id: 10471 - name: Forearm (elbow) - - id: 10472 - name: Platform - - id: 10473 - name: Underarm (axillary) -- id: 1590 - name: Muscle estimulator design - friendly_id: muscle_estimulator_design - values: - - id: 7395 - name: Belt - - id: 10474 - name: Arm-band - - id: 10475 - name: Leg-band - - id: 10476 - name: Sticker plate - - id: 10477 - name: Electrodes unit -- id: 1591 - name: Nebulizer technology - friendly_id: nebulizer_technology - values: - - id: 600 - name: Mesh - - id: 7756 - name: Ultrasonic - - id: 8467 - name: Jet - - id: 10478 - name: Piston - - id: 10479 - name: VMT -- id: 1592 - name: Product design - friendly_id: product_design - values: - - id: 7192 - name: Tabletop - - id: 8055 - name: Handheld -- id: 1593 - name: Oxygen tank valve type - friendly_id: oxygen_tank_valve_type - values: - - id: 3100 - name: Toggle - - id: 10481 - name: Post valve - - id: 10482 - name: Z valve -- id: 1594 - name: Mask type - friendly_id: mask_type - values: - - id: 10225 - name: Oral - - id: 10484 - name: Full face - - id: 10485 - name: Nasal - - id: 10486 - name: Nasal pillow -- id: 1595 - name: Compression level - friendly_id: compression_level - values: - - id: 3661 - name: Light - - id: 3662 - name: Moderate - - id: 7921 - name: Extra firm - - id: 7922 - name: Firm -- id: 1597 - name: Handle type - friendly_id: handle_type - values: - - id: 169 - name: Short - - id: 1406 - name: Long - - id: 10501 - name: No handle -- id: 1598 - name: Active ingredient - friendly_id: active_ingredient - values: - - id: 372 - name: Other - - id: 662 - name: Charcoal - - id: 7266 - name: Alcohol - - id: 7845 - name: Aloe vera - - id: 9982 - name: Menthol - - id: 10372 - name: Vitamin A - - id: 10381 - name: Vitamin C - - id: 10384 - name: Vitamin E - - id: 10727 - name: Argan oil - - id: 10728 - name: Beeswax - - id: 10729 - name: Coconut oil - - id: 10731 - name: Hyaluronic acid - - id: 10732 - name: Jojoba oil - - id: 10737 - name: Salicylic acid - - id: 10777 - name: Benzoyl peroxide - - id: 10778 - name: Glycolic acid - - id: 10779 - name: Retinol - - id: 10780 - name: Niacinamide - - id: 10781 - name: Peptides - - id: 10782 - name: Calendula oil - - id: 10783 - name: Lavender oil - - id: 10784 - name: Moroccan argan oil - - id: 10785 - name: Sea buckthorn oil - - id: 10786 - name: Sweet almond oil - - id: 10787 - name: Cocoa butter - - id: 10791 - name: Filaggrin technology - - id: 10792 - name: Zinc coceth sulfate - - id: 10793 - name: Witch hazel - - id: 10996 - name: Aluminum sulfate - - id: 10997 - name: Potassium alum -- id: 1599 - name: Solubility - friendly_id: solubility - values: - - id: 10511 - name: Insoluble - - id: 10512 - name: Partially soluble - - id: 10513 - name: Water-soluble -- id: 1600 - name: Compatible cosmetic tools - friendly_id: compatible_cosmetic_tools - values: - - id: 8342 - name: Spatula - - id: 10514 - name: Beauty tool containers - - id: 10515 - name: Eyebrow trimmers - - id: 10516 - name: Eyelash curlers - - id: 10517 - name: Makeup brushes - - id: 10518 - name: Makeup mixing palettes - - id: 10519 - name: Powder puffs - - id: 10520 - name: Silicone applicators - - id: 10521 - name: Sponges - - id: 10522 - name: Tweezers -- id: 1601 - name: Drying speed - friendly_id: drying_speed - values: - - id: 3104 - name: Regular - - id: 10524 - name: Slow-drying - - id: 10525 - name: Fast-drying -- id: 1602 - name: Eyelash applicator design - friendly_id: eyelash_applicator_design - values: - - id: 552 - name: Straight - - id: 7737 - name: Curved - - id: 10526 - name: Tweezer-style - - id: 10527 - name: Scissor-style -- id: 1603 - name: Bristle shape - friendly_id: bristle_shape - values: - - id: 1363 - name: Flat - - id: 7684 - name: Tapered - - id: 10528 - name: Rounded - - id: 10529 - name: Angled -- id: 1604 - name: Sponge shape - friendly_id: sponge_shape - values: - - id: 372 - name: Other - - id: 7218 - name: Contoured - - id: 7434 - name: Teardrop - - id: 10528 - name: Rounded - - id: 10534 - name: Flat-edged -- id: 1605 - name: Compatible makeup - friendly_id: compatible_makeup - values: - - id: 7405 - name: Powder - - id: 10535 - name: Blush - - id: 10536 - name: Eyeshadow - - id: 10537 - name: Lipstick -- id: 1606 - name: Tip style - friendly_id: tip_style - values: - - id: 1363 - name: Flat - - id: 3105 - name: Pointed - - id: 7737 - name: Curved - - id: 10529 - name: Angled -- id: 1607 - name: Toe spacer design - friendly_id: toe_spacer_design - values: - - id: 7218 - name: Contoured - - id: 10539 - name: Loop design - - id: 10540 - name: Traditional toe separator -- id: 1608 - name: Pad type - friendly_id: pad_type - values: - - id: 10542 - name: Machine washable - - id: 10543 - name: Removable - - id: 10544 - name: Replaceable -- id: 1609 - name: Extractor tip style - friendly_id: extractor_tip_style - values: - - id: 7488 - name: Scoop - - id: 7706 - name: Loop - - id: 10547 - name: Lancet - - id: 10548 - name: Needle -- id: 1610 - name: Roller head - friendly_id: roller_head - values: - - id: 7229 - name: Single - - id: 10549 - name: Dual -- id: 1611 - name: Roller material - friendly_id: roller_material - values: - - id: 601 - name: Metal - - id: 620 - name: Stainless steel - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 809 - name: Silicone - - id: 10550 - name: Jade - - id: 10551 - name: Quartz -- id: 1612 - name: Roller type - friendly_id: roller_type - values: - - id: 10550 - name: Jade - - id: 10551 - name: Quartz - - id: 10552 - name: Ice - - id: 10553 - name: Microneedle -- id: 1613 - name: Brush head usage - friendly_id: brush_head_usage - values: - - id: 10554 - name: Daily cleansing - - id: 10555 - name: Deep cleansing - - id: 10556 - name: Exfoliation - - id: 10557 - name: Sensitive skin -- id: 1614 - name: Cosmetic finish - friendly_id: cosmetic_finish - values: - - id: 372 - name: Other - - id: 563 - name: Velvet - - id: 763 - name: Satin - - id: 7972 - name: Glitter - - id: 8004 - name: Opaque - - id: 8007 - name: Sheer - - id: 8066 - name: Natural - - id: 8689 - name: Smooth - - id: 10573 - name: Matte - - id: 10574 - name: Metallic - - id: 10575 - name: Neon - - id: 10576 - name: Dewy - - id: 10604 - name: Glossy - - id: 10605 - name: Luminous - - id: 10606 - name: Pearlescent - - id: 10607 - name: Shimmer - - id: 10637 - name: Radiant - - id: 10706 - name: Satin-matte - - id: 10707 - name: Sparkly - - id: 10710 - name: Shine-free - - id: 10715 - name: Semi-matte - - id: 10716 - name: Velvet-matte - - id: 10720 - name: Embossed - - id: 10721 - name: Soft-focus - - id: 10744 - name: Holographic -- id: 1615 - name: Skin tone - friendly_id: skin_tone - values: - - id: 10577 - name: Fair skin - - id: 10578 - name: Light skin - - id: 10579 - name: Medium skin - - id: 10580 - name: Deep skin - - id: 10581 - name: Sand skin - - id: 10582 - name: Cafe skin - - id: 10583 - name: Nude skin - - id: 10584 - name: Dark skin - - id: 10585 - name: Tanned skin - - id: 10586 - name: All skin tones -- id: 1616 - name: Skin undertone - friendly_id: skin_undertone - values: - - id: 4 - name: Gold - - id: 14 - name: Yellow - - id: 7879 - name: Rose - - id: 10587 - name: Cool - - id: 10588 - name: Neutral - - id: 10589 - name: Warm - - id: 10590 - name: Neutral/Warm - - id: 10591 - name: Neutral/Warm/Pink - - id: 10592 - name: Cool/Pink - - id: 10593 - name: Warm/Yellow - - id: 10594 - name: Olive/Yellow - - id: 10595 - name: Red/Yellow - - id: 10596 - name: Pink/Yellow - - id: 10597 - name: Brown/Red/Yellow -- id: 1617 - name: Skin care effect - friendly_id: skin_care_effect - values: - - id: 372 - name: Other - - id: 8196 - name: Refreshing - - id: 10599 - name: Anti-aging - - id: 10600 - name: Anti-wrinkle - - id: 10601 - name: Smoothing - - id: 10602 - name: Hydrating - - id: 10603 - name: Plumping - - id: 10609 - name: Nourishing - - id: 10623 - name: Elasticity - - id: 10628 - name: Protection - - id: 10629 - name: Revitalizing - - id: 10630 - name: Strengthening - - id: 10635 - name: Brightening - - id: 10636 - name: Bronzing - - id: 10638 - name: Pore shrinking - - id: 10639 - name: Anti-fatigue - - id: 10640 - name: Tightening - - id: 10641 - name: Mattifying - - id: 10642 - name: Moisturizing - - id: 10643 - name: Lifting - - id: 10644 - name: Priming - - id: 10645 - name: Leveling - - id: 10646 - name: Pore refining - - id: 10647 - name: Anti-shine - - id: 10648 - name: Calming - - id: 10649 - name: Soothing - - id: 10650 - name: Anti-redness - - id: 10651 - name: Anti-acne - - id: 10652 - name: Anti-bacterial - - id: 10653 - name: Anti-blackhead - - id: 10654 - name: Anti-blemish - - id: 10655 - name: Anti-cellulite - - id: 10656 - name: Anti-dark circle - - id: 10657 - name: Anti-dark spot - - id: 10658 - name: Anti-drying - - id: 10659 - name: Anti-dullness - - id: 10660 - name: Anti-imperfections - - id: 10661 - name: Anti-irritation - - id: 10662 - name: Anti-itching - - id: 10663 - name: Anti-keratin - - id: 10664 - name: Anti-particles - - id: 10665 - name: Anti-perleche - - id: 10666 - name: Anti-pimple - - id: 10667 - name: Anti-puffiness - - id: 10668 - name: Anti-rubbing - - id: 10669 - name: Anti-scars - - id: 10670 - name: Anti-stress - - id: 10671 - name: Anti-stretch mark - - id: 10672 - name: Clarity - - id: 10673 - name: Cleansing - - id: 10674 - name: Color correction - - id: 10675 - name: Cooling - - id: 10676 - name: Drying - - id: 10677 - name: Energizing - - id: 10678 - name: Exfoliating - - id: 10679 - name: Filler effect - - id: 10680 - name: Firming - - id: 10681 - name: Healing - - id: 10682 - name: Illuminating - - id: 10683 - name: Invigorating - - id: 10684 - name: Keratin reduction - - id: 10685 - name: Oxygenating - - id: 10686 - name: Pore tightening - - id: 10687 - name: Prevents age spots - - id: 10688 - name: Prevents freckles - - id: 10689 - name: Purifying - - id: 10690 - name: Rebalancing - - id: 10691 - name: Regenerating - - id: 10692 - name: Relaxation - - id: 10693 - name: Repairing - - id: 10694 - name: Replenishing - - id: 10695 - name: Reviving - - id: 10696 - name: Scrub - - id: 10697 - name: Shimmering - - id: 10698 - name: Shine - - id: 10699 - name: Slimming - - id: 10700 - name: Softening - - id: 10701 - name: Tonifying - - id: 10702 - name: Treatment - - id: 10703 - name: Unclogging - - id: 10704 - name: Warming - - id: 10705 - name: Whitening -- id: 1618 - name: Eye shadow effect - friendly_id: eye_shadow_effect - values: - - id: 7972 - name: Glitter - - id: 10574 - name: Metallic - - id: 10601 - name: Smoothing - - id: 10608 - name: Smoky - - id: 10609 - name: Nourishing -- id: 1619 - name: Mascara effect - friendly_id: mascara_effect - values: - - id: 7972 - name: Glitter - - id: 10603 - name: Plumping - - id: 10609 - name: Nourishing - - id: 10620 - name: Curling - - id: 10621 - name: Coloring - - id: 10622 - name: Definition - - id: 10623 - name: Elasticity - - id: 10624 - name: Highlighting - - id: 10625 - name: Hydration - - id: 10626 - name: Lengthening - - id: 10627 - name: Precision - - id: 10628 - name: Protection - - id: 10629 - name: Revitalizing - - id: 10630 - name: Strengthening - - id: 10631 - name: Thickening - - id: 10632 - name: Volumizing - - id: 10633 - name: Fixation -- id: 1620 - name: Product benefits - friendly_id: product_benefits - values: - - id: 8066 - name: Natural - - id: 10601 - name: Smoothing - - id: 10602 - name: Hydrating - - id: 10609 - name: Nourishing - - id: 10621 - name: Coloring - - id: 10624 - name: Highlighting - - id: 10628 - name: Protection - - id: 10630 - name: Strengthening - - id: 10635 - name: Brightening - - id: 10636 - name: Bronzing - - id: 10637 - name: Radiant - - id: 10642 - name: Moisturizing - - id: 10644 - name: Priming - - id: 10680 - name: Firming - - id: 10691 - name: Regenerating - - id: 10700 - name: Softening - - id: 10705 - name: Whitening - - id: 10767 - name: Care -- id: 1621 - name: Lip gloss effect - friendly_id: lip_gloss_effect - values: - - id: 10601 - name: Smoothing - - id: 10602 - name: Hydrating - - id: 10603 - name: Plumping - - id: 10609 - name: Nourishing - - id: 10621 - name: Coloring - - id: 10632 - name: Volumizing - - id: 10637 - name: Radiant - - id: 10642 - name: Moisturizing - - id: 10700 - name: Softening - - id: 10708 - name: Mirroring - - id: 10709 - name: Glowing -- id: 1622 - name: Lipstick effect - friendly_id: lipstick_effect - values: - - id: 8196 - name: Refreshing - - id: 10601 - name: Smoothing - - id: 10602 - name: Hydrating - - id: 10603 - name: Plumping - - id: 10609 - name: Nourishing - - id: 10621 - name: Coloring - - id: 10628 - name: Protection - - id: 10632 - name: Volumizing - - id: 10642 - name: Moisturizing - - id: 10649 - name: Soothing - - id: 10680 - name: Firming - - id: 10700 - name: Softening - - id: 10717 - name: Conditioning -- id: 1623 - name: Nail design - friendly_id: nail_design - values: - - id: 665 - name: Chrome - - id: 1868 - name: Geometric - - id: 2871 - name: Floral - - id: 7894 - name: Abstract - - id: 7972 - name: Glitter - - id: 8066 - name: Natural - - id: 10573 - name: Matte - - id: 10574 - name: Metallic - - id: 10741 - name: French tip - - id: 10742 - name: Solid color - - id: 10743 - name: Ombre - - id: 10744 - name: Holographic - - id: 10745 - name: Animal print - - id: 10746 - name: Iridescent -- id: 1624 - name: Nail shape - friendly_id: nail_shape - values: - - id: 372 - name: Other - - id: 627 - name: Round - - id: 628 - name: Square - - id: 3330 - name: Almond - - id: 7321 - name: Oval - - id: 7336 - name: Mountain - - id: 10537 - name: Lipstick - - id: 10747 - name: Arrowhead - - id: 10748 - name: Ballerina - - id: 10749 - name: Coffin - - id: 10750 - name: Edge - - id: 10751 - name: Flare - - id: 10752 - name: Pipe - - id: 10753 - name: Stiletto -- id: 1625 - name: Glue strength - friendly_id: glue_strength - values: - - id: 1511 - name: Medium - - id: 10754 - name: Gentle - - id: 10755 - name: Strong - - id: 10756 - name: Extra strong -- id: 1626 - name: Polish remover form - friendly_id: polish_remover_form - values: - - id: 10761 - name: Liquid nail polish remover - - id: 10762 - name: Removal wraps - - id: 10763 - name: Dip in nail polish remover - - id: 10764 - name: Soak-off remover wraps - - id: 10765 - name: Nail polish degreaser - - id: 10766 - name: Nail polish eraser cream -- id: 1627 - name: Occasion - friendly_id: occasion - values: - - id: 1291 - name: Casual - - id: 10768 - name: Formal - - id: 10769 - name: Everyday - - id: 10770 - name: Special occasion -- id: 1628 - name: Season - friendly_id: season - values: - - id: 10773 - name: Spring - - id: 10774 - name: Summer - - id: 10775 - name: Fall - - id: 10776 - name: Winter -- id: 1629 - name: Constitutive ingredients - friendly_id: constitutive_ingredients - values: - - id: 10 - name: Orange - - id: 372 - name: Other - - id: 1015 - name: Eucalyptus - - id: 7845 - name: Aloe vera - - id: 9523 - name: Olive oil - - id: 10355 - name: Green tea - - id: 10726 - name: Almond oil - - id: 10728 - name: Beeswax - - id: 10729 - name: Coconut oil - - id: 10732 - name: Jojoba oil - - id: 10738 - name: Shea butter - - id: 10787 - name: Cocoa butter - - id: 10794 - name: Acacia honey - - id: 10795 - name: Acerola cherry - - id: 10796 - name: Apricot oil - - id: 10797 - name: Avocado oil - - id: 10798 - name: Blueberry seed oil - - id: 10799 - name: Calendula - - id: 10800 - name: Castor oil - - id: 10801 - name: Cherry oil - - id: 10802 - name: Essential oil - - id: 10803 - name: Goji berry extract - - id: 10804 - name: Hemp oil - - id: 10805 - name: Lemon butter - - id: 10806 - name: Macadamia oil - - id: 10807 - name: Moringa butter - - id: 10808 - name: Rose extract - - id: 10809 - name: Rosehip oil -- id: 1630 - name: Cosmetic function - friendly_id: cosmetic_function - values: - - id: 10599 - name: Anti-aging - - id: 10602 - name: Hydrating - - id: 10609 - name: Nourishing - - id: 10625 - name: Hydration - - id: 10635 - name: Brightening - - id: 10642 - name: Moisturizing - - id: 10649 - name: Soothing - - id: 10673 - name: Cleansing - - id: 10678 - name: Exfoliating - - id: 10681 - name: Healing - - id: 10693 - name: Repairing - - id: 10810 - name: Protecting - - id: 10845 - name: Pore minimizing -- id: 1631 - name: Allergens - friendly_id: allergens - values: - - id: 372 - name: Other - - id: 10812 - name: Alpha-isomethyl ionone - - id: 10813 - name: Amyl cinnamal (amyl cinnamic aldehyde) - - id: 10814 - name: Amylcinnamyl alcohol - - id: 10815 - name: Anisyl alcohol - - id: 10816 - name: Benzyl alcohol - - id: 10817 - name: Benzyl benzoate - - id: 10818 - name: Benzyl cinnamate - - id: 10819 - name: Benzyl salicylate - - id: 10820 - name: Cinnamal - - id: 10821 - name: Cinnamyl alcohol - - id: 10822 - name: Citral - - id: 10823 - name: Citronellol - - id: 10824 - name: Coumarin - - id: 10825 - name: Eugenol - - id: 10826 - name: Evernia furfuracea (treemoss) extract - - id: 10827 - name: Evernia prunastri (oakmoss) extract - - id: 10828 - name: Farnesol - - id: 10829 - name: Geraniol - - id: 10830 - name: Hexyl cinnamal - - id: 10831 - name: Hydroxycitronellal - - id: 10832 - name: Isoeugenol - - id: 10833 - name: Limonene - - id: 10834 - name: Linalool - - id: 10835 - name: Lyral (hydroxyisohexyl 3-cyclohexene carboxaldehyde) - - id: 10836 - name: Methyl 2-octynoate (methyl heptin carbonate) - - id: 10837 - name: Myroxylon pereirae (balsam peru) -- id: 1632 - name: Suitable for bug type - friendly_id: suitable_for_bug_type - values: - - id: 8237 - name: Mosquitoes - - id: 8241 - name: Ticks -- id: 1633 - name: Tan type - friendly_id: tan_type - values: - - id: 1511 - name: Medium - - id: 9423 - name: Dark - - id: 9618 - name: Instant - - id: 10844 - name: Gradual -- id: 1634 - name: Portability - friendly_id: portability - values: - - id: 10154 - name: Portable - - id: 10860 - name: Stationary - - id: 11406 - name: Compact size -- id: 1635 - name: Tip material - friendly_id: tip_material - values: - - id: 40 - name: Cotton - - id: 626 - name: Plastic - - id: 809 - name: Silicone -- id: 1636 - name: Earplug use - friendly_id: earplug_use - values: - - id: 10862 - name: Swimming - - id: 10863 - name: Sleeping - - id: 10864 - name: Shooting -- id: 1637 - name: Fragrance - friendly_id: fragrance - values: - - id: 372 - name: Other - - id: 2871 - name: Floral - - id: 10492 - name: Unscented -- id: 1638 - name: Menstrual cup shape - friendly_id: menstrual_cup_shape - values: - - id: 372 - name: Other - - id: 10870 - name: Bell - - id: 10871 - name: V-shaped -- id: 1639 - name: Applicator material - friendly_id: applicator_material - values: - - id: 40 - name: Cotton - - id: 62 - name: Synthetic - - id: 626 - name: Plastic - - id: 773 - name: Cardboard -- id: 1640 - name: Compatible shoe size - friendly_id: compatible_shoe_size - values: - - id: 2878 - name: '0' - - id: 2879 - name: '1' - - id: 2880 - name: '10' - - id: 2881 - name: '12' - - id: 2882 - name: '14' - - id: 2883 - name: '16' - - id: 2884 - name: '18' - - id: 2885 - name: '2' - - id: 2886 - name: '20' - - id: 2887 - name: '22' - - id: 2888 - name: '24' - - id: 2889 - name: '26' - - id: 2890 - name: '28' - - id: 2891 - name: '30' - - id: 2892 - name: '32' - - id: 2893 - name: '34' - - id: 2894 - name: '36' - - id: 2895 - name: '38' - - id: 2896 - name: '4' - - id: 2897 - name: '40' - - id: 2898 - name: '42' - - id: 2899 - name: '44' - - id: 2900 - name: '46' - - id: 2901 - name: '48' - - id: 2902 - name: '50' - - id: 2903 - name: '52' - - id: 2904 - name: '54' - - id: 2905 - name: '56' - - id: 2906 - name: '58' - - id: 2907 - name: '6' - - id: 2908 - name: '60' - - id: 2909 - name: '8' - - id: 2912 - name: Extra small (XS) - - id: 2913 - name: Small (S) - - id: 2914 - name: Medium (M) - - id: 2915 - name: Large (L) - - id: 2916 - name: Extra large (XL) - - id: 2917 - name: Double extra large (XXL) - - id: 2918 - name: Triple extra large (XXXL) - - id: 2935 - name: '0.5' - - id: 2936 - name: '1.5' - - id: 2937 - name: '2.5' - - id: 2938 - name: '3' - - id: 2939 - name: '3.5' - - id: 2940 - name: '4.5' - - id: 2941 - name: '5' - - id: 2942 - name: '5.5' - - id: 2943 - name: '6.5' - - id: 2944 - name: '7' - - id: 2945 - name: '7.5' - - id: 2946 - name: '8.5' - - id: 2947 - name: '9' - - id: 2948 - name: '9.5' - - id: 2949 - name: '15' - - id: 2950 - name: '15.5' - - id: 2951 - name: '16.5' - - id: 2952 - name: '17' - - id: 2953 - name: '17.5' - - id: 2954 - name: '18.5' - - id: 2955 - name: '19' - - id: 2956 - name: '19.5' - - id: 2957 - name: '20.5' - - id: 2958 - name: '21' - - id: 2959 - name: '21.5' - - id: 2960 - name: '22.5' - - id: 2961 - name: '23' - - id: 2962 - name: '23.5' - - id: 2963 - name: '24.5' - - id: 2964 - name: '25' - - id: 2965 - name: '25.5' - - id: 2966 - name: '26.5' - - id: 2967 - name: '27' - - id: 3010 - name: '10.5' - - id: 3011 - name: '11' - - id: 3012 - name: '11.5' - - id: 3013 - name: '12.5' - - id: 3014 - name: '13' - - id: 3015 - name: '13.5' - - id: 3016 - name: '14.5' - - id: 3017 - name: '27.5' - - id: 3018 - name: '28.5' - - id: 3019 - name: '29' - - id: 3020 - name: '29.5' - - id: 3021 - name: '30.5' - - id: 3022 - name: '31' - - id: 3023 - name: '31.5' - - id: 3024 - name: '32.5' - - id: 3025 - name: '33' - - id: 3026 - name: '33.5' - - id: 3027 - name: '34.5' - - id: 3028 - name: '35' - - id: 3029 - name: '35.5' - - id: 3030 - name: '36.5' - - id: 3031 - name: '37' - - id: 3032 - name: '37.5' - - id: 3033 - name: '38.5' - - id: 3034 - name: '39' - - id: 3035 - name: '39.5' - - id: 3036 - name: '40.5' - - id: 3037 - name: '41' - - id: 3038 - name: '41.5' - - id: 3039 - name: '42.5' - - id: 3040 - name: '43' - - id: 3041 - name: '43.5' - - id: 3042 - name: '44.5' - - id: 3043 - name: '45' - - id: 3044 - name: '45.5' - - id: 3045 - name: '46.5' - - id: 3046 - name: '47' - - id: 3047 - name: '47.5' - - id: 3048 - name: '48.5' - - id: 3049 - name: '49' - - id: 3050 - name: '49.5' - - id: 3051 - name: '50.5' - - id: 3052 - name: '51' - - id: 3053 - name: '51.5' - - id: 3054 - name: '52.5' - - id: 3055 - name: '53' - - id: 3056 - name: '53.5' - - id: 3057 - name: '54.5' - - id: 3058 - name: '55' - - id: 3059 - name: '55.5' - - id: 3060 - name: '56.5' - - id: 3061 - name: '57' - - id: 3062 - name: '57.5' - - id: 3063 - name: '58.5' - - id: 3064 - name: '59' - - id: 3065 - name: '59.5' -- id: 1641 - name: Suitable for hair type - friendly_id: suitable_for_hair_type - values: - - id: 8 - name: Gray - - id: 549 - name: Curly - - id: 550 - name: Dry - - id: 551 - name: Normal - - id: 552 - name: Straight - - id: 4324 - name: Split - - id: 7209 - name: Combination - - id: 10248 - name: Sensitive - - id: 10494 - name: Demanding - - id: 10496 - name: Oily - - id: 10878 - name: All hair types - - id: 10879 - name: Bleached - - id: 10880 - name: Blonde - - id: 10881 - name: Brittle - - id: 10882 - name: Brunette - - id: 10883 - name: Colored - - id: 10884 - name: Damaged - - id: 10885 - name: Dull - - id: 10886 - name: Dyed - - id: 10887 - name: Fine - - id: 10888 - name: Frizzy - - id: 10889 - name: Highlighted - - id: 10890 - name: Lifeless - - id: 10891 - name: Loss - - id: 10892 - name: Thick - - id: 10893 - name: Thin - - id: 10894 - name: Treated - - id: 10895 - name: Unruly - - id: 10896 - name: Weakened -- id: 1642 - name: Compatible hair color - friendly_id: compatible_hair_color - values: - - id: 1 - name: Black - - id: 2 - name: Blue - - id: 3 - name: White - - id: 5 - name: Silver - - id: 7 - name: Brown - - id: 8 - name: Gray - - id: 9 - name: Green - - id: 10 - name: Orange - - id: 11 - name: Pink - - id: 12 - name: Purple - - id: 13 - name: Red - - id: 372 - name: Other - - id: 683 - name: Platinum - - id: 7945 - name: Cinnamon - - id: 8558 - name: Violet - - id: 9309 - name: Burgundy - - id: 9423 - name: Dark - - id: 10092 - name: Mahogany - - id: 10880 - name: Blonde - - id: 10897 - name: Auburn - - id: 10898 - name: Dark blonde - - id: 10899 - name: Fair - - id: 10900 - name: Lilac - - id: 10901 - name: Turquoise -- id: 1643 - name: Hair loss type - friendly_id: hair_loss_type - values: - - id: 10902 - name: Alopecia areata - - id: 10903 - name: Male pattern baldness - - id: 10904 - name: Telogen effluvium -- id: 1644 - name: Treatment type - friendly_id: treatment_type - values: - - id: 7752 - name: Laser - - id: 10225 - name: Oral - - id: 10905 - name: Topical -- id: 1645 - name: Hair care finish - friendly_id: hair_care_finish - values: - - id: 10573 - name: Matte - - id: 10604 - name: Glossy - - id: 10907 - name: Shiny -- id: 1646 - name: Hold level - friendly_id: hold_level - values: - - id: 1511 - name: Medium - - id: 3661 - name: Light - - id: 10755 - name: Strong -- id: 1647 - name: Hair care technology - friendly_id: hair_care_technology - values: - - id: 8057 - name: Steam - - id: 10589 - name: Warm - - id: 10987 - name: Galvanic - - id: 10988 - name: Thermolysis -- id: 1648 - name: Barrel material - friendly_id: barrel_material - values: - - id: 4 - name: Gold - - id: 623 - name: Titanium - - id: 643 - name: Ceramic - - id: 665 - name: Chrome - - id: 10908 - name: Tourmaline -- id: 1649 - name: Heat settings - friendly_id: heat_settings - values: - - id: 1364 - name: Low - - id: 1376 - name: High - - id: 1511 - name: Medium -- id: 1650 - name: Curler type - friendly_id: curler_type - values: - - id: 10909 - name: Flexi rods - - id: 10910 - name: Hot rollers -- id: 1651 - name: Plate type - friendly_id: plate_type - values: - - id: 623 - name: Titanium - - id: 643 - name: Ceramic - - id: 10908 - name: Tourmaline -- id: 1652 - name: Conditioner effect - friendly_id: conditioner_effect - values: - - id: 372 - name: Other - - id: 10601 - name: Smoothing - - id: 10609 - name: Nourishing - - id: 10628 - name: Protection - - id: 10629 - name: Revitalizing - - id: 10630 - name: Strengthening - - id: 10631 - name: Thickening - - id: 10632 - name: Volumizing - - id: 10642 - name: Moisturizing - - id: 10673 - name: Cleansing - - id: 10689 - name: Purifying - - id: 10691 - name: Regenerating - - id: 10698 - name: Shine - - id: 10915 - name: Anti hair loss - - id: 10916 - name: Anti-dandruff - - id: 10917 - name: Anti-frizz - - id: 10918 - name: Color protection - - id: 10919 - name: Densifying - - id: 10920 - name: Detangling - - id: 10921 - name: Repair -- id: 1653 - name: Shampoo type - friendly_id: shampoo_type - values: - - id: 550 - name: Dry - - id: 2874 - name: Solid - - id: 7405 - name: Powder - - id: 10922 - name: 2 in 1 hair & body - - id: 10923 - name: 2 in 1 shampoo & conditioner - - id: 10924 - name: 3 in 1 shampoo & conditioner & body -- id: 1654 - name: Heat function - friendly_id: heat_function - values: - - id: 10925 - name: With heat - - id: 10926 - name: Without heat -- id: 1655 - name: Claw design - friendly_id: claw_design - values: - - id: 3105 - name: Pointed - - id: 7737 - name: Curved - - id: 10528 - name: Rounded -- id: 1656 - name: Eye pillow shape - friendly_id: eye_pillow_shape - values: - - id: 372 - name: Other - - id: 7218 - name: Contoured - - id: 10140 - name: Rectangular -- id: 1657 - name: Massage area - friendly_id: massage_area - values: - - id: 3176 - name: Back - - id: 9826 - name: Neck - - id: 10131 - name: Feet -- id: 1658 - name: Reclining function - friendly_id: reclining_function - values: - - id: 10929 - name: Full recline - - id: 10930 - name: Zero gravity -- id: 1659 - name: Aromatherapy - friendly_id: aromatherapy - values: - - id: 1015 - name: Eucalyptus - - id: 7948 - name: Lavender -- id: 1660 - name: Base oil - friendly_id: base_oil - values: - - id: 992 - name: Coconut - - id: 3330 - name: Almond - - id: 7868 - name: Olive - - id: 8554 - name: Sunflower - - id: 8651 - name: Sesame - - id: 10931 - name: Apricot kernel - - id: 10932 - name: Argan - - id: 10933 - name: Avocado - - id: 10934 - name: Grapeseed - - id: 10935 - name: Jojoba -- id: 1661 - name: Stone name - friendly_id: stone_name - values: - - id: 1194 - name: Hematite - - id: 10901 - name: Turquoise - - id: 10937 - name: Petrified wood - - id: 10938 - name: Shiva lingam - - id: 10939 - name: Rose quartz - - id: 10940 - name: Fluorite - - id: 10941 - name: Lapis lazuli - - id: 10942 - name: Amethyst - - id: 10943 - name: Kyanite - - id: 10944 - name: Obsidian - - id: 10945 - name: Citrine - - id: 10946 - name: Pendulum - - id: 10947 - name: Jasper - - id: 10948 - name: Aventurine - - id: 10949 - name: Sodalite -- id: 1662 - name: Stone type - friendly_id: stone_type - values: - - id: 10950 - name: Cold stone - - id: 10951 - name: Hot stone -- id: 1663 - name: Breath sprays certifications - friendly_id: breath_sprays_certifications - values: - - id: 7990 - name: Fair trade - - id: 8656 - name: Gluten-free - - id: 8657 - name: Halal - - id: 8659 - name: Kosher - - id: 8669 - name: Non-GMO - - id: 8675 - name: Vegan - - id: 8678 - name: Alcohol-free - - id: 10305 - name: Natural ingredients - - id: 10313 - name: Cruelty-free - - id: 10324 - name: USDA organic - - id: 10561 - name: Dye-free - - id: 10562 - name: EWG verified - - id: 10568 - name: PETA approved - - id: 10912 - name: EU organic - - id: 10954 - name: Artificial flavor free - - id: 10955 - name: Artificial preservatives free - - id: 10956 - name: Fluoride-free - - id: 10957 - name: Organic ingredients - - id: 10958 - name: Suitable for diabetics -- id: 1664 - name: Dental floss thickness level - friendly_id: dental_floss_thickness_level - values: - - id: 3104 - name: Regular - - id: 10892 - name: Thick - - id: 10893 - name: Thin -- id: 1665 - name: Dental mouthguard certifications - friendly_id: dental_mouthguard_certifications - values: - - id: 7262 - name: BPA-free - - id: 7263 - name: CE certified - - id: 7264 - name: FDA approved - - id: 10275 - name: Latex-free - - id: 10318 - name: ISO - - id: 10569 - name: Phthalate-free - - id: 10960 - name: ADA accepted - - id: 10961 - name: CPSIA compliant - - id: 10962 - name: Leaching testing passed - - id: 10963 - name: Made in a GMP certified facility -- id: 1666 - name: Nozzle type - friendly_id: nozzle_type - values: - - id: 392 - name: Standard - - id: 10964 - name: Orthodontic - - id: 10965 - name: Periodontal - - id: 10966 - name: Tongue cleaner -- id: 1667 - name: Denture base color - friendly_id: denture_base_color - values: - - id: 11 - name: Pink - - id: 10967 - name: Natural gum -- id: 1668 - name: Denture teeth color - friendly_id: denture_teeth_color - values: - - id: 10968 - name: Natural white - - id: 10969 - name: Off-white - - id: 10970 - name: Light yellow -- id: 1669 - name: Handle grip texture - friendly_id: handle_grip_texture - values: - - id: 8689 - name: Smooth - - id: 10238 - name: Ribbed -- id: 1671 - name: Peroxide content - friendly_id: peroxide_content - values: - - id: 10971 - name: Carbamide - - id: 10972 - name: Hydrogen - - id: 10973 - name: Peroxide-free -- id: 1672 - name: Usage frequency - friendly_id: usage_frequency - values: - - id: 8518 - name: Daily - - id: 8519 - name: Weekly -- id: 1673 - name: Suitable for toothbrush - friendly_id: suitable_for_toothbrush - values: - - id: 10974 - name: Electric toothbrush heads - - id: 10975 - name: Toothbrushes -- id: 1674 - name: Toothpaste type - friendly_id: toothpaste_type - values: - - id: 10705 - name: Whitening - - id: 10976 - name: Anti-decay - - id: 10977 - name: Anticalculus - - id: 10978 - name: Antiplaque - - id: 10979 - name: Desensitizing -- id: 1675 - name: Toothpick design - friendly_id: toothpick_design - values: - - id: 372 - name: Other - - id: 627 - name: Round - - id: 1363 - name: Flat -- id: 1676 - name: Lubricant application - friendly_id: lubricant_application - values: - - id: 10225 - name: Oral - - id: 10980 - name: Anal - - id: 10981 - name: Massage - - id: 10982 - name: Vaginal -- id: 1677 - name: Lubricant composition - friendly_id: lubricant_composition - values: - - id: 7083 - name: Hybrid - - id: 10757 - name: Oil-based - - id: 10758 - name: Water-based - - id: 10760 - name: Silicone-based -- id: 1678 - name: Body/Facial hair type - friendly_id: body_facial_hair_type - values: - - id: 10887 - name: Fine - - id: 10983 - name: Coarse -- id: 1679 - name: Razor flexibility - friendly_id: razor_flexibility - values: - - id: 7219 - name: Flexible - - id: 8451 - name: Fixed -- id: 1680 - name: Razor head design - friendly_id: razor_head_design - values: - - id: 7081 - name: Double - - id: 7229 - name: Single - - id: 10984 - name: Triple -- id: 1681 - name: Usage conditions - friendly_id: usage_conditions - values: - - id: 550 - name: Dry - - id: 8153 - name: Wet -- id: 1682 - name: Battery size - friendly_id: battery_size - values: - - id: 372 - name: Other - - id: 1967 - name: A - - id: 1968 - name: B - - id: 1969 - name: C - - id: 1970 - name: D - - id: 1972 - name: F - - id: 2880 - name: '10' - - id: 2922 - name: AA - - id: 2933 - name: N - - id: 3014 - name: '13' - - id: 10985 - name: AAA - - id: 12624 - name: SC - - id: 12826 - name: '312' - - id: 12827 - name: '395' - - id: 12828 - name: '675' - - id: 12829 - name: '14500' - - id: 12830 - name: '16340' - - id: 12831 - name: '18490' - - id: 12832 - name: '18650' - - id: 12833 - name: '21700' - - id: 12834 - name: 1/2AA - - id: 12835 - name: 1/3AAA - - id: 12836 - name: 1/3N - - id: 12837 - name: 12V - - id: 12838 - name: 2/3AA - - id: 12839 - name: 2/3AAA - - id: 12840 - name: 3LR12 - - id: 12841 - name: 4.5V - - id: 12842 - name: 4LR44 - - id: 12843 - name: 4SR44 - - id: 12844 - name: 6LR61 - - id: 12845 - name: 6V - - id: 12846 - name: 9V - - id: 12847 - name: A23 - - id: 12848 - name: A27 - - id: 12849 - name: AAAA - - id: 12850 - name: BR1225 - - id: 12851 - name: CR1025 - - id: 12852 - name: CR1216 - - id: 12853 - name: CR1220 - - id: 12854 - name: CR1225 - - id: 12855 - name: CR123 - - id: 12856 - name: CR123A - - id: 12857 - name: CR1616 - - id: 12858 - name: CR1620 - - id: 12859 - name: CR1632 - - id: 12860 - name: CR2 - - id: 12861 - name: CR2012 - - id: 12862 - name: CR2016 - - id: 12863 - name: CR2025 - - id: 12864 - name: CR2032 - - id: 12865 - name: CR2320 - - id: 12866 - name: CR2325 - - id: 12867 - name: CR2330 - - id: 12868 - name: CR2354 - - id: 12869 - name: CR2430 - - id: 12870 - name: CR2450 - - id: 12871 - name: CR2477 - - id: 12872 - name: CR3032 - - id: 12873 - name: LR06 - - id: 12874 - name: LR1130 - - id: 12875 - name: LR14 - - id: 12876 - name: LR27A - - id: 12877 - name: LR32A - - id: 12878 - name: LR41 - - id: 12879 - name: LR43 - - id: 12880 - name: LR44 - - id: 12881 - name: LR54 - - id: 12882 - name: LR60 - - id: 12883 - name: LR66 - - id: 12884 - name: MN11 - - id: 12885 - name: MN21 - - id: 12886 - name: MN27 - - id: 12887 - name: PR41 - - id: 12888 - name: PR44 - - id: 12889 - name: PR70 - - id: 12890 - name: SR41 - - id: 12891 - name: SR42 - - id: 12892 - name: SR43 - - id: 12893 - name: SR43W - - id: 12894 - name: SR44 - - id: 12895 - name: SR45 - - id: 12896 - name: SR48 - - id: 12897 - name: SR54 - - id: 12898 - name: SR55 - - id: 12899 - name: SR57 - - id: 12900 - name: SR58 - - id: 12901 - name: SR59 - - id: 12902 - name: SR60 - - id: 12903 - name: SR616SW - - id: 12904 - name: SR63 - - id: 12905 - name: SR66 - - id: 12906 - name: SR69 - - id: 12907 - name: SR731SW - - id: 12908 - name: SR920SW - - id: 12909 - name: SR936SW - - id: 14564 - name: Built-in battery -- id: 1683 - name: Suitable for skin tone - friendly_id: suitable_for_skin_tone - values: - - id: 10577 - name: Fair skin - - id: 10578 - name: Light skin - - id: 10579 - name: Medium skin - - id: 10580 - name: Deep skin - - id: 10581 - name: Sand skin - - id: 10582 - name: Cafe skin - - id: 10583 - name: Nude skin - - id: 10584 - name: Dark skin - - id: 10585 - name: Tanned skin - - id: 10586 - name: All skin tones -- id: 1684 - name: Shaving cream formulation - friendly_id: shaving_cream_formulation - values: - - id: 783 - name: Gel - - id: 821 - name: Foam -- id: 1685 - name: Brush type - friendly_id: brush_type - values: - - id: 62 - name: Synthetic - - id: 10696 - name: Scrub - - id: 10992 - name: Badger hair - - id: 16665 - name: Dip brush - - id: 16666 - name: Flow-thru - - id: 16667 - name: Wheel -- id: 1686 - name: Razor type - friendly_id: razor_type - values: - - id: 552 - name: Straight - - id: 10993 - name: Safety -- id: 1687 - name: Shaving kit components - friendly_id: shaving_kit_components - values: - - id: 7487 - name: Brush - - id: 10994 - name: Razor - - id: 10995 - name: Stand -- id: 1689 - name: Travel pillow shape - friendly_id: travel_pillow_shape - values: - - id: 372 - name: Other - - id: 7217 - name: J-shaped - - id: 7739 - name: U-shaped -- id: 1690 - name: Solution type - friendly_id: solution_type - values: - - id: 7407 - name: Spray - - id: 8450 - name: Multi-purpose - - id: 10246 - name: Wipes - - id: 11001 - name: Hydrogen peroxide-based - - id: 11003 - name: Saline -- id: 1691 - name: Bottle type - friendly_id: bottle_type - values: - - id: 7407 - name: Spray - - id: 10852 - name: Squeeze - - id: 11002 - name: Screw-top -- id: 1692 - name: Frame shape - friendly_id: frame_shape - values: - - id: 627 - name: Round - - id: 628 - name: Square -- id: 1693 - name: Lens coating - friendly_id: lens_coating - values: - - id: 11005 - name: Anti-reflective - - id: 11006 - name: Scratch-resistant -- id: 1694 - name: Lens type - friendly_id: lens_type - values: - - id: 4505 - name: Polarized - - id: 4506 - name: Non-polarized - - id: 11007 - name: Progressive - - id: 11008 - name: Single vision -- id: 1695 - name: Optical frame design - friendly_id: optical_frame_design - values: - - id: 11009 - name: Full frame - - id: 11010 - name: Rimless -- id: 1696 - name: UV protection - friendly_id: uv_protection - values: - - id: 11012 - name: UV400 -- id: 1697 - name: Suitable for bird type - friendly_id: suitable_for_bird_type - values: - - id: 372 - name: Other - - id: 11017 - name: Blue tit - - id: 11018 - name: Chaffinch - - id: 11019 - name: Goldfinch - - id: 11020 - name: Great tit - - id: 11021 - name: Greenfinch - - id: 11022 - name: House sparrow - - id: 11023 - name: Siskin - - id: 11024 - name: Blackcap - - id: 11025 - name: Blackbird - - id: 11026 - name: Collared dove - - id: 11027 - name: Robin - - id: 11028 - name: Song thrush - - id: 11029 - name: Starling - - id: 11030 - name: Parakeet - - id: 11031 - name: Parrot - - id: 11032 - name: Canary - - id: 11033 - name: Lovebird - - id: 11034 - name: Cockatiel - - id: 11035 - name: Budgie - - id: 11037 - name: Finch - - id: 11038 - name: Macaw -- id: 1698 - name: Pet supply product form - friendly_id: pet_supply_product_form - values: - - id: 372 - name: Other - - id: 550 - name: Dry - - id: 783 - name: Gel - - id: 7405 - name: Powder - - id: 7406 - name: Liquid - - id: 7407 - name: Spray - - id: 8153 - name: Wet - - id: 8191 - name: Cream - - id: 9163 - name: Capsules - - id: 10246 - name: Wipes - - id: 10265 - name: Lotion - - id: 10328 - name: Drops - - id: 11129 - name: Tablets - - id: 11130 - name: Pills - - id: 11132 - name: Soft chews - - id: 11134 - name: Balm -- id: 1699 - name: Cat age group - friendly_id: cat_age_group - values: - - id: 7523 - name: Senior - - id: 11039 - name: Kitten - - id: 11071 - name: Adult -- id: 1700 - name: Pet dietary requirements - friendly_id: pet_dietary_requirements - values: - - id: 372 - name: Other - - id: 8656 - name: Gluten-free - - id: 9627 - name: High protein - - id: 11040 - name: Allergy & food sensitivity - - id: 11041 - name: Cardiovascular care - - id: 11042 - name: Dental health - - id: 11043 - name: Diabetes care - - id: 11044 - name: Digestive health - - id: 11045 - name: Grain-free - - id: 11046 - name: Hairball control - - id: 11047 - name: Joint & mobility care - - id: 11048 - name: Kidney care - - id: 11049 - name: Liver care - - id: 11050 - name: Sensitive stomach - - id: 11051 - name: Skin & coat care - - id: 11052 - name: Thyroid care - - id: 11053 - name: Urinary health - - id: 11054 - name: Weight control -- id: 1701 - name: Pet food flavor - friendly_id: pet_food_flavor - values: - - id: 372 - name: Other - - id: 7862 - name: Grass - - id: 7935 - name: Bone - - id: 8208 - name: Rabbit - - id: 8332 - name: Vegetables - - id: 8644 - name: Fish - - id: 8989 - name: Turkey - - id: 9005 - name: Apple - - id: 9008 - name: Banana - - id: 9012 - name: Blueberry - - id: 9047 - name: Mango - - id: 9072 - name: Unflavored - - id: 9441 - name: Beef - - id: 9456 - name: Cheese - - id: 9460 - name: Chicken - - id: 9536 - name: Pork - - id: 9544 - name: Rice - - id: 9721 - name: Salami - - id: 9808 - name: Liver - - id: 9831 - name: Venison - - id: 9842 - name: Ham - - id: 9924 - name: Duck - - id: 9926 - name: Lamb - - id: 10016 - name: Fruit - - id: 10933 - name: Avocado - - id: 11055 - name: Bacon - - id: 11056 - name: Beet - - id: 11057 - name: Carrot - - id: 11058 - name: Cranberry - - id: 11059 - name: Grain - - id: 11060 - name: Meat - - id: 11061 - name: Mixed flavors - - id: 11062 - name: Peanut butter - - id: 11063 - name: Peppermint - - id: 11064 - name: Seafood - - id: 11065 - name: Spinach - - id: 11066 - name: Sweet potato - - id: 11067 - name: Veal - - id: 11104 - name: Insect - - id: 11163 - name: Berry - - id: 11164 - name: Hay -- id: 1702 - name: Cat litter formula - friendly_id: cat_litter_formula - values: - - id: 879 - name: Clay - - id: 7410 - name: Granules - - id: 11069 - name: Wood pellets - - id: 11070 - name: Crystals -- id: 1703 - name: Dog age group - friendly_id: dog_age_group - values: - - id: 6886 - name: Junior - - id: 7523 - name: Senior - - id: 11071 - name: Adult - - id: 11074 - name: Puppy -- id: 1704 - name: Pet treat texture - friendly_id: pet_treat_texture - values: - - id: 6993 - name: Soft - - id: 6994 - name: Hard - - id: 11078 - name: Chewy - - id: 11079 - name: Crunchy -- id: 1705 - name: Compatible aquarium - friendly_id: compatible_aquarium - values: - - id: 11081 - name: All aquarium types - - id: 11082 - name: Freshwater aquariums - - id: 11083 - name: Saltwater aquariums -- id: 1706 - name: Filter type - friendly_id: filter_type - values: - - id: 6971 - name: Mechanical - - id: 8408 - name: Biological - - id: 11084 - name: Chemical -- id: 1707 - name: Suitable for water type - friendly_id: suitable_for_water_type - values: - - id: 11086 - name: Both - - id: 11087 - name: Freshwater - - id: 11088 - name: Saltwater -- id: 1708 - name: Aquarium light spectrum - friendly_id: aquarium_light_spectrum - values: - - id: 11092 - name: Blue (actinic) - - id: 11093 - name: Daylight full spectrum - - id: 11094 - name: Moonlight nocturnal - - id: 11095 - name: Multi-color RGB -- id: 1709 - name: Fish type - friendly_id: fish_type - values: - - id: 372 - name: Other - - id: 9071 - name: Tropical - - id: 11096 - name: Betta - - id: 11097 - name: Bottom feeder - - id: 11098 - name: Cichlid - - id: 11099 - name: Cold water - - id: 11100 - name: Discus - - id: 11101 - name: Goldfish - - id: 11102 - name: Koi - - id: 11103 - name: Marine -- id: 1710 - name: Suitable for fish type - friendly_id: suitable_for_fish_type - values: - - id: 372 - name: Other - - id: 11105 - name: Tropical fish - - id: 11106 - name: Pond fish - - id: 11107 - name: Aquarium fish - - id: 11108 - name: Marine fish -- id: 1711 - name: Pet monitor items included - friendly_id: pet_monitor_items_included - values: - - id: 7414 - name: Carrying case - - id: 11116 - name: Lancets - - id: 11117 - name: Lancing device - - id: 11118 - name: Test strips -- id: 1712 - name: First aid kit components - friendly_id: first_aid_kit_components - values: - - id: 10429 - name: Disposable gloves - - id: 10430 - name: Gauze pads - - id: 10522 - name: Tweezers - - id: 11120 - name: Antiseptic wipes - - id: 11121 - name: Bandages - - id: 11122 - name: Cold compress - - id: 11123 - name: Emergency blanket - - id: 11124 - name: Hydrogen peroxide - - id: 11125 - name: Medical tape - - id: 11126 - name: Scissors - - id: 11127 - name: Styptic powder - - id: 11128 - name: Thermometer -- id: 1713 - name: SPF level - friendly_id: spf_level - values: - - id: 372 - name: Other - - id: 11135 - name: SPF 4 - - id: 11136 - name: SPF 8 - - id: 11137 - name: SPF 15 - - id: 11138 - name: SPF 20 - - id: 11139 - name: SPF 25 - - id: 11140 - name: SPF 30 - - id: 11141 - name: SPF 35 - - id: 11142 - name: SPF 40 - - id: 11143 - name: SPF 45 - - id: 11144 - name: SPF 50 - - id: 11145 - name: SPF 50+ - - id: 11146 - name: SPF 60 - - id: 11147 - name: SPF 70 - - id: 11148 - name: SPF 85 - - id: 11149 - name: SPF 100 -- id: 1714 - name: Compatible vehicle - friendly_id: compatible_vehicle - values: - - id: 10253 - name: Car - - id: 11167 - name: SUV - - id: 11168 - name: Van - - id: 11169 - name: Truck -- id: 1715 - name: Infant age group - friendly_id: infant_age_group - values: - - id: 216 - name: Newborn - - id: 217 - name: 0-3 months - - id: 218 - name: 3-6 months - - id: 223 - name: 2-3 years - - id: 372 - name: Other - - id: 534 - name: All ages - - id: 10087 - name: 0-6 months - - id: 10088 - name: 6-12 months - - id: 10089 - name: 1-2 years - - id: 11170 - name: 0-24 months - - id: 11171 - name: 6 months or older - - id: 11172 - name: 9 months or older - - id: 11173 - name: 12 months or older - - id: 11174 - name: 24 months or older - - id: 11175 - name: 3 years or older -- id: 1716 - name: Safety certifications - friendly_id: safety_certifications - values: - - id: 7262 - name: BPA-free - - id: 10569 - name: Phthalate-free - - id: 11176 - name: ASTM F1967-19 - - id: 11177 - name: EN 71 -- id: 1717 - name: Baby gift items included - friendly_id: baby_gift_items_included - values: - - id: 372 - name: Other - - id: 8022 - name: Blanket - - id: 8183 - name: Clothing - - id: 11178 - name: Bibs - - id: 11179 - name: Socks - - id: 11180 - name: Hats - - id: 11181 - name: Toys - - id: 11182 - name: Books - - id: 11183 - name: Rattles - - id: 11184 - name: Teethers - - id: 11185 - name: Washcloths - - id: 11186 - name: Burp cloths -- id: 1718 - name: Gift set format - friendly_id: gift_set_format - values: - - id: 11187 - name: Gift box - - id: 11188 - name: Gift bag - - id: 11189 - name: Gift basket -- id: 1719 - name: Personalization options - friendly_id: personalization_options - values: - - id: 11190 - name: Custom message - - id: 11191 - name: Monogram - - id: 11192 - name: Personalized name - - id: 11193 - name: None -- id: 1720 - name: Baby health items included - friendly_id: baby_health_items_included - values: - - id: 372 - name: Other - - id: 7430 - name: Storage case - - id: 11128 - name: Thermometer - - id: 11194 - name: Nail clippers - - id: 11195 - name: Hair brush - - id: 11196 - name: Comb - - id: 11197 - name: Nasal aspirator - - id: 11198 - name: Medicine dropper - - id: 11199 - name: Finger toothbrush - - id: 11200 - name: Gum massager -- id: 1721 - name: Grooming kit format - friendly_id: grooming_kit_format - values: - - id: 6931 - name: Kit bag - - id: 7741 - name: Box -- id: 1722 - name: Wipe fragrance - friendly_id: wipe_fragrance - values: - - id: 372 - name: Other - - id: 7946 - name: Citrus - - id: 7948 - name: Lavender - - id: 9698 - name: Fresh - - id: 10492 - name: Unscented - - id: 11201 - name: Pure -- id: 1723 - name: Pacifier/Teether design - friendly_id: pacifier_teether_design - values: - - id: 372 - name: Other - - id: 10964 - name: Orthodontic - - id: 11202 - name: Symmetrical - - id: 11203 - name: Animal-shaped - - id: 11204 - name: Fruit-shaped - - id: 11205 - name: Ring-shaped -- id: 1724 - name: Door stopper design - friendly_id: door_stopper_design - values: - - id: 11206 - name: Wedge-shaped - - id: 11207 - name: Hook-shaped -- id: 1725 - name: Safety device installation - friendly_id: safety_device_installation - values: - - id: 11208 - name: Pressure-mounted - - id: 11209 - name: Hardware-mounted - - id: 11224 - name: Adhesive - - id: 11225 - name: Screw-mounted -- id: 1726 - name: Locking mechanism - friendly_id: locking_mechanism - values: - - id: 1650 - name: Magnetic - - id: 10109 - name: Sliding - - id: 11210 - name: Push-button - - id: 11211 - name: Slide - - id: 11212 - name: Twist - - id: 11213 - name: One-handed operation - - id: 11214 - name: Double-locking - - id: 11215 - name: Auto-close -- id: 1727 - name: Gate mounting type - friendly_id: gate_mounting_type - values: - - id: 7056 - name: Wall - - id: 11216 - name: Doorway -- id: 1728 - name: Opening direction - friendly_id: opening_direction - values: - - id: 11217 - name: One-way swing - - id: 11218 - name: Two-way swing -- id: 1729 - name: Opening mechanism - friendly_id: opening_mechanism - values: - - id: 7743 - name: Lever - - id: 11210 - name: Push-button - - id: 11219 - name: Foot pedal -- id: 1730 - name: Display color mode - friendly_id: display_color_mode - values: - - id: 10190 - name: Color - - id: 11221 - name: Black & white -- id: 1731 - name: Range type - friendly_id: range_type - values: - - id: 11222 - name: Short-range - - id: 11223 - name: Long-range -- id: 1732 - name: Safety rail installation - friendly_id: safety_rail_installation - values: - - id: 395 - name: Adjustable - - id: 10154 - name: Portable - - id: 11226 - name: Permanent -- id: 1733 - name: Language - friendly_id: language - values: - - id: 3095 - name: Polish - - id: 6939 - name: French - - id: 6940 - name: German - - id: 6941 - name: Hungarian - - id: 6942 - name: Italian - - id: 6944 - name: Russian - - id: 7960 - name: Persian - - id: 9779 - name: Japanese - - id: 9780 - name: Korean - - id: 9796 - name: Spanish - - id: 9797 - name: Thai - - id: 9798 - name: Turkish - - id: 9799 - name: Vietnamese - - id: 10119 - name: Swedish - - id: 11227 - name: Afrikaans - - id: 11228 - name: Albanian - - id: 11229 - name: Arabic - - id: 11230 - name: Armenian - - id: 11231 - name: Basque - - id: 11232 - name: Bulgarian - - id: 11233 - name: Catalan - - id: 11234 - name: Chinese (simplified) - - id: 11235 - name: Chinese (traditional) - - id: 11236 - name: Croatian - - id: 11237 - name: Czech - - id: 11238 - name: Danish - - id: 11239 - name: Dutch - - id: 11240 - name: Dutch (Belgium) - - id: 11241 - name: English - - id: 11242 - name: English (India) - - id: 11243 - name: English (Singapore) - - id: 11244 - name: English (United States) - - id: 11245 - name: Estonian - - id: 11246 - name: Farsi - - id: 11247 - name: Filipino - - id: 11248 - name: Finnish - - id: 11249 - name: French (Belgium) - - id: 11250 - name: French (Switzerland) - - id: 11251 - name: Galician - - id: 11252 - name: Georgian - - id: 11253 - name: German (Belgium) - - id: 11254 - name: German (Switzerland) - - id: 11255 - name: Greek - - id: 11256 - name: Hebrew - - id: 11257 - name: Hindi - - id: 11258 - name: Icelandic - - id: 11259 - name: Indonesian - - id: 11260 - name: Kazakh - - id: 11261 - name: Kirghiz - - id: 11262 - name: Kurdish - - id: 11263 - name: Latvian - - id: 11264 - name: Lithuanian - - id: 11265 - name: Malay - - id: 11266 - name: Mandar - - id: 11267 - name: Mongolian - - id: 11268 - name: Nepali - - id: 11269 - name: Norwegian - - id: 11270 - name: Portuguese - - id: 11271 - name: Portuguese (Brazil) - - id: 11272 - name: Romanian - - id: 11273 - name: Romansh - - id: 11274 - name: Serbian - - id: 11275 - name: Slovak - - id: 11276 - name: Slovenian - - id: 11277 - name: Spanish (Latin America) - - id: 11278 - name: Tagalog - - id: 11279 - name: Tibetan - - id: 11280 - name: Ukrainian - - id: 11281 - name: Multilingual -- id: 1734 - name: Motion - friendly_id: motion - values: - - id: 11282 - name: Vibrating - - id: 11283 - name: Bouncing - - id: 11284 - name: Rocking - - id: 11285 - name: Swinging -- id: 1735 - name: Safety features - friendly_id: safety_features - values: - - id: 372 - name: Other - - id: 11286 - name: 3-point harness - - id: 11287 - name: 5-point harness - - id: 11288 - name: Non-slip base -- id: 1736 - name: Mobile mounting type - friendly_id: mobile_mounting_type - values: - - id: 7056 - name: Wall - - id: 11289 - name: Crib - - id: 11290 - name: Stroller -- id: 1737 - name: Attachment method - friendly_id: attachment_method - values: - - id: 839 - name: Velcro - - id: 3732 - name: Clip-on - - id: 7732 - name: Hanging - - id: 11291 - name: Clamping - - id: 11300 - name: Standalone -- id: 1738 - name: Mobile movement - friendly_id: mobile_movement - values: - - id: 11292 - name: Wind-up - - id: 11293 - name: Battery-operated -- id: 1739 - name: Nursery theme - friendly_id: nursery_theme - values: - - id: 372 - name: Other - - id: 2370 - name: Animals - - id: 2871 - name: Floral - - id: 7717 - name: Ocean - - id: 7718 - name: Space - - id: 7907 - name: Music - - id: 8512 - name: Nature - - id: 11294 - name: Dinosaurs - - id: 11295 - name: Forest - - id: 11296 - name: Jungle - - id: 11297 - name: Nautical - - id: 11298 - name: Princess - - id: 11299 - name: Rainbows -- id: 1740 - name: Light options - friendly_id: light_options - values: - - id: 11301 - name: Soft glow - - id: 11302 - name: Color-changing - - id: 11303 - name: Projector -- id: 1741 - name: Soothing sounds - friendly_id: soothing_sounds - values: - - id: 8512 - name: Nature - - id: 11304 - name: Heartbeat - - id: 11305 - name: Lullabies - - id: 11306 - name: White noise -- id: 1742 - name: Car seat installation - friendly_id: car_seat_installation - values: - - id: 11308 - name: Latch system - - id: 11309 - name: Seat belt installation -- id: 1743 - name: Car seat orientation - friendly_id: car_seat_orientation - values: - - id: 11310 - name: Rear-facing - - id: 11311 - name: Forward-facing -- id: 1744 - name: Folding mechanism - friendly_id: folding_mechanism - values: - - id: 11119 - name: Compact - - id: 11312 - name: One-hand - - id: 11313 - name: Self-standing -- id: 1745 - name: Stroller wheel type - friendly_id: stroller_wheel_type - values: - - id: 11314 - name: All-terrain - - id: 11315 - name: Air-filled - - id: 11316 - name: Swivel -- id: 1746 - name: Carrying positions - friendly_id: carrying_positions - values: - - id: 11317 - name: Front-facing - - id: 11318 - name: Back-facing - - id: 11319 - name: Hip carry -- id: 1747 - name: Double stroller configuration - friendly_id: double_stroller_configuration - values: - - id: 11321 - name: Side-by-side - - id: 11322 - name: Tandem (front & back) -- id: 1748 - name: Compatible seat type - friendly_id: compatible_seat_type - values: - - id: 11323 - name: Booster seat - - id: 11324 - name: Convertible car seat - - id: 11325 - name: Infant car seat -- id: 1749 - name: Compatible baby carrier type - friendly_id: compatible_baby_carrier_type - values: - - id: 6716 - name: Wrap - - id: 11326 - name: Backpack carrier - - id: 11327 - name: Mei tai - - id: 11328 - name: Ring sling - - id: 11329 - name: Soft-structured carrier -- id: 1750 - name: Compatible stroller type - friendly_id: compatible_stroller_type - values: - - id: 396 - name: Convertible - - id: 7081 - name: Double - - id: 11330 - name: Full-sized - - id: 11331 - name: Jogging - - id: 11332 - name: Umbrella -- id: 1751 - name: Compatible baby transport type - friendly_id: compatible_baby_transport_type - values: - - id: 11290 - name: Stroller - - id: 11333 - name: Baby carrier - - id: 11334 - name: Car seat -- id: 1752 - name: Compatible baby chair type - friendly_id: compatible_baby_chair_type - values: - - id: 11335 - name: High chair - - id: 11336 - name: Restaurant high chair - - id: 11337 - name: Shopping cart -- id: 1753 - name: Wipe packaging - friendly_id: wipe_packaging - values: - - id: 10509 - name: Soft pack - - id: 11338 - name: Plastic tub - - id: 11339 - name: Refill pack - - id: 15025 - name: Travel size -- id: 1754 - name: Diaper kit components - friendly_id: diaper_kit_components - values: - - id: 10246 - name: Wipes - - id: 10403 - name: Diapers - - id: 11341 - name: Diaper changing pad - - id: 11342 - name: Diaper cream - - id: 11343 - name: Disposable bags - - id: 11344 - name: Changing mat - - id: 11345 - name: Hand sanitizer -- id: 1755 - name: Fragrance level - friendly_id: fragrance_level - values: - - id: 372 - name: Other - - id: 11348 - name: Fragrance-free - - id: 11349 - name: Lightly scented -- id: 1756 - name: Treatment texture - friendly_id: treatment_texture - values: - - id: 7405 - name: Powder - - id: 8684 - name: Creamy - - id: 8689 - name: Smooth - - id: 10892 - name: Thick -- id: 1757 - name: Diaper size - friendly_id: diaper_size - values: - - id: 215 - name: Preemie - - id: 216 - name: Newborn - - id: 372 - name: Other - - id: 2879 - name: '1' - - id: 2885 - name: '2' - - id: 2896 - name: '4' - - id: 2907 - name: '6' - - id: 2938 - name: '3' - - id: 2941 - name: '5' - - id: 2944 - name: '7' - - id: 11353 - name: Toddler -- id: 1758 - name: Baby food flavor - friendly_id: baby_food_flavor - values: - - id: 10 - name: Orange - - id: 372 - name: Other - - id: 7317 - name: Pear - - id: 7854 - name: Cherry - - id: 7951 - name: Vanilla - - id: 8332 - name: Vegetables - - id: 9005 - name: Apple - - id: 9008 - name: Banana - - id: 9012 - name: Blueberry - - id: 9020 - name: Chocolate - - id: 9047 - name: Mango - - id: 9057 - name: Peach - - id: 9059 - name: Pineapple - - id: 9064 - name: Raspberry - - id: 9068 - name: Strawberry - - id: 9072 - name: Unflavored - - id: 9073 - name: Watermelon - - id: 9438 - name: Barley - - id: 9540 - name: Quinoa - - id: 10933 - name: Avocado - - id: 11057 - name: Carrot - - id: 11060 - name: Meat - - id: 11065 - name: Spinach - - id: 11066 - name: Sweet potato - - id: 11356 - name: Mixed fruits - - id: 11358 - name: Apricot - - id: 11359 - name: Blackberry - - id: 11360 - name: Broccoli - - id: 11361 - name: Brown rice - - id: 11362 - name: Butternut squash - - id: 11363 - name: Cauliflower - - id: 11364 - name: Green beans - - id: 11365 - name: Kiwi - - id: 11366 - name: Lentils - - id: 11367 - name: Oatmeal - - id: 11368 - name: Papaya - - id: 11369 - name: Peas - - id: 11370 - name: Plum - - id: 11371 - name: Pumpkin - - id: 11372 - name: Zucchini - - id: 11380 - name: Berries -- id: 1759 - name: Baby drink packaging - friendly_id: baby_drink_packaging - values: - - id: 584 - name: Carton - - id: 7984 - name: Bottle - - id: 11357 - name: Tetra pack -- id: 1760 - name: Formula level - friendly_id: formula_level - values: - - id: 11373 - name: Level 1 (0-6 months) - - id: 11374 - name: Level 2 (6-12 months) - - id: 11375 - name: Level 3 (+12 months) -- id: 1761 - name: Baby formula format - friendly_id: baby_formula_format - values: - - id: 11376 - name: Dry powder - - id: 11377 - name: Ready-to-feed -- id: 1762 - name: Baby snack flavor - friendly_id: baby_snack_flavor - values: - - id: 372 - name: Other - - id: 8328 - name: Grains - - id: 8332 - name: Vegetables - - id: 9456 - name: Cheese - - id: 10016 - name: Fruit -- id: 1763 - name: Baby snack texture - friendly_id: baby_snack_texture - values: - - id: 9717 - name: Crackers - - id: 11378 - name: Puffs - - id: 11379 - name: Soft bites -- id: 1764 - name: Compatible baby bottle design - friendly_id: compatible_baby_bottle_design - values: - - id: 392 - name: Standard - - id: 11381 - name: Wide-neck -- id: 1765 - name: Flow rate type - friendly_id: flow_rate_type - values: - - id: 1511 - name: Medium - - id: 7454 - name: Slow - - id: 7456 - name: Fast - - id: 10559 - name: Variable -- id: 1766 - name: Stage - friendly_id: stage - values: - - id: 216 - name: Newborn - - id: 11382 - name: Stage 1 - - id: 11383 - name: Stage 2 - - id: 11384 - name: Stage 3 - - id: 11385 - name: Stage 4 -- id: 1767 - name: Nipple shape - friendly_id: nipple_shape - values: - - id: 372 - name: Other - - id: 627 - name: Round - - id: 1363 - name: Flat - - id: 10529 - name: Angled -- id: 1768 - name: Bottle design - friendly_id: bottle_design - values: - - id: 11386 - name: Ergonomic shape - - id: 11387 - name: Contoured grip - - id: 11388 - name: Easy-to-hold handles -- id: 1769 - name: Nipple material - friendly_id: nipple_material - values: - - id: 809 - name: Silicone - - id: 830 - name: Latex -- id: 1770 - name: Nipple type - friendly_id: nipple_type - values: - - id: 392 - name: Standard - - id: 10964 - name: Orthodontic - - id: 11389 - name: Wide neck -- id: 1771 - name: Bib design - friendly_id: bib_design - values: - - id: 11390 - name: Bandana - - id: 11391 - name: Full coverage - - id: 11392 - name: Sleeved - - id: 11393 - name: Smock -- id: 1772 - name: Heating method - friendly_id: heating_method - values: - - id: 8057 - name: Steam - - id: 11394 - name: Water bath -- id: 1773 - name: Heating speed - friendly_id: heating_speed - values: - - id: 7454 - name: Slow - - id: 7456 - name: Fast -- id: 1774 - name: Temperature control - friendly_id: temperature_control - values: - - id: 11395 - name: Adjustable temperature - - id: 11396 - name: Preset temperature -- id: 1775 - name: Sterilization cycle time - friendly_id: sterilization_cycle_time - values: - - id: 392 - name: Standard - - id: 11397 - name: Quick -- id: 1776 - name: Sterilization method - friendly_id: sterilization_method - values: - - id: 7753 - name: Microwave - - id: 8057 - name: Steam - - id: 11398 - name: UV -- id: 1777 - name: Sterilization instructions - friendly_id: sterilization_instructions - values: - - id: 9736 - name: Boiling - - id: 11400 - name: Dishwasher safe - - id: 11401 - name: Microwave safe -- id: 1778 - name: Pump accessories - friendly_id: pump_accessories - values: - - id: 7414 - name: Carrying case - - id: 11402 - name: Breast shields - - id: 11403 - name: Bottles - - id: 11404 - name: Storage bags -- id: 1779 - name: Cleaning instructions - friendly_id: cleaning_instructions - values: - - id: 10542 - name: Machine washable - - id: 11400 - name: Dishwasher safe - - id: 11405 - name: Hand wash only - - id: 11409 - name: Tumble dry -- id: 1780 - name: Pump speed settings - friendly_id: pump_speed_settings - values: - - id: 11407 - name: Adjustable speed - - id: 11408 - name: Single speed -- id: 1781 - name: Suction levels - friendly_id: suction_levels - values: - - id: 395 - name: Adjustable - - id: 8451 - name: Fixed -- id: 1782 - name: Nursing cover coverage - friendly_id: nursing_cover_coverage - values: - - id: 2745 - name: Full - - id: 11411 - name: Partial -- id: 1783 - name: Nursing pad design - friendly_id: nursing_pad_design - values: - - id: 372 - name: Other - - id: 627 - name: Round - - id: 7218 - name: Contoured - - id: 10892 - name: Thick - - id: 10893 - name: Thin -- id: 1784 - name: Cover closure design - friendly_id: cover_closure_design - values: - - id: 3098 - name: Zipper - - id: 11413 - name: Envelope -- id: 1785 - name: Pillow shape - friendly_id: pillow_shape - values: - - id: 627 - name: Round - - id: 628 - name: Square - - id: 7983 - name: Bolster - - id: 14929 - name: Lumbar - - id: 14930 - name: Neck roll -- id: 1786 - name: Lid type - friendly_id: lid_type - values: - - id: 10466 - name: Snap-on - - id: 10505 - name: Flip-top - - id: 11399 - name: Screw-on -- id: 1787 - name: Spout type - friendly_id: spout_type - values: - - id: 591 - name: Straw - - id: 6993 - name: Soft - - id: 6994 - name: Hard -- id: 1788 - name: Potty/Toilet seat design - friendly_id: potty_toilet_seat_design - values: - - id: 392 - name: Standard - - id: 7389 - name: Folding -- id: 1789 - name: Potty training kit components - friendly_id: potty_training_kit_components - values: - - id: 7976 - name: Stickers - - id: 11415 - name: Potty seat - - id: 11416 - name: Step stool - - id: 11417 - name: Training pants - - id: 11418 - name: Reward chart -- id: 1790 - name: Cabinet type - friendly_id: cabinet_type - values: - - id: 7192 - name: Tabletop - - id: 7396 - name: Upright - - id: 7401 - name: Inflatable - - id: 11434 - name: Bartop - - id: 11435 - name: Foldable - - id: 11436 - name: Mini arcade - - id: 11437 - name: Miniature tabletop - - id: 11438 - name: Multi-player - - id: 11439 - name: Pedestal - - id: 11440 - name: Single-player - - id: 11441 - name: Sit-down - - id: 11442 - name: Stand-up - - id: 11443 - name: Virtual reality - - id: 11444 - name: Wall-mounted -- id: 1791 - name: Currency - friendly_id: currency - values: - - id: 11445 - name: Australian Dollar (AUD) - - id: 11446 - name: British Pound Sterling (GBP) - - id: 11447 - name: Canadian Dollar (CAD) - - id: 11448 - name: Chinese Yuan (CNY) - - id: 11449 - name: Euro (EUR) - - id: 11450 - name: Indian Rupee (INR) - - id: 11451 - name: Japanese Yen (JPY) - - id: 11452 - name: Mexican Peso (MXN) - - id: 11453 - name: Swiss Franc (CHF) - - id: 11454 - name: United States Dollar (USD) -- id: 1792 - name: USB standard - friendly_id: usb_standard - values: - - id: 11455 - name: USB 1.0 - - id: 11456 - name: USB 1.1 - - id: 11457 - name: USB 2.0 - - id: 11458 - name: USB 3.1 gen 1 - - id: 11459 - name: USB 3.2 gen 1x1 - - id: 11460 - name: USB 3.2 gen 2 - - id: 11461 - name: USB 3.2 gen 2x1 - - id: 11462 - name: USB 3.2 gen 2x2 - - id: 11463 - name: USB4 -- id: 1793 - name: Music genre - friendly_id: music_genre - values: - - id: 372 - name: Other - - id: 601 - name: Metal - - id: 1246 - name: Classic - - id: 2869 - name: Christmas - - id: 7087 - name: House - - id: 7779 - name: Electronic - - id: 8510 - name: Industrial - - id: 11007 - name: Progressive - - id: 11464 - name: Alternative - - id: 11465 - name: Alternative rock - - id: 11466 - name: Ambient - - id: 11467 - name: Avant-garde - - id: 11468 - name: Blues - - id: 11469 - name: Breakdance - - id: 11470 - name: Britpop - - id: 11471 - name: Cabaret - - id: 11472 - name: Carnival music - - id: 11473 - name: Chanson - - id: 11474 - name: Children’s - - id: 11475 - name: Comedy - - id: 11476 - name: Country - - id: 11477 - name: Dance - - id: 11478 - name: Deathrock - - id: 11479 - name: Doo-wop - - id: 11480 - name: Drones - - id: 11481 - name: Drum & bass - - id: 11482 - name: Dubstep - - id: 11483 - name: Folk - - id: 11484 - name: Funk - - id: 11485 - name: Futurepop - - id: 11486 - name: Gothic - - id: 11487 - name: Hardcore - - id: 11488 - name: Heavy metal - - id: 11489 - name: Hip-hop - - id: 11490 - name: Humor - - id: 11491 - name: Indie - - id: 11492 - name: Jazz - - id: 11493 - name: Latin - - id: 11494 - name: Lounge - - id: 11495 - name: Medieval - - id: 11496 - name: Metalcore - - id: 11497 - name: Minimal house - - id: 11498 - name: Minimal techno - - id: 11499 - name: Musical - - id: 11500 - name: New wave - - id: 11501 - name: New age - - id: 11502 - name: Opera - - id: 11503 - name: Pop - - id: 11504 - name: Pop punk - - id: 11505 - name: Pop rock - - id: 11506 - name: Power metal - - id: 11507 - name: Prog metal - - id: 11508 - name: Prog rock - - id: 11509 - name: Punk - - id: 11510 - name: R & B - - id: 11511 - name: Rap - - id: 11512 - name: Reggae - - id: 11513 - name: Religious - - id: 11514 - name: Rock - - id: 11515 - name: Rock & roll - - id: 11516 - name: SKA - - id: 11517 - name: Soul - - id: 11518 - name: Soundtrack - - id: 11519 - name: Swing - - id: 11520 - name: Synth-pop - - id: 11521 - name: Tech house - - id: 11522 - name: Techno - - id: 11523 - name: Trance - - id: 11524 - name: Vocal music - - id: 11525 - name: World music - - id: 15726 - name: Biography - - id: 15794 - name: Americana - - id: 15795 - name: Audiobook - - id: 15796 - name: New-age -- id: 1794 - name: Compatible microphone thread - friendly_id: compatible_microphone_thread - values: - - id: 11526 - name: 1/4"-20 - - id: 11527 - name: 3/8"-16 - - id: 11528 - name: 5/8"-27 - - id: 11529 - name: M10 - - id: 11530 - name: M20 - - id: 11531 - name: M6 -- id: 1795 - name: Base type - friendly_id: base_type - values: - - id: 627 - name: Round - - id: 7192 - name: Tabletop - - id: 11444 - name: Wall-mounted - - id: 11532 - name: Boom arm - - id: 11533 - name: Caster wheel - - id: 11534 - name: Clamp - - id: 11535 - name: Folding tripod - - id: 11536 - name: Low-profile - - id: 11537 - name: Round weighted - - id: 11538 - name: Tripod -- id: 1796 - name: Microphone thread - friendly_id: microphone_thread - values: - - id: 11526 - name: 1/4"-20 - - id: 11527 - name: 3/8"-16 - - id: 11528 - name: 5/8"-27 - - id: 11529 - name: M10 - - id: 11530 - name: M20 - - id: 11531 - name: M6 -- id: 1797 - name: MP3 player accessories included - friendly_id: mp3_player_accessories_included - values: - - id: 8261 - name: Case - - id: 10995 - name: Stand - - id: 11545 - name: Car charger - - id: 11546 - name: Charging cable - - id: 11547 - name: Earphones - - id: 11548 - name: Headset - - id: 11549 - name: Portable speaker - - id: 11550 - name: Screen protector -- id: 1798 - name: Case type - friendly_id: case_type - values: - - id: 372 - name: Other - - id: 6877 - name: Lanyard - - id: 7772 - name: Armband - - id: 10995 - name: Stand - - id: 11551 - name: Back cover - - id: 11552 - name: Belt clip - - id: 11553 - name: Book style - - id: 11554 - name: Bumper - - id: 11555 - name: Bumper with built-in screen protector - - id: 11556 - name: Decal - - id: 11557 - name: Flip - - id: 11558 - name: Folio - - id: 11559 - name: Holder - - id: 11560 - name: Holster - - id: 11561 - name: Keyboard case - - id: 11562 - name: Shell cover - - id: 11563 - name: Skin - - id: 11564 - name: Wallet - - id: 11565 - name: Wallet with card slots - - id: 12304 - name: Finger grip - - id: 12305 - name: Interchangeable loop -- id: 1799 - name: Stylus type - friendly_id: stylus_type - values: - - id: 7080 - name: Conical - - id: 11566 - name: Crossover - - id: 11567 - name: Elliptical - - id: 11568 - name: Spherical -- id: 1800 - name: Amplifier class - friendly_id: amplifier_class - values: - - id: 1967 - name: A - - id: 1968 - name: B - - id: 1969 - name: C - - id: 1970 - name: D - - id: 1971 - name: E - - id: 1972 - name: F - - id: 1995 - name: G - - id: 2927 - name: H - - id: 3082 - name: T - - id: 11578 - name: AB - - id: 11579 - name: BD - - id: 11580 - name: FD - - id: 11581 - name: XD -- id: 1801 - name: Audio output channel - friendly_id: audio_output_channel - values: - - id: 2885 - name: '2' - - id: 2896 - name: '4' - - id: 2907 - name: '6' - - id: 2938 - name: '3' - - id: 2941 - name: '5' - - id: 2944 - name: '7' - - id: 2947 - name: '9' - - id: 3011 - name: '11' - - id: 11582 - name: '2.1' - - id: 11583 - name: '3.1' - - id: 11584 - name: '4.1' - - id: 11585 - name: '5.1' - - id: 11586 - name: '6.1' - - id: 11587 - name: '7.1' - - id: 11588 - name: '9.1' - - id: 11589 - name: '11.1' - - id: 11590 - name: '13.2' -- id: 1802 - name: Audio output format - friendly_id: audio_output_format - values: - - id: 1656 - name: Digital - - id: 2523 - name: Analog - - id: 11591 - name: AAC - - id: 11592 - name: aptX - - id: 11593 - name: High-resolution - - id: 11594 - name: LDAC - - id: 11595 - name: Mono - - id: 11596 - name: Multi-zone - - id: 11597 - name: S/PDIF - - id: 11598 - name: SBC - - id: 11599 - name: Stereo - - id: 11600 - name: Surround -- id: 1803 - name: Audio technology - friendly_id: audio_technology - values: - - id: 372 - name: Other - - id: 11591 - name: AAC - - id: 11601 - name: Dolby atmos - - id: 11602 - name: Dolby digital (AC-3) - - id: 11603 - name: Dolby Digital Plus (E-AC-3) - - id: 11604 - name: Dolby Pro Logic IIz - - id: 11605 - name: Dolby trueHD - - id: 11606 - name: DTS - - id: 11607 - name: DTS Neo - - id: 11608 - name: DTS Virtual - - id: 11609 - name: DTS-HD High Resolution Audio - - id: 11610 - name: DTS-HD master audio - - id: 11611 - name: DTS-X - - id: 11612 - name: LPCM (Linear Pulse Code Modulation) - - id: 11613 - name: PCM (Pulse Code Modulation) -- id: 1804 - name: Frequency/Radio bands supported - friendly_id: frequency_radio_bands_supported - values: - - id: 136 - name: S - - id: 11679 - name: AM - - id: 11680 - name: DAB - - id: 11681 - name: DAB+ - - id: 11682 - name: DMB - - id: 11683 - name: DMB-A - - id: 11684 - name: DMB-R - - id: 11685 - name: FM - - id: 11686 - name: LW - - id: 11687 - name: MF - - id: 11688 - name: MW - - id: 11689 - name: Not supported - - id: 11690 - name: PLL - - id: 11691 - name: SW - - id: 11692 - name: UHF - - id: 11693 - name: UKW - - id: 11694 - name: VHF -- id: 1805 - name: Video resolution supported - friendly_id: video_resolution_supported - values: - - id: 7673 - name: 3D - - id: 11695 - name: 1080p - - id: 11696 - name: 1440p - - id: 11697 - name: 144p - - id: 11698 - name: 2160p - - id: 11699 - name: 240p - - id: 11700 - name: 360p - - id: 11701 - name: 4320p - - id: 11702 - name: 480p - - id: 11703 - name: 4K ultra HD - - id: 11704 - name: 720p - - id: 11705 - name: 8K ultra HD - - id: 11706 - name: Full HD - - id: 11707 - name: HD - - id: 11708 - name: Quad HD - - id: 11709 - name: SD -- id: 1806 - name: Audio D/A converter (DAC) - friendly_id: audio_d_a_converter_dac - values: - - id: 7271 - name: USB - - id: 8052 - name: Optical - - id: 11624 - name: Coaxial - - id: 11662 - name: TOSLINK - - id: 11710 - name: Burr-brown - - id: 11711 - name: DSD - - id: 11712 - name: ESS sabre - - id: 11713 - name: Integrated - - id: 11714 - name: PCM -- id: 1807 - name: Headphone jack type - friendly_id: headphone_jack_type - values: - - id: 11615 - name: 2.5 mm - - id: 11716 - name: 3.5 mm (1/8") - - id: 11717 - name: 6.35 mm (1/4") - - id: 11718 - name: Balanced XLR - - id: 11719 - name: USB type-C -- id: 1808 - name: Amplifier/Booster suitable location - friendly_id: amplifier_booster_suitable_location - values: - - id: 372 - name: Other - - id: 1796 - name: Vehicle - - id: 10254 - name: Home - - id: 11720 - name: Large venue - - id: 11721 - name: Marine transport - - id: 11722 - name: Office - - id: 11723 - name: Small venue -- id: 1809 - name: Digital sound processing - friendly_id: digital_sound_processing - values: - - id: 10125 - name: Compression - - id: 11724 - name: Automatic feedback suppression - - id: 11725 - name: Chorus - - id: 11726 - name: De-esser - - id: 11727 - name: Delay - - id: 11728 - name: DRC - - id: 11729 - name: EQ - - id: 11730 - name: Exciter - - id: 11731 - name: Flanger - - id: 11732 - name: Harmonic enhancement - - id: 11733 - name: Limiter - - id: 11734 - name: Multi-band processing - - id: 11735 - name: Noise gate - - id: 11736 - name: Phaser - - id: 11737 - name: Pitch shifter - - id: 11738 - name: Reverb - - id: 11739 - name: Room correction - - id: 11740 - name: Spatial audio processing - - id: 11741 - name: Surround sound processing - - id: 11742 - name: VST support -- id: 1810 - name: Pairing method - friendly_id: pairing_method - values: - - id: 1251 - name: Bluetooth - - id: 1252 - name: Wi-Fi - - id: 6977 - name: Manual - - id: 11575 - name: NFC - - id: 11743 - name: Automatic - - id: 11744 - name: QR code -- id: 1811 - name: Connection type - friendly_id: connection_type - values: - - id: 1251 - name: Bluetooth - - id: 1252 - name: Wi-Fi - - id: 1542 - name: LTE - - id: 7271 - name: USB - - id: 7346 - name: Wired - - id: 7347 - name: Wireless - - id: 7751 - name: Infrared - - id: 8028 - name: Radio - - id: 10197 - name: ANT+ - - id: 10231 - name: ANT - - id: 11115 - name: Cellular - - id: 11220 - name: DECT - - id: 11569 - name: AirPlay - - id: 11570 - name: DVI - - id: 11571 - name: Ethernet - - id: 11573 - name: HDMI - - id: 11574 - name: Miracast - - id: 11575 - name: NFC - - id: 11576 - name: Satellite - - id: 11577 - name: Wireless dongle - - id: 11620 - name: AUX - - id: 11623 - name: BNC - - id: 11624 - name: Coaxial - - id: 11625 - name: Coaxial (F-Type) - - id: 11627 - name: Composite video - - id: 11629 - name: Display port - - id: 11632 - name: Firewire - - id: 11640 - name: Micro SD card - - id: 11641 - name: Micro USB - - id: 11651 - name: RCA - - id: 11652 - name: S-video - - id: 11656 - name: SD card - - id: 11661 - name: Thunderbolt - - id: 11665 - name: VGA - - id: 11745 - name: AC adapter - - id: 11746 - name: Mini USB - - id: 11747 - name: Power cord - - id: 11748 - name: Power splitter -- id: 1812 - name: Tuner type - friendly_id: tuner_type - values: - - id: 11749 - name: AM/FM - - id: 11750 - name: ATSC - - id: 11751 - name: DAB/DAB+ - - id: 11752 - name: HD radio - - id: 11753 - name: NTSC - - id: 11754 - name: QAM - - id: 11755 - name: Satellite radio -- id: 1813 - name: Audio connectivity - friendly_id: audio_connectivity - values: - - id: 1251 - name: Bluetooth - - id: 1252 - name: Wi-Fi - - id: 7271 - name: USB - - id: 8052 - name: Optical - - id: 11573 - name: HDMI - - id: 11615 - name: 2.5 mm - - id: 11616 - name: 3.5 mm - - id: 11618 - name: 6.35 mm - - id: 11629 - name: Display port - - id: 11641 - name: Micro USB -- id: 1814 - name: Headphone style - friendly_id: headphone_style - values: - - id: 11756 - name: Behind-the-neck - - id: 11757 - name: Closed-back - - id: 11758 - name: Earbuds - - id: 11759 - name: Ear hook - - id: 11760 - name: Open-back - - id: 11769 - name: Canal - - id: 11770 - name: Ear hooks -- id: 1815 - name: Microphone type - friendly_id: microphone_type - values: - - id: 8072 - name: Built-in - - id: 11761 - name: Bi-directional - - id: 11762 - name: Boom - - id: 11763 - name: Condenser - - id: 11764 - name: Dynamic - - id: 11765 - name: Inline - - id: 11766 - name: Noise-canceling - - id: 11767 - name: Omnidirectional - - id: 11768 - name: Unidirectional -- id: 1816 - name: Polar pattern - friendly_id: polar_pattern - values: - - id: 11767 - name: Omnidirectional - - id: 11771 - name: Cardioid - - id: 11772 - name: Figure-8 - - id: 11773 - name: Hypercardioid - - id: 11774 - name: Multi-pattern - - id: 11775 - name: Shotgun - - id: 11776 - name: Subcardioid - - id: 11777 - name: Super-cardioid -- id: 1817 - name: Processor technology - friendly_id: processor_technology - values: - - id: 1656 - name: Digital - - id: 2523 - name: Analog - - id: 7083 - name: Hybrid - - id: 11778 - name: DSP - - id: 11779 - name: FPGA - - id: 11780 - name: Hardware-based - - id: 11781 - name: Modeling - - id: 11782 - name: Multi-channel - - id: 11783 - name: Software-based - - id: 11784 - name: Tube/Valve -- id: 1818 - name: Audio purpose - friendly_id: audio_purpose - values: - - id: 11785 - name: Car audio - - id: 11786 - name: Computer audio - - id: 11787 - name: Home audio - - id: 11788 - name: Home cinema - - id: 11789 - name: Outdoor use - - id: 11790 - name: PA system - - id: 11791 - name: Portable audio - - id: 11792 - name: Professional audio - - id: 11793 - name: Smart home - - id: 11794 - name: Studio monitoring -- id: 1819 - name: Speaker design - friendly_id: speaker_design - values: - - id: 8131 - name: Outdoor - - id: 10154 - name: Portable - - id: 11576 - name: Satellite - - id: 11795 - name: Bookshelf - - id: 11796 - name: Center channel - - id: 11797 - name: Floorstanding - - id: 11798 - name: In-ceiling - - id: 11799 - name: In-wall - - id: 11800 - name: Smart speakers - - id: 11801 - name: Soundbar - - id: 11802 - name: Subwoofer - - id: 11803 - name: Tower -- id: 1820 - name: Speaker technology - friendly_id: speaker_technology - values: - - id: 11764 - name: Dynamic - - id: 11804 - name: Electrostatic - - id: 11805 - name: Horn - - id: 11806 - name: Piezoelectric - - id: 11807 - name: Planar magnetic - - id: 11808 - name: Smart -- id: 1821 - name: Recording accessories included - friendly_id: recording_accessories_included - values: - - id: 11809 - name: Acoustic treatment panels - - id: 11810 - name: Audio interface - - id: 11811 - name: Headphones - - id: 11812 - name: Microphone - - id: 11813 - name: Microphone stand - - id: 11814 - name: Pop filter -- id: 1822 - name: Audio codecs/formats supported - friendly_id: audio_codecs_formats_supported - values: - - id: 372 - name: Other - - id: 11591 - name: AAC - - id: 11598 - name: SBC - - id: 11606 - name: DTS - - id: 11689 - name: Not supported - - id: 11711 - name: DSD - - id: 11714 - name: PCM - - id: 11815 - name: 3G2 - - id: 11816 - name: 3GA - - id: 11817 - name: 3GP - - id: 11818 - name: 3GPP - - id: 11819 - name: 3GPP2 - - id: 11820 - name: AAC HE - - id: 11821 - name: AAC-ELD - - id: 11822 - name: AAC-LC - - id: 11823 - name: AAC-LD - - id: 11824 - name: AAC+ - - id: 11825 - name: AAC++ - - id: 11826 - name: AAX - - id: 11827 - name: AAX+ - - id: 11828 - name: AC3 - - id: 11829 - name: AC4 - - id: 11830 - name: ADPCM - - id: 11831 - name: ADTS - - id: 11832 - name: AIFF - - id: 11833 - name: ALAC - - id: 11834 - name: AMR - - id: 11835 - name: AMR-NB - - id: 11836 - name: AMR-WB - - id: 11837 - name: AOB - - id: 11838 - name: APE - - id: 11839 - name: apt-X - - id: 11840 - name: ASF - - id: 11841 - name: AU - - id: 11842 - name: AWB - - id: 11843 - name: CBR - - id: 11844 - name: CD-A - - id: 11845 - name: CELP - - id: 11846 - name: COOK - - id: 11847 - name: Cook codec - - id: 11848 - name: CUE - - id: 11849 - name: DFF - - id: 11850 - name: DS2 - - id: 11851 - name: DSF - - id: 11852 - name: DSS - - id: 11853 - name: eAAC+ - - id: 11854 - name: EAC3 - - id: 11855 - name: FLAC - - id: 11856 - name: G.711 - - id: 11857 - name: G.711 A-law - - id: 11858 - name: G.722 - - id: 11859 - name: G.722.1 - - id: 11860 - name: G.723 - - id: 11861 - name: G.726 - - id: 11862 - name: G.729 - - id: 11863 - name: HAAC - - id: 11864 - name: HE-A - - id: 11865 - name: HE-AAC - - id: 11866 - name: HE-AAC v2 - - id: 11867 - name: HWA-LD - - id: 11868 - name: IMA-ADPCM - - id: 11869 - name: IMY - - id: 11870 - name: LBR - - id: 11871 - name: LC-AAC - - id: 11872 - name: LPCM - - id: 11873 - name: M4A - - id: 11874 - name: M4B - - id: 11875 - name: MKA - - id: 11876 - name: MMF - - id: 11877 - name: MP1 - - id: 11878 - name: MP2 - - id: 11879 - name: MP2L2 - - id: 11880 - name: MP3 - - id: 11881 - name: MP3 VBR - - id: 11882 - name: MP4 - - id: 11883 - name: MPA - - id: 11884 - name: MQA - - id: 11885 - name: MS-ADPCM - - id: 11886 - name: MXMF - - id: 11887 - name: NRT - - id: 11888 - name: OGA - - id: 11889 - name: OGG - - id: 11890 - name: OPUS - - id: 11891 - name: OTA - - id: 11892 - name: PMD - - id: 11893 - name: QCP - - id: 11894 - name: QTFF - - id: 11895 - name: RA-lossless - - id: 11896 - name: Real audio - - id: 11897 - name: RMI - - id: 11898 - name: RTSP - - id: 11899 - name: RTTTL - - id: 11900 - name: RTX - - id: 11901 - name: SMF - - id: 11902 - name: Vorbis - - id: 11903 - name: WAV - - id: 11904 - name: WMA - - id: 11905 - name: WMA-L - - id: 11907 - name: WMV - - id: 11908 - name: WVE - - id: 11909 - name: XMF - - id: 11910 - name: μ-law - - id: 13571 - name: WMA Pro - - id: 13572 - name: MIDI - - id: 13573 - name: MID - - id: 13574 - name: WAVE -- id: 1823 - name: Media format - friendly_id: media_format - values: - - id: 372 - name: Other - - id: 624 - name: Vinyl - - id: 1656 - name: Digital - - id: 11880 - name: MP3 - - id: 11911 - name: Cassette - - id: 11912 - name: CD - - id: 11913 - name: Minidisc - - id: 12510 - name: CD-RW - - id: 12512 - name: DVD-RW - - id: 12513 - name: DVD+RW - - id: 12586 - name: BD-R - - id: 12587 - name: BD-RE - - id: 12588 - name: BD-XL - - id: 12589 - name: Betamax - - id: 12590 - name: CD-R - - id: 12591 - name: DAT - - id: 12592 - name: DCC - - id: 12593 - name: DVD-R - - id: 12594 - name: DVD-RAM - - id: 12595 - name: DVD+R - - id: 12596 - name: Floppy disk - - id: 12597 - name: Jaz disk - - id: 12598 - name: VHS - - id: 12599 - name: Zip disk -- id: 1824 - name: Karaoke modes - friendly_id: karaoke_modes - values: - - id: 7229 - name: Single - - id: 11914 - name: Duet - - id: 11915 - name: Group -- id: 1825 - name: Cartridge type - friendly_id: cartridge_type - values: - - id: 643 - name: Ceramic - - id: 1650 - name: Magnetic - - id: 11806 - name: Piezoelectric - - id: 11916 - name: Moving coil - - id: 11917 - name: Moving magnet - - id: 11918 - name: Strain gauge -- id: 1826 - name: Player drive type - friendly_id: player_drive_type - values: - - id: 7395 - name: Belt - - id: 11919 - name: Direct - - id: 11920 - name: Idler -- id: 1827 - name: Mixer type - friendly_id: mixer_type - values: - - id: 1656 - name: Digital - - id: 2523 - name: Analog - - id: 7745 - name: Rotary - - id: 11921 - name: Battle - - id: 11922 - name: Club - - id: 11923 - name: DJ controller - - id: 11924 - name: Non-powered - - id: 11925 - name: Powered - - id: 11926 - name: Scratch -- id: 1828 - name: Antenna type - friendly_id: antenna_type - values: - - id: 7683 - name: Directional - - id: 9953 - name: Panel - - id: 10155 - name: Grid - - id: 11767 - name: Omnidirectional - - id: 11927 - name: Collinear - - id: 11928 - name: Dipole - - id: 11929 - name: Helical - - id: 11930 - name: Log-periodic - - id: 11931 - name: Parabolic - - id: 11932 - name: Patch - - id: 11933 - name: Sector - - id: 11934 - name: Whip - - id: 11935 - name: Yagi -- id: 1829 - name: Component package type - friendly_id: component_package_type - values: - - id: 372 - name: Other - - id: 11936 - name: BGA - - id: 11937 - name: DFN - - id: 11938 - name: DIP - - id: 11939 - name: LCC - - id: 11940 - name: LGA - - id: 11941 - name: PGA - - id: 11942 - name: PLCC - - id: 11943 - name: PLDIP - - id: 11944 - name: QFN - - id: 11945 - name: QFP - - id: 11946 - name: SMD - - id: 11947 - name: SOIC - - id: 11948 - name: SOP - - id: 11949 - name: SOPJ - - id: 11950 - name: SOT - - id: 11951 - name: SOT-143 - - id: 11952 - name: SOT-223 - - id: 11953 - name: SOT-23 - - id: 11954 - name: SOT-363 - - id: 11955 - name: SOT-523 - - id: 11956 - name: SOT-723 - - id: 11957 - name: SOT-89 - - id: 11958 - name: SSOP - - id: 11959 - name: TO - - id: 11960 - name: TO-126 - - id: 11961 - name: TO-18 - - id: 11962 - name: TO-220 - - id: 11963 - name: TO-247 - - id: 11964 - name: TO-252 - - id: 11965 - name: TO-263 - - id: 11966 - name: TO-3 - - id: 11967 - name: TO-39 - - id: 11968 - name: TO-5 - - id: 11969 - name: TO-92 - - id: 11970 - name: TQFP - - id: 11971 - name: TSOP - - id: 11972 - name: TSSOP -- id: 1830 - name: Connector gender - friendly_id: connector_gender - values: - - id: 18 - name: Female - - id: 19 - name: Male - - id: 11973 - name: Female to female - - id: 11974 - name: Female to male - - id: 11975 - name: Male to female - - id: 11976 - name: Male to male -- id: 1831 - name: Component output type - friendly_id: component_output_type - values: - - id: 1656 - name: Digital - - id: 2523 - name: Analog - - id: 11634 - name: I2C - - id: 11659 - name: SPI - - id: 11664 - name: UART - - id: 11978 - name: PWM - - id: 11979 - name: RS232 - - id: 11980 - name: RS485 -- id: 1832 - name: Passband - friendly_id: passband - values: - - id: 11981 - name: All-pass - - id: 11982 - name: Band-pass - - id: 11983 - name: Band-stop - - id: 11984 - name: High-pass - - id: 11985 - name: Low-pass -- id: 1833 - name: Stopband - friendly_id: stopband - values: - - id: 11986 - name: Low frequency - - id: 11987 - name: Medium frequency - - id: 11988 - name: High frequency - - id: 11989 - name: Very high frequency - - id: 11990 - name: Ultra high frequency - - id: 11991 - name: Super high frequency - - id: 11992 - name: Extremely high frequency -- id: 1834 - name: Dielectric type - friendly_id: dielectric_type - values: - - id: 45 - name: Polyester - - id: 548 - name: Paper - - id: 589 - name: Polypropylene (PP) - - id: 616 - name: Polycarbonate (PC) - - id: 640 - name: Glass - - id: 643 - name: Ceramic - - id: 7926 - name: Film - - id: 11993 - name: Air capacitor - - id: 11994 - name: Aluminum electrolytic - - id: 11995 - name: Electrolytic - - id: 11996 - name: Glass capacitor - - id: 11997 - name: Mica - - id: 11998 - name: Niobium oxide - - id: 11999 - name: Silicon capacitor - - id: 12000 - name: Solid polymer - - id: 12001 - name: Supercapacitor - - id: 12002 - name: Tantalum - - id: 12003 - name: Vacuum capacitor -- id: 1835 - name: Output waveform - friendly_id: output_waveform - values: - - id: 628 - name: Square - - id: 7323 - name: Triangle - - id: 8683 - name: Complex - - id: 12004 - name: Pulse - - id: 12005 - name: Sawtooth - - id: 12006 - name: Sine -- id: 1836 - name: BIOS type - friendly_id: bios_type - values: - - id: 7083 - name: Hybrid - - id: 8508 - name: Custom - - id: 12007 - name: AMI - - id: 12008 - name: Aptio - - id: 12009 - name: Award - - id: 12010 - name: Coreboot - - id: 12011 - name: Insyde - - id: 12012 - name: Legacy - - id: 12013 - name: Phoenix - - id: 12014 - name: UEFI -- id: 1837 - name: Compatible processor series - friendly_id: compatible_processor_series - values: - - id: 372 - name: Other - - id: 11689 - name: Not supported - - id: 12015 - name: AMD A - - id: 12016 - name: AMD Athlon - - id: 12017 - name: AMD Athlon FX - - id: 12018 - name: AMD Athlon II - - id: 12019 - name: AMD Athlon II dual-core - - id: 12020 - name: AMD Athlon II X2 - - id: 12021 - name: AMD Athlon II X3 - - id: 12022 - name: AMD Athlon II X4 - - id: 12023 - name: AMD Athlon MP - - id: 12024 - name: AMD Athlon neo X2 - - id: 12025 - name: AMD Athlon X2 - - id: 12026 - name: AMD Athlon X2 dual-core - - id: 12027 - name: AMD Athlon X4 - - id: 12028 - name: AMD Athlon XP - - id: 12029 - name: AMD C - - id: 12030 - name: AMD Duron - - id: 12031 - name: AMD E - - id: 12032 - name: AMD E2 - - id: 12033 - name: AMD EPYC - - id: 12034 - name: AMD EPYC 7000 - - id: 12035 - name: AMD EPYC 7002 - - id: 12036 - name: AMD FreeSync - - id: 12037 - name: AMD FX - - id: 12038 - name: AMD Geode - - id: 12039 - name: AMD Opteron - - id: 12040 - name: AMD Phenom - - id: 12041 - name: AMD Phenom FX - - id: 12042 - name: AMD Phenom II dual-core mobile - - id: 12043 - name: AMD Phenom II quad-core mobile - - id: 12044 - name: AMD Phenom II triple-core mobile - - id: 12045 - name: AMD Phenom II X2 - - id: 12046 - name: AMD Phenom II X3 - - id: 12047 - name: AMD Phenom II X4 - - id: 12048 - name: AMD Phenom II X6 - - id: 12049 - name: AMD Phenom II X8 - - id: 12050 - name: AMD Phenom X3 - - id: 12051 - name: AMD Phenom X4 - - id: 12052 - name: AMD Ryzen 3 2nd gen - - id: 12053 - name: AMD Ryzen 3 3rd gen - - id: 12054 - name: AMD Ryzen 5 - - id: 12055 - name: AMD Ryzen 5 2nd gen - - id: 12056 - name: AMD Ryzen 5 3rd gen - - id: 12057 - name: AMD Ryzen 5 5th gen - - id: 12058 - name: AMD Ryzen 7 - - id: 12059 - name: AMD Ryzen 7 2nd gen - - id: 12060 - name: AMD Ryzen 7 3rd gen - - id: 12061 - name: AMD Ryzen 7 5th gen - - id: 12062 - name: AMD Ryzen 7 7th gen - - id: 12063 - name: AMD Ryzen 9 3rd gen - - id: 12064 - name: AMD Ryzen 9 5th gen - - id: 12065 - name: AMD Ryzen 9 7th gen - - id: 12066 - name: AMD Ryzen Threadripper - - id: 12067 - name: AMD Ryzen Threadripper 2nd gen - - id: 12068 - name: AMD Ryzen Threadripper 3rd gen - - id: 12069 - name: AMD Ryzen Threadripper Pro 3rd gen - - id: 12070 - name: AMD Sempron - - id: 12071 - name: AMD Turion 64 X2 dual-core - - id: 12072 - name: AMD Turion II neo - - id: 12073 - name: AMD Turion X2 ultra dual-core - - id: 12074 - name: Intel atom - - id: 12075 - name: Intel celeron - - id: 12076 - name: Intel celeron D - - id: 12077 - name: Intel Celeron dual-core - - id: 12078 - name: Intel celeron E - - id: 12079 - name: Intel celeron G - - id: 12080 - name: Intel celeron M - - id: 12081 - name: Intel celeron N - - id: 12082 - name: Intel core 2 duo - - id: 12083 - name: Intel core 2 extreme - - id: 12084 - name: Intel core 2 quad - - id: 12085 - name: Intel core duo - - id: 12086 - name: Intel core i3 - - id: 12087 - name: Intel core i5 - - id: 12088 - name: Intel core i7 - - id: 12089 - name: Intel core i7 extreme edition - - id: 12090 - name: Intel core i9 - - id: 12091 - name: Intel core i9 extreme edition - - id: 12092 - name: Intel core solo - - id: 12093 - name: Intel core X-series - - id: 12094 - name: Intel itanium - - id: 12095 - name: Intel pentium - - id: 12096 - name: Intel pentium 4 - - id: 12097 - name: Intel pentium 4 extreme edition - - id: 12098 - name: Intel pentium D - - id: 12099 - name: Intel pentium dual-core - - id: 12100 - name: Intel pentium extreme edition - - id: 12101 - name: Intel pentium G - - id: 12102 - name: Intel pentium gold - - id: 12103 - name: Intel pentium III - - id: 12104 - name: Intel pentium M - - id: 12105 - name: Intel x99 - - id: 12106 - name: Intel xeon - - id: 12107 - name: Intel xeon E - - id: 12108 - name: Intel xeon E3 - - id: 12109 - name: Intel xeon E5 - - id: 12110 - name: Intel xeon Phi - - id: 12111 - name: Intel xeon W - - id: 12112 - name: VIA C3 - - id: 12113 - name: VIA C7 - - id: 12114 - name: VIA luke - - id: 12115 - name: VIA nano - - id: 12116 - name: VIA V4 -- id: 1838 - name: Expansion slots - friendly_id: expansion_slots - values: - - id: 372 - name: Other - - id: 6906 - name: ISA - - id: 11637 - name: M.2 - - id: 11649 - name: PCIe - - id: 11653 - name: SATA - - id: 11834 - name: AMR - - id: 12117 - name: AGP - - id: 12118 - name: CNR - - id: 12119 - name: Mini PCIe - - id: 12120 - name: PCI - - id: 12121 - name: DIMM -- id: 1839 - name: Memory features - friendly_id: memory_features - values: - - id: 12122 - name: ECC - - id: 12123 - name: Non-ECC - - id: 12124 - name: Registered/Buffered - - id: 12125 - name: Unbuffered -- id: 1840 - name: Memory technology - friendly_id: memory_technology - values: - - id: 372 - name: Other - - id: 12126 - name: Asynchronous SRAM - - id: 12127 - name: DDR - - id: 12128 - name: DDR2 - - id: 12129 - name: DDR3 - - id: 12130 - name: DDR4 - - id: 12131 - name: DDR5 - - id: 12132 - name: DRAM - - id: 12133 - name: EDO DRAM - - id: 12134 - name: Flash - - id: 12135 - name: FPM DRAM - - id: 12136 - name: GDDR - - id: 12137 - name: GDDR2 - - id: 12138 - name: GDDR3 - - id: 12139 - name: GDDR4 - - id: 12140 - name: GDDR5 - - id: 12141 - name: GDDR6 - - id: 12142 - name: GDDR6X - - id: 12143 - name: HBM - - id: 12144 - name: HBM2 - - id: 12145 - name: HBM2E - - id: 12146 - name: HBM3 - - id: 12147 - name: NAND flash - - id: 12148 - name: NOR flash - - id: 12149 - name: NVRAM - - id: 12150 - name: PLC - - id: 12151 - name: Pseudo SRAM - - id: 12152 - name: QLC - - id: 12153 - name: RDRAM - - id: 12154 - name: SDR SDRAM - - id: 12155 - name: SDRAM - - id: 12156 - name: Serial NOR - - id: 12157 - name: SLC - - id: 12158 - name: SRAM - - id: 12159 - name: Synchronous SRAM - - id: 12160 - name: TLC - - id: 12161 - name: XIP NOR -- id: 1841 - name: Motherboard chipset family - friendly_id: motherboard_chipset_family - values: - - id: 12162 - name: AMD - - id: 12163 - name: Intel - - id: 12164 - name: Nvidia - - id: 12165 - name: SiS - - id: 12166 - name: VIA -- id: 1842 - name: Motherboard form factor - friendly_id: motherboard_form_factor - values: - - id: 12167 - name: ATX - - id: 12168 - name: Extended ATX - - id: 12169 - name: FlexATX - - id: 12170 - name: Micro-ATX - - id: 12171 - name: Mini-DTX - - id: 12172 - name: Mini-ITX - - id: 12173 - name: Nano-ITX -- id: 1843 - name: Multi-GPU technology - friendly_id: multi_gpu_technology - values: - - id: 372 - name: Other - - id: 11689 - name: Not supported - - id: 12174 - name: 2-way CrossFireX - - id: 12175 - name: 2-way NVLink - - id: 12176 - name: 2-way SLI - - id: 12177 - name: 3-way CrossFireX - - id: 12178 - name: 3-way SLI - - id: 12179 - name: 4-way CrossFireX - - id: 12180 - name: 4-way SLI - - id: 12181 - name: APP - - id: 12182 - name: Crossfire - - id: 12183 - name: Crossfire pro - - id: 12184 - name: Crossfirex - - id: 12185 - name: Dual graphics - - id: 12186 - name: Hybrid crossfirex - - id: 12187 - name: LucidLogix virtu - - id: 12188 - name: Nvidia turing - - id: 12189 - name: NVLink - - id: 12190 - name: Quad-GPU crossFireX - - id: 12191 - name: Quad-GPU SLI - - id: 12192 - name: SLI -- id: 1844 - name: Parallel processing technology support - friendly_id: parallel_processing_technology_support - values: - - id: 12193 - name: AVX - - id: 12194 - name: CUDA - - id: 12195 - name: FMA - - id: 12196 - name: GPGPU - - id: 12197 - name: HSA - - id: 12198 - name: Hyper-threading - - id: 12199 - name: Multi-core - - id: 12200 - name: Multi-GPU - - id: 12201 - name: OpenCL - - id: 12202 - name: SIMD -- id: 1845 - name: Processor socket - friendly_id: processor_socket - values: - - id: 372 - name: Other - - id: 12203 - name: LGA 1150 (socket H3) - - id: 12204 - name: LGA 1151 (socket H4) - - id: 12205 - name: LGA 1151 v2 - - id: 12206 - name: LGA 1155 (socket H2) - - id: 12207 - name: LGA 1156 (socket H) - - id: 12208 - name: LGA 1200 - - id: 12209 - name: LGA 1366 (socket B) - - id: 12210 - name: LGA 2011 (socket R) - - id: 12211 - name: LGA 2011-v3 - - id: 12212 - name: LGA 2066 (Socket R4) - - id: 12213 - name: LGA 3647 (socket P) - - id: 12214 - name: LGA 775 (socket T) - - id: 12215 - name: Socket 370 - - id: 12216 - name: Socket 423 - - id: 12217 - name: Socket 478 - - id: 12218 - name: Socket 479 - - id: 12219 - name: Socket 603 - - id: 12220 - name: Socket 604 (mPGA604) - - id: 12221 - name: Socket 754 - - id: 12222 - name: Socket 771 (socket J) - - id: 12223 - name: Socket 939 - - id: 12224 - name: Socket 940 - - id: 12225 - name: Socket 988 - - id: 12226 - name: Socket A (462) - - id: 12227 - name: Socket AM1 - - id: 12228 - name: Socket AM2 - - id: 12229 - name: Socket AM2+ - - id: 12230 - name: Socket AM3 - - id: 12231 - name: Socket AM3+ - - id: 12232 - name: Socket AM4 - - id: 12233 - name: Socket C32 - - id: 12234 - name: Socket F (1207) - - id: 12235 - name: Socket FM1 - - id: 12236 - name: Socket FM2 - - id: 12237 - name: Socket FM2+ - - id: 12238 - name: Socket FP2 - - id: 12239 - name: Socket FP3 - - id: 12240 - name: Socket FP4 - - id: 12241 - name: Socket FP5 - - id: 12242 - name: Socket G2 - - id: 12243 - name: Socket G3 - - id: 12244 - name: Socket G34 - - id: 12245 - name: Socket M (mPGA478MT) - - id: 12246 - name: Socket P - - id: 12247 - name: Socket S1 - - id: 12248 - name: Socket SP3 - - id: 12249 - name: Socket sTRX4 - - id: 12250 - name: Socket sWRX8 - - id: 12251 - name: Socket TR4 - - id: 12252 - name: Socket TRX4 -- id: 1846 - name: Storage drive interfaces supported - friendly_id: storage_drive_interfaces_supported - values: - - id: 372 - name: Other - - id: 11631 - name: eSATA - - id: 11637 - name: M.2 - - id: 11653 - name: SATA - - id: 12253 - name: FCAL - - id: 12254 - name: HSDL - - id: 12255 - name: IDE - - id: 12256 - name: Micro SATA - - id: 12257 - name: Micro SATA II - - id: 12258 - name: Micro SATA III - - id: 12259 - name: Micro serial ATA - - id: 12260 - name: Micro serial ATA II - - id: 12261 - name: Micro serial ATA III - - id: 12262 - name: Mini PCI express - - id: 12263 - name: Mini ZIF - - id: 12264 - name: mSATA - - id: 12265 - name: NVMe - - id: 12266 - name: NVMe 3.0 - - id: 12267 - name: Parallel ATA - - id: 12268 - name: PCI express - - id: 12269 - name: PCI express 2.0 - - id: 12270 - name: PCI express 3.0 - - id: 12271 - name: PCI express 3.1 - - id: 12272 - name: PCI express 4.0 - - id: 12273 - name: PCI express 5.0 - - id: 12274 - name: SAS - - id: 12275 - name: SAS-2 - - id: 12276 - name: SAS-3 - - id: 12277 - name: SAS-4 - - id: 12278 - name: SATA II - - id: 12279 - name: SATA III - - id: 12280 - name: Serial ATA - - id: 12281 - name: Serial ATA II - - id: 12282 - name: Serial ATA III - - id: 12283 - name: Serial attached SCSI - - id: 12284 - name: Ultra M.2 - - id: 12285 - name: ZIF -- id: 1847 - name: Wi-Fi standard - friendly_id: wi_fi_standard - values: - - id: 12286 - name: 802.11a - - id: 12287 - name: 802.11ac - - id: 12288 - name: 802.11ax - - id: 12289 - name: 802.11b - - id: 12290 - name: 802.11g - - id: 12291 - name: 802.11n -- id: 1848 - name: Radio case design - friendly_id: radio_case_design - values: - - id: 372 - name: Other - - id: 8451 - name: Fixed - - id: 11316 - name: Swivel -- id: 1849 - name: Handset type - friendly_id: handset_type - values: - - id: 10989 - name: Corded - - id: 12292 - name: Cordless -- id: 1850 - name: Telephone style - friendly_id: telephone_style - values: - - id: 392 - name: Standard - - id: 7961 - name: Vintage - - id: 12293 - name: Business - - id: 12294 - name: Candlestick - - id: 12295 - name: Novelty - - id: 12296 - name: Trimline - - id: 12297 - name: Wall-mountable -- id: 1851 - name: Feet type - friendly_id: feet_type - values: - - id: 764 - name: Rubber - - id: 8452 - name: Retractable - - id: 12298 - name: Pivoting - - id: 12299 - name: Spiked -- id: 1852 - name: Leg lock type - friendly_id: leg_lock_type - values: - - id: 7315 - name: Twist lock - - id: 12300 - name: Flip lock - - id: 12301 - name: Push-pull lock -- id: 1853 - name: Leg sections - friendly_id: leg_sections - values: - - id: 2879 - name: '1' - - id: 2885 - name: '2' - - id: 2896 - name: '4' - - id: 2938 - name: '3' - - id: 12302 - name: 5+ -- id: 1854 - name: Certifications & standards - friendly_id: certifications_and_standards - values: - - id: 372 - name: Other - - id: 7262 - name: BPA-free - - id: 7263 - name: CE certified - - id: 7264 - name: FDA approved - - id: 7265 - name: Silicone-free -- id: 1855 - name: SIM card type - friendly_id: sim_card_type - values: - - id: 12306 - name: eSIM - - id: 12307 - name: Micro SIM - - id: 12308 - name: Nano SIM - - id: 12309 - name: Standard SIM -- id: 1856 - name: Battery technology - friendly_id: battery_technology - values: - - id: 372 - name: Other - - id: 645 - name: Polymer - - id: 12310 - name: Alkaline - - id: 12311 - name: Gel cell - - id: 12312 - name: Lead-calcium (Pb-Ca) - - id: 12313 - name: Lithium - - id: 12314 - name: Lithium cobalt oxide (LiCoO2) - - id: 12315 - name: Lithium imide (Li2NH) - - id: 12316 - name: Lithium iron phosphate (LiFePO4) - - id: 12317 - name: Lithium nickel cobalt aluminum oxide (LiNCA) - - id: 12318 - name: Lithium nickel manganese cobalt oxide (LiNMC) - - id: 12319 - name: Lithium polymer (LiPo) - - id: 12320 - name: Lithium thionyl chloride (LiSOCl2) - - id: 12321 - name: Lithium-ion (Li-ion) - - id: 12322 - name: Lithium-ion high density (LiHD) - - id: 12323 - name: Lithium-manganese dioxide (LiMnO2) - - id: 12324 - name: Nickel-cadmium (NiCd) - - id: 12325 - name: Nickel-metal hydride (NiMH) - - id: 12326 - name: Nickel-oxyhydroxide (NiOx) - - id: 12327 - name: Nickel-zinc (NiZn) - - id: 12328 - name: Sealed lead acid - - id: 12329 - name: Silver-oxide (Ag2O) - - id: 12330 - name: VRLA - - id: 12331 - name: Zinc chloride - - id: 12332 - name: Zinc-air - - id: 12333 - name: Zinc-carbon - - id: 12334 - name: Zinc-manganese dioxide (Zn/MnO2) -- id: 1857 - name: Cosmetic condition - friendly_id: cosmetic_condition - values: - - id: 12335 - name: New - - id: 12336 - name: Opened-never used - - id: 12337 - name: Refurbished-certified - - id: 12338 - name: Refurbished-excellent - - id: 12339 - name: Refurbished-fair - - id: 12340 - name: Refurbished-good - - id: 12341 - name: Refurbished-very good -- id: 1858 - name: Data network - friendly_id: data_network - values: - - id: 1542 - name: LTE - - id: 12342 - name: 3G - - id: 12343 - name: 4G - - id: 12344 - name: 5G -- id: 1859 - name: Operating system - friendly_id: operating_system - values: - - id: 10193 - name: iOS - - id: 10194 - name: Android - - id: 10195 - name: Windows - - id: 10196 - name: macOS - - id: 12345 - name: Chrome OS - - id: 12346 - name: Fire OS - - id: 12347 - name: FreeBSD - - id: 12348 - name: Linux - - id: 12349 - name: Tizen - - id: 12350 - name: tvOS - - id: 12351 - name: Unix - - id: 12352 - name: watchOS - - id: 12353 - name: webOS - - id: 13404 - name: Android TV - - id: 15832 - name: Raspberry Pi OS - - id: 16295 - name: Cross-platform -- id: 1860 - name: Removable storage formats supported - friendly_id: removable_storage_formats_supported - values: - - id: 372 - name: Other - - id: 11709 - name: SD - - id: 12354 - name: CF - - id: 12355 - name: CF Type II - - id: 12356 - name: CF+ - - id: 12357 - name: CFast - - id: 12358 - name: CFast 2.0 - - id: 12359 - name: CFexpress - - id: 12360 - name: DV RS-MMC - - id: 12361 - name: EXD - - id: 12362 - name: expressP2 - - id: 12363 - name: Eye-Fi - - id: 12364 - name: FLU - - id: 12365 - name: HC MMC+ - - id: 12366 - name: Microdrive - - id: 12367 - name: MicroP2 - - id: 12368 - name: microSD - - id: 12369 - name: microSDHC - - id: 12370 - name: microSDXC - - id: 12371 - name: MiniMMC - - id: 12372 - name: MiniSD - - id: 12373 - name: MiniSDHC - - id: 12374 - name: MiniSDXC - - id: 12375 - name: MMC - - id: 12376 - name: MMC micro - - id: 12377 - name: MMC mobile - - id: 12378 - name: MMC plus - - id: 12379 - name: MMC+ - - id: 12380 - name: MS - - id: 12381 - name: MS duo - - id: 12382 - name: MS micro (M2) - - id: 12383 - name: MS PRO - - id: 12384 - name: MS PRO duo - - id: 12385 - name: MS PRO duo HS - - id: 12386 - name: MS PRO duo mark 2 - - id: 12387 - name: MS Pro-HG - - id: 12388 - name: MS Pro-HG duo - - id: 12389 - name: MS Pro-HG duo HX - - id: 12390 - name: MS XC-HG duo - - id: 12391 - name: MSXC - - id: 12392 - name: Nano memory (NM) - - id: 12393 - name: P2 - - id: 12394 - name: PSVita - - id: 12395 - name: RS-MMC - - id: 12396 - name: SDHC - - id: 12397 - name: SDIO - - id: 12398 - name: SDXC - - id: 12399 - name: Smart media xD - - id: 12400 - name: Smartmedia - - id: 12401 - name: SRMemory - - id: 12402 - name: SxS - - id: 12403 - name: SxS Pro - - id: 12404 - name: SxS-1 - - id: 12405 - name: USB flash drive - - id: 12407 - name: xD-picture card - - id: 12408 - name: XQD - - id: 13575 - name: xD -- id: 1861 - name: SIM card capability - friendly_id: sim_card_capability - values: - - id: 7229 - name: Single - - id: 10549 - name: Dual - - id: 10984 - name: Triple - - id: 12409 - name: Hybrid dual - - id: 12410 - name: Embedded -- id: 1862 - name: SIM card type 1 - friendly_id: sim_card_type_1 - values: - - id: 12306 - name: eSIM - - id: 12307 - name: Micro SIM - - id: 12308 - name: Nano SIM - - id: 12309 - name: Standard SIM -- id: 1863 - name: SIM card type 2 - friendly_id: sim_card_type_2 - values: - - id: 12306 - name: eSIM - - id: 12307 - name: Micro SIM - - id: 12308 - name: Nano SIM - - id: 12309 - name: Standard SIM -- id: 1864 - name: Subscription type - friendly_id: subscription_type - values: - - id: 11576 - name: Satellite - - id: 12411 - name: Contract - - id: 12412 - name: Pay as you go - - id: 12413 - name: Post-paid - - id: 12414 - name: Pre-paid - - id: 12415 - name: Unlocked -- id: 1865 - name: Satellite coverage area - friendly_id: satellite_coverage_area - values: - - id: 8807 - name: Australia - - id: 12416 - name: Africa - - id: 12417 - name: Asia - - id: 12418 - name: Central Europe - - id: 12419 - name: East Africa - - id: 12420 - name: Eastern Europe - - id: 12421 - name: Europe - - id: 12422 - name: Middle Africa - - id: 12423 - name: North Africa - - id: 12424 - name: North America - - id: 12425 - name: South America - - id: 12426 - name: South East Asia - - id: 12427 - name: Southern Africa - - id: 12428 - name: Western Africa - - id: 12429 - name: Western Europe -- id: 1866 - name: Satellite network type - friendly_id: satellite_network_type - values: - - id: 12430 - name: Globalstar - - id: 12431 - name: Inmarsat - - id: 12432 - name: Iridium - - id: 12433 - name: Thuraya -- id: 1867 - name: Modulation method - friendly_id: modulation_method - values: - - id: 11679 - name: AM - - id: 11685 - name: FM - - id: 11714 - name: PCM - - id: 11754 - name: QAM - - id: 11978 - name: PWM - - id: 12434 - name: GFSK - - id: 12435 - name: OFDM - - id: 12436 - name: PAM - - id: 12437 - name: PM - - id: 12438 - name: PPM -- id: 1868 - name: Splitter use - friendly_id: splitter_use - values: - - id: 7271 - name: USB - - id: 11570 - name: DVI - - id: 11571 - name: Ethernet - - id: 11573 - name: HDMI - - id: 11624 - name: Coaxial - - id: 11665 - name: VGA - - id: 12439 - name: Audio - - id: 12440 - name: Power - - id: 12441 - name: Video -- id: 1869 - name: Processor family - friendly_id: processor_family - values: - - id: 372 - name: Other - - id: 12075 - name: Intel celeron - - id: 12086 - name: Intel core i3 - - id: 12087 - name: Intel core i5 - - id: 12088 - name: Intel core i7 - - id: 12090 - name: Intel core i9 - - id: 12095 - name: Intel pentium - - id: 12106 - name: Intel xeon - - id: 12442 - name: AMD Ryzen - - id: 12443 - name: Apple M1 - - id: 12444 - name: ARM Cortex - - id: 12445 - name: IBM power - - id: 12446 - name: MediaTek helio - - id: 12447 - name: Nvidia tegra - - id: 12448 - name: Qualcomm snapdragon - - id: 12449 - name: Samsung exynos -- id: 1870 - name: Chassis type - friendly_id: chassis_type - values: - - id: 10182 - name: Desktop - - id: 11119 - name: Compact - - id: 11439 - name: Pedestal - - id: 11444 - name: Wall-mounted - - id: 11803 - name: Tower - - id: 12450 - name: All-in-one - - id: 12451 - name: Blade server - - id: 12452 - name: Cube - - id: 12453 - name: Full tower - - id: 12454 - name: JBOD - - id: 12455 - name: Micro ATX - - id: 12456 - name: Mid tower - - id: 12457 - name: Mini tower - - id: 12458 - name: Modular - - id: 12459 - name: NAS - - id: 12460 - name: Open frame - - id: 12461 - name: Rack mount - - id: 12462 - name: SAN - - id: 12463 - name: SFF - - id: 12464 - name: Storage enclosure -- id: 1871 - name: Computer form - friendly_id: computer_form - values: - - id: 396 - name: Convertible - - id: 11119 - name: Compact - - id: 12450 - name: All-in-one - - id: 12451 - name: Blade server - - id: 12454 - name: JBOD - - id: 12459 - name: NAS - - id: 12462 - name: SAN - - id: 12464 - name: Storage enclosure - - id: 12465 - name: Chromebook - - id: 12466 - name: Cloud client - - id: 12467 - name: Netbook - - id: 12468 - name: Notebook - - id: 12469 - name: Remote desktop client - - id: 12470 - name: Ultrabook - - id: 12471 - name: USF - - id: 12472 - name: VDI client - - id: 12473 - name: Workstation - - id: 12474 - name: Zero client -- id: 1872 - name: Cooling technology - friendly_id: cooling_technology - values: - - id: 7023 - name: Air - - id: 7026 - name: Water - - id: 7083 - name: Hybrid - - id: 7406 - name: Liquid - - id: 7522 - name: Active - - id: 8455 - name: Blower - - id: 11803 - name: Tower - - id: 12475 - name: Closed-loop - - id: 12476 - name: Direct-to-die - - id: 12477 - name: Dual-fan - - id: 12478 - name: Fan - - id: 12479 - name: Heat pipe - - id: 12480 - name: Heat sink - - id: 12481 - name: Micro-fin - - id: 12482 - name: Open-loop - - id: 12483 - name: Passive - - id: 12484 - name: Peltier - - id: 12485 - name: Phase-change - - id: 12486 - name: Radiator - - id: 12487 - name: Vapor chamber -- id: 1873 - name: Graphics card type - friendly_id: graphics_card_type - values: - - id: 11193 - name: None - - id: 11713 - name: Integrated - - id: 12488 - name: Dedicated - - id: 12489 - name: Professional -- id: 1874 - name: Internal drive form factor supported - friendly_id: internal_drive_form_factor_supported - values: - - id: 12490 - name: 2.5-inch - - id: 12491 - name: 3.5-inch - - id: 12492 - name: 5.25-inch -- id: 1875 - name: Memory form factor - friendly_id: memory_form_factor - values: - - id: 12121 - name: DIMM - - id: 12493 - name: Micro-DIMM - - id: 12494 - name: RIMM - - id: 12495 - name: SIMM - - id: 12496 - name: SO-DIMM -- id: 1876 - name: Storage types supported - friendly_id: storage_types_supported - values: - - id: 12459 - name: NAS - - id: 12497 - name: Cloud storage - - id: 12498 - name: eMMC - - id: 12499 - name: Hard disk drive (HDD) - - id: 12500 - name: Hybrid drive (HDD/SSD) - - id: 12501 - name: M.2 SSD - - id: 12502 - name: Optical drive - - id: 12503 - name: PCIe/NVMe SSD - - id: 12504 - name: RAID - - id: 12505 - name: SATA SSD - - id: 12506 - name: Solid-state drive (SSD) -- id: 1877 - name: Optical drive type - friendly_id: optical_drive_type - values: - - id: 10121 - name: Combo - - id: 12507 - name: Blu-ray disc - - id: 12508 - name: Blu-ray disc RE - - id: 12509 - name: CD-ROM - - id: 12510 - name: CD-RW - - id: 12511 - name: DVD-ROM - - id: 12512 - name: DVD-RW - - id: 12513 - name: DVD+RW - - id: 12514 - name: Super multi -- id: 1878 - name: E-book formats supported - friendly_id: e_book_formats_supported - values: - - id: 12518 - name: AZW - - id: 12519 - name: AZW3 - - id: 12520 - name: CBZ/CBR - - id: 12521 - name: DJVU - - id: 12522 - name: DOC/DOCX - - id: 12523 - name: EPUB - - id: 12524 - name: HTML - - id: 12525 - name: MOBI - - id: 12526 - name: PDF - - id: 12527 - name: RTF - - id: 12528 - name: TXT -- id: 1879 - name: Keyboard type - friendly_id: keyboard_type - values: - - id: 392 - name: Standard - - id: 632 - name: Butterfly - - id: 6971 - name: Mechanical - - id: 11119 - name: Compact - - id: 12529 - name: Backlit - - id: 12530 - name: Detachable - - id: 12531 - name: Island-style - - id: 12532 - name: Scissor switch - - id: 12533 - name: Touchscreen -- id: 1880 - name: VDI protocol support - friendly_id: vdi_protocol_support - values: - - id: 12534 - name: Blast extreme - - id: 12535 - name: ICA/HDX - - id: 12536 - name: PCoIP - - id: 12537 - name: RDP - - id: 12538 - name: VDI -- id: 1881 - name: Touch capabilities - friendly_id: touch_capabilities - values: - - id: 7229 - name: Single - - id: 10549 - name: Dual - - id: 12539 - name: Multi -- id: 1882 - name: Touchscreen technology - friendly_id: touchscreen_technology - values: - - id: 372 - name: Other - - id: 7751 - name: Infrared - - id: 8052 - name: Optical - - id: 12540 - name: Capacitive - - id: 12541 - name: In-cell - - id: 12542 - name: On-cell - - id: 12543 - name: Optical imaging - - id: 12544 - name: PCAP - - id: 12545 - name: Resistive - - id: 12546 - name: SAW -- id: 1883 - name: Angles supported - friendly_id: angles_supported - values: - - id: 395 - name: Adjustable - - id: 12547 - name: 0° to 180° - - id: 12548 - name: 180° - - id: 12549 - name: 270° - - id: 12550 - name: 30° to 75° - - id: 12551 - name: 360° - - id: 12552 - name: 45° to 90° - - id: 12553 - name: 90° -- id: 1884 - name: Rotator control technology - friendly_id: rotator_control_technology - values: - - id: 1252 - name: Wi-Fi - - id: 1656 - name: Digital - - id: 6977 - name: Manual - - id: 7193 - name: Motorized - - id: 7346 - name: Wired - - id: 11743 - name: Automatic - - id: 12554 - name: Computer - - id: 12555 - name: Programmable - - id: 12556 - name: Remote - - id: 12557 - name: Smartphone app -- id: 1885 - name: LNB output - friendly_id: lnb_output - values: - - id: 7228 - name: Quad - - id: 7229 - name: Single - - id: 10549 - name: Dual - - id: 12558 - name: Multi-switch - - id: 12559 - name: Octo -- id: 1886 - name: LNB technology - friendly_id: lnb_technology - values: - - id: 392 - name: Standard - - id: 6883 - name: Universal - - id: 7083 - name: Hybrid - - id: 11707 - name: HD - - id: 12560 - name: 4K - - id: 12561 - name: C-band - - id: 12562 - name: Circular polarization - - id: 12563 - name: DiSEqC - - id: 12564 - name: Dual polarization - - id: 12565 - name: High gain - - id: 12566 - name: Ka-band - - id: 12567 - name: Ku-band - - id: 12568 - name: Low noise - - id: 12569 - name: Monoblock - - id: 12570 - name: SCR - - id: 12571 - name: Unicable - - id: 12572 - name: Wideband -- id: 1887 - name: Polarization - friendly_id: polarization - values: - - id: 8167 - name: Horizontal - - id: 8168 - name: Vertical - - id: 11567 - name: Elliptical - - id: 12573 - name: Circular - - id: 12574 - name: Left-hand circular - - id: 12575 - name: Linear - - id: 12576 - name: Right hand circular -- id: 1888 - name: Compatible HDCP - friendly_id: compatible_hdcp - values: - - id: 12577 - name: HDCP 1.4 - - id: 12578 - name: HDCP 2.2 - - id: 12579 - name: HDCP 2.3 - - id: 12580 - name: Not compatible -- id: 1889 - name: Switching method - friendly_id: switching_method - values: - - id: 6977 - name: Manual - - id: 7745 - name: Rotary - - id: 11210 - name: Push-button - - id: 11743 - name: Automatic - - id: 12581 - name: HDMI CEC - - id: 12582 - name: Keyboard hotkey - - id: 12583 - name: Priority - - id: 12584 - name: Remote control - - id: 12585 - name: Software-controlled -- id: 1890 - name: Panel specification - friendly_id: panel_specification - values: - - id: 11444 - name: Wall-mounted - - id: 12458 - name: Modular - - id: 12600 - name: Blank - - id: 12601 - name: Cat5e - - id: 12602 - name: Cat6 - - id: 12603 - name: Cat6a - - id: 12604 - name: Cat7 - - id: 12605 - name: Fiber optic - - id: 12606 - name: Rack-mounted -- id: 1891 - name: Panel termination - friendly_id: panel_termination - values: - - id: 12607 - name: 110 punch down - - id: 12608 - name: Krone punch down - - id: 12609 - name: LC connector - - id: 12610 - name: RJ-11 - - id: 12611 - name: RJ-45 - - id: 12612 - name: SC connector - - id: 12613 - name: Solder - - id: 12614 - name: ST connector - - id: 12615 - name: Toolless -- id: 1892 - name: Cable shielding - friendly_id: cable_shielding - values: - - id: 12616 - name: Braided (STP) - - id: 12617 - name: Foil (FTP) - - id: 12618 - name: Foil & braided (SFTP) - - id: 12619 - name: Overall foil (S/FTP) - - id: 12620 - name: Unshielded (UTP) -- id: 1893 - name: Input connection - friendly_id: input_connection - values: - - id: 372 - name: Other - - id: 1251 - name: Bluetooth - - id: 1252 - name: Wi-Fi - - id: 7271 - name: USB - - id: 7751 - name: Infrared - - id: 7786 - name: RFID - - id: 11570 - name: DVI - - id: 11571 - name: Ethernet - - id: 11573 - name: HDMI - - id: 11575 - name: NFC - - id: 11576 - name: Satellite - - id: 11614 - name: 12G-SDI - - id: 11615 - name: 2.5 mm - - id: 11616 - name: 3.5 mm - - id: 11617 - name: 3G-SDI - - id: 11618 - name: 6.35 mm - - id: 11619 - name: 6G-SDI - - id: 11620 - name: AUX - - id: 11621 - name: Banana connector - - id: 11622 - name: Binding post - - id: 11623 - name: BNC - - id: 11624 - name: Coaxial - - id: 11625 - name: Coaxial (F-Type) - - id: 11626 - name: Component video - - id: 11627 - name: Composite video - - id: 11628 - name: DIN - - id: 11629 - name: Display port - - id: 11630 - name: DVI-I - - id: 11631 - name: eSATA - - id: 11632 - name: Firewire - - id: 11633 - name: HD-SDI - - id: 11634 - name: I2C - - id: 11635 - name: IDE (PATA) - - id: 11636 - name: Lightning - - id: 11637 - name: M.2 - - id: 11638 - name: Micro BNC - - id: 11639 - name: Micro DIN - - id: 11640 - name: Micro SD card - - id: 11641 - name: Micro USB - - id: 11642 - name: Micro XLR - - id: 11643 - name: Micro-VGA - - id: 11644 - name: Mini-DIN - - id: 11645 - name: Mini-VGA - - id: 11646 - name: Molex - - id: 11647 - name: NL2 - - id: 11648 - name: NL4 - - id: 11649 - name: PCIe - - id: 11650 - name: PS/2 - - id: 11651 - name: RCA - - id: 11652 - name: S-video - - id: 11653 - name: SATA - - id: 11654 - name: SCART - - id: 11655 - name: SCSI - - id: 11656 - name: SD card - - id: 11657 - name: SDI - - id: 11658 - name: SMA - - id: 11659 - name: SPI - - id: 11660 - name: Tethering - - id: 11661 - name: Thunderbolt - - id: 11662 - name: TOSLINK - - id: 11663 - name: TRS - - id: 11664 - name: UART - - id: 11665 - name: VGA - - id: 11666 - name: Wireless charging - - id: 11667 - name: Wireless display - - id: 11668 - name: XLR - - id: 11669 - name: XLR-5 - - id: 13572 - name: MIDI -- id: 1894 - name: Output connection - friendly_id: output_connection - values: - - id: 372 - name: Other - - id: 1251 - name: Bluetooth - - id: 1252 - name: Wi-Fi - - id: 7271 - name: USB - - id: 7751 - name: Infrared - - id: 7786 - name: RFID - - id: 11570 - name: DVI - - id: 11571 - name: Ethernet - - id: 11573 - name: HDMI - - id: 11575 - name: NFC - - id: 11576 - name: Satellite - - id: 11614 - name: 12G-SDI - - id: 11615 - name: 2.5 mm - - id: 11616 - name: 3.5 mm - - id: 11617 - name: 3G-SDI - - id: 11618 - name: 6.35 mm - - id: 11619 - name: 6G-SDI - - id: 11620 - name: AUX - - id: 11621 - name: Banana connector - - id: 11622 - name: Binding post - - id: 11623 - name: BNC - - id: 11624 - name: Coaxial - - id: 11625 - name: Coaxial (F-Type) - - id: 11626 - name: Component video - - id: 11627 - name: Composite video - - id: 11628 - name: DIN - - id: 11629 - name: Display port - - id: 11630 - name: DVI-I - - id: 11631 - name: eSATA - - id: 11632 - name: Firewire - - id: 11633 - name: HD-SDI - - id: 11634 - name: I2C - - id: 11635 - name: IDE (PATA) - - id: 11636 - name: Lightning - - id: 11637 - name: M.2 - - id: 11638 - name: Micro BNC - - id: 11639 - name: Micro DIN - - id: 11640 - name: Micro SD card - - id: 11641 - name: Micro USB - - id: 11642 - name: Micro XLR - - id: 11643 - name: Micro-VGA - - id: 11644 - name: Mini-DIN - - id: 11645 - name: Mini-VGA - - id: 11646 - name: Molex - - id: 11647 - name: NL2 - - id: 11648 - name: NL4 - - id: 11649 - name: PCIe - - id: 11650 - name: PS/2 - - id: 11651 - name: RCA - - id: 11652 - name: S-video - - id: 11653 - name: SATA - - id: 11654 - name: SCART - - id: 11655 - name: SCSI - - id: 11656 - name: SD card - - id: 11657 - name: SDI - - id: 11658 - name: SMA - - id: 11659 - name: SPI - - id: 11660 - name: Tethering - - id: 11661 - name: Thunderbolt - - id: 11662 - name: TOSLINK - - id: 11663 - name: TRS - - id: 11664 - name: UART - - id: 11665 - name: VGA - - id: 11666 - name: Wireless charging - - id: 11667 - name: Wireless display - - id: 11668 - name: XLR - - id: 11669 - name: XLR-5 - - id: 13572 - name: MIDI -- id: 1895 - name: Network cable interface - friendly_id: network_cable_interface - values: - - id: 11623 - name: BNC - - id: 12610 - name: RJ-11 - - id: 12611 - name: RJ-45 - - id: 12621 - name: LC - - id: 12622 - name: MPO/MTP - - id: 12623 - name: MT-RJ - - id: 12624 - name: SC - - id: 12625 - name: ST -- id: 1896 - name: Telephone cable interface - friendly_id: telephone_cable_interface - values: - - id: 12610 - name: RJ-11 - - id: 12611 - name: RJ-45 - - id: 12626 - name: RJ-10 - - id: 12627 - name: RJ-12 - - id: 12628 - name: RJ-14 - - id: 12629 - name: RJ-22 - - id: 12630 - name: RJ-25 - - id: 12631 - name: RJ-45S - - id: 12632 - name: RJ-9 -- id: 1897 - name: Computer accessories included - friendly_id: computer_accessories_included - values: - - id: 8209 - name: Mouse - - id: 11548 - name: Headset - - id: 12633 - name: Keyboard - - id: 12634 - name: Laptop bag - - id: 12635 - name: Monitor stand - - id: 12636 - name: Mouse pad - - id: 12637 - name: USB hub -- id: 1898 - name: Compatible motherboard form factor - friendly_id: compatible_motherboard_form_factor - values: - - id: 372 - name: Other - - id: 12167 - name: ATX - - id: 12168 - name: Extended ATX - - id: 12169 - name: FlexATX - - id: 12170 - name: Micro-ATX - - id: 12171 - name: Mini-DTX - - id: 12172 - name: Mini-ITX - - id: 12173 - name: Nano-ITX -- id: 1899 - name: Instruction set architecture - friendly_id: instruction_set_architecture - values: - - id: 12638 - name: 32-bit - - id: 12639 - name: 64-bit -- id: 1900 - name: Memory channels - friendly_id: memory_channels - values: - - id: 7228 - name: Quad - - id: 7229 - name: Single - - id: 10549 - name: Dual - - id: 10984 - name: Triple - - id: 12640 - name: Dodeca - - id: 12641 - name: Hepta - - id: 12642 - name: Hexa - - id: 12643 - name: Hexadeca - - id: 12644 - name: Octa - - id: 12645 - name: Penta - - id: 12646 - name: Tetracosa -- id: 1901 - name: Processor cores - friendly_id: processor_cores - values: - - id: 7228 - name: Quad - - id: 7229 - name: Single - - id: 10549 - name: Dual - - id: 12539 - name: Multi - - id: 12640 - name: Dodeca - - id: 12642 - name: Hexa - - id: 12643 - name: Hexadeca - - id: 12644 - name: Octa - - id: 12647 - name: Deca -- id: 1902 - name: Barcode scanner interface - friendly_id: barcode_scanner_interface - values: - - id: 1251 - name: Bluetooth - - id: 7271 - name: USB - - id: 11571 - name: Ethernet - - id: 11636 - name: Lightning - - id: 11650 - name: PS/2 - - id: 11719 - name: USB type-C - - id: 12656 - name: Keyboard wedge - - id: 12657 - name: Proprietary connector - - id: 12658 - name: RS-232 - - id: 12659 - name: Serial - - id: 12660 - name: Wireless (RF) -- id: 1903 - name: Barcode supported - friendly_id: barcode_supported - values: - - id: 12661 - name: 1D - - id: 12662 - name: 2D -- id: 1904 - name: Scanner sensor type - friendly_id: scanner_sensor_type - values: - - id: 372 - name: Other - - id: 7752 - name: Laser - - id: 12663 - name: 2D imager - - id: 12664 - name: CCD - - id: 12665 - name: CIS - - id: 12666 - name: Linear imager -- id: 1905 - name: Compatible electronic card type - friendly_id: compatible_electronic_card_type - values: - - id: 7727 - name: Transportation - - id: 7786 - name: RFID - - id: 7789 - name: Biometric - - id: 11808 - name: Smart - - id: 12667 - name: Access control - - id: 12668 - name: Contactless - - id: 12669 - name: Credit & debit - - id: 12670 - name: EMV - - id: 12671 - name: Gift - - id: 12672 - name: Health insurance - - id: 12673 - name: HID - - id: 12674 - name: Library - - id: 12675 - name: Loyalty - - id: 12676 - name: Magnetic stripe - - id: 12677 - name: Membership - - id: 12678 - name: Mifare - - id: 12679 - name: Proximity - - id: 12680 - name: SIM - - id: 12681 - name: Student ID -- id: 1906 - name: Fingerprint capture method - friendly_id: fingerprint_capture_method - values: - - id: 7756 - name: Ultrasonic - - id: 8052 - name: Optical - - id: 12540 - name: Capacitive - - id: 12682 - name: Multispectral - - id: 12683 - name: Thermal -- id: 1907 - name: Systems supported - friendly_id: systems_supported - values: - - id: 372 - name: Other - - id: 12684 - name: Atari 2600 - - id: 12688 - name: Nintendo Wii - - id: 12689 - name: Nintendo Wii U - - id: 12698 - name: Xbox - - id: 12699 - name: Xbox 360 - - id: 16481 - name: Atari 7800 - - id: 16483 - name: Game Boy - - id: 16484 - name: Neo Geo - - id: 16485 - name: Nintendo 2DS - - id: 16486 - name: Nintendo 3DS - - id: 16487 - name: Nintendo 64 - - id: 16488 - name: Nintendo DS - - id: 16489 - name: Nintendo Entertainment System (NES) - - id: 16490 - name: Nintendo GameCube - - id: 16491 - name: Nintendo Switch - - id: 16492 - name: PlayStation 1 - - id: 16493 - name: PlayStation 2 - - id: 16494 - name: PlayStation 3 - - id: 16495 - name: PlayStation 4 - - id: 16496 - name: PlayStation 5 - - id: 16497 - name: PlayStation Portable (PSP) - - id: 16498 - name: PlayStation Vita - - id: 16499 - name: Sega Dreamcast - - id: 16500 - name: Sega Genesis - - id: 16501 - name: Sega Saturn - - id: 16502 - name: Super Nintendo Entertainment System (SNES) - - id: 16504 - name: Xbox One - - id: 16926 - name: Xbox Series XS -- id: 1908 - name: Instrument controller type - friendly_id: instrument_controller_type - values: - - id: 11812 - name: Microphone - - id: 12633 - name: Keyboard - - id: 12702 - name: Bass guitar - - id: 12703 - name: DJ turntable - - id: 12704 - name: Drum set - - id: 12705 - name: Guitar - - id: 12706 - name: Violin - - id: 12707 - name: Wind instrument -- id: 1909 - name: Keyboard format - friendly_id: keyboard_format - values: - - id: 4293 - name: Mini - - id: 4324 - name: Split - - id: 8637 - name: '0.65' - - id: 8640 - name: '0.75' - - id: 11119 - name: Compact - - id: 12708 - name: '0.4' - - id: 12709 - name: '0.6' - - id: 12710 - name: Ergonomic - - id: 12711 - name: Full-size - - id: 12712 - name: Tenkeyless (TKL) -- id: 1910 - name: Keyboard language - friendly_id: keyboard_language - values: - - id: 12713 - name: AFR- Afrikaans - - id: 12714 - name: ALB- Albanian - - id: 12715 - name: ARA- Arabic - - id: 12716 - name: ARM- Armenian - - id: 12717 - name: BAQ- Basque - - id: 12718 - name: BRA- Brazilian Portuguese - - id: 12719 - name: BUL- Bulgarian - - id: 12720 - name: CAT- Catalan - - id: 12721 - name: CHI (simpl)- Chinese (simplified) - - id: 12722 - name: CHI (tr)- Chinese (traditional) - - id: 12723 - name: CRO- Croatian - - id: 12724 - name: CZE- Czech - - id: 12725 - name: DAN- Danish - - id: 12726 - name: DEU- German - - id: 12727 - name: DEU-BE- German (Belgium) - - id: 12728 - name: DEU-CH- German (Switzerland) - - id: 12729 - name: DUT- Dutch - - id: 12730 - name: DUT-BE- Dutch (Belgium) - - id: 12731 - name: ENG- English - - id: 12732 - name: ENG-IN- English (India) - - id: 12733 - name: ENG-SG- English (Singapore) - - id: 12734 - name: ENG-US- English (United States) - - id: 12735 - name: EPO- Esperanto - - id: 12736 - name: ESP- Spanish - - id: 12737 - name: ESP-MX- Spanish (Mexico) - - id: 12738 - name: EST- Estonian - - id: 12739 - name: FAS- Farsi - - id: 12740 - name: FIN- Finnish - - id: 12741 - name: FRE- French - - id: 12742 - name: FRE-BE- French (Belgium) - - id: 12743 - name: FRE-CH- French (Switzerland) - - id: 12744 - name: GEO- Georgian - - id: 12745 - name: GLG- Galician - - id: 12746 - name: GRE- Greek - - id: 12747 - name: GSW- Swiss German - - id: 12748 - name: HEB- Hebrew - - id: 12749 - name: HIN- Hindi - - id: 12750 - name: HRV- Croatian - - id: 12751 - name: HUN- Hungarian - - id: 12752 - name: ICE- Icelandic - - id: 12753 - name: INC- Indonesian - - id: 12754 - name: IND- Indonesian - - id: 12755 - name: IRA- Iranian - - id: 12756 - name: ITA- Italian - - id: 12757 - name: JPN- Japanese - - id: 12758 - name: KAZ- Kazakh - - id: 12759 - name: KIR- Kirghiz - - id: 12760 - name: KOR- Korean - - id: 12761 - name: KUR- Kurdish - - id: 12762 - name: LAT- Latin - - id: 12763 - name: LAV- Latvian - - id: 12764 - name: LIT- Lithuanian - - id: 12765 - name: MAL- Malay - - id: 12766 - name: MDR- Mandar - - id: 12767 - name: MON- Mongolian - - id: 12768 - name: Multilingual- multilingual (not specific to one language) - - id: 12769 - name: NEP- Nepali - - id: 12770 - name: NOR- Norwegian - - id: 12771 - name: PER- Persian - - id: 12772 - name: PHI- Filipino - - id: 12773 - name: POL- Polish - - id: 12774 - name: POR- Portuguese - - id: 12775 - name: POR-BRA- Portuguese (Brazil) - - id: 12776 - name: ROH- Romansh - - id: 12777 - name: RUM- Romanian - - id: 12778 - name: RUS- Russian - - id: 12779 - name: SCR- Croatian - - id: 12780 - name: SLK- Slovak - - id: 12781 - name: SLV- Slovenian - - id: 12782 - name: SRP- Serbian - - id: 12783 - name: SWE- Swedish - - id: 12784 - name: TGL- Tagalog - - id: 12785 - name: THA- Thai - - id: 12786 - name: TIB- Tibetan - - id: 12787 - name: TUR- Turkish - - id: 12788 - name: UKR- Ukrainian - - id: 12789 - name: VIE- Vietnamese -- id: 1911 - name: Keyboard layout - friendly_id: keyboard_layout - values: - - id: 12790 - name: ĄŽERTY - - id: 12791 - name: BÉPO - - id: 12792 - name: Colemak - - id: 12793 - name: DVORAK - - id: 12794 - name: Hangul - - id: 12795 - name: JIS - - id: 12796 - name: QWERTY - - id: 12797 - name: QWERTZ - - id: 12798 - name: QZERTY - - id: 12799 - name: Workman -- id: 1912 - name: Keyboard switch type - friendly_id: keyboard_switch_type - values: - - id: 12575 - name: Linear - - id: 12800 - name: Clicky - - id: 12801 - name: Tactile -- id: 1913 - name: Pointing device - friendly_id: pointing_device - values: - - id: 12802 - name: D-pad - - id: 12803 - name: Mouse buttons - - id: 12804 - name: Pointing stick - - id: 12805 - name: Scroll wheel - - id: 12806 - name: Touchpad - - id: 12807 - name: Trackball -- id: 1914 - name: Keyboard port type - friendly_id: keyboard_port_type - values: - - id: 11650 - name: PS/2 - - id: 11719 - name: USB type-C - - id: 12808 - name: USB type-A - - id: 12809 - name: USB type-B -- id: 1915 - name: Mouse port type - friendly_id: mouse_port_type - values: - - id: 1251 - name: Bluetooth - - id: 7271 - name: USB - - id: 11650 - name: PS/2 - - id: 12810 - name: Wireless USB -- id: 1916 - name: Video port type - friendly_id: video_port_type - values: - - id: 11570 - name: DVI - - id: 11573 - name: HDMI - - id: 11629 - name: Display port - - id: 11665 - name: VGA - - id: 12811 - name: USB-C -- id: 1917 - name: Mouse technology - friendly_id: mouse_technology - values: - - id: 1251 - name: Bluetooth - - id: 6971 - name: Mechanical - - id: 7347 - name: Wireless - - id: 7673 - name: 3D - - id: 7752 - name: Laser - - id: 8052 - name: Optical - - id: 8168 - name: Vertical - - id: 12807 - name: Trackball - - id: 12812 - name: Gaming - - id: 12813 - name: Stylus -- id: 1918 - name: Read/Write speed - friendly_id: read_write_speed - values: - - id: 12814 - name: 1x - - id: 12815 - name: 4x - - id: 12816 - name: 8x - - id: 12817 - name: 16x - - id: 12818 - name: 24x - - id: 12819 - name: 48x - - id: 12820 - name: 52x -- id: 1919 - name: Host interface - friendly_id: host_interface - values: - - id: 11457 - name: USB 2.0 - - id: 11458 - name: USB 3.1 gen 1 - - id: 11460 - name: USB 3.2 gen 2 - - id: 11631 - name: eSATA - - id: 11653 - name: SATA - - id: 11719 - name: USB type-C - - id: 12821 - name: Firewire (IEEE 1394) - - id: 12822 - name: Thunderbolt 2 - - id: 12823 - name: Thunderbolt 3 -- id: 1920 - name: Storage drive interface type - friendly_id: storage_drive_interface_type - values: - - id: 372 - name: Other - - id: 11631 - name: eSATA - - id: 11637 - name: M.2 - - id: 11653 - name: SATA - - id: 12253 - name: FCAL - - id: 12254 - name: HSDL - - id: 12255 - name: IDE - - id: 12256 - name: Micro SATA - - id: 12257 - name: Micro SATA II - - id: 12258 - name: Micro SATA III - - id: 12259 - name: Micro serial ATA - - id: 12260 - name: Micro serial ATA II - - id: 12261 - name: Micro serial ATA III - - id: 12262 - name: Mini PCI express - - id: 12263 - name: Mini ZIF - - id: 12264 - name: mSATA - - id: 12265 - name: NVMe - - id: 12266 - name: NVMe 3.0 - - id: 12267 - name: Parallel ATA - - id: 12268 - name: PCI express - - id: 12269 - name: PCI express 2.0 - - id: 12270 - name: PCI express 3.0 - - id: 12271 - name: PCI express 3.1 - - id: 12272 - name: PCI express 4.0 - - id: 12273 - name: PCI express 5.0 - - id: 12274 - name: SAS - - id: 12275 - name: SAS-2 - - id: 12276 - name: SAS-3 - - id: 12277 - name: SAS-4 - - id: 12278 - name: SATA II - - id: 12279 - name: SATA III - - id: 12280 - name: Serial ATA - - id: 12281 - name: Serial ATA II - - id: 12282 - name: Serial ATA III - - id: 12283 - name: Serial attached SCSI - - id: 12284 - name: Ultra M.2 - - id: 12285 - name: ZIF -- id: 1921 - name: Storage media type - friendly_id: storage_media_type - values: - - id: 11653 - name: SATA - - id: 12255 - name: IDE - - id: 12265 - name: NVMe - - id: 12824 - name: HDD - - id: 12825 - name: SSD -- id: 1922 - name: Storage drive type installed - friendly_id: storage_drive_type_installed - values: - - id: 12459 - name: NAS - - id: 12497 - name: Cloud storage - - id: 12498 - name: eMMC - - id: 12499 - name: Hard disk drive (HDD) - - id: 12500 - name: Hybrid drive (HDD/SSD) - - id: 12501 - name: M.2 SSD - - id: 12502 - name: Optical drive - - id: 12503 - name: PCIe/NVMe SSD - - id: 12504 - name: RAID - - id: 12505 - name: SATA SSD - - id: 12506 - name: Solid-state drive (SSD) -- id: 1923 - name: Compatible battery size - friendly_id: compatible_battery_size - values: - - id: 372 - name: Other - - id: 1967 - name: A - - id: 1968 - name: B - - id: 1969 - name: C - - id: 1970 - name: D - - id: 1972 - name: F - - id: 2880 - name: '10' - - id: 2922 - name: AA - - id: 2933 - name: N - - id: 3014 - name: '13' - - id: 10985 - name: AAA - - id: 12624 - name: SC - - id: 12826 - name: '312' - - id: 12827 - name: '395' - - id: 12828 - name: '675' - - id: 12829 - name: '14500' - - id: 12830 - name: '16340' - - id: 12831 - name: '18490' - - id: 12832 - name: '18650' - - id: 12833 - name: '21700' - - id: 12834 - name: 1/2AA - - id: 12835 - name: 1/3AAA - - id: 12836 - name: 1/3N - - id: 12837 - name: 12V - - id: 12838 - name: 2/3AA - - id: 12839 - name: 2/3AAA - - id: 12840 - name: 3LR12 - - id: 12841 - name: 4.5V - - id: 12842 - name: 4LR44 - - id: 12843 - name: 4SR44 - - id: 12844 - name: 6LR61 - - id: 12845 - name: 6V - - id: 12846 - name: 9V - - id: 12847 - name: A23 - - id: 12848 - name: A27 - - id: 12849 - name: AAAA - - id: 12850 - name: BR1225 - - id: 12851 - name: CR1025 - - id: 12852 - name: CR1216 - - id: 12853 - name: CR1220 - - id: 12854 - name: CR1225 - - id: 12855 - name: CR123 - - id: 12856 - name: CR123A - - id: 12857 - name: CR1616 - - id: 12858 - name: CR1620 - - id: 12859 - name: CR1632 - - id: 12860 - name: CR2 - - id: 12861 - name: CR2012 - - id: 12862 - name: CR2016 - - id: 12863 - name: CR2025 - - id: 12864 - name: CR2032 - - id: 12865 - name: CR2320 - - id: 12866 - name: CR2325 - - id: 12867 - name: CR2330 - - id: 12868 - name: CR2354 - - id: 12869 - name: CR2430 - - id: 12870 - name: CR2450 - - id: 12871 - name: CR2477 - - id: 12872 - name: CR3032 - - id: 12873 - name: LR06 - - id: 12874 - name: LR1130 - - id: 12875 - name: LR14 - - id: 12876 - name: LR27A - - id: 12877 - name: LR32A - - id: 12878 - name: LR41 - - id: 12879 - name: LR43 - - id: 12880 - name: LR44 - - id: 12881 - name: LR54 - - id: 12882 - name: LR60 - - id: 12883 - name: LR66 - - id: 12884 - name: MN11 - - id: 12885 - name: MN21 - - id: 12886 - name: MN27 - - id: 12887 - name: PR41 - - id: 12888 - name: PR44 - - id: 12889 - name: PR70 - - id: 12890 - name: SR41 - - id: 12891 - name: SR42 - - id: 12892 - name: SR43 - - id: 12893 - name: SR43W - - id: 12894 - name: SR44 - - id: 12895 - name: SR45 - - id: 12896 - name: SR48 - - id: 12897 - name: SR54 - - id: 12898 - name: SR55 - - id: 12899 - name: SR57 - - id: 12900 - name: SR58 - - id: 12901 - name: SR59 - - id: 12902 - name: SR60 - - id: 12903 - name: SR616SW - - id: 12904 - name: SR63 - - id: 12905 - name: SR66 - - id: 12906 - name: SR69 - - id: 12907 - name: SR731SW - - id: 12908 - name: SR920SW - - id: 12909 - name: SR936SW -- id: 1924 - name: Compatible battery technology - friendly_id: compatible_battery_technology - values: - - id: 372 - name: Other - - id: 645 - name: Polymer - - id: 12310 - name: Alkaline - - id: 12311 - name: Gel cell - - id: 12312 - name: Lead-calcium (Pb-Ca) - - id: 12313 - name: Lithium - - id: 12314 - name: Lithium cobalt oxide (LiCoO2) - - id: 12315 - name: Lithium imide (Li2NH) - - id: 12316 - name: Lithium iron phosphate (LiFePO4) - - id: 12317 - name: Lithium nickel cobalt aluminum oxide (LiNCA) - - id: 12318 - name: Lithium nickel manganese cobalt oxide (LiNMC) - - id: 12319 - name: Lithium polymer (LiPo) - - id: 12320 - name: Lithium thionyl chloride (LiSOCl2) - - id: 12321 - name: Lithium-ion (Li-ion) - - id: 12322 - name: Lithium-ion high density (LiHD) - - id: 12323 - name: Lithium-manganese dioxide (LiMnO2) - - id: 12324 - name: Nickel-cadmium (NiCd) - - id: 12325 - name: Nickel-metal hydride (NiMH) - - id: 12326 - name: Nickel-oxyhydroxide (NiOx) - - id: 12327 - name: Nickel-zinc (NiZn) - - id: 12329 - name: Silver-oxide (Ag2O) - - id: 12331 - name: Zinc chloride - - id: 12332 - name: Zinc-air - - id: 12333 - name: Zinc-carbon - - id: 12334 - name: Zinc-manganese dioxide (Zn/MnO2) - - id: 12910 - name: Valve-regulated lead-acid (VLRA) - - id: 16570 - name: Lead-acid -- id: 1925 - name: Plug type - friendly_id: plug_type - values: - - id: 372 - name: Other - - id: 11841 - name: AU - - id: 12911 - name: BR - - id: 12912 - name: CH - - id: 12913 - name: CN - - id: 12914 - name: DK - - id: 12915 - name: EU - - id: 12916 - name: FR - - id: 12917 - name: IL - - id: 12918 - name: IN - - id: 12919 - name: IT - - id: 12920 - name: JP - - id: 12921 - name: KR - - id: 12922 - name: RU - - id: 12923 - name: UK - - id: 12924 - name: US - - id: 12925 - name: ZA -- id: 1926 - name: Battery cell type - friendly_id: battery_cell_type - values: - - id: 12310 - name: Alkaline - - id: 12332 - name: Zinc-air - - id: 12926 - name: Ammonia - - id: 12927 - name: Direct ethanol - - id: 12928 - name: Direct methanol - - id: 12929 - name: Lithium-air - - id: 12930 - name: Microbial - - id: 12931 - name: Molten carbonate - - id: 12932 - name: Phosphoric acid - - id: 12933 - name: Polymer electrolyte - - id: 12934 - name: Proton exchange membrane - - id: 12935 - name: Protonic ceramic - - id: 12936 - name: Regenerative - - id: 12937 - name: Sodium-ion - - id: 12938 - name: Solid oxide -- id: 1927 - name: Fuel source - friendly_id: fuel_source - values: - - id: 372 - name: Other - - id: 7270 - name: Propane - - id: 8035 - name: Ethanol - - id: 8062 - name: Natural gas - - id: 10972 - name: Hydrogen - - id: 12926 - name: Ammonia - - id: 12928 - name: Direct methanol - - id: 12939 - name: Methanol -- id: 1928 - name: Stack configuration - friendly_id: stack_configuration - values: - - id: 12659 - name: Serial - - id: 12940 - name: Full stack - - id: 12941 - name: Parallel - - id: 12942 - name: Short stack - - id: 12943 - name: Single cell -- id: 1929 - name: Charging method - friendly_id: charging_method - values: - - id: 372 - name: Other - - id: 7346 - name: Wired - - id: 7347 - name: Wireless -- id: 1930 - name: Compatible device - friendly_id: compatible_device - values: - - id: 8209 - name: Mouse - - id: 10333 - name: Tablet - - id: 12633 - name: Keyboard - - id: 12944 - name: Digital camera - - id: 12945 - name: Power bank - - id: 12946 - name: Smartphone - - id: 12947 - name: Smartwatch - - id: 12948 - name: Wireless earbud -- id: 1931 - name: Outlet type - friendly_id: outlet_type - values: - - id: 12949 - name: Type A - - id: 12950 - name: Type B - - id: 12951 - name: Type C - - id: 12952 - name: Type E - - id: 12953 - name: Type F - - id: 12954 - name: Type G - - id: 12955 - name: Type I - - id: 12956 - name: Type J - - id: 12957 - name: Type K - - id: 12958 - name: Type L -- id: 1932 - name: Plug type (input) - friendly_id: plug_type_input - values: - - id: 372 - name: Other - - id: 11841 - name: AU - - id: 12911 - name: BR - - id: 12912 - name: CH - - id: 12913 - name: CN - - id: 12914 - name: DK - - id: 12915 - name: EU - - id: 12916 - name: FR - - id: 12917 - name: IL - - id: 12918 - name: IN - - id: 12919 - name: IT - - id: 12920 - name: JP - - id: 12921 - name: KR - - id: 12922 - name: RU - - id: 12923 - name: UK - - id: 12924 - name: US - - id: 12925 - name: ZA -- id: 1933 - name: Plug type (output) - friendly_id: plug_type_output - values: - - id: 372 - name: Other - - id: 11841 - name: AU - - id: 12911 - name: BR - - id: 12912 - name: CH - - id: 12913 - name: CN - - id: 12914 - name: DK - - id: 12915 - name: EU - - id: 12916 - name: FR - - id: 12917 - name: IL - - id: 12918 - name: IN - - id: 12919 - name: IT - - id: 12920 - name: JP - - id: 12921 - name: KR - - id: 12922 - name: RU - - id: 12923 - name: UK - - id: 12924 - name: US - - id: 12925 - name: ZA -- id: 1934 - name: Tracking purpose - friendly_id: tracking_purpose - values: - - id: 12961 - name: Asset tracking - - id: 12962 - name: Fleet management - - id: 12963 - name: Personal tracking - - id: 12964 - name: Pet tracking - - id: 12965 - name: Vehicle tracking -- id: 1935 - name: Suitable for angling type - friendly_id: suitable_for_angling_type - values: - - id: 10552 - name: Ice - - id: 11087 - name: Freshwater - - id: 11088 - name: Saltwater - - id: 12971 - name: Deep sea - - id: 12972 - name: Fly - - id: 12973 - name: Kayak - - id: 12974 - name: Shore -- id: 1936 - name: Ethernet LAN interface type - friendly_id: ethernet_lan_interface_type - values: - - id: 7456 - name: Fast - - id: 11571 - name: Ethernet - - id: 12975 - name: 10 gigabit - - id: 12976 - name: Ethernet over cellular - - id: 12977 - name: Ethernet over coax - - id: 12978 - name: Ethernet over fiber - - id: 12979 - name: Ethernet over HDMI - - id: 12980 - name: Ethernet over powerline - - id: 12981 - name: Ethernet over USB - - id: 12982 - name: Ethernet over Wi-Fi - - id: 12983 - name: Gigabit - - id: 12984 - name: Multi-gigabit -- id: 1937 - name: Network protocols supported - friendly_id: network_protocols_supported - values: - - id: 12985 - name: BGP - - id: 12986 - name: DHCP - - id: 12987 - name: DNS - - id: 12988 - name: Ethernet (IEEE 802.3) - - id: 12989 - name: IGMP - - id: 12990 - name: OSPF - - id: 12991 - name: PPP - - id: 12992 - name: SNMP - - id: 12993 - name: STP - - id: 12994 - name: TCP/IP - - id: 12995 - name: VLAN - - id: 12996 - name: Wi-Fi (IEEE 802.11) -- id: 1938 - name: Networking standards - friendly_id: networking_standards - values: - - id: 372 - name: Other - - id: 12997 - name: IEEE 1588 - - id: 12998 - name: IEEE 1588v2 - - id: 12999 - name: IEEE 1901 - - id: 13000 - name: IEEE 1911.1 - - id: 13001 - name: IEEE 1911.2 - - id: 13002 - name: IEEE 1911.3 - - id: 13003 - name: IEEE 802.11a - - id: 13004 - name: IEEE 802.11ac - - id: 13005 - name: IEEE 802.11ad - - id: 13006 - name: IEEE 802.11ax - - id: 13007 - name: IEEE 802.11az - - id: 13008 - name: IEEE 802.11b - - id: 13009 - name: IEEE 802.11d - - id: 13010 - name: IEEE 802.11e - - id: 13011 - name: IEEE 802.11g - - id: 13012 - name: IEEE 802.11h - - id: 13013 - name: IEEE 802.11i - - id: 13014 - name: IEEE 802.11j - - id: 13015 - name: IEEE 802.11k - - id: 13016 - name: IEEE 802.11mc - - id: 13017 - name: IEEE 802.11n - - id: 13018 - name: IEEE 802.11r - - id: 13019 - name: IEEE 802.11s - - id: 13020 - name: IEEE 802.11u - - id: 13021 - name: IEEE 802.11v - - id: 13022 - name: IEEE 802.11w - - id: 13023 - name: IEEE 802.12 - - id: 13024 - name: IEEE 802.15.1 - - id: 13025 - name: IEEE 802.15.4 - - id: 13026 - name: IEEE 802.1ab - - id: 13027 - name: IEEE 802.1ad - - id: 13028 - name: IEEE 802.1AE - - id: 13029 - name: IEEE 802.1af - - id: 13030 - name: IEEE 802.1ag - - id: 13031 - name: IEEE 802.1ak - - id: 13032 - name: IEEE 802.1as - - id: 13033 - name: IEEE 802.1AX - - id: 13034 - name: IEEE 802.1D - - id: 13035 - name: IEEE 802.1p - - id: 13036 - name: IEEE 802.1Q - - id: 13037 - name: IEEE 802.1Qau - - id: 13038 - name: IEEE 802.1Qav - - id: 13039 - name: IEEE 802.1Qaz - - id: 13040 - name: IEEE 802.1Qbb - - id: 13041 - name: IEEE 802.1Qbg - - id: 13042 - name: IEEE 802.1Qbv - - id: 13043 - name: IEEE 802.1s - - id: 13044 - name: IEEE 802.1t - - id: 13045 - name: IEEE 802.1v - - id: 13046 - name: IEEE 802.1w - - id: 13047 - name: IEEE 802.1x - - id: 13048 - name: IEEE 802.2 - - id: 13049 - name: IEEE 802.2x - - id: 13050 - name: IEEE 802.3 - - id: 13051 - name: IEEE 802.3ab - - id: 13052 - name: IEEE 802.3ac - - id: 13053 - name: IEEE 802.3ad - - id: 13054 - name: IEEE 802.3ae - - id: 13055 - name: IEEE 802.3af - - id: 13056 - name: IEEE 802.3ah - - id: 13057 - name: IEEE 802.3ak - - id: 13058 - name: IEEE 802.3an - - id: 13059 - name: IEEE 802.3ap - - id: 13060 - name: IEEE 802.3aq - - id: 13061 - name: IEEE 802.3at - - id: 13062 - name: IEEE 802.3au - - id: 13063 - name: IEEE 802.3az - - id: 13064 - name: IEEE 802.3ba - - id: 13065 - name: IEEE 802.3bj - - id: 13066 - name: IEEE 802.3bm - - id: 13067 - name: IEEE 802.3bq - - id: 13068 - name: IEEE 802.3bs - - id: 13069 - name: IEEE 802.3bt - - id: 13070 - name: IEEE 802.3by - - id: 13071 - name: IEEE 802.3bz - - id: 13072 - name: IEEE 802.3cc - - id: 13073 - name: IEEE 802.3cd - - id: 13074 - name: IEEE 802.3i - - id: 13075 - name: IEEE 802.3p - - id: 13076 - name: IEEE 802.3q - - id: 13077 - name: IEEE 802.3u - - id: 13078 - name: IEEE 802.3x - - id: 13079 - name: IEEE 802.3z - - id: 13080 - name: IEEE 802.5 -- id: 1939 - name: Security algorithms - friendly_id: security_algorithms - values: - - id: 372 - name: Other - - id: 11689 - name: Not supported - - id: 12992 - name: SNMP - - id: 13081 - name: 1024-bit RSA - - id: 13082 - name: 104-bit WEP - - id: 13083 - name: 128-bit AES - - id: 13084 - name: 128-bit RC4 - - id: 13085 - name: 128-bit SSL - - id: 13086 - name: 128-bit WEP - - id: 13087 - name: 152-bit WEP - - id: 13088 - name: 192-bit AES - - id: 13089 - name: 2048-bit RSA - - id: 13090 - name: 256-bit AES - - id: 13091 - name: 256-bit AES-XTS - - id: 13092 - name: 256-bit TwoFish - - id: 13093 - name: 256-bit WEP - - id: 13094 - name: 384-bit AES - - id: 13095 - name: 3DES - - id: 13096 - name: 40-bit WEP - - id: 13097 - name: 4096-bit RSA - - id: 13098 - name: 512-bit AES - - id: 13099 - name: 56-bit AES - - id: 13100 - name: 64-bit AES - - id: 13101 - name: 64-bit WEP - - id: 13102 - name: 802.1x radius - - id: 13103 - name: AES - - id: 13104 - name: AES-CCMP - - id: 13105 - name: AES-GCMP - - id: 13106 - name: APOP - - id: 13107 - name: CAST - - id: 13108 - name: CCX v4 - - id: 13109 - name: DES - - id: 13110 - name: EAP - - id: 13111 - name: EAP-AKA - - id: 13112 - name: EAP-FAST - - id: 13113 - name: EAP-GTC - - id: 13114 - name: EAP-LEAP - - id: 13115 - name: EAP-MD5 - - id: 13116 - name: EAP-PEAP - - id: 13117 - name: EAP-PWD - - id: 13118 - name: EAP-SIM - - id: 13119 - name: EAP-TLS - - id: 13120 - name: EAP-TTLS - - id: 13121 - name: FIPS 140 - - id: 13122 - name: FIPS 140-2 - - id: 13123 - name: FIPS 140-3 - - id: 13124 - name: FIPS 197 - - id: 13125 - name: FTPES - - id: 13126 - name: HTTPS - - id: 13127 - name: IPPS - - id: 13128 - name: IPSec - - id: 13129 - name: LEAP - - id: 13130 - name: MD5 - - id: 13131 - name: MSCHAPv2 - - id: 13132 - name: PEAP - - id: 13133 - name: RipeMD160 - - id: 13134 - name: RSA - - id: 13135 - name: SHA-1 - - id: 13136 - name: SHA-2 - - id: 13137 - name: SHA-256 - - id: 13138 - name: SHA-384 - - id: 13139 - name: SHA-512 - - id: 13140 - name: SIPS - - id: 13141 - name: SMTP-AUTH - - id: 13142 - name: SNMPv2 - - id: 13143 - name: SNMPv3 - - id: 13144 - name: SRTP - - id: 13145 - name: SSH - - id: 13146 - name: SSH-1.5 - - id: 13147 - name: SSH-2 - - id: 13148 - name: SSID - - id: 13149 - name: SSL/TLS - - id: 13150 - name: TKIP - - id: 13151 - name: TLS - - id: 13152 - name: TTLS - - id: 13153 - name: WAPI - - id: 13154 - name: WDS - - id: 13155 - name: WEP - - id: 13156 - name: WHQL - - id: 13157 - name: WMM - - id: 13158 - name: WPA - - id: 13159 - name: WPA-AES - - id: 13160 - name: WPA-EAP - - id: 13161 - name: WPA-enterprise - - id: 13162 - name: WPA-PSK - - id: 13163 - name: WPA-RADIUS - - id: 13164 - name: WPA-SDK - - id: 13165 - name: WPA-TKIP - - id: 13166 - name: WPA2 - - id: 13167 - name: WPA2-AES - - id: 13168 - name: WPA2-CCMP - - id: 13169 - name: WPA2-EAP - - id: 13170 - name: WPA2-enterprise - - id: 13171 - name: WPA2-enterprise-PEAP - - id: 13172 - name: WPA2-PSK - - id: 13173 - name: WPA2-RADIUS - - id: 13174 - name: WPA2-TKIP - - id: 13175 - name: WPA3 - - id: 13176 - name: WPA3-EAP - - id: 13177 - name: WPA3-enterprise - - id: 13178 - name: WPA3-PSK - - id: 13179 - name: WPA3-SAE - - id: 13180 - name: WPS - - id: 13181 - name: WPS-NFC - - id: 13182 - name: WPS-PBC - - id: 13183 - name: WPS-PIN - - id: 13184 - name: WPS-USB -- id: 1940 - name: Wi-Fi band - friendly_id: wi_fi_band - values: - - id: 13185 - name: 2.4 GHz - - id: 13186 - name: 5 GHz - - id: 13187 - name: 6 GHz - - id: 13188 - name: 60 GHz - - id: 13189 - name: Dual-band (2.4 GHz / 5 GHz) - - id: 13190 - name: Single-band (2.4 GHz) - - id: 13191 - name: Single-band (60 GHz) - - id: 13192 - name: Tri-band (2.4 GHz / 5 GHz / 5 GHz) - - id: 13193 - name: Tri-band (2.4 GHz / 5 GHz / 6 GHz) - - id: 13194 - name: Tri-band (2.4 GHz / 5 GHz / 60 GHz) -- id: 1941 - name: PSTN connectivity options - friendly_id: pstn_connectivity_options - values: - - id: 13195 - name: E1/T1 - - id: 13196 - name: FXO - - id: 13197 - name: FXS - - id: 13198 - name: ISDN BRI - - id: 13199 - name: ISDN PRI - - id: 13200 - name: POTS -- id: 1942 - name: VoIP protocol support - friendly_id: voip_protocol_support - values: - - id: 13201 - name: H.323 - - id: 13202 - name: IAX - - id: 13203 - name: MGCP - - id: 13204 - name: RTP - - id: 13205 - name: SCCP - - id: 13206 - name: SIP -- id: 1943 - name: PoE standard - friendly_id: poe_standard - values: - - id: 12483 - name: Passive - - id: 13055 - name: IEEE 802.3af - - id: 13061 - name: IEEE 802.3at - - id: 13069 - name: IEEE 802.3bt -- id: 1944 - name: Compatible filament - friendly_id: compatible_filament - values: - - id: 44 - name: Nylon - - id: 61 - name: Silk - - id: 372 - name: Other - - id: 592 - name: Thermoplastic polyurethane (TPU) - - id: 599 - name: Acrylonitrile butadiene styrene (ABS) - - id: 601 - name: Metal - - id: 625 - name: Wood - - id: 643 - name: Ceramic - - id: 877 - name: Resin - - id: 941 - name: Marble - - id: 960 - name: Polylactic acid (PLA) - - id: 963 - name: Polyethylene terephthalate glycol (PETG) - - id: 1650 - name: Magnetic - - id: 2981 - name: Carbon fiber - - id: 2993 - name: High impact polystyrene (HIPS) - - id: 7219 - name: Flexible - - id: 7972 - name: Glitter - - id: 11428 - name: Polyvinyl alcohol (PVA) - - id: 11429 - name: Recycled filament - - id: 13207 - name: Conductive - - id: 13208 - name: Food-safe - - id: 13209 - name: Glow-in-the-dark - - id: 13210 - name: Polychromatic - - id: 13211 - name: Transparent/Clear - - id: 13212 - name: UV-sensitive - - id: 13213 - name: Water-soluble support material -- id: 1945 - name: Enclosure type - friendly_id: enclosure_type - values: - - id: 12460 - name: Open frame - - id: 13214 - name: DIY enclosure - - id: 13215 - name: Fully enclosed - - id: 13216 - name: No enclosure - - id: 13217 - name: Partially enclosed - - id: 13218 - name: Upgradable enclosure -- id: 1946 - name: Print technology - friendly_id: print_technology - values: - - id: 7195 - name: LED - - id: 7752 - name: Laser - - id: 13219 - name: 3D printing - - id: 13220 - name: Additive manufacturing - - id: 13221 - name: Dye sublimation - - id: 13222 - name: FDM - - id: 13223 - name: FFF - - id: 13224 - name: Impact - - id: 13225 - name: Inkjet - - id: 13226 - name: Line matrix - - id: 13227 - name: MEM inkjet - - id: 13228 - name: PJP - - id: 13229 - name: Solid ink - - id: 13230 - name: Stereolithography - - id: 13231 - name: Thermal transfer -- id: 1947 - name: Printer accessories included - friendly_id: printer_accessories_included - values: - - id: 13232 - name: Cleaning kit - - id: 13233 - name: Fuser - - id: 13234 - name: Ink cartridge - - id: 13235 - name: Paper tray - - id: 13236 - name: Toner cartridge - - id: 13237 - name: Transfer roller -- id: 1948 - name: Suitable for printer type - friendly_id: suitable_for_printer_type - values: - - id: 372 - name: Other - - id: 13238 - name: Barcode printer - - id: 13239 - name: Calculator - - id: 13240 - name: Dot matrix printer - - id: 13241 - name: Fax machine - - id: 13242 - name: ID card printer - - id: 13243 - name: Label printer - - id: 13244 - name: Photo printer - - id: 13245 - name: PoS - - id: 13246 - name: Time clock - - id: 13247 - name: Typewriter -- id: 1949 - name: Printing color - friendly_id: printing_color - values: - - id: 1 - name: Black - - id: 14 - name: Yellow - - id: 13248 - name: Cyan - - id: 13249 - name: Magenta -- id: 1950 - name: Duplexing technology - friendly_id: duplexing_technology - values: - - id: 11689 - name: Not supported - - id: 13250 - name: Automatic duplexing - - id: 13251 - name: Duplexing unit included - - id: 13252 - name: Duplexing unit optional - - id: 13253 - name: Manual duplexing -- id: 1951 - name: Compatible paper size - friendly_id: compatible_paper_size - values: - - id: 372 - name: Other - - id: 11413 - name: Envelope - - id: 13254 - name: "#10" - - id: 13255 - name: 11" x 17" - - id: 13256 - name: 148 mm x 210 mm - - id: 13257 - name: 176 mm x 250 mm - - id: 13258 - name: 210 mm x 297 mm - - id: 13259 - name: 297 mm x 420 mm - - id: 13260 - name: 4" x 6" - - id: 13261 - name: 5" x 7" - - id: 13262 - name: 7.25" x 10.5" - - id: 13263 - name: 8.5" x 11" - - id: 13264 - name: 8.5" x 14" - - id: 13265 - name: 8" x 10" - - id: 13266 - name: A3 - - id: 13267 - name: A4 - - id: 13268 - name: A5 - - id: 13269 - name: B5 - - id: 13270 - name: C5 - - id: 13271 - name: Custom size - - id: 13272 - name: DL - - id: 13273 - name: Executive - - id: 13274 - name: Legal - - id: 13275 - name: Letter - - id: 13276 - name: Photo - - id: 13277 - name: Postcard - - id: 13278 - name: Tabloid -- id: 1952 - name: Printer functions - friendly_id: printer_functions - values: - - id: 13279 - name: CD/DVD print - - id: 13280 - name: Cloud print - - id: 13281 - name: Copy - - id: 13282 - name: Duplex (double-sided) print - - id: 13283 - name: Email - - id: 13284 - name: Fax - - id: 13285 - name: Network print - - id: 13286 - name: Photo print - - id: 13287 - name: Print - - id: 13288 - name: Scan - - id: 13289 - name: Wireless print -- id: 1953 - name: Filtering modes - friendly_id: filtering_modes - values: - - id: 13290 - name: Auto mode - - id: 13291 - name: City mode - - id: 13292 - name: Filter mode - - id: 13293 - name: GPS lockouts - - id: 13294 - name: Highway mode - - id: 13295 - name: Ka-band segmentation - - id: 13296 - name: TSR -- id: 1954 - name: Radar bands - friendly_id: radar_bands - values: - - id: 136 - name: S - - id: 138 - name: L - - id: 1969 - name: C - - id: 2932 - name: K - - id: 3086 - name: X - - id: 13297 - name: Ka - - id: 13298 - name: Ku -- id: 1955 - name: Contrast ratio (typical) - friendly_id: contrast_ratio_typical - values: - - id: 372 - name: Other - - id: 13299 - name: '100:1' - - id: 13300 - name: '120:1' - - id: 13301 - name: '150:1' - - id: 13302 - name: '200:1' - - id: 13303 - name: '250:1' - - id: 13304 - name: '300:1' - - id: 13305 - name: '350:1' - - id: 13306 - name: '400:1' - - id: 13307 - name: '450:1' - - id: 13308 - name: '500:1' - - id: 13309 - name: '550:1' - - id: 13310 - name: '580:1' - - id: 13311 - name: '600:1' - - id: 13312 - name: '650:1' - - id: 13313 - name: '700:1' - - id: 13314 - name: '750:1' - - id: 13315 - name: '800:1' - - id: 13316 - name: '850:1' - - id: 13317 - name: '900:1' - - id: 13318 - name: '1000:1' - - id: 13319 - name: '1100:1' - - id: 13320 - name: '1200:1' - - id: 13321 - name: '1300:1' - - id: 13322 - name: '1400:1' - - id: 13323 - name: '1450:1' - - id: 13324 - name: '1500:1' - - id: 13325 - name: '1600:1' - - id: 13326 - name: '1650:1' - - id: 13327 - name: '1700:1' - - id: 13328 - name: '1800:1' - - id: 13329 - name: '2000:1' - - id: 13330 - name: '2100:1' - - id: 13331 - name: '2200:1' - - id: 13332 - name: '2300:1' - - id: 13333 - name: '2400:1' - - id: 13334 - name: '2600:1' - - id: 13335 - name: '2700:1' - - id: 13336 - name: '2800:1' - - id: 13337 - name: '2900:1' - - id: 13338 - name: '3000:1' - - id: 13339 - name: '3100:1' - - id: 13340 - name: '3200:1' - - id: 13341 - name: '3300:1' - - id: 13342 - name: '3500:1' - - id: 13343 - name: '3700:1' - - id: 13344 - name: '3750:1' - - id: 13345 - name: '3800:1' - - id: 13346 - name: '4000:1' - - id: 13347 - name: '4150:1' - - id: 13348 - name: '430:1' - - id: 13349 - name: '4500:1' - - id: 13350 - name: '4600:1' - - id: 13351 - name: '4800:1' - - id: 13352 - name: '5000:1' - - id: 13353 - name: '5300:1' - - id: 13354 - name: '5500:1' - - id: 13355 - name: '6000:1' - - id: 13356 - name: '6500:1' - - id: 13357 - name: '7000:1' - - id: 13358 - name: '7500:1' - - id: 13359 - name: '8000:1' - - id: 13360 - name: '8300:1' - - id: 13361 - name: '10000:1' - - id: 13362 - name: '11000:1' - - id: 13363 - name: '12000:1' - - id: 13364 - name: '15000:1' - - id: 13365 - name: '20000:1' - - id: 13366 - name: '30000:1' - - id: 13367 - name: '40000:1' - - id: 13368 - name: '50000:1' - - id: 13369 - name: '150000:1' - - id: 13370 - name: '200000:1' - - id: 13371 - name: '300000:1' - - id: 13372 - name: '500000:1' - - id: 13373 - name: '1000000:1' - - id: 13374 - name: '2000000:1' - - id: 13375 - name: '3000000:1' - - id: 13376 - name: '10000000:1' - - id: 13377 - name: '30000000:1' - - id: 13378 - name: '100000000:1' -- id: 1956 - name: Energy efficiency class (HDR) - friendly_id: energy_efficiency_class_hdr - values: - - id: 1967 - name: A - - id: 1968 - name: B - - id: 1969 - name: C - - id: 1970 - name: D - - id: 1971 - name: E - - id: 1972 - name: F - - id: 1995 - name: G - - id: 8058 - name: A+++ - - id: 8059 - name: A++ - - id: 8060 - name: A+ -- id: 1957 - name: Energy efficiency class (SDR) - friendly_id: energy_efficiency_class_sdr - values: - - id: 1967 - name: A - - id: 1968 - name: B - - id: 1969 - name: C - - id: 1970 - name: D - - id: 1971 - name: E - - id: 1972 - name: F - - id: 1995 - name: G - - id: 8058 - name: A+++ - - id: 8059 - name: A++ - - id: 8060 - name: A+ -- id: 1958 - name: Native aspect ratio - friendly_id: native_aspect_ratio - values: - - id: 7447 - name: '1:1' - - id: 13381 - name: '15:9' - - id: 13382 - name: '16:10' - - id: 13383 - name: '16:18' - - id: 13384 - name: '16:9' - - id: 13385 - name: '17:10' - - id: 13386 - name: '17:9' - - id: 13387 - name: '21:9' - - id: 13388 - name: '24:10:00' - - id: 13389 - name: '3:2' - - id: 13390 - name: '3:4' - - id: 13391 - name: '32:10:00' - - id: 13392 - name: '32:9' - - id: 13393 - name: '4:3' - - id: 13394 - name: '4:5' - - id: 13395 - name: '5:4' - - id: 13396 - name: '8:5' - - id: 13397 - name: '9:16' -- id: 1959 - name: HDR format - friendly_id: hdr_format - values: - - id: 13398 - name: Advanced HDR - - id: 13399 - name: Dolby vision - - id: 13400 - name: HDR10 - - id: 13401 - name: HDR10+ - - id: 13402 - name: HLG - - id: 13403 - name: No HDR -- id: 1960 - name: Smart TV platform - friendly_id: smart_tv_platform - values: - - id: 12349 - name: Tizen - - id: 12353 - name: webOS - - id: 13404 - name: Android TV - - id: 13405 - name: Apple tvOS - - id: 13406 - name: Fire TV - - id: 13407 - name: Panasonic My Home Screen - - id: 13408 - name: Roku TV - - id: 13409 - name: Vizio SmartCast -- id: 1961 - name: Television shape - friendly_id: television_shape - values: - - id: 1363 - name: Flat - - id: 7737 - name: Curved -- id: 1962 - name: Color accuracy standards - friendly_id: color_accuracy_standards - values: - - id: 11753 - name: NTSC - - id: 13410 - name: Adobe RGB - - id: 13411 - name: CIE lab - - id: 13412 - name: CIE LCh - - id: 13413 - name: CIE RGB - - id: 13414 - name: CIE XYZ - - id: 13415 - name: DCI-P3 - - id: 13416 - name: DICOM - - id: 13417 - name: EBU - - id: 13418 - name: PAL - - id: 13419 - name: Pantone - - id: 13420 - name: Rec. 2020 - - id: 13421 - name: Rec. 709 - - id: 13422 - name: SMPTE-C - - id: 13423 - name: sRGB -- id: 1963 - name: Video codecs/formats supported - friendly_id: video_codecs_formats_supported - values: - - id: 372 - name: Other - - id: 7390 - name: TS - - id: 10318 - name: ISO - - id: 11815 - name: 3G2 - - id: 11817 - name: 3GP - - id: 11818 - name: 3GPP - - id: 11840 - name: ASF - - id: 11882 - name: MP4 - - id: 11894 - name: QTFF - - id: 11904 - name: WMA - - id: 11907 - name: WMV - - id: 12591 - name: DAT - - id: 13431 - name: AMV - - id: 13432 - name: ASP - - id: 13433 - name: AVC - - id: 13434 - name: AVCHD - - id: 13435 - name: AVI - - id: 13436 - name: AVS - - id: 13437 - name: AVS+ - - id: 13438 - name: BDMV - - id: 13439 - name: DIV X3 - - id: 13440 - name: DivX - - id: 13441 - name: DivX HD - - id: 13442 - name: DivX WEBM - - id: 13443 - name: DV - - id: 13444 - name: DVR-MS - - id: 13445 - name: FLV - - id: 13446 - name: H.239 - - id: 13447 - name: H.261 - - id: 13448 - name: H.262 - - id: 13449 - name: H.263 - - id: 13450 - name: H.263+ - - id: 13451 - name: H.264 - - id: 13452 - name: H.264 BP - - id: 13453 - name: H.264+ - - id: 13454 - name: H.264B - - id: 13455 - name: H.265 - - id: 13456 - name: H.265+ - - id: 13457 - name: HEVC - - id: 13458 - name: HEVC/H.265 - - id: 13459 - name: IFO - - id: 13460 - name: INSV - - id: 13461 - name: ISO (Blu-ray) - - id: 13462 - name: M-JPEG - - id: 13463 - name: M2P - - id: 13464 - name: M2T - - id: 13465 - name: M2TS - - id: 13466 - name: M4V - - id: 13467 - name: MJPG - - id: 13468 - name: MKV - - id: 13469 - name: MOV - - id: 13470 - name: MP43 - - id: 13471 - name: MPEG - - id: 13472 - name: MPEG‑4 Part 2 - - id: 13473 - name: MPEG1 - - id: 13474 - name: MPEG2 - - id: 13475 - name: MPEG2-PS - - id: 13476 - name: MPEG2-TS - - id: 13477 - name: MPEG21 - - id: 13478 - name: MPEG4 - - id: 13479 - name: MPEG4-ASP - - id: 13480 - name: MPEG4-SP - - id: 13481 - name: MPEG7 - - id: 13482 - name: MPG - - id: 13483 - name: MPO - - id: 13484 - name: MTS - - id: 13485 - name: MTV - - id: 13486 - name: MVC - - id: 13487 - name: MXF - - id: 13488 - name: MxPEG - - id: 13489 - name: MXV - - id: 13490 - name: NV12 - - id: 13491 - name: OGM - - id: 13492 - name: PMP - - id: 13493 - name: PRKL - - id: 13494 - name: ProRes - - id: 13495 - name: PS - - id: 13496 - name: Quicktime - - id: 13497 - name: RM - - id: 13498 - name: RMVB - - id: 13499 - name: RV - - id: 13500 - name: RV30 - - id: 13501 - name: RV40 - - id: 13502 - name: SHVC - - id: 13503 - name: SMV - - id: 13504 - name: Sorenson H.263 - - id: 13505 - name: SVAF - - id: 13506 - name: SVI - - id: 13507 - name: SWF - - id: 13508 - name: TP - - id: 13509 - name: TRP - - id: 13510 - name: TS4 - - id: 13511 - name: VC-1 - - id: 13512 - name: VMW7 - - id: 13513 - name: VOB - - id: 13514 - name: VP6 - - id: 13515 - name: VP8 - - id: 13516 - name: VP9 - - id: 13517 - name: VRO - - id: 13518 - name: WebM - - id: 13519 - name: WM-DRM - - id: 13521 - name: WMV10 - - id: 13522 - name: WMV3 - - id: 13523 - name: WMV7 - - id: 13524 - name: WMV8 - - id: 13525 - name: WMV9 - - id: 13526 - name: WMV9 HD - - id: 13527 - name: XAVC - - id: 13528 - name: XAVC HS - - id: 13529 - name: XAVC S - - id: 13530 - name: XAVC-I - - id: 13531 - name: XF-AVC - - id: 13532 - name: Xvid - - id: 13533 - name: YUV - - id: 13534 - name: YUY2 - - id: 13571 - name: WMA Pro - - id: 13576 - name: MOD - - id: 13577 - name: RAW -- id: 1964 - name: Playback disc formats - friendly_id: playback_disc_formats - values: - - id: 372 - name: Other - - id: 11591 - name: AAC - - id: 11605 - name: Dolby trueHD - - id: 11606 - name: DTS - - id: 11711 - name: DSD - - id: 11855 - name: FLAC - - id: 11880 - name: MP3 - - id: 11903 - name: WAV - - id: 11904 - name: WMA - - id: 11907 - name: WMV - - id: 12510 - name: CD-RW - - id: 12512 - name: DVD-RW - - id: 12513 - name: DVD+RW - - id: 12590 - name: CD-R - - id: 12593 - name: DVD-R - - id: 12594 - name: DVD-RAM - - id: 12595 - name: DVD+R - - id: 13435 - name: AVI - - id: 13440 - name: DivX - - id: 13468 - name: MKV - - id: 13535 - name: Blu-ray - - id: 13536 - name: CD audio - - id: 13537 - name: CD video - - id: 13538 - name: CD+G - - id: 13540 - name: Dolby digital - - id: 13541 - name: DVD-audio - - id: 13542 - name: DVD-video - - id: 13543 - name: DVD-VR - - id: 13544 - name: JPEG - - id: 13545 - name: KVCD - - id: 13546 - name: MPEG-4 - - id: 13547 - name: Picture CD - - id: 13548 - name: SACD - - id: 13549 - name: SVCD - - id: 13550 - name: VCD -- id: 1965 - name: Video region code - friendly_id: video_region_code - values: - - id: 13551 - name: Region-free - - id: 13552 - name: Region 1 - - id: 13553 - name: Region 2 - - id: 13554 - name: Region 3 - - id: 13555 - name: Region 4 - - id: 13556 - name: Region 5 - - id: 13557 - name: Region 6 - - id: 13558 - name: Region A - - id: 13559 - name: Region B - - id: 13560 - name: Region C -- id: 1966 - name: Compression format - friendly_id: compression_format - values: - - id: 372 - name: Other - - id: 11882 - name: MP4 - - id: 11907 - name: WMV - - id: 13434 - name: AVCHD - - id: 13435 - name: AVI - - id: 13440 - name: DivX - - id: 13443 - name: DV - - id: 13445 - name: FLV - - id: 13451 - name: H.264 - - id: 13455 - name: H.265 - - id: 13468 - name: MKV - - id: 13469 - name: MOV - - id: 13494 - name: ProRes - - id: 13511 - name: VC-1 - - id: 13516 - name: VP9 - - id: 13518 - name: WebM - - id: 13527 - name: XAVC - - id: 13532 - name: Xvid - - id: 13546 - name: MPEG-4 - - id: 13561 - name: MPEG-2 -- id: 1967 - name: Compatible game format - friendly_id: compatible_game_format - values: - - id: 13564 - name: Backward compatibility - - id: 13565 - name: Digital download only - - id: 13566 - name: Physical disc - - id: 13567 - name: Virtual console -- id: 1968 - name: Compatible resolution - friendly_id: compatible_resolution - values: - - id: 11695 - name: 1080p - - id: 11696 - name: 1440p - - id: 11697 - name: 144p - - id: 11698 - name: 2160p - - id: 11699 - name: 240p - - id: 11700 - name: 360p - - id: 11701 - name: 4320p - - id: 11702 - name: 480p - - id: 11703 - name: 4K ultra HD - - id: 11704 - name: 720p - - id: 11705 - name: 8K ultra HD - - id: 11706 - name: Full HD - - id: 11707 - name: HD - - id: 11708 - name: Quad HD - - id: 11709 - name: SD -- id: 1969 - name: Console system - friendly_id: console_system - values: - - id: 372 - name: Other - - id: 12684 - name: Atari 2600 - - id: 12688 - name: Nintendo Wii - - id: 12689 - name: Nintendo Wii U - - id: 12698 - name: Xbox - - id: 12699 - name: Xbox 360 - - id: 16481 - name: Atari 7800 - - id: 16483 - name: Game Boy - - id: 16484 - name: Neo Geo - - id: 16485 - name: Nintendo 2DS - - id: 16486 - name: Nintendo 3DS - - id: 16487 - name: Nintendo 64 - - id: 16488 - name: Nintendo DS - - id: 16489 - name: Nintendo Entertainment System (NES) - - id: 16490 - name: Nintendo GameCube - - id: 16491 - name: Nintendo Switch - - id: 16492 - name: PlayStation 1 - - id: 16493 - name: PlayStation 2 - - id: 16494 - name: PlayStation 3 - - id: 16495 - name: PlayStation 4 - - id: 16496 - name: PlayStation 5 - - id: 16497 - name: PlayStation Portable (PSP) - - id: 16498 - name: PlayStation Vita - - id: 16499 - name: Sega Dreamcast - - id: 16500 - name: Sega Genesis - - id: 16501 - name: Sega Saturn - - id: 16502 - name: Super Nintendo Entertainment System (SNES) - - id: 16504 - name: Xbox One - - id: 16926 - name: Xbox Series XS -- id: 1970 - name: Baseball/Softball ball type - friendly_id: baseball_softball_ball_type - values: - - id: 69 - name: Baseball - - id: 70 - name: Softball -- id: 1971 - name: Suitable for camping activity - friendly_id: suitable_for_camping_activity - values: - - id: 7305 - name: Backpacking - - id: 7306 - name: Camping - - id: 7307 - name: Beach -- id: 1972 - name: Golf ball type - friendly_id: golf_ball_type - values: - - id: 7496 - name: Soft distance - - id: 7497 - name: Straight distance - - id: 7498 - name: Tour performance - - id: 7499 - name: Tour value -- id: 1973 - name: Core material - friendly_id: core_material - values: - - id: 625 - name: Wood - - id: 821 - name: Foam - - id: 823 - name: Fiberglass - - id: 882 - name: Composite - - id: 1637 - name: Aluminum - - id: 2981 - name: Carbon fiber -- id: 1974 - name: Riser material - friendly_id: riser_material - values: - - id: 625 - name: Wood - - id: 821 - name: Foam - - id: 823 - name: Fiberglass - - id: 882 - name: Composite - - id: 1637 - name: Aluminum - - id: 2981 - name: Carbon fiber -- id: 1975 - name: Suitable for snowshoeing activity - friendly_id: suitable_for_snowshoeing_activity - values: - - id: 428 - name: Running - - id: 7060 - name: Hiking - - id: 7645 - name: Backcountry skiing - - id: 7690 - name: Recreational use - - id: 7691 - name: Fitness - - id: 7692 - name: Work -- id: 1976 - name: Beverage product form - friendly_id: beverage_product_form - values: - - id: 372 - name: Other - - id: 9163 - name: Capsules - - id: 9164 - name: Frozen - - id: 9165 - name: Ready-to-drink - - id: 9166 - name: Shelf-stable - - id: 9595 - name: Concentrate - - id: 9606 - name: Instant drink -- id: 1977 - name: Coffee product form - friendly_id: coffee_product_form - values: - - id: 372 - name: Other - - id: 7556 - name: Ground - - id: 8285 - name: Coffee beans -- id: 1978 - name: Food product form - friendly_id: food_product_form - values: - - id: 372 - name: Other - - id: 7405 - name: Powder - - id: 7410 - name: Granules - - id: 7556 - name: Ground - - id: 9164 - name: Frozen - - id: 9599 - name: Whole - - id: 9690 - name: Sheets - - id: 9697 - name: Dried - - id: 9698 - name: Fresh -- id: 1979 - name: Camera lens type - friendly_id: camera_lens_type - values: - - id: 392 - name: Standard - - id: 3102 - name: Wide - - id: 13578 - name: Cinema - - id: 13579 - name: Extender - - id: 13580 - name: Fixed focus - - id: 13581 - name: Fisheye - - id: 13582 - name: Macro - - id: 13583 - name: Macro telephoto - - id: 13584 - name: Standard zoom - - id: 13585 - name: Super telephoto - - id: 13586 - name: Super wide - - id: 13587 - name: Telephoto - - id: 13588 - name: Telephoto zoom - - id: 13589 - name: Tilt-shift - - id: 13590 - name: Ultra-telephoto zoom - - id: 13591 - name: Ultra-wide - - id: 13592 - name: Wide angle macro - - id: 13593 - name: Wide fish-eye - - id: 13594 - name: Wide zoom -- id: 1980 - name: Suitable for camera type - friendly_id: suitable_for_camera_type - values: - - id: 10333 - name: Tablet - - id: 12946 - name: Smartphone - - id: 13595 - name: Action sports camera - - id: 13596 - name: Bridge camera - - id: 13597 - name: Camcorder - - id: 13598 - name: Camera drone - - id: 13599 - name: CCTV camera - - id: 13600 - name: Compact camera - - id: 13601 - name: Gimbal camera - - id: 13602 - name: Instant print camera - - id: 13603 - name: IP camera - - id: 13604 - name: MILC - - id: 13605 - name: SLR - - id: 13606 - name: Time lapse camera -- id: 1981 - name: Focus adjustment - friendly_id: focus_adjustment - values: - - id: 6977 - name: Manual - - id: 8118 - name: Auto -- id: 1982 - name: Focus type - friendly_id: focus_type - values: - - id: 13607 - name: TTL - - id: 13608 - name: TTL-CT-SIR - - id: 13609 - name: TTL iESP -- id: 1983 - name: Bag/Case closure - friendly_id: bag_case_closure - values: - - id: 839 - name: Velcro - - id: 1650 - name: Magnetic - - id: 3098 - name: Zipper - - id: 3099 - name: Hook & loop - - id: 3100 - name: Toggle - - id: 3101 - name: Elastic - - id: 3132 - name: Clip - - id: 4453 - name: Snap - - id: 6797 - name: Buckles - - id: 7315 - name: Twist lock - - id: 7742 - name: Button - - id: 7777 - name: Combination lock - - id: 7784 - name: Latch - - id: 11352 - name: Drawstring - - id: 12650 - name: Key lock - - id: 13610 - name: Flap - - id: 13611 - name: Open top - - id: 13612 - name: Push lock - - id: 13613 - name: Roll-top -- id: 1984 - name: Carrying type - friendly_id: carrying_type - values: - - id: 3732 - name: Clip-on - - id: 13614 - name: Backpack strap - - id: 13615 - name: Belt loop - - id: 13616 - name: Hand carry - - id: 13617 - name: Shoulder strap -- id: 1985 - name: Lens cap compatible device - friendly_id: lens_cap_compatible_device - values: - - id: 12944 - name: Digital camera - - id: 13618 - name: Binocular - - id: 13619 - name: Monocular -- id: 1986 - name: Converter functionality - friendly_id: converter_functionality - values: - - id: 13581 - name: Fisheye - - id: 13582 - name: Macro - - id: 13620 - name: Depth of field - - id: 13621 - name: Speed booster - - id: 13622 - name: Teleconverter - - id: 13623 - name: Wide angle -- id: 1987 - name: Lens filter effects - friendly_id: lens_filter_effects - values: - - id: 10674 - name: Color correction - - id: 13582 - name: Macro - - id: 13624 - name: Flare effect - - id: 13625 - name: Increase contrast - - id: 13626 - name: Infrared effect - - id: 13627 - name: Reduce light intake - - id: 13628 - name: Reduce reflections - - id: 13629 - name: Softening effect - - id: 13630 - name: UV protection -- id: 1988 - name: Lens filter type - friendly_id: lens_filter_type - values: - - id: 7751 - name: Infrared - - id: 10190 - name: Color - - id: 13631 - name: Close-up - - id: 13632 - name: Diffusion - - id: 13633 - name: Gradient - - id: 13634 - name: Neutral density - - id: 13635 - name: Polarizing - - id: 13636 - name: Starburst -- id: 1989 - name: Color saturation - friendly_id: color_saturation - values: - - id: 551 - name: Normal - - id: 1364 - name: Low - - id: 1376 - name: High -- id: 1990 - name: Contrast - friendly_id: contrast - values: - - id: 551 - name: Normal - - id: 1364 - name: Low - - id: 1376 - name: High -- id: 1991 - name: Film format - friendly_id: film_format - values: - - id: 13637 - name: 120/220 - - id: 13638 - name: 35mm - - id: 13639 - name: 4x5 - - id: 13640 - name: 5x7 - - id: 13641 - name: 8x10 - - id: 13642 - name: APS - - id: 13643 - name: Instax mini - - id: 13644 - name: Instax square - - id: 13645 - name: Polaroid - - id: 13874 - name: 600 film - - id: 13875 - name: I-type film - - id: 13876 - name: Instax wide - - id: 13877 - name: Spectra film - - id: 13878 - name: SX-70 film - - id: 13879 - name: Zink paper -- id: 1992 - name: Grain - friendly_id: grain - values: - - id: 551 - name: Normal - - id: 1376 - name: High - - id: 10887 - name: Fine -- id: 1993 - name: Flash modes - friendly_id: flash_modes - values: - - id: 551 - name: Normal - - id: 6977 - name: Manual - - id: 6993 - name: Soft - - id: 8118 - name: Auto - - id: 12539 - name: Multi - - id: 13607 - name: TTL - - id: 13646 - name: Fill-in - - id: 13647 - name: Flash off - - id: 13648 - name: Flash on - - id: 13649 - name: Forced off - - id: 13650 - name: Forced on - - id: 13651 - name: High-speed sync - - id: 13652 - name: Pre-flash - - id: 13653 - name: Rear curtain - - id: 13654 - name: Red-eye reduction - - id: 13655 - name: Second curtain sync - - id: 13656 - name: Slave - - id: 13657 - name: Slow synchronization - - id: 13658 - name: Stroboscopic - - id: 13659 - name: Suppressed -- id: 1994 - name: Flash type - friendly_id: flash_type - values: - - id: 7733 - name: Ring - - id: 13582 - name: Macro - - id: 13597 - name: Camcorder - - id: 13600 - name: Compact camera - - id: 13660 - name: Bare bulb - - id: 13661 - name: Off-camera - - id: 13662 - name: Shoe mount - - id: 13663 - name: Slave camera - - id: 13664 - name: Studio -- id: 1995 - name: Camera mounting type - friendly_id: camera_mounting_type - values: - - id: 1650 - name: Magnetic - - id: 3132 - name: Clip - - id: 3732 - name: Clip-on - - id: 7254 - name: Screw - - id: 10223 - name: Monitor - - id: 11224 - name: Adhesive - - id: 11300 - name: Standalone - - id: 11538 - name: Tripod - - id: 13665 - name: Hot shoe - - id: 13666 - name: Rod - - id: 13678 - name: Lens - - id: 13737 - name: Shoe - - id: 13891 - name: Freestanding - - id: 13915 - name: Bayonet - - id: 13916 - name: Rail mount -- id: 1996 - name: Focus device type - friendly_id: focus_device_type - values: - - id: 13667 - name: Focus assist tool - - id: 13668 - name: Focus crank - - id: 13669 - name: Focus handle - - id: 13670 - name: Focus whip - - id: 13671 - name: Follow focus system - - id: 13672 - name: Remote focus puller -- id: 1997 - name: Camera gear type - friendly_id: camera_gear_type - values: - - id: 13673 - name: Camera drive - - id: 13674 - name: Follow focus - - id: 13675 - name: Iris control - - id: 13676 - name: Lens gear ring - - id: 13677 - name: Zoom control -- id: 1998 - name: Camera sensor type - friendly_id: camera_sensor_type - values: - - id: 372 - name: Other - - id: 8048 - name: MOS - - id: 12664 - name: CCD - - id: 13679 - name: 3CMOS - - id: 13680 - name: 3MOS - - id: 13681 - name: BSI - - id: 13682 - name: BSI CMOS - - id: 13683 - name: CMOS - - id: 13684 - name: CMOS II - - id: 13685 - name: CMOS III - - id: 13686 - name: Exmor R CMOS - - id: 13687 - name: Exmor RS CMOS - - id: 13688 - name: Foveon - - id: 13689 - name: Live MOS - - id: 13690 - name: MOS BSI - - id: 13691 - name: NMOS - - id: 13692 - name: Super CCD - - id: 13693 - name: X-trans CMOS 4 - - id: 16114 - name: EMCCD - - id: 16115 - name: sCMOS -- id: 1999 - name: Image sensor size - friendly_id: image_sensor_size - values: - - id: 2879 - name: '1' - - id: 2936 - name: '1.5' - - id: 11009 - name: Full frame - - id: 13694 - name: 1/1.7 - - id: 13695 - name: 1/2.3 - - id: 13696 - name: APS-C - - id: 13697 - name: Micro four thirds - - id: 13749 - name: 1/4 - - id: 13797 - name: 1/1.6 - - id: 13798 - name: 1/1.63 - - id: 13799 - name: 1/1.8 - - id: 13800 - name: 1/2 - - id: 13801 - name: 1/2.33 - - id: 13802 - name: 1/2.4 - - id: 13803 - name: 1/2.5 - - id: 13804 - name: 1/2.7 - - id: 13805 - name: 1/2.8 - - id: 13806 - name: 1/2.9 - - id: 13807 - name: 1/3 - - id: 13808 - name: 4/3 - - id: 13809 - name: 2/3 - - id: 13810 - name: 1/5.8 - - id: 13811 - name: 1/3.1 - - id: 13812 - name: 1/3.2 - - id: 13813 - name: 1/1.65 - - id: 13814 - name: 1/1.2 -- id: 2000 - name: Camera control type - friendly_id: camera_control_type - values: - - id: 13698 - name: Cable release - - id: 13699 - name: Intervalometer - - id: 13700 - name: Remote switch - - id: 13701 - name: Shutter release -- id: 2001 - name: Remote technology - friendly_id: remote_technology - values: - - id: 1251 - name: Bluetooth - - id: 7346 - name: Wired - - id: 7347 - name: Wireless - - id: 7751 - name: Infrared - - id: 8028 - name: Radio - - id: 13702 - name: Mobile device - - id: 13703 - name: Tethered -- id: 2002 - name: Camera button/knob type - friendly_id: camera_button_knob_type - values: - - id: 13704 - name: Body cover - - id: 13705 - name: Command dial knob - - id: 13706 - name: Function button - - id: 13707 - name: Lens aperture control ring - - id: 13708 - name: Lens focus control ring - - id: 13709 - name: Mode dial knob - - id: 13710 - name: Opening latch - - id: 13711 - name: Shutter release button - - id: 13712 - name: Zoom control ring -- id: 2003 - name: Screen/Display design - friendly_id: screen_display_design - values: - - id: 7750 - name: Touch - - id: 13713 - name: Display protector - - id: 13714 - name: Picture - - id: 13715 - name: Rotating - - id: 13716 - name: Viewfinder -- id: 2004 - name: Silencer/Blimp type - friendly_id: silencer_blimp_type - values: - - id: 13717 - name: Camera blimp - - id: 13718 - name: Lens blimp - - id: 13719 - name: Microphone silencer - - id: 13720 - name: Soundproof cover - - id: 13721 - name: Underwater sound blimp -- id: 2005 - name: Suitable for camera/optics device - friendly_id: suitable_for_camera_optics_device - values: - - id: 372 - name: Other - - id: 11538 - name: Tripod - - id: 12944 - name: Digital camera - - id: 13597 - name: Camcorder - - id: 13618 - name: Binocular - - id: 13678 - name: Lens - - id: 13722 - name: Action camera - - id: 13723 - name: Camera filter - - id: 13724 - name: Light meter - - id: 13725 - name: Selfie stick -- id: 2006 - name: Camera attachment - friendly_id: camera_attachment - values: - - id: 13726 - name: Angle viewfinder - - id: 13727 - name: Eyecup viewfinder - - id: 13728 - name: Eyepiece adapter - - id: 13729 - name: LCD viewfinder - - id: 13730 - name: Magnifying viewfinder - - id: 13731 - name: Rubber eyecup - - id: 13732 - name: Sun hood -- id: 2007 - name: Monitor type - friendly_id: monitor_type - values: - - id: 7555 - name: Field - - id: 11707 - name: HD - - id: 12533 - name: Touchscreen - - id: 12560 - name: 4K - - id: 13733 - name: 3D LUT - - id: 13734 - name: HDR - - id: 13735 - name: On-camera - - id: 13736 - name: Recording -- id: 2008 - name: Light design - friendly_id: light_design - values: - - id: 7195 - name: LED - - id: 7733 - name: Ring - - id: 13664 - name: Studio - - id: 13735 - name: On-camera - - id: 13738 - name: Fill - - id: 13739 - name: Monolight - - id: 13740 - name: Strobe -- id: 2009 - name: Tripod/Monopod head type - friendly_id: tripod_monopod_head_type - values: - - id: 7937 - name: Ball - - id: 13741 - name: Equatorial mount - - id: 13742 - name: Fluid - - id: 13743 - name: Geared - - id: 13744 - name: Gimbal - - id: 13745 - name: Pan - - id: 13746 - name: Panoramic - - id: 13747 - name: Pistol grip heads - - id: 13748 - name: Video heads -- id: 2010 - name: Tripop/Monopod attachment type - friendly_id: tripop_monopod_attachment_type - values: - - id: 6883 - name: Universal - - id: 13749 - name: 1/4 - - id: 13750 - name: 3/8 -- id: 2011 - name: Collar/Mount compatible device - friendly_id: collar_mount_compatible_device - values: - - id: 12946 - name: Smartphone - - id: 13678 - name: Lens - - id: 13751 - name: Camera -- id: 2012 - name: Collar/Mount design - friendly_id: collar_mount_design - values: - - id: 7139 - name: Quick release - - id: 7733 - name: Ring - - id: 11534 - name: Clamp - - id: 13752 - name: Ball head - - id: 13753 - name: Boom pole - - id: 13754 - name: Plate -- id: 2013 - name: Tripop handle type - friendly_id: tripop_handle_type - values: - - id: 7749 - name: Tilt - - id: 13745 - name: Pan - - id: 13755 - name: Crank - - id: 13756 - name: Extension - - id: 13757 - name: Multi-function - - id: 13758 - name: Pistol grip - - id: 13759 - name: Trigger grip -- id: 2014 - name: Spreader type - friendly_id: spreader_type - values: - - id: 13760 - name: Ground-level - - id: 13761 - name: Mid-level - - id: 13762 - name: On-ground -- id: 2015 - name: Borescope design - friendly_id: borescope_design - values: - - id: 7219 - name: Flexible - - id: 7391 - name: Rigid - - id: 13763 - name: Fiberscope - - id: 13764 - name: Inspection camera - - id: 13765 - name: Videoscope -- id: 2016 - name: Auto focusing modes - friendly_id: auto_focusing_modes - values: - - id: 7229 - name: Single - - id: 13766 - name: AI - - id: 13767 - name: Area - - id: 13768 - name: Centre weighted - - id: 13769 - name: Continuous - - id: 13770 - name: Contrast detection - - id: 13771 - name: Far/Near - - id: 13772 - name: Flexible spot - - id: 13773 - name: Monitoring - - id: 13774 - name: Multi point - - id: 13775 - name: One shot - - id: 13776 - name: Selective - - id: 13777 - name: Servo - - id: 13778 - name: Spot - - id: 13779 - name: Tracking -- id: 2017 - name: Camera display technology - friendly_id: camera_display_technology - values: - - id: 7196 - name: TFT - - id: 7771 - name: LCD - - id: 8324 - name: OLED - - id: 10198 - name: AMOLED - - id: 13780 - name: Super AMOLED -- id: 2018 - name: Camera HD type - friendly_id: camera_hd_type - values: - - id: 11665 - name: VGA - - id: 11689 - name: Not supported - - id: 11703 - name: 4K ultra HD - - id: 11705 - name: 8K ultra HD - - id: 11706 - name: Full HD - - id: 11707 - name: HD - - id: 11708 - name: Quad HD - - id: 11709 - name: SD - - id: 12560 - name: 4K - - id: 13781 - name: 4.4K - - id: 13782 - name: 5.7K - - id: 13783 - name: 5.8K - - id: 13784 - name: 5K ultra HD - - id: 13785 - name: 6K ultra HD - - id: 13888 - name: 8K -- id: 2019 - name: Compatible memory cards - friendly_id: compatible_memory_cards - values: - - id: 372 - name: Other - - id: 11689 - name: Not supported - - id: 11709 - name: SD - - id: 12354 - name: CF - - id: 12355 - name: CF Type II - - id: 12356 - name: CF+ - - id: 12357 - name: CFast - - id: 12358 - name: CFast 2.0 - - id: 12359 - name: CFexpress - - id: 12360 - name: DV RS-MMC - - id: 12361 - name: EXD - - id: 12362 - name: expressP2 - - id: 12363 - name: Eye-Fi - - id: 12364 - name: FLU - - id: 12365 - name: HC MMC+ - - id: 12366 - name: Microdrive - - id: 12367 - name: MicroP2 - - id: 12369 - name: microSDHC - - id: 12370 - name: microSDXC - - id: 12371 - name: MiniMMC - - id: 12372 - name: MiniSD - - id: 12373 - name: MiniSDHC - - id: 12375 - name: MMC - - id: 12376 - name: MMC micro - - id: 12377 - name: MMC mobile - - id: 12379 - name: MMC+ - - id: 12380 - name: MS - - id: 12381 - name: MS duo - - id: 12382 - name: MS micro (M2) - - id: 12383 - name: MS PRO - - id: 12384 - name: MS PRO duo - - id: 12385 - name: MS PRO duo HS - - id: 12386 - name: MS PRO duo mark 2 - - id: 12387 - name: MS Pro-HG - - id: 12388 - name: MS Pro-HG duo - - id: 12389 - name: MS Pro-HG duo HX - - id: 12390 - name: MS XC-HG duo - - id: 12391 - name: MSXC - - id: 12392 - name: Nano memory (NM) - - id: 12393 - name: P2 - - id: 12394 - name: PSVita - - id: 12395 - name: RS-MMC - - id: 12396 - name: SDHC - - id: 12397 - name: SDIO - - id: 12398 - name: SDXC - - id: 12399 - name: Smart media xD - - id: 12402 - name: SxS - - id: 12403 - name: SxS Pro - - id: 12404 - name: SxS-1 - - id: 12408 - name: XQD - - id: 13575 - name: xD - - id: 13786 - name: MicroSD (transflash) - - id: 13787 - name: Smart media - - id: 13788 - name: SR memory -- id: 2020 - name: Image formats supported - friendly_id: image_formats_supported - values: - - id: 13544 - name: JPEG - - id: 13577 - name: RAW - - id: 13789 - name: DNG - - id: 13790 - name: JPG - - id: 13791 - name: EXIF - - id: 13792 - name: NEF - - id: 13793 - name: sRAW - - id: 13794 - name: TIFF - - id: 13795 - name: C-RAW - - id: 13796 - name: HEIF -- id: 2021 - name: Light exposure modes - friendly_id: light_exposure_modes - values: - - id: 6977 - name: Manual - - id: 8118 - name: Auto - - id: 13815 - name: Shutter priority AE - - id: 13816 - name: Aperture priority AE - - id: 13817 - name: Touch priority AE -- id: 2022 - name: Optical zoom - friendly_id: optical_zoom - values: - - id: 13818 - name: No zoom - - id: 13819 - name: Less than 10x - - id: 13820 - name: 10-20x - - id: 13821 - name: 20-30x - - id: 13822 - name: More than 30x -- id: 2023 - name: Photo effects type - friendly_id: photo_effects_type - values: - - id: 1 - name: Black - - id: 3 - name: White - - id: 8 - name: Gray - - id: 372 - name: Other - - id: 7722 - name: Art - - id: 7961 - name: Vintage - - id: 10588 - name: Neutral - - id: 13578 - name: Cinema - - id: 13823 - name: Antique - - id: 13824 - name: Calm - - id: 13825 - name: Emboss - - id: 13826 - name: Fader - - id: 13827 - name: Mirror - - id: 13828 - name: Mosaic - - id: 13829 - name: Muted - - id: 13830 - name: Negative film - - id: 13831 - name: Pastel - - id: 13832 - name: Positive film - - id: 13833 - name: Sepia - - id: 13834 - name: Skin tones - - id: 13835 - name: Solarisation - - id: 13836 - name: Split screen - - id: 13837 - name: Vivid -- id: 2024 - name: Scene modes - friendly_id: scene_modes - values: - - id: 372 - name: Other - - id: 429 - name: Sport - - id: 7307 - name: Beach - - id: 7905 - name: Landscape - - id: 8025 - name: Food - - id: 8118 - name: Auto - - id: 10189 - name: Monochrome - - id: 13631 - name: Close-up - - id: 13838 - name: 3D photography - - id: 13839 - name: Backlight - - id: 13840 - name: Candlelight - - id: 13841 - name: Cuisine - - id: 13842 - name: Dawn - - id: 13843 - name: Documents - - id: 13844 - name: Dusk - - id: 13845 - name: Faithful - - id: 13846 - name: Fine detail - - id: 13847 - name: Fireworks - - id: 13848 - name: Flower - - id: 13849 - name: Group photo - - id: 13850 - name: Handheld night scene - - id: 13851 - name: HDR backlight control - - id: 13852 - name: Night - - id: 13853 - name: Panorama - - id: 13854 - name: Portrait - - id: 13855 - name: Smooth skin - - id: 13856 - name: Snow - - id: 13857 - name: Spotlight - - id: 13858 - name: Underwater -- id: 2025 - name: Shooting modes - friendly_id: shooting_modes - values: - - id: 6977 - name: Manual - - id: 8118 - name: Auto - - id: 13859 - name: Program - - id: 13860 - name: Scene - - id: 13861 - name: Lens priority - - id: 13862 - name: Shutter priority - - id: 13863 - name: Aperture priority - - id: 13864 - name: Movie - - id: 13865 - name: Sensitivity priority - - id: 13866 - name: Intelligent auto - - id: 13867 - name: Flexible priority -- id: 2026 - name: Exposure control - friendly_id: exposure_control - values: - - id: 6977 - name: Manual - - id: 11743 - name: Automatic - - id: 13859 - name: Program - - id: 13862 - name: Shutter priority - - id: 13863 - name: Aperture priority -- id: 2027 - name: Film type - friendly_id: film_type - values: - - id: 13868 - name: 16 mm - - id: 13869 - name: 35 mm - - id: 13870 - name: 70 mm - - id: 13871 - name: 120 mm - - id: 13872 - name: 110 mm - - id: 13873 - name: 48mm -- id: 2028 - name: Connection method - friendly_id: connection_method - values: - - id: 7346 - name: Wired - - id: 7347 - name: Wireless -- id: 2029 - name: Surveillance camera design - friendly_id: surveillance_camera_design - values: - - id: 7124 - name: Bullet - - id: 7740 - name: Dome - - id: 12683 - name: Thermal - - id: 13746 - name: Panoramic - - id: 13880 - name: Hidden - - id: 13881 - name: PTZ - - id: 13882 - name: Turret -- id: 2030 - name: Surveillance camera mounting type - friendly_id: surveillance_camera_mounting_type - values: - - id: 6884 - name: Floor - - id: 7056 - name: Wall - - id: 7057 - name: Ceiling - - id: 13883 - name: Desk - - id: 13884 - name: Pole -- id: 2031 - name: Memory storage type - friendly_id: memory_storage_type - values: - - id: 11640 - name: Micro SD card - - id: 11656 - name: SD card - - id: 13885 - name: Built-in memory - - id: 13889 - name: CFast card - - id: 13890 - name: XQD card -- id: 2032 - name: Trail camera design - friendly_id: trail_camera_design - values: - - id: 392 - name: Standard - - id: 11115 - name: Cellular - - id: 13886 - name: Multi-camera - - id: 13887 - name: Security -- id: 2033 - name: Webcam design - friendly_id: webcam_design - values: - - id: 10182 - name: Desktop - - id: 13887 - name: Security - - id: 13892 - name: Conference - - id: 13893 - name: Laptop - - id: 13894 - name: Plug-and-play -- id: 2034 - name: Binocular design - friendly_id: binocular_design - values: - - id: 103 - name: Hunting - - id: 392 - name: Standard - - id: 11103 - name: Marine - - id: 11119 - name: Compact - - id: 11502 - name: Opera - - id: 13895 - name: Astronomy - - id: 13896 - name: Bird watching - - id: 13897 - name: Zoom -- id: 2035 - name: Monocular design - friendly_id: monocular_design - values: - - id: 103 - name: Hunting - - id: 392 - name: Standard - - id: 7751 - name: Infrared - - id: 11119 - name: Compact - - id: 12683 - name: Thermal - - id: 13896 - name: Bird watching - - id: 13897 - name: Zoom - - id: 13898 - name: Night vision -- id: 2036 - name: Reticle type - friendly_id: reticle_type - values: - - id: 6940 - name: German - - id: 13899 - name: Duplex - - id: 13900 - name: Mildot - - id: 13901 - name: BDC - - id: 13902 - name: Illuminated - - id: 13903 - name: Dot - - id: 13904 - name: Target - - id: 13905 - name: Rangefinder - - id: 13906 - name: ACSS - - id: 13907 - name: Horus -- id: 2037 - name: Scope/Sight design - friendly_id: scope_sight_design - values: - - id: 860 - name: Iron - - id: 7006 - name: Red dot - - id: 7752 - name: Laser - - id: 10744 - name: Holographic - - id: 13898 - name: Night vision - - id: 13908 - name: Reflex -- id: 2038 - name: Suitable for weapon type - friendly_id: suitable_for_weapon_type - values: - - id: 6943 - name: Pistol - - id: 11775 - name: Shotgun - - id: 13909 - name: Rifle -- id: 2039 - name: Reel capacity - friendly_id: reel_capacity - values: - - id: 7081 - name: Double - - id: 7228 - name: Quad - - id: 7229 - name: Single - - id: 10984 - name: Triple - - id: 13910 - name: Five - - id: 13911 - name: Six -- id: 2040 - name: Timer design - friendly_id: timer_design - values: - - id: 1656 - name: Digital - - id: 2523 - name: Analog - - id: 13912 - name: Enlarging - - id: 13913 - name: Interval - - id: 13914 - name: Processing -- id: 2041 - name: Lamp type - friendly_id: lamp_type - values: - - id: 11763 - name: Condenser - - id: 13917 - name: Opal - - id: 13918 - name: Cold light - - id: 13919 - name: Dichroic -- id: 2042 - name: Compatible film type - friendly_id: compatible_film_type - values: - - id: 13830 - name: Negative film - - id: 13920 - name: Black & white film - - id: 13921 - name: Black & white paper - - id: 13922 - name: Color film - - id: 13923 - name: Color paper - - id: 13924 - name: Reversal film -- id: 2043 - name: Photographic chemical form - friendly_id: photographic_chemical_form - values: - - id: 7405 - name: Powder - - id: 7406 - name: Liquid - - id: 11070 - name: Crystals - - id: 11129 - name: Tablets -- id: 2044 - name: Photographic paper size - friendly_id: photographic_paper_size - values: - - id: 372 - name: Other - - id: 8508 - name: Custom - - id: 13255 - name: 11" x 17" - - id: 13260 - name: 4" x 6" - - id: 13261 - name: 5" x 7" - - id: 13265 - name: 8" x 10" - - id: 13266 - name: A3 - - id: 13267 - name: A4 - - id: 13268 - name: A5 - - id: 13925 - name: 11" x 14" - - id: 13926 - name: 13" x 19" - - id: 13927 - name: 9" x 12" - - id: 13928 - name: A6 -- id: 2045 - name: Photographic paper type - friendly_id: photographic_paper_type - values: - - id: 61 - name: Silk - - id: 605 - name: Canvas - - id: 763 - name: Satin - - id: 10573 - name: Matte - - id: 10574 - name: Metallic - - id: 10604 - name: Glossy - - id: 13929 - name: Fine art - - id: 13930 - name: Lustre - - id: 13931 - name: Pearl - - id: 13932 - name: Semi-gloss -- id: 2046 - name: Display mode - friendly_id: display_mode - values: - - id: 1656 - name: Digital - - id: 2523 - name: Analog -- id: 2047 - name: Background design - friendly_id: background_design - values: - - id: 605 - name: Canvas - - id: 624 - name: Vinyl - - id: 11412 - name: Muslin - - id: 13933 - name: Chroma key - - id: 13934 - name: Collapsible - - id: 13935 - name: Printed - - id: 13936 - name: Seamless paper -- id: 2048 - name: Diffuser design - friendly_id: diffuser_design - values: - - id: 7733 - name: Ring - - id: 7740 - name: Dome - - id: 8098 - name: Honeycomb - - id: 11332 - name: Umbrella - - id: 13937 - name: Beauty dish - - id: 13938 - name: Bounce - - id: 13939 - name: Flash bender - - id: 13940 - name: Snoot - - id: 13941 - name: Softbox -- id: 2049 - name: Reflector design - friendly_id: reflector_design - values: - - id: 8098 - name: Honeycomb - - id: 11332 - name: Umbrella - - id: 13937 - name: Beauty dish - - id: 13938 - name: Bounce - - id: 13941 - name: Softbox - - id: 13942 - name: Barndoors -- id: 2050 - name: Light filtering - friendly_id: light_filtering - values: - - id: 8002 - name: Blackout - - id: 10674 - name: Color correction - - id: 13632 - name: Diffusion - - id: 13943 - name: Color effects - - id: 13944 - name: General effects - - id: 13945 - name: Patterned -- id: 2051 - name: Projection design - friendly_id: projection_design - values: - - id: 1782 - name: Text - - id: 8508 - name: Custom - - id: 13946 - name: Logo - - id: 13947 - name: Pattern - - id: 13948 - name: Shadow -- id: 2052 - name: Softbox mounting type - friendly_id: softbox_mounting_type - values: - - id: 6883 - name: Universal - - id: 13949 - name: Bowens - - id: 13950 - name: Elinchrom - - id: 13951 - name: Profoto - - id: 13952 - name: Speedlight -- id: 2053 - name: Softbox shape - friendly_id: softbox_shape - values: - - id: 627 - name: Round - - id: 628 - name: Square - - id: 7322 - name: Rectangle - - id: 8399 - name: Octagon - - id: 13953 - name: Strip -- id: 2054 - name: Negative/Slide storage type - friendly_id: negative_slide_storage_type - values: - - id: 13954 - name: Archive storage box - - id: 13955 - name: Negative binder - - id: 13956 - name: Negative envelope - - id: 13957 - name: Negative file - - id: 13958 - name: Negative sleeves - - id: 13959 - name: Slide binder - - id: 13960 - name: Slide box - - id: 13961 - name: Slide carousel - - id: 13962 - name: Slide file - - id: 13963 - name: Slide storage pages - - id: 13964 - name: Slide tray -- id: 2055 - name: Chemical application - friendly_id: chemical_application - values: - - id: 13965 - name: Bonding - - id: 13966 - name: Cleaning - - id: 13967 - name: Waterproofing -- id: 2056 - name: Chemical safety features - friendly_id: chemical_safety_features - values: - - id: 10725 - name: Non-toxic - - id: 13968 - name: Low VOC -- id: 2057 - name: Chemical product form - friendly_id: chemical_product_form - values: - - id: 783 - name: Gel - - id: 6968 - name: Stick - - id: 7405 - name: Powder - - id: 7406 - name: Liquid - - id: 7408 - name: Pellets - - id: 7410 - name: Granules - - id: 11129 - name: Tablets - - id: 13969 - name: Flakes -- id: 2058 - name: Chemical container type - friendly_id: chemical_container_type - values: - - id: 11403 - name: Bottles - - id: 13970 - name: Blister - - id: 13971 - name: Jerrican - - id: 13972 - name: Portion pack -- id: 2059 - name: Suitable for material type - friendly_id: suitable_for_material_type - values: - - id: 44 - name: Nylon - - id: 60 - name: Linen - - id: 67 - name: Acrylic - - id: 372 - name: Other - - id: 548 - name: Paper - - id: 558 - name: Leather - - id: 601 - name: Metal - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 643 - name: Ceramic - - id: 656 - name: Brass - - id: 657 - name: Bronze - - id: 666 - name: Copper - - id: 764 - name: Rubber - - id: 773 - name: Cardboard - - id: 801 - name: Steel - - id: 814 - name: Porcelain - - id: 822 - name: Granite - - id: 823 - name: Fiberglass - - id: 860 - name: Iron - - id: 876 - name: Stone - - id: 892 - name: Hardboard - - id: 899 - name: Plywood - - id: 924 - name: Cement - - id: 929 - name: Concrete - - id: 941 - name: Marble - - id: 951 - name: Sandstone - - id: 999 - name: Plaster - - id: 1175 - name: Enamel - - id: 1300 - name: Epoxy - - id: 1306 - name: Fiberboard - - id: 1637 - name: Aluminum - - id: 13980 - name: Brick - - id: 14040 - name: Stucco - - id: 14483 - name: Grout - - id: 14490 - name: Limestone - - id: 14493 - name: Mortar - - id: 14514 - name: Flint -- id: 2060 - name: Lubricant dispenser type - friendly_id: lubricant_dispenser_type - values: - - id: 7362 - name: Drum - - id: 7984 - name: Bottle - - id: 8496 - name: Tube - - id: 8827 - name: Can - - id: 10507 - name: Pouch - - id: 10788 - name: Canister - - id: 13973 - name: Aerosol spray - - id: 13974 - name: Bucket - - id: 13975 - name: Cartridge - - id: 13976 - name: Pail -- id: 2061 - name: Masonry product form - friendly_id: masonry_product_form - values: - - id: 7404 - name: Paste - - id: 7405 - name: Powder - - id: 7406 - name: Liquid -- id: 2062 - name: Finish - friendly_id: finish - values: - - id: 763 - name: Satin - - id: 10573 - name: Matte - - id: 10574 - name: Metallic - - id: 13981 - name: Gloss -- id: 2063 - name: Intended application - friendly_id: intended_application - values: - - id: 372 - name: Other - - id: 601 - name: Metal - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 929 - name: Concrete - - id: 10195 - name: Windows - - id: 11721 - name: Marine transport - - id: 13982 - name: Cabinets - - id: 13983 - name: Ceilings - - id: 13984 - name: Decks/Fences - - id: 13985 - name: Doors - - id: 13986 - name: Drywall - - id: 13987 - name: Exterior walls - - id: 13988 - name: Floors - - id: 13989 - name: Furniture - - id: 13990 - name: Interior walls - - id: 13991 - name: Radiators - - id: 13992 - name: Trim/Molding -- id: 2064 - name: Primer use - friendly_id: primer_use - values: - - id: 10621 - name: Coloring - - id: 13993 - name: 1K - - id: 13994 - name: 2 in 1 - - id: 13995 - name: 2K - - id: 13996 - name: 3K - - id: 13997 - name: Base paint - - id: 13998 - name: Filler - - id: 13999 - name: Finish - - id: 14000 - name: Impregnating - - id: 14001 - name: Insulating - - id: 14002 - name: Protective coating - - id: 14003 - name: Sealer -- id: 2065 - name: Product formulation - friendly_id: product_formulation - values: - - id: 14004 - name: Base substance - - id: 14005 - name: Ready mixed -- id: 2066 - name: Sheen/Gloss level - friendly_id: sheen_gloss_level - values: - - id: 61 - name: Silk - - id: 763 - name: Satin - - id: 2985 - name: Eggshell - - id: 8689 - name: Smooth - - id: 10573 - name: Matte - - id: 10715 - name: Semi-matte - - id: 13827 - name: Mirror - - id: 13932 - name: Semi-gloss - - id: 13981 - name: Gloss - - id: 14006 - name: Dead-matte - - id: 14007 - name: Deep-matte - - id: 14008 - name: Dull-matte - - id: 14009 - name: Extra-matte - - id: 14010 - name: Flat-matte - - id: 14011 - name: Hammer - - id: 14012 - name: High-gloss - - id: 14013 - name: Metallic gloss - - id: 14014 - name: Satin-gloss - - id: 14015 - name: Semi-satin - - id: 14016 - name: Silk-gloss - - id: 14017 - name: Silk-matte - - id: 14018 - name: Soft gloss - - id: 14019 - name: Soft sheen -- id: 2067 - name: Varnish/Finish application - friendly_id: varnish_finish_application - values: - - id: 372 - name: Other - - id: 6883 - name: Universal - - id: 7057 - name: Ceiling - - id: 10195 - name: Windows - - id: 13985 - name: Doors - - id: 13989 - name: Furniture - - id: 13991 - name: Radiators - - id: 14020 - name: Baseboard - - id: 14021 - name: Bathtubs - - id: 14022 - name: Cooker hoods - - id: 14023 - name: Facades - - id: 14024 - name: Fences - - id: 14025 - name: Frames - - id: 14026 - name: Garden furniture - - id: 14027 - name: Gates - - id: 14028 - name: Grills - - id: 14029 - name: Pipes - - id: 14030 - name: Roofs - - id: 14031 - name: Stairs - - id: 14032 - name: Trims - - id: 14033 - name: Walls - - id: 14034 - name: Window shutters -- id: 2069 - name: Plumbing primer application - friendly_id: plumbing_primer_application - values: - - id: 14029 - name: Pipes - - id: 14042 - name: Fittings -- id: 2070 - name: Coating/Sealant application - friendly_id: coating_sealant_application - values: - - id: 14043 - name: Heat control - - id: 14044 - name: Leak proofing - - id: 14045 - name: Weatherproofing -- id: 2071 - name: Solder/Flux application - friendly_id: solder_flux_application - values: - - id: 14046 - name: Electronics - - id: 14047 - name: Plumbing -- id: 2072 - name: Solvent/Thinner application - friendly_id: solvent_thinner_application - values: - - id: 1300 - name: Epoxy - - id: 7975 - name: Paint - - id: 14048 - name: Adhesive remover - - id: 14049 - name: Lacquer - - id: 14050 - name: Polyurethane - - id: 14051 - name: Shellac - - id: 14052 - name: Stain - - id: 14053 - name: Varnish -- id: 2073 - name: Solvent application - friendly_id: solvent_application - values: - - id: 1300 - name: Epoxy - - id: 7975 - name: Paint - - id: 14048 - name: Adhesive remover - - id: 14049 - name: Lacquer - - id: 14050 - name: Polyurethane - - id: 14051 - name: Shellac - - id: 14052 - name: Stain - - id: 14053 - name: Varnish -- id: 2074 - name: Stripper application - friendly_id: stripper_application - values: - - id: 1300 - name: Epoxy - - id: 7975 - name: Paint - - id: 14048 - name: Adhesive remover - - id: 14049 - name: Lacquer - - id: 14050 - name: Polyurethane - - id: 14051 - name: Shellac - - id: 14052 - name: Stain - - id: 14053 - name: Varnish -- id: 2075 - name: Thinner application - friendly_id: thinner_application - values: - - id: 1300 - name: Epoxy - - id: 7975 - name: Paint - - id: 14048 - name: Adhesive remover - - id: 14049 - name: Lacquer - - id: 14050 - name: Polyurethane - - id: 14051 - name: Shellac - - id: 14052 - name: Stain - - id: 14053 - name: Varnish -- id: 2076 - name: Building consumable form - friendly_id: building_consumable_form - values: - - id: 7404 - name: Paste - - id: 7405 - name: Powder - - id: 7406 - name: Liquid -- id: 2077 - name: Wall patching application - friendly_id: wall_patching_application - values: - - id: 625 - name: Wood - - id: 999 - name: Plaster - - id: 7057 - name: Ceiling - - id: 13986 - name: Drywall - - id: 14040 - name: Stucco - - id: 14055 - name: Masonry -- id: 2078 - name: Edge style - friendly_id: edge_style - values: - - id: 628 - name: Square - - id: 14056 - name: Beveled - - id: 14057 - name: Bullnose - - id: 14058 - name: Eased - - id: 14059 - name: Ogee -- id: 2079 - name: Door closer application - friendly_id: door_closer_application - values: - - id: 14061 - name: Internal - - id: 14062 - name: External -- id: 2080 - name: Door closer design - friendly_id: door_closer_design - values: - - id: 6884 - name: Floor - - id: 14063 - name: Overhead concealed - - id: 14064 - name: Parallel arm - - id: 14065 - name: Regular arm - - id: 14066 - name: Slide-track arm - - id: 14067 - name: Top jamb -- id: 2081 - name: Hardware finish - friendly_id: hardware_finish - values: - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 656 - name: Brass - - id: 657 - name: Bronze - - id: 665 - name: Chrome - - id: 679 - name: Nickel - - id: 763 - name: Satin - - id: 1637 - name: Aluminum - - id: 10573 - name: Matte - - id: 13823 - name: Antique - - id: 13981 - name: Gloss - - id: 14068 - name: Brushed - - id: 14069 - name: Lacquered - - id: 14070 - name: Polished -- id: 2082 - name: Recommended use - friendly_id: recommended_use - values: - - id: 6883 - name: Universal - - id: 8510 - name: Industrial - - id: 14071 - name: Commercial - - id: 14072 - name: Residential -- id: 2083 - name: Suitable for door type - friendly_id: suitable_for_door_type - values: - - id: 14073 - name: Double-leaf - - id: 14074 - name: Single-leaf -- id: 2084 - name: Door frame application - friendly_id: door_frame_application - values: - - id: 14061 - name: Internal - - id: 14062 - name: External -- id: 2085 - name: Door frame finish - friendly_id: door_frame_finish - values: - - id: 14075 - name: Pre-finished - - id: 14076 - name: Ready to finish -- id: 2086 - name: Door knob function - friendly_id: door_knob_function - values: - - id: 14077 - name: Dummy - - id: 14078 - name: Entry - - id: 14079 - name: Passage - - id: 14080 - name: Privacy -- id: 2087 - name: Door stop placement - friendly_id: door_stop_placement - values: - - id: 6884 - name: Floor - - id: 7056 - name: Wall - - id: 7058 - name: Door - - id: 14020 - name: Baseboard - - id: 14081 - name: Hinge pin -- id: 2088 - name: Door application - friendly_id: door_application - values: - - id: 14061 - name: Internal - - id: 14062 - name: External -- id: 2089 - name: Door glass finish - friendly_id: door_glass_finish - values: - - id: 17 - name: Clear - - id: 7470 - name: Lead - - id: 8004 - name: Opaque - - id: 13947 - name: Pattern - - id: 14082 - name: Frost - - id: 14083 - name: No glass -- id: 2090 - name: Door suitable location - friendly_id: door_suitable_location - values: - - id: 3176 - name: Back - - id: 6195 - name: Front - - id: 10174 - name: Patio -- id: 2091 - name: Door surface finish - friendly_id: door_surface_finish - values: - - id: 14084 - name: Glazed - - id: 14085 - name: Unglazed -- id: 2092 - name: Board material - friendly_id: board_material - values: - - id: 67 - name: Acrylic - - id: 557 - name: Felt - - id: 596 - name: Cork - - id: 640 - name: Glass - - id: 814 - name: Porcelain - - id: 856 - name: Melamine - - id: 892 - name: Hardboard - - id: 942 - name: Slate -- id: 2093 - name: Hatch suitable location - friendly_id: hatch_suitable_location - values: - - id: 6884 - name: Floor - - id: 7056 - name: Wall - - id: 7057 - name: Ceiling - - id: 14086 - name: Roof -- id: 2094 - name: Hardwood lumber grade - friendly_id: hardwood_lumber_grade - values: - - id: 14090 - name: Firsts and seconds (FAS) - - id: 14091 - name: No. 1 common - - id: 14092 - name: No. 2 common - - id: 14093 - name: No. 2A common - - id: 14094 - name: No. 2B common - - id: 14095 - name: No. 3A common - - id: 14096 - name: No. 3B common - - id: 14097 - name: Select -- id: 2095 - name: Plywood grade - friendly_id: plywood_grade - values: - - id: 1967 - name: A - - id: 1968 - name: B - - id: 1969 - name: C - - id: 1970 - name: D -- id: 2096 - name: Softwood lumber grade - friendly_id: softwood_lumber_grade - values: - - id: 14098 - name: C select - - id: 14099 - name: D select - - id: 14100 - name: No. 1 - - id: 14101 - name: No. 2 - - id: 14102 - name: No. 3 - - id: 14103 - name: Construction grade -- id: 2097 - name: Molding application - friendly_id: molding_application - values: - - id: 14020 - name: Baseboard - - id: 14104 - name: Astragal - - id: 14105 - name: Bead/Reel - - id: 14106 - name: Casing - - id: 14107 - name: Chair rail - - id: 14108 - name: Cove - - id: 14109 - name: Crown - - id: 14110 - name: Dentil - - id: 14111 - name: Picture rail - - id: 14112 - name: Quarter round - - id: 14113 - name: Shoe molding -- id: 2098 - name: Gutter fitting type - friendly_id: gutter_fitting_type - values: - - id: 14115 - name: Downspout connector - - id: 14116 - name: End cap - - id: 14117 - name: Gutter connector - - id: 14118 - name: Gutter elbow - - id: 14119 - name: Gutter inside corner - - id: 14120 - name: Gutter outside corner - - id: 14121 - name: Gutter P-trap - - id: 14122 - name: Gutter pipe bend - - id: 14123 - name: Gutter pipe reducer - - id: 14124 - name: Gutter pipe tee - - id: 14125 - name: Gutter pit trap - - id: 14126 - name: Gutter running outlet - - id: 14127 - name: Gutter S-trap - - id: 14128 - name: Gutter U-trap - - id: 14129 - name: Stop end running outlet -- id: 2099 - name: Shutter finish - friendly_id: shutter_finish - values: - - id: 14130 - name: Painted - - id: 14131 - name: Primed - - id: 14132 - name: Stained - - id: 14133 - name: Unfinished -- id: 2100 - name: Installation method - friendly_id: installation_method - values: - - id: 14135 - name: Lay-in installation - - id: 14136 - name: Surface mount -- id: 2101 - name: Tile design - friendly_id: tile_design - values: - - id: 372 - name: Other - - id: 1868 - name: Geometric - - id: 6776 - name: Herringbone - - id: 6997 - name: Hexagonal - - id: 9796 - name: Spanish - - id: 13828 - name: Mosaic - - id: 14137 - name: Acoustic - - id: 14138 - name: Arabesque - - id: 14139 - name: Basketweave - - id: 14140 - name: Chevron - - id: 14141 - name: Fish scale - - id: 14142 - name: Subway -- id: 2102 - name: Tile look - friendly_id: tile_look - values: - - id: 601 - name: Metal - - id: 625 - name: Wood - - id: 640 - name: Glass - - id: 876 - name: Stone - - id: 924 - name: Cement - - id: 941 - name: Marble - - id: 7673 - name: 3D -- id: 2103 - name: Tile texture - friendly_id: tile_texture - values: - - id: 684 - name: Sand - - id: 8689 - name: Smooth - - id: 10241 - name: Textured - - id: 14137 - name: Acoustic - - id: 14143 - name: Coffered - - id: 14144 - name: Fissured - - id: 14145 - name: Glue-up -- id: 2104 - name: Weatherization application - friendly_id: weatherization_application - values: - - id: 10195 - name: Windows - - id: 13985 - name: Doors -- id: 2105 - name: Weather strip design - friendly_id: weather_strip_design - values: - - id: 627 - name: Round - - id: 1363 - name: Flat -- id: 2106 - name: Glazing type - friendly_id: glazing_type - values: - - id: 14146 - name: Double-pane - - id: 14147 - name: Single-pane - - id: 14148 - name: Triple-pane -- id: 2107 - name: Fencing components - friendly_id: fencing_components - values: - - id: 585 - name: Fabric - - id: 7611 - name: Rail - - id: 9953 - name: Panel - - id: 14149 - name: Barbed wire - - id: 14150 - name: Fence topper - - id: 14151 - name: Gate - - id: 14152 - name: Picket - - id: 14153 - name: Post - - id: 14154 - name: Slat -- id: 2108 - name: Trellis design - friendly_id: trellis_design - values: - - id: 628 - name: Square - - id: 8509 - name: Diamond -- id: 2109 - name: Fuel additives - friendly_id: fuel_additives - values: - - id: 14155 - name: Anti-gel - - id: 14156 - name: Corrosion inhibitor - - id: 14157 - name: Dye - - id: 14158 - name: Stabilizer -- id: 2110 - name: Fuel grade - friendly_id: fuel_grade - values: - - id: 392 - name: Standard - - id: 10035 - name: Premium - - id: 14159 - name: Bioheat - - id: 14161 - name: 1-K - - id: 14162 - name: 2-K -- id: 2111 - name: Sulfur content - friendly_id: sulfur_content - values: - - id: 1364 - name: Low - - id: 1376 - name: High - - id: 14160 - name: Ultra-low -- id: 2112 - name: Kerosene application - friendly_id: kerosene_application - values: - - id: 14163 - name: Heater - - id: 14164 - name: Jet fuel - - id: 14165 - name: Lamp -- id: 2113 - name: Fuel purity - friendly_id: fuel_purity - values: - - id: 14071 - name: Commercial - - id: 14166 - name: HD-10 - - id: 14167 - name: HD-5 -- id: 2114 - name: Propane application - friendly_id: propane_application - values: - - id: 14168 - name: Forklift - - id: 14169 - name: Grill - - id: 14170 - name: Heating - - id: 14171 - name: Recreational vehicles (RV) - - id: 14172 - name: Torch -- id: 2115 - name: Bracket/Brace design - friendly_id: bracket_brace_design - values: - - id: 14173 - name: Angle bracket - - id: 14174 - name: Corner brace - - id: 14175 - name: Countertop bracket - - id: 14176 - name: Decorative bracket - - id: 14177 - name: Flat brace - - id: 14178 - name: Floating shelf bracket - - id: 14179 - name: Mending plate - - id: 14180 - name: Shelf bracket - - id: 14181 - name: Strap brace - - id: 14182 - name: T-plate -- id: 2116 - name: Knob/Handle design - friendly_id: knob_handle_design - values: - - id: 14183 - name: Bail pull - - id: 14184 - name: Bar pull - - id: 14185 - name: Cup pull - - id: 14186 - name: Novelty knob - - id: 14187 - name: Pendant pull - - id: 14188 - name: Recessed pull - - id: 14189 - name: Ring pull - - id: 14190 - name: Round knob - - id: 14191 - name: Square knob - - id: 14192 - name: T-bar -- id: 2117 - name: Load capacity - friendly_id: load_capacity - values: - - id: 14193 - name: Light-duty - - id: 14194 - name: Medium-duty - - id: 14195 - name: Heavy-duty -- id: 2118 - name: Cord fastening system - friendly_id: cord_fastening_system - values: - - id: 7758 - name: Hook - - id: 14196 - name: Carabiner - - id: 14197 - name: Toggle ball -- id: 2119 - name: Molding shape - friendly_id: molding_shape - values: - - id: 372 - name: Other - - id: 7927 - name: Bench - - id: 9953 - name: Panel - - id: 13980 - name: Brick - - id: 14198 - name: Baluster - - id: 14199 - name: Block - - id: 14200 - name: Column - - id: 14201 - name: Figurine - - id: 14202 - name: Paver - - id: 14203 - name: Planter - - id: 14204 - name: Sphere - - id: 14205 - name: Stepping stone -- id: 2120 - name: Suitable for gas type - friendly_id: suitable_for_gas_type - values: - - id: 372 - name: Other - - id: 7270 - name: Propane - - id: 8035 - name: Ethanol - - id: 8062 - name: Natural gas - - id: 10972 - name: Hydrogen - - id: 12926 - name: Ammonia - - id: 12928 - name: Direct methanol - - id: 12939 - name: Methanol -- id: 2121 - name: Spike design - friendly_id: spike_design - values: - - id: 11332 - name: Umbrella - - id: 14206 - name: Fence post - - id: 14207 - name: Garden hose guide - - id: 14208 - name: Ground base - - id: 14209 - name: Landscape fabric - - id: 14210 - name: Solar light - - id: 14211 - name: Spiral ground anchor - - id: 14212 - name: Tent - - id: 14213 - name: Tree -- id: 2122 - name: Fastener finish - friendly_id: fastener_finish - values: - - id: 4 - name: Gold - - id: 44 - name: Nylon - - id: 620 - name: Stainless steel - - id: 623 - name: Titanium - - id: 656 - name: Brass - - id: 657 - name: Bronze - - id: 665 - name: Chrome - - id: 666 - name: Copper - - id: 679 - name: Nickel - - id: 785 - name: Galvanized steel - - id: 865 - name: Zinc - - id: 1637 - name: Aluminum - - id: 14130 - name: Painted - - id: 14214 - name: Anodized - - id: 14215 - name: Black oxide - - id: 14216 - name: Bright zinc plated (BZP) steel - - id: 14217 - name: Cadmium - - id: 14218 - name: Plated steel - - id: 14219 - name: Powder coated - - id: 14220 - name: Zinc alloy -- id: 2123 - name: Bolt form - friendly_id: bolt_form - values: - - id: 3100 - name: Toggle - - id: 7253 - name: Plow - - id: 7558 - name: Shoulder - - id: 14227 - name: Anchor - - id: 14228 - name: Carriage - - id: 14229 - name: Elevator - - id: 14230 - name: Flange - - id: 14231 - name: Hex - - id: 14232 - name: J-bolt - - id: 14233 - name: Lag - - id: 14234 - name: Machine - - id: 14235 - name: Roofing - - id: 14236 - name: Shackle - - id: 14237 - name: Socket - - id: 14238 - name: Stove - - id: 14239 - name: Structural - - id: 14240 - name: Tension control - - id: 14241 - name: U-bolt -- id: 2124 - name: Nut form - friendly_id: nut_form - values: - - id: 372 - name: Other - - id: 628 - name: Square - - id: 1363 - name: Flat - - id: 2745 - name: Full - - id: 7936 - name: Acorn - - id: 10773 - name: Spring - - id: 14230 - name: Flange - - id: 14242 - name: Barrel - - id: 14243 - name: Blind - - id: 14244 - name: Cage - - id: 14245 - name: Castle - - id: 14246 - name: Coupling - - id: 14247 - name: Durlok - - id: 14248 - name: Half moon - - id: 14249 - name: Hexagon - - id: 14250 - name: K-nut - - id: 14251 - name: Lug - - id: 14252 - name: Nyloc - - id: 14253 - name: Rivet - - id: 14254 - name: Self-locking - - id: 14255 - name: Shear - - id: 14256 - name: Slotted - - id: 14257 - name: T-nut - - id: 14258 - name: Threaded - - id: 14259 - name: U-nut - - id: 14260 - name: Weld - - id: 14261 - name: Wing -- id: 2125 - name: Rivet form - friendly_id: rivet_form - values: - - id: 2874 - name: Solid - - id: 4324 - name: Split - - id: 7558 - name: Shoulder - - id: 14243 - name: Blind - - id: 14262 - name: Drive - - id: 14263 - name: Flush - - id: 14264 - name: Friction-lock - - id: 14265 - name: Oscar - - id: 14266 - name: Self-piercing - - id: 14267 - name: Semi-tubular - - id: 14268 - name: Tubular -- id: 2126 - name: Thread direction - friendly_id: thread_direction - values: - - id: 14269 - name: Left-hand - - id: 14270 - name: Right-hand -- id: 2127 - name: Threaded rod size - friendly_id: threaded_rod_size - values: - - id: 372 - name: Other - - id: 11529 - name: M10 - - id: 11530 - name: M20 - - id: 11531 - name: M6 - - id: 14271 - name: M1.6 - - id: 14272 - name: M2 - - id: 14273 - name: M2.5 - - id: 14274 - name: M3 - - id: 14275 - name: M4 - - id: 14276 - name: M5 - - id: 14277 - name: M8 - - id: 14278 - name: M12 - - id: 14279 - name: M14 - - id: 14280 - name: M16 - - id: 14281 - name: M18 - - id: 14282 - name: M22 - - id: 14283 - name: M24 - - id: 14284 - name: M27 - - id: 14285 - name: M30 - - id: 14286 - name: M33 - - id: 14287 - name: M36 - - id: 14288 - name: M39 - - id: 14289 - name: M42 - - id: 14290 - name: M45 - - id: 14291 - name: M48 - - id: 14292 - name: M52 - - id: 14293 - name: M56 - - id: 14294 - name: M60 - - id: 14295 - name: M64 -- id: 2128 - name: Washer form - friendly_id: washer_form - values: - - id: 1363 - name: Flat - - id: 10773 - name: Spring - - id: 10993 - name: Safety - - id: 14296 - name: Disc lock - - id: 14297 - name: Fender - - id: 14298 - name: Lock washer - - id: 14299 - name: Nordlock - - id: 14300 - name: Red fiber - - id: 14301 - name: Serrated shake proof - - id: 14302 - name: Square plate - - id: 14303 - name: Starlock - - id: 14304 - name: Tab - - id: 14305 - name: Taper -- id: 2129 - name: Connector design - friendly_id: connector_design - values: - - id: 4453 - name: Snap - - id: 14306 - name: Closed end - - id: 14307 - name: Open end -- id: 2130 - name: Hook design - friendly_id: hook_design - values: - - id: 7254 - name: Screw - - id: 8451 - name: Fixed - - id: 10773 - name: Spring - - id: 11316 - name: Swivel - - id: 11519 - name: Swing - - id: 14308 - name: Double-ended -- id: 2131 - name: Metal molding application - friendly_id: metal_molding_application - values: - - id: 372 - name: Other - - id: 14309 - name: Dental applicances - - id: 14310 - name: Figurines - - id: 14311 - name: Ingots - - id: 14312 - name: Machinery - - id: 14313 - name: Jewelry - - id: 14314 - name: Sculpture - - id: 14315 - name: Tools -- id: 2132 - name: Hardware mounting type - friendly_id: hardware_mounting_type - values: - - id: 6885 - name: Free-standing - - id: 8288 - name: Countertop - - id: 10154 - name: Portable - - id: 11444 - name: Wall-mounted - - id: 14397 - name: Floor-mounted - - id: 14511 - name: Benchtop -- id: 2133 - name: Suitable for water feature type - friendly_id: suitable_for_water_feature_type - values: - - id: 10169 - name: Garden - - id: 14316 - name: Drainage - - id: 14317 - name: Fountain - - id: 14318 - name: Irrigation system - - id: 14319 - name: Pond - - id: 14320 - name: Water purification system - - id: 14321 - name: Water supply system -- id: 2134 - name: Dryer technology - friendly_id: dryer_technology - values: - - id: 14322 - name: Desiccant - - id: 14323 - name: Refrigerated -- id: 2135 - name: Duct shape - friendly_id: duct_shape - values: - - id: 627 - name: Round - - id: 1363 - name: Flat -- id: 2136 - name: Housing color - friendly_id: housing_color - values: - - id: 1 - name: Black - - id: 2 - name: Blue - - id: 3 - name: White - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 6 - name: Beige - - id: 7 - name: Brown - - id: 8 - name: Gray - - id: 9 - name: Green - - id: 10 - name: Orange - - id: 11 - name: Pink - - id: 12 - name: Purple - - id: 13 - name: Red - - id: 14 - name: Yellow - - id: 15 - name: Navy - - id: 16 - name: Rose gold - - id: 17 - name: Clear - - id: 657 - name: Bronze - - id: 2865 - name: Multicolor -- id: 2137 - name: HVAC control type - friendly_id: hvac_control_type - values: - - id: 1656 - name: Digital - - id: 6977 - name: Manual - - id: 11808 - name: Smart - - id: 12555 - name: Programmable -- id: 2138 - name: Key purpose - friendly_id: key_purpose - values: - - id: 7058 - name: Door - - id: 7785 - name: Padlock - - id: 10253 - name: Car - - id: 14325 - name: Window -- id: 2139 - name: Security level - friendly_id: security_level - values: - - id: 1364 - name: Low - - id: 1376 - name: High - - id: 1511 - name: Medium -- id: 2140 - name: Pipe clamp design - friendly_id: pipe_clamp_design - values: - - id: 4453 - name: Snap - - id: 7008 - name: C-clamp - - id: 7342 - name: Saddle - - id: 10921 - name: Repair - - id: 14241 - name: U-bolt - - id: 14327 - name: Band hanger - - id: 14328 - name: Bell hanger - - id: 14329 - name: Hose - - id: 14330 - name: Insulated pipe - - id: 14331 - name: Pipe support - - id: 14332 - name: Riser -- id: 2141 - name: Bathtub base design - friendly_id: bathtub_base_design - values: - - id: 6885 - name: Free-standing - - id: 10472 - name: Platform - - id: 14333 - name: Clawfoot -- id: 2142 - name: Bathtub skirt shape - friendly_id: bathtub_skirt_shape - values: - - id: 552 - name: Straight - - id: 7737 - name: Curved - - id: 14334 - name: Corner -- id: 2143 - name: Plumbing trap design - friendly_id: plumbing_trap_design - values: - - id: 428 - name: Running - - id: 7362 - name: Drum - - id: 7984 - name: Bottle - - id: 10870 - name: Bell - - id: 14335 - name: Grease interceptor - - id: 14336 - name: HepvO - - id: 14337 - name: P-trap - - id: 14338 - name: S-trap -- id: 2144 - name: Connecting thread - friendly_id: connecting_thread - values: - - id: 14339 - name: 1 inch NPT - - id: 14340 - name: 1-1/2 inch NPT - - id: 14341 - name: 1-1/4 inch NPT - - id: 14342 - name: 1/2 inch IPS - - id: 14343 - name: 1/2 inch NPT - - id: 14344 - name: 1/4 inch NPT - - id: 14345 - name: 1/8 inch NPT - - id: 14346 - name: 15/16 inch-27 - - id: 14347 - name: 2 inch NPT - - id: 14348 - name: 3/4 inch FHT - - id: 14349 - name: 3/4 inch GHT - - id: 14350 - name: 3/4 inch IPS - - id: 14351 - name: 3/4 inch MHT - - id: 14352 - name: 3/4 inch NPT - - id: 14353 - name: 3/8 inch IPS - - id: 14354 - name: 3/8 inch NPT - - id: 14355 - name: 55/64 inch-27 -- id: 2145 - name: Faucet thread - friendly_id: faucet_thread - values: - - id: 18 - name: Female - - id: 19 - name: Male - - id: 10549 - name: Dual -- id: 2146 - name: Drain location - friendly_id: drain_location - values: - - id: 6889 - name: Left - - id: 6890 - name: Right - - id: 14356 - name: Center -- id: 2147 - name: Shower base design - friendly_id: shower_base_design - values: - - id: 628 - name: Square - - id: 10140 - name: Rectangular - - id: 14358 - name: Angular - - id: 14359 - name: Quadrant -- id: 2148 - name: Material firmness - friendly_id: material_firmness - values: - - id: 6993 - name: Soft - - id: 6994 - name: Hard - - id: 7219 - name: Flexible - - id: 7391 - name: Rigid - - id: 14600 - name: Semi-rigid -- id: 2149 - name: Toilet cover design - friendly_id: toilet_cover_design - values: - - id: 627 - name: Round - - id: 14361 - name: Elongated -- id: 2150 - name: Flush plate color - friendly_id: flush_plate_color - values: - - id: 1 - name: Black - - id: 2 - name: Blue - - id: 3 - name: White - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 6 - name: Beige - - id: 7 - name: Brown - - id: 8 - name: Gray - - id: 9 - name: Green - - id: 10 - name: Orange - - id: 11 - name: Pink - - id: 12 - name: Purple - - id: 13 - name: Red - - id: 14 - name: Yellow - - id: 15 - name: Navy - - id: 16 - name: Rose gold - - id: 17 - name: Clear - - id: 657 - name: Bronze - - id: 2865 - name: Multicolor -- id: 2151 - name: Tank color - friendly_id: tank_color - values: - - id: 1 - name: Black - - id: 2 - name: Blue - - id: 3 - name: White - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 6 - name: Beige - - id: 7 - name: Brown - - id: 8 - name: Gray - - id: 9 - name: Green - - id: 10 - name: Orange - - id: 11 - name: Pink - - id: 12 - name: Purple - - id: 13 - name: Red - - id: 14 - name: Yellow - - id: 15 - name: Navy - - id: 16 - name: Rose gold - - id: 17 - name: Clear - - id: 657 - name: Bronze - - id: 2865 - name: Multicolor -- id: 2152 - name: Shower design - friendly_id: shower_design - values: - - id: 6885 - name: Free-standing - - id: 14334 - name: Corner - - id: 14362 - name: Alcove -- id: 2153 - name: Sink shape - friendly_id: sink_shape - values: - - id: 627 - name: Round - - id: 628 - name: Square - - id: 7321 - name: Oval - - id: 10140 - name: Rectangular - - id: 14390 - name: Semicircular -- id: 2154 - name: Sink mounting type - friendly_id: sink_mounting_type - values: - - id: 14391 - name: Counter - - id: 14392 - name: Wall-hung -- id: 2155 - name: Sink type - friendly_id: sink_type - values: - - id: 14393 - name: Half bowl - - id: 14394 - name: Single bowl - - id: 14395 - name: One and half bowls - - id: 14396 - name: Double bowl -- id: 2156 - name: Bidet mounting type - friendly_id: bidet_mounting_type - values: - - id: 11444 - name: Wall-mounted - - id: 14397 - name: Floor-mounted -- id: 2157 - name: Flush system - friendly_id: flush_system - values: - - id: 7081 - name: Double - - id: 7229 - name: Single -- id: 2158 - name: Toilet mounting type - friendly_id: toilet_mounting_type - values: - - id: 11444 - name: Wall-mounted - - id: 14397 - name: Floor-mounted -- id: 2159 - name: Toilet shape - friendly_id: toilet_shape - values: - - id: 627 - name: Round - - id: 10140 - name: Rectangular - - id: 14361 - name: Elongated -- id: 2160 - name: Urinal mounting type - friendly_id: urinal_mounting_type - values: - - id: 11444 - name: Wall-mounted - - id: 14397 - name: Floor-mounted -- id: 2161 - name: Placement supported - friendly_id: placement_supported - values: - - id: 6884 - name: Floor - - id: 7056 - name: Wall - - id: 7057 - name: Ceiling - - id: 7556 - name: Ground - - id: 8127 - name: Hand - - id: 11799 - name: In-wall - - id: 13884 - name: Pole - - id: 14325 - name: Window - - id: 14399 - name: Bike - - id: 14400 - name: Sink - - id: 14401 - name: Table - - id: 14402 - name: TV bracket -- id: 2162 - name: Motor starting method - friendly_id: motor_starting_method - values: - - id: 6993 - name: Soft - - id: 11709 - name: SD - - id: 14403 - name: Auto-transformer - - id: 14404 - name: DOL - - id: 14405 - name: Frequency converter -- id: 2163 - name: Circuit breaker panel form - friendly_id: circuit_breaker_panel_form - values: - - id: 10180 - name: Miniature - - id: 14406 - name: Molded case - - id: 14407 - name: Motor protective - - id: 14408 - name: Residual-current - - id: 14409 - name: String -- id: 2164 - name: Circuit breaker design - friendly_id: circuit_breaker_design - values: - - id: 14410 - name: Bolt-on - - id: 14411 - name: Plug-in - - id: 14412 - name: Unit mount -- id: 2165 - name: Circuit breaker type - friendly_id: circuit_breaker_type - values: - - id: 392 - name: Standard - - id: 14413 - name: Arc-fault circuit interrupter (AFCI) - - id: 14414 - name: Circuit breaker disconnect - - id: 14415 - name: Dual function (AFCI/GFCI) - - id: 14416 - name: Ground-fault circuit interrupter (GFCI) - - id: 14417 - name: Thermal-magnetic circuit breaker -- id: 2166 - name: Trip type - friendly_id: trip_type - values: - - id: 14418 - name: Non-interchangeable - - id: 14419 - name: Interchangeable -- id: 2167 - name: Shrink ratio - friendly_id: shrink_ratio - values: - - id: 7445 - name: '4:1' - - id: 7448 - name: '3:1' - - id: 14420 - name: '2:1' -- id: 2168 - name: Switch control type - friendly_id: switch_control_type - values: - - id: 7742 - name: Button - - id: 7743 - name: Lever - - id: 7745 - name: Rotary - - id: 7746 - name: Scrollbar - - id: 7747 - name: Sensor - - id: 7748 - name: Slider - - id: 7749 - name: Tilt - - id: 7750 - name: Touch -- id: 2169 - name: Ignition system - friendly_id: ignition_system - values: - - id: 6977 - name: Manual - - id: 7779 - name: Electronic - - id: 11743 - name: Automatic -- id: 2170 - name: Socket type - friendly_id: socket_type - values: - - id: 7271 - name: USB - - id: 11571 - name: Ethernet - - id: 11576 - name: Satellite - - id: 14423 - name: Multimedia - - id: 14424 - name: Plug - - id: 14425 - name: Shaver - - id: 14426 - name: Telephone - - id: 14427 - name: TV -- id: 2171 - name: Solar panel design - friendly_id: solar_panel_design - values: - - id: 13891 - name: Freestanding - - id: 14428 - name: Roof-mounted -- id: 2172 - name: Solar cell type - friendly_id: solar_cell_type - values: - - id: 14429 - name: Monocrystalline silicon - - id: 14430 - name: Polycrystalline silicon - - id: 14431 - name: Thin-film -- id: 2173 - name: Solar panel connections - friendly_id: solar_panel_connections - values: - - id: 372 - name: Other - - id: 11719 - name: USB type-C - - id: 12808 - name: USB type-A - - id: 14432 - name: Alligator clips - - id: 14433 - name: Anderson powerpole - - id: 14434 - name: DC connector - - id: 14435 - name: MC4 - - id: 14436 - name: SAE - - id: 14437 - name: XT60 -- id: 2174 - name: Wall plate style - friendly_id: wall_plate_style - values: - - id: 14438 - name: Conventional - - id: 14439 - name: Screwless -- id: 2175 - name: Engine design - friendly_id: engine_design - values: - - id: 14440 - name: 2-stroke - - id: 14441 - name: 4-stroke -- id: 2176 - name: Engine purpose - friendly_id: engine_purpose - values: - - id: 372 - name: Other - - id: 8456 - name: Chainsaw - - id: 14442 - name: ATV - - id: 14443 - name: Generator - - id: 14444 - name: Lawnmower - - id: 14445 - name: Leaf blower - - id: 14446 - name: Motorcycle - - id: 14447 - name: Outboard - - id: 14448 - name: Pressure washer - - id: 14449 - name: Snow blower - - id: 14450 - name: Weed trimmer -- id: 2177 - name: Fuel supply - friendly_id: fuel_supply - values: - - id: 6976 - name: Electric - - id: 7083 - name: Hybrid - - id: 14164 - name: Jet fuel - - id: 14421 - name: Gasoline - - id: 14422 - name: Diesel - - id: 14451 - name: Avgas - - id: 14452 - name: Biofuel - - id: 14453 - name: Mogas - - id: 14454 - name: Plug-in hybrid - - id: 16627 - name: Petrol - - id: 16630 - name: Flex fuel -- id: 2178 - name: Shaft orientation - friendly_id: shaft_orientation - values: - - id: 8167 - name: Horizontal - - id: 8168 - name: Vertical -- id: 2179 - name: Start type - friendly_id: start_type - values: - - id: 6976 - name: Electric - - id: 14455 - name: Pull -- id: 2180 - name: Storage tank application - friendly_id: storage_tank_application - values: - - id: 7026 - name: Water - - id: 14456 - name: Chemicals - - id: 14457 - name: Fuel - - id: 14458 - name: Waste -- id: 2181 - name: Sandblaster application - friendly_id: sandblaster_application - values: - - id: 14459 - name: Polishing - - id: 14460 - name: Sanding -- id: 2182 - name: Sander type - friendly_id: sander_type - values: - - id: 7361 - name: Disc - - id: 7395 - name: Belt - - id: 14461 - name: Detail - - id: 14462 - name: File - - id: 14463 - name: Random orbital - - id: 14464 - name: Sanding roller - - id: 14465 - name: Sheet - - id: 14466 - name: Tube belt -- id: 2183 - name: Rotating direction - friendly_id: rotating_direction - values: - - id: 14269 - name: Left-hand - - id: 14270 - name: Right-hand -- id: 2184 - name: Abrasive material - friendly_id: abrasive_material - values: - - id: 640 - name: Glass - - id: 643 - name: Ceramic - - id: 1637 - name: Aluminum - - id: 8509 - name: Diamond - - id: 14510 - name: Silicon carbide - - id: 14513 - name: Emery - - id: 14514 - name: Flint - - id: 14515 - name: Garnet - - id: 16932 - name: Steel wool -- id: 2185 - name: Backing material - friendly_id: backing_material - values: - - id: 45 - name: Polyester - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 626 - name: Plastic - - id: 764 - name: Rubber - - id: 1817 - name: Polyurethane (PU) -- id: 2186 - name: Grit type - friendly_id: grit_type - values: - - id: 1511 - name: Medium - - id: 10887 - name: Fine - - id: 10983 - name: Coarse - - id: 14518 - name: Extra coarse - - id: 14519 - name: Extra fine - - id: 14520 - name: Super fine - - id: 14521 - name: Ultra fine - - id: 14522 - name: Very fine -- id: 2187 - name: Sanding application - friendly_id: sanding_application - values: - - id: 14523 - name: Deburring - - id: 14524 - name: Finishing work - - id: 14525 - name: Removing paint - - id: 14526 - name: Removing rust - - id: 14527 - name: Removing scale -- id: 2188 - name: Handle color - friendly_id: handle_color - values: - - id: 1 - name: Black - - id: 2 - name: Blue - - id: 3 - name: White - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 6 - name: Beige - - id: 7 - name: Brown - - id: 8 - name: Gray - - id: 9 - name: Green - - id: 10 - name: Orange - - id: 11 - name: Pink - - id: 12 - name: Purple - - id: 13 - name: Red - - id: 14 - name: Yellow - - id: 15 - name: Navy - - id: 16 - name: Rose gold - - id: 17 - name: Clear - - id: 657 - name: Bronze - - id: 2865 - name: Multicolor -- id: 2189 - name: Blade design - friendly_id: blade_design - values: - - id: 7389 - name: Folding - - id: 8451 - name: Fixed - - id: 10994 - name: Razor - - id: 14530 - name: Snap-off -- id: 2190 - name: Body material - friendly_id: body_material - values: - - id: 620 - name: Stainless steel - - id: 671 - name: Graphite - - id: 882 - name: Composite - - id: 1637 - name: Aluminum -- id: 2191 - name: Suitable for pipe type - friendly_id: suitable_for_pipe_type - values: - - id: 372 - name: Other - - id: 599 - name: Acrylonitrile butadiene styrene (ABS) - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 620 - name: Stainless steel - - id: 666 - name: Copper - - id: 774 - name: Cast iron - - id: 785 - name: Galvanized steel - - id: 14398 - name: PEX - - id: 14531 - name: Chlorinated polyvinyl chloride (CPVC) - - id: 14532 - name: Multilayer -- id: 2192 - name: Chuck type - friendly_id: chuck_type - values: - - id: 7783 - name: Key - - id: 14533 - name: Keyless - - id: 14534 - name: SDS - - id: 14535 - name: SDS max - - id: 14536 - name: SDS plus - - id: 14537 - name: SDS top -- id: 2194 - name: Handle design - friendly_id: handle_design - values: - - id: 552 - name: Straight - - id: 6943 - name: Pistol -- id: 2195 - name: Scaffolding mounting type - friendly_id: scaffolding_mounting_type - values: - - id: 7343 - name: Frame - - id: 14542 - name: Mobile -- id: 2196 - name: Lathe application - friendly_id: lathe_application - values: - - id: 14543 - name: Acrylic spinning - - id: 14544 - name: Glass-working - - id: 14545 - name: Metal spinning - - id: 14546 - name: Metalworking - - id: 14547 - name: Pottery - - id: 14548 - name: Woodworking -- id: 2197 - name: Device technology - friendly_id: device_technology - values: - - id: 1650 - name: Magnetic - - id: 1656 - name: Digital - - id: 2523 - name: Analog - - id: 7779 - name: Electronic - - id: 8028 - name: Radio - - id: 8052 - name: Optical -- id: 2198 - name: Anemometer application - friendly_id: anemometer_application - values: - - id: 8510 - name: Industrial - - id: 14554 - name: Meteorological -- id: 2199 - name: System of measurement - friendly_id: system_of_measurement - values: - - id: 14562 - name: Imperial - - id: 14563 - name: Metric -- id: 2200 - name: Detected gases - friendly_id: detected_gases - values: - - id: 7268 - name: Butane - - id: 7270 - name: Propane - - id: 8040 - name: Carbon dioxide (CO2) - - id: 8062 - name: Natural gas - - id: 14569 - name: Carbon monoxide (CO) - - id: 14570 - name: Difluoromethane - - id: 14571 - name: LPG - - id: 14572 - name: Methane - - id: 14573 - name: Radon - - id: 14574 - name: Trichloromethane -- id: 2201 - name: Frequency weighting - friendly_id: frequency_weighting - values: - - id: 14575 - name: A-weighting - - id: 14576 - name: C-weighting - - id: 14577 - name: Z-weighting -- id: 2202 - name: Time weighting - friendly_id: time_weighting - values: - - id: 7454 - name: Slow - - id: 7456 - name: Fast - - id: 14578 - name: Impulse -- id: 2203 - name: Tape material - friendly_id: tape_material - values: - - id: 62 - name: Synthetic - - id: 548 - name: Paper - - id: 585 - name: Fabric - - id: 624 - name: Vinyl - - id: 626 - name: Plastic - - id: 1817 - name: Polyurethane (PU) -- id: 2204 - name: Thermal detector type - friendly_id: thermal_detector_type - values: - - id: 14580 - name: Amorphous silicon (a Si) detector - - id: 14581 - name: Indium antimonide (InSb) detector - - id: 14582 - name: Mercury cadmium telluride (MCT) detector - - id: 14583 - name: Microbolometer - - id: 14584 - name: QWIP - - id: 14585 - name: VOx detector -- id: 2205 - name: Thermocouple type - friendly_id: thermocouple_type - values: - - id: 12950 - name: Type B - - id: 12952 - name: Type E - - id: 12956 - name: Type J - - id: 12957 - name: Type K - - id: 14586 - name: Type N - - id: 14587 - name: Type R - - id: 14588 - name: Type S - - id: 14589 - name: Type T -- id: 2206 - name: Feed type - friendly_id: feed_type - values: - - id: 14590 - name: Gravity - - id: 14591 - name: Siphon - - id: 14592 - name: Side -- id: 2207 - name: Paint brush design - friendly_id: paint_brush_design - values: - - id: 627 - name: Round - - id: 1363 - name: Flat - - id: 7323 - name: Triangle - - id: 12478 - name: Fan - - id: 14593 - name: Angle - - id: 14594 - name: Bright - - id: 14595 - name: Filbert - - id: 14596 - name: Rigger -- id: 2208 - name: Plunger shape - friendly_id: plunger_shape - values: - - id: 7491 - name: Cup - - id: 14599 - name: Accordion -- id: 2209 - name: Shaft color - friendly_id: shaft_color - values: - - id: 1 - name: Black - - id: 2 - name: Blue - - id: 3 - name: White - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 6 - name: Beige - - id: 7 - name: Brown - - id: 8 - name: Gray - - id: 9 - name: Green - - id: 10 - name: Orange - - id: 11 - name: Pink - - id: 12 - name: Purple - - id: 13 - name: Red - - id: 14 - name: Yellow - - id: 15 - name: Navy - - id: 16 - name: Rose gold - - id: 17 - name: Clear - - id: 657 - name: Bronze - - id: 2865 - name: Multicolor -- id: 2210 - name: Shaft material - friendly_id: shaft_material - values: - - id: 64 - name: Bamboo - - id: 548 - name: Paper - - id: 601 - name: Metal - - id: 620 - name: Stainless steel - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 764 - name: Rubber - - id: 773 - name: Cardboard - - id: 809 - name: Silicone - - id: 1637 - name: Aluminum -- id: 2211 - name: Suction cup color - friendly_id: suction_cup_color - values: - - id: 1 - name: Black - - id: 2 - name: Blue - - id: 3 - name: White - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 6 - name: Beige - - id: 7 - name: Brown - - id: 8 - name: Gray - - id: 9 - name: Green - - id: 10 - name: Orange - - id: 11 - name: Pink - - id: 12 - name: Purple - - id: 13 - name: Red - - id: 14 - name: Yellow - - id: 15 - name: Navy - - id: 16 - name: Rose gold - - id: 17 - name: Clear - - id: 657 - name: Bronze - - id: 2865 - name: Multicolor -- id: 2212 - name: Suction cup material - friendly_id: suction_cup_material - values: - - id: 64 - name: Bamboo - - id: 548 - name: Paper - - id: 601 - name: Metal - - id: 620 - name: Stainless steel - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 764 - name: Rubber - - id: 773 - name: Cardboard - - id: 809 - name: Silicone - - id: 1637 - name: Aluminum -- id: 2213 - name: Bevel type - friendly_id: bevel_type - values: - - id: 7081 - name: Double - - id: 7229 - name: Single -- id: 2214 - name: Socket driver tip - friendly_id: socket_driver_tip - values: - - id: 628 - name: Square - - id: 14231 - name: Hex - - id: 14256 - name: Slotted - - id: 14601 - name: Pentalobe - - id: 14602 - name: Phillips - - id: 14603 - name: Pozidriv - - id: 14604 - name: Spanner - - id: 14605 - name: Spline - - id: 14606 - name: Torq-set - - id: 14607 - name: Torx - - id: 14608 - name: Tri-wing - - id: 14609 - name: Twelve-point -- id: 2215 - name: Tool operation - friendly_id: tool_operation - values: - - id: 6977 - name: Manual - - id: 11925 - name: Powered -- id: 2216 - name: Tool key tip - friendly_id: tool_key_tip - values: - - id: 628 - name: Square - - id: 14231 - name: Hex - - id: 14256 - name: Slotted - - id: 14601 - name: Pentalobe - - id: 14602 - name: Phillips - - id: 14603 - name: Pozidriv - - id: 14604 - name: Spanner - - id: 14605 - name: Spline - - id: 14606 - name: Torq-set - - id: 14607 - name: Torx - - id: 14608 - name: Tri-wing - - id: 14609 - name: Twelve-point -- id: 2217 - name: Drive size - friendly_id: drive_size - values: - - id: 14610 - name: 1 inch - - id: 14611 - name: 1-1/2 inch - - id: 14612 - name: 1/2 inch - - id: 14613 - name: 1/4 inch - - id: 14614 - name: 2-1/2 inch - - id: 14615 - name: 3/4 inch - - id: 14616 - name: 3/8 inch -- id: 2218 - name: Luggage/Bag closure - friendly_id: luggage_bag_closure - values: - - id: 839 - name: Velcro - - id: 1650 - name: Magnetic - - id: 3098 - name: Zipper - - id: 3099 - name: Hook & loop - - id: 3100 - name: Toggle - - id: 3101 - name: Elastic - - id: 3132 - name: Clip - - id: 4453 - name: Snap - - id: 6797 - name: Buckles - - id: 7315 - name: Twist lock - - id: 7742 - name: Button - - id: 7777 - name: Combination lock - - id: 7784 - name: Latch - - id: 11352 - name: Drawstring - - id: 12650 - name: Key lock - - id: 13610 - name: Flap - - id: 13611 - name: Open top - - id: 13612 - name: Push lock - - id: 13613 - name: Roll-top -- id: 2219 - name: Thickness type - friendly_id: thickness_type - values: - - id: 1511 - name: Medium - - id: 10892 - name: Thick - - id: 10893 - name: Thin -- id: 2220 - name: Tag fastening - friendly_id: tag_fastening - values: - - id: 6797 - name: Buckles - - id: 7706 - name: Loop - - id: 10102 - name: Strap -- id: 2221 - name: Bottle/Container closure - friendly_id: bottle_container_closure - values: - - id: 7030 - name: Pump - - id: 14617 - name: Flip cap - - id: 14618 - name: Screw cap -- id: 2222 - name: Bag strap type - friendly_id: bag_strap_type - values: - - id: 395 - name: Adjustable - - id: 7558 - name: Shoulder - - id: 14619 - name: Crossbody -- id: 2223 - name: Tote handle type - friendly_id: tote_handle_type - values: - - id: 169 - name: Short - - id: 1406 - name: Long - - id: 10549 - name: Dual -- id: 2224 - name: Spinner type - friendly_id: spinner_type - values: - - id: 10452 - name: 4-wheel - - id: 14620 - name: 2-wheel - - id: 14621 - name: 8-wheel -- id: 2225 - name: Suitcase handle type - friendly_id: suitcase_handle_type - values: - - id: 14622 - name: Telescopic - - id: 14623 - name: Top carry - - id: 14624 - name: Side carry -- id: 2226 - name: Carry options - friendly_id: carry_options - values: - - id: 7029 - name: Handle - - id: 13617 - name: Shoulder strap -- id: 2227 - name: Interior features - friendly_id: interior_features - values: - - id: 13827 - name: Mirror - - id: 14625 - name: Compartments - - id: 14626 - name: Dividers -- id: 2228 - name: Brightness levels - friendly_id: brightness_levels - values: - - id: 1364 - name: Low - - id: 1376 - name: High - - id: 1511 - name: Medium - - id: 14627 - name: Super bright -- id: 2229 - name: Light attachment type - friendly_id: light_attachment_type - values: - - id: 7219 - name: Flexible - - id: 8451 - name: Fixed -- id: 2230 - name: Bookmark design - friendly_id: bookmark_design - values: - - id: 1650 - name: Magnetic - - id: 3132 - name: Clip - - id: 14628 - name: Tassel - - id: 14629 - name: Ribbon -- id: 2231 - name: Bookmark shape - friendly_id: bookmark_shape - values: - - id: 627 - name: Round - - id: 628 - name: Square - - id: 1523 - name: Animal - - id: 10140 - name: Rectangular -- id: 2232 - name: Page layout - friendly_id: page_layout - values: - - id: 12600 - name: Blank - - id: 14630 - name: Alphabetical - - id: 14631 - name: Tabbed -- id: 2233 - name: Binder ring shape - friendly_id: binder_ring_shape - values: - - id: 627 - name: Round - - id: 7319 - name: D-shaped -- id: 2234 - name: Paper size - friendly_id: paper_size - values: - - id: 13255 - name: 11" x 17" - - id: 13263 - name: 8.5" x 11" - - id: 13266 - name: A3 - - id: 13267 - name: A4 - - id: 13268 - name: A5 - - id: 13272 - name: DL - - id: 13274 - name: Legal - - id: 13275 - name: Letter - - id: 13278 - name: Tabloid - - id: 13925 - name: 11" x 14" - - id: 13927 - name: 9" x 12" - - id: 13928 - name: A6 - - id: 14677 - name: A2 - - id: 14770 - name: 12" x 12" - - id: 14771 - name: 12" x 18" - - id: 14772 - name: 18" x 24" - - id: 14773 - name: 24" x 36" - - id: 14774 - name: 6" x 6" - - id: 14775 - name: A1 - - id: 14776 - name: A7 -- id: 2235 - name: Tab style - friendly_id: tab_style - values: - - id: 12600 - name: Blank - - id: 14630 - name: Alphabetical - - id: 14632 - name: Pre-printed - - id: 14633 - name: Numbered -- id: 2236 - name: Ring type - friendly_id: ring_type - values: - - id: 627 - name: Round - - id: 7319 - name: D-shaped - - id: 14634 - name: Slant -- id: 2237 - name: Binding style - friendly_id: binding_style - values: - - id: 8289 - name: Coil - - id: 10113 - name: Wire - - id: 11196 - name: Comb -- id: 2238 - name: Calendar format - friendly_id: calendar_format - values: - - id: 8518 - name: Daily - - id: 8519 - name: Weekly - - id: 14635 - name: Monthly -- id: 2239 - name: Supply shape - friendly_id: supply_shape - values: - - id: 372 - name: Other - - id: 627 - name: Round - - id: 1266 - name: Heart - - id: 1523 - name: Animal - - id: 1796 - name: Vehicle - - id: 6998 - name: Triangular - - id: 7321 - name: Oval - - id: 10016 - name: Fruit - - id: 10140 - name: Rectangular - - id: 14638 - name: Star -- id: 2240 - name: Paper type - friendly_id: paper_type - values: - - id: 10155 - name: Grid - - id: 12600 - name: Blank - - id: 13903 - name: Dot - - id: 14639 - name: Lined - - id: 14640 - name: Specialty paper - - id: 14683 - name: Plain white - - id: 14684 - name: Flip-chart -- id: 2241 - name: Sheet color - friendly_id: sheet_color - values: - - id: 1 - name: Black - - id: 2 - name: Blue - - id: 3 - name: White - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 6 - name: Beige - - id: 7 - name: Brown - - id: 8 - name: Gray - - id: 9 - name: Green - - id: 10 - name: Orange - - id: 11 - name: Pink - - id: 12 - name: Purple - - id: 13 - name: Red - - id: 14 - name: Yellow - - id: 15 - name: Navy - - id: 16 - name: Rose gold - - id: 17 - name: Clear - - id: 657 - name: Bronze - - id: 2865 - name: Multicolor -- id: 2242 - name: Band strength - friendly_id: band_strength - values: - - id: 392 - name: Standard - - id: 14195 - name: Heavy-duty -- id: 2243 - name: Staple wire gauge - friendly_id: staple_wire_gauge - values: - - id: 1511 - name: Medium - - id: 3663 - name: Heavy - - id: 10887 - name: Fine -- id: 2244 - name: Point design - friendly_id: point_design - values: - - id: 10024 - name: Sharp - - id: 14647 - name: Blunt -- id: 2245 - name: Tack/Pushpin head design - friendly_id: tack_pushpin_head_design - values: - - id: 627 - name: Round - - id: 1363 - name: Flat - - id: 10110 - name: Decorative -- id: 2246 - name: Recording quality - friendly_id: recording_quality - values: - - id: 1364 - name: Low - - id: 1376 - name: High - - id: 1511 - name: Medium -- id: 2247 - name: Line spacing options - friendly_id: line_spacing_options - values: - - id: 395 - name: Adjustable - - id: 7081 - name: Double - - id: 7229 - name: Single -- id: 2248 - name: Clip type - friendly_id: clip_type - values: - - id: 11536 - name: Low-profile - - id: 14648 - name: High-capacity -- id: 2249 - name: Lens configuration - friendly_id: lens_configuration - values: - - id: 7229 - name: Single - - id: 10558 - name: Multiple -- id: 2250 - name: Ink color - friendly_id: ink_color - values: - - id: 1 - name: Black - - id: 2 - name: Blue - - id: 3 - name: White - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 6 - name: Beige - - id: 7 - name: Brown - - id: 8 - name: Gray - - id: 9 - name: Green - - id: 10 - name: Orange - - id: 11 - name: Pink - - id: 12 - name: Purple - - id: 13 - name: Red - - id: 14 - name: Yellow - - id: 15 - name: Navy - - id: 16 - name: Rose gold - - id: 17 - name: Clear - - id: 657 - name: Bronze - - id: 2865 - name: Multicolor -- id: 2251 - name: Stamp type - friendly_id: stamp_type - values: - - id: 7559 - name: Traditional - - id: 14649 - name: Self-inking - - id: 14650 - name: Pre-inked -- id: 2252 - name: Text plate material - friendly_id: text_plate_material - values: - - id: 64 - name: Bamboo - - id: 548 - name: Paper - - id: 601 - name: Metal - - id: 620 - name: Stainless steel - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 764 - name: Rubber - - id: 773 - name: Cardboard - - id: 809 - name: Silicone - - id: 1637 - name: Aluminum -- id: 2253 - name: Pen tip design - friendly_id: pen_tip_design - values: - - id: 1511 - name: Medium - - id: 10887 - name: Fine - - id: 14651 - name: Bold -- id: 2254 - name: Lead grade - friendly_id: lead_grade - values: - - id: 372 - name: Other - - id: 1968 - name: B - - id: 1972 - name: F - - id: 2927 - name: H - - id: 14652 - name: HB - - id: 14653 - name: 2B - - id: 14654 - name: 4B - - id: 14655 - name: 6B - - id: 14660 - name: 9H - - id: 14661 - name: 8H - - id: 14662 - name: 7H - - id: 14663 - name: 6H - - id: 14664 - name: 5H - - id: 14665 - name: 4H - - id: 14666 - name: 3H - - id: 14667 - name: 2H - - id: 14668 - name: 3B - - id: 14669 - name: 5B - - id: 14670 - name: 7B - - id: 14671 - name: 8B - - id: 14672 - name: 9B -- id: 2255 - name: Hardness - friendly_id: hardness - values: - - id: 1511 - name: Medium - - id: 6993 - name: Soft - - id: 6994 - name: Hard -- id: 2256 - name: Marker tip design - friendly_id: marker_tip_design - values: - - id: 7124 - name: Bullet - - id: 7462 - name: Chisel - - id: 7487 - name: Brush - - id: 10887 - name: Fine -- id: 2257 - name: Pen type - friendly_id: pen_type - values: - - id: 783 - name: Gel - - id: 14317 - name: Fountain - - id: 14656 - name: Ballpoint - - id: 14657 - name: Mechanical pencil - - id: 14658 - name: Rollerball -- id: 2258 - name: Pencil type - friendly_id: pencil_type - values: - - id: 6971 - name: Mechanical - - id: 14659 - name: Wooden -- id: 2259 - name: Pen color - friendly_id: pen_color - values: - - id: 1 - name: Black - - id: 2 - name: Blue - - id: 3 - name: White - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 6 - name: Beige - - id: 7 - name: Brown - - id: 8 - name: Gray - - id: 9 - name: Green - - id: 10 - name: Orange - - id: 11 - name: Pink - - id: 12 - name: Purple - - id: 13 - name: Red - - id: 14 - name: Yellow - - id: 15 - name: Navy - - id: 16 - name: Rose gold - - id: 17 - name: Clear - - id: 657 - name: Bronze - - id: 2865 - name: Multicolor -- id: 2260 - name: Felt tip design - friendly_id: felt_tip_design - values: - - id: 1511 - name: Medium - - id: 10887 - name: Fine - - id: 14651 - name: Bold -- id: 2261 - name: Feed system - friendly_id: feed_system - values: - - id: 6977 - name: Manual - - id: 11743 - name: Automatic -- id: 2262 - name: Fold type - friendly_id: fold_type - values: - - id: 14673 - name: Letter fold - - id: 14674 - name: Z-fold - - id: 14675 - name: Half fold - - id: 14676 - name: Double parallel fold - - id: 15822 - name: Accordion fold - - id: 15823 - name: Bi-fold - - id: 15824 - name: Gate fold - - id: 15825 - name: Tri-fold -- id: 2263 - name: Paperweight design - friendly_id: paperweight_design - values: - - id: 10110 - name: Decorative - - id: 14678 - name: Plain - - id: 14679 - name: Engraved - - id: 14680 - name: Personalized -- id: 2264 - name: Board mounting type - friendly_id: board_mounting_type - values: - - id: 6885 - name: Free-standing - - id: 7056 - name: Wall - - id: 10154 - name: Portable - - id: 14681 - name: Easel-backed -- id: 2265 - name: Chalkboard surface - friendly_id: chalkboard_surface - values: - - id: 1650 - name: Magnetic - - id: 7559 - name: Traditional - - id: 8689 - name: Smooth -- id: 2266 - name: Frame design - friendly_id: frame_design - values: - - id: 601 - name: Metal - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 1637 - name: Aluminum - - id: 14682 - name: Frameless -- id: 2267 - name: Board surface - friendly_id: board_surface - values: - - id: 585 - name: Fabric - - id: 596 - name: Cork - - id: 1650 - name: Magnetic - - id: 8689 - name: Smooth -- id: 2268 - name: Zoom type - friendly_id: zoom_type - values: - - id: 1656 - name: Digital - - id: 8052 - name: Optical -- id: 2269 - name: Laser color - friendly_id: laser_color - values: - - id: 1 - name: Black - - id: 2 - name: Blue - - id: 3 - name: White - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 6 - name: Beige - - id: 7 - name: Brown - - id: 8 - name: Gray - - id: 9 - name: Green - - id: 10 - name: Orange - - id: 11 - name: Pink - - id: 12 - name: Purple - - id: 13 - name: Red - - id: 14 - name: Yellow - - id: 15 - name: Navy - - id: 16 - name: Rose gold - - id: 17 - name: Clear - - id: 657 - name: Bronze - - id: 2865 - name: Multicolor -- id: 2270 - name: Laser light source - friendly_id: laser_light_source - values: - - id: 7195 - name: LED - - id: 14685 - name: Laser diode -- id: 2271 - name: Lectern mounting type - friendly_id: lectern_mounting_type - values: - - id: 6884 - name: Floor - - id: 6885 - name: Free-standing - - id: 7192 - name: Tabletop -- id: 2272 - name: Packing materials included - friendly_id: packing_materials_included - values: - - id: 14686 - name: Air pillows - - id: 14687 - name: Bubble wrap - - id: 14688 - name: Corrugated inserts - - id: 14689 - name: Edge protectors - - id: 14690 - name: Packing foam - - id: 14691 - name: Packing inserts - - id: 14692 - name: Packing paper - - id: 14693 - name: Packing peanuts - - id: 14694 - name: Stretch wrap -- id: 2273 - name: Additional features - friendly_id: additional_features - values: - - id: 14696 - name: Backstage pass - - id: 14697 - name: Meet & greet - - id: 14698 - name: Post-event activities - - id: 14699 - name: VIP package -- id: 2274 - name: Age restrictions - friendly_id: age_restrictions - values: - - id: 534 - name: All ages - - id: 14700 - name: 18 years or older - - id: 14701 - name: 21 years or older -- id: 2275 - name: Event type - friendly_id: event_type - values: - - id: 372 - name: Other - - id: 11499 - name: Musical - - id: 14702 - name: Comedy show - - id: 14703 - name: Concert - - id: 14704 - name: Exhibition - - id: 14705 - name: Festival - - id: 14706 - name: Seminar - - id: 14707 - name: Sport game - - id: 14708 - name: Theater -- id: 2276 - name: Ticket type - friendly_id: ticket_type - values: - - id: 14709 - name: General admission - - id: 14710 - name: Reserved seating - - id: 14711 - name: Premium seating - - id: 14712 - name: Standing room -- id: 2277 - name: Candle kit items included - friendly_id: candle_kit_items_included - values: - - id: 8440 - name: Mold - - id: 11128 - name: Thermometer - - id: 14713 - name: Candle labels - - id: 14714 - name: Candle wicks - - id: 14715 - name: Stirring tool - - id: 14716 - name: Wax melting pot - - id: 14717 - name: Wick holders -- id: 2278 - name: Candle type - friendly_id: candle_type - values: - - id: 14305 - name: Taper - - id: 14718 - name: Pillar - - id: 14719 - name: Container - - id: 14720 - name: Votive - - id: 14721 - name: Tea light - - id: 14722 - name: Floating -- id: 2279 - name: Wax type - friendly_id: wax_type - values: - - id: 783 - name: Gel - - id: 979 - name: Paraffin - - id: 10728 - name: Beeswax - - id: 14723 - name: Soy -- id: 2280 - name: Drawing/Painting kit items included - friendly_id: drawing_painting_kit_items_included - values: - - id: 7975 - name: Paint - - id: 13831 - name: Pastel - - id: 14724 - name: Aquarelle pencil - - id: 14725 - name: Art charcoal - - id: 14726 - name: Chalk - - id: 14727 - name: Charcoal pencil - - id: 14728 - name: Color pencil - - id: 14729 - name: Coloring pad - - id: 14730 - name: Drawing stump - - id: 14731 - name: Fineliner - - id: 14732 - name: Graphite pencil - - id: 14733 - name: Marker - - id: 14734 - name: Paint brush - - id: 14735 - name: Paint cup - - id: 14736 - name: Pastel pencil - - id: 14737 - name: Watercolor pencil -- id: 2281 - name: Suitable for fabric type - friendly_id: suitable_for_fabric_type - values: - - id: 62 - name: Synthetic - - id: 14738 - name: Natural fabric -- id: 2282 - name: Incense fragrance - friendly_id: incense_fragrance - values: - - id: 7879 - name: Rose - - id: 7946 - name: Citrus - - id: 7947 - name: Jasmine - - id: 7948 - name: Lavender - - id: 7950 - name: Sandalwood - - id: 7951 - name: Vanilla - - id: 14739 - name: Patchouli - - id: 14740 - name: Frankincense - - id: 14741 - name: Myrrh - - id: 14742 - name: Nag champa - - id: 14743 - name: Herbal blends -- id: 2283 - name: Incense type - friendly_id: incense_type - values: - - id: 877 - name: Resin - - id: 6968 - name: Stick - - id: 7405 - name: Powder - - id: 8280 - name: Cone -- id: 2284 - name: Ingredients included - friendly_id: ingredients_included - values: - - id: 372 - name: Other - - id: 662 - name: Charcoal - - id: 14744 - name: Natural herbs - - id: 14745 - name: Resins - - id: 14746 - name: Essential oils - - id: 14747 - name: Bamboo sticks - - id: 14748 - name: Molds -- id: 2285 - name: Jewelry set type - friendly_id: jewelry_set_type - values: - - id: 7733 - name: Ring - - id: 14628 - name: Tassel - - id: 14749 - name: Bead set - - id: 14750 - name: Jewelry set - - id: 14751 - name: Charm - - id: 14752 - name: Necklace - - id: 14753 - name: Earring -- id: 2286 - name: Kit type - friendly_id: kit_type - values: - - id: 14754 - name: Crochet - - id: 14755 - name: Cross stitch - - id: 14756 - name: Embroidery - - id: 14757 - name: Knitting - - id: 14758 - name: Quilting - - id: 14759 - name: Sewing -- id: 2287 - name: Album type - friendly_id: album_type - values: - - id: 14760 - name: Ring binder - - id: 14761 - name: Pocket page - - id: 14762 - name: Spiral bound - - id: 14763 - name: Scrapbook -- id: 2288 - name: Embellishments - friendly_id: embellishments - values: - - id: 930 - name: Sequins - - id: 1600 - name: Buttons - - id: 7976 - name: Stickers - - id: 14764 - name: Die cuts - - id: 14765 - name: Chipboard elements - - id: 14766 - name: Washi tape - - id: 14767 - name: Ribbons - - id: 14768 - name: Brads - - id: 14769 - name: Gems -- id: 2289 - name: Scrapbook paper type - friendly_id: scrapbook_paper_type - values: - - id: 7063 - name: Specialty - - id: 13945 - name: Patterned - - id: 14637 - name: Cardstock -- id: 2290 - name: Paper finish - friendly_id: paper_finish - values: - - id: 763 - name: Satin - - id: 8689 - name: Smooth - - id: 10241 - name: Textured - - id: 10573 - name: Matte - - id: 13981 - name: Gloss - - id: 14790 - name: Parchment-like - - id: 15826 - name: Recycled - - id: 15827 - name: Uncoated -- id: 2291 - name: Paper format - friendly_id: paper_format - values: - - id: 14199 - name: Block - - id: 14777 - name: Loose sheets - - id: 14778 - name: Pad - - id: 14779 - name: Sketchbook -- id: 2292 - name: Paper texture - friendly_id: paper_texture - values: - - id: 8689 - name: Smooth - - id: 10498 - name: Rough - - id: 14780 - name: Cold press - - id: 14781 - name: Hot press - - id: 14782 - name: Medium grain -- id: 2293 - name: Creative art project type - friendly_id: creative_art_project_type - values: - - id: 372 - name: Other - - id: 14784 - name: Calligraphy - - id: 14785 - name: Crafting - - id: 14786 - name: Drawing - - id: 14787 - name: Printing - - id: 14788 - name: Scrapbooking - - id: 14789 - name: Tracing -- id: 2294 - name: Suitable for art technique - friendly_id: suitable_for_art_technique - values: - - id: 14791 - name: Acrylic painting - - id: 14792 - name: Charcoal drawing - - id: 14793 - name: Graphite/Pencil drawing - - id: 14794 - name: Mixed media artwork - - id: 14795 - name: Pastel drawing - - id: 14796 - name: Watercolor paintin -- id: 2295 - name: Button/Snap closure type - friendly_id: button_snap_closure_type - values: - - id: 1650 - name: Magnetic - - id: 4453 - name: Snap - - id: 10110 - name: Decorative - - id: 14797 - name: Invisible - - id: 14798 - name: Press-stud -- id: 2296 - name: Zipper pull style - friendly_id: zipper_pull_style - values: - - id: 10241 - name: Textured - - id: 10720 - name: Embossed - - id: 13935 - name: Printed - - id: 13945 - name: Patterned - - id: 14678 - name: Plain - - id: 14679 - name: Engraved -- id: 2297 - name: Paint form - friendly_id: paint_form - values: - - id: 783 - name: Gel - - id: 6994 - name: Hard - - id: 7404 - name: Paste - - id: 7405 - name: Powder - - id: 7406 - name: Liquid - - id: 7407 - name: Spray - - id: 14733 - name: Marker -- id: 2298 - name: Paint type - friendly_id: paint_type - values: - - id: 61 - name: Silk - - id: 67 - name: Acrylic - - id: 622 - name: Textile - - id: 624 - name: Vinyl - - id: 640 - name: Glass - - id: 1175 - name: Enamel - - id: 7407 - name: Spray - - id: 7890 - name: Poster - - id: 8063 - name: Oil - - id: 8201 - name: Ink - - id: 10758 - name: Water-based - - id: 13831 - name: Pastel - - id: 14800 - name: Acrylic primer - - id: 14801 - name: Fresco - - id: 14802 - name: Glitter poster - - id: 14803 - name: Gouache - - id: 14804 - name: Hot wax - - id: 14805 - name: Tempera - - id: 14806 - name: Texturizing paste - - id: 14807 - name: Water miscible oil - - id: 14808 - name: Watercolor - - id: 14809 - name: Weathering powder -- id: 2299 - name: Art fixative application method - friendly_id: art_fixative_application_method - values: - - id: 14810 - name: Aerosol - - id: 14811 - name: Brush-on -- id: 2300 - name: Suitable for crafting material - friendly_id: suitable_for_crafting_material - values: - - id: 67 - name: Acrylic - - id: 548 - name: Paper - - id: 558 - name: Leather - - id: 585 - name: Fabric - - id: 601 - name: Metal - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 643 - name: Ceramic - - id: 764 - name: Rubber - - id: 773 - name: Cardboard - - id: 821 - name: Foam - - id: 842 - name: Wax -- id: 2301 - name: Ink form - friendly_id: ink_form - values: - - id: 7275 - name: Pen - - id: 7984 - name: Bottle - - id: 7986 - name: Jar - - id: 14733 - name: Marker - - id: 14813 - name: Ink stick -- id: 2302 - name: Glaze finish - friendly_id: glaze_finish - values: - - id: 17 - name: Clear - - id: 763 - name: Satin - - id: 8004 - name: Opaque - - id: 10241 - name: Textured - - id: 10573 - name: Matte - - id: 13981 - name: Gloss - - id: 14814 - name: Crackle -- id: 2303 - name: Visual effect - friendly_id: visual_effect - values: - - id: 10574 - name: Metallic - - id: 14815 - name: Crystalline - - id: 14816 - name: Speckled - - id: 14817 - name: Texture -- id: 2304 - name: Dye form - friendly_id: dye_form - values: - - id: 783 - name: Gel - - id: 6994 - name: Hard - - id: 7404 - name: Paste - - id: 7405 - name: Powder - - id: 7406 - name: Liquid - - id: 7407 - name: Spray - - id: 14733 - name: Marker -- id: 2305 - name: Ink type - friendly_id: ink_type - values: - - id: 10759 - name: Solvent-based - - id: 14157 - name: Dye - - id: 14818 - name: Pigment - - id: 14819 - name: Archival - - id: 14820 - name: Embossing - - id: 14821 - name: Stamping -- id: 2306 - name: Paint medium type - friendly_id: paint_medium_type - values: - - id: 67 - name: Acrylic - - id: 8063 - name: Oil - - id: 14053 - name: Varnish - - id: 14803 - name: Gouache - - id: 14808 - name: Watercolor - - id: 14817 - name: Texture - - id: 14822 - name: Encaustic - - id: 14823 - name: Pouring - - id: 14824 - name: Glazing - - id: 14825 - name: Retarder -- id: 2307 - name: Foam form - friendly_id: foam_form - values: - - id: 7937 - name: Ball - - id: 8322 - name: Shapes - - id: 9690 - name: Sheets - - id: 14826 - name: Blocks - - id: 14827 - name: Cones - - id: 14828 - name: Floral foam - - id: 14829 - name: Rolls - - id: 14830 - name: Wreath forms -- id: 2308 - name: Papier mache shape - friendly_id: papier_mache_shape - values: - - id: 1523 - name: Animal - - id: 7201 - name: Mask - - id: 7741 - name: Box - - id: 13275 - name: Letter - - id: 14201 - name: Figurine - - id: 14834 - name: Number - - id: 14835 - name: Ornament - - id: 14836 - name: Shape -- id: 2309 - name: Wreath design - friendly_id: wreath_design - values: - - id: 601 - name: Metal - - id: 625 - name: Wood - - id: 2871 - name: Floral - - id: 10113 - name: Wire - - id: 11014 - name: Grapevine - - id: 14837 - name: Hoop - - id: 14838 - name: Styrofoam -- id: 2310 - name: Fiber art project type - friendly_id: fiber_art_project_type - values: - - id: 372 - name: Other - - id: 14756 - name: Embroidery - - id: 14757 - name: Knitting - - id: 14839 - name: Amigurumi making - - id: 14840 - name: Crocheting - - id: 14841 - name: Macrame - - id: 14842 - name: Rug making - - id: 14843 - name: Tapestry - - id: 14844 - name: Weaving -- id: 2311 - name: Knitting project type - friendly_id: knitting_project_type - values: - - id: 372 - name: Other - - id: 14758 - name: Quilting - - id: 14848 - name: Cushion making - - id: 14849 - name: Pillow making - - id: 14850 - name: Sewing project - - id: 14851 - name: Stuffed toy making - - id: 14852 - name: Upholstery crafting -- id: 2312 - name: Yarn weight category - friendly_id: yarn_weight_category - values: - - id: 2974 - name: Babies - - id: 8170 - name: Rug - - id: 12914 - name: DK - - id: 14644 - name: Sports - - id: 14853 - name: Fingering - - id: 14854 - name: Sock - - id: 14855 - name: Worsted - - id: 14856 - name: Aran - - id: 14857 - name: Afghan - - id: 14858 - name: Chunky - - id: 14859 - name: Super bulky - - id: 14860 - name: Craft - - id: 14861 - name: Jumbo - - id: 14862 - name: Roving - - id: 14863 - name: Macramé - - id: 14864 - name: Felting -- id: 2313 - name: Jewelry project type - friendly_id: jewelry_project_type - values: - - id: 372 - name: Other - - id: 14866 - name: Beading project - - id: 14867 - name: Bracelet making - - id: 14868 - name: Earring making - - id: 14869 - name: Jewelry making - - id: 14870 - name: Necklace making - - id: 14871 - name: Pendant making - - id: 14872 - name: Wire sculpting - - id: 14873 - name: Wire wrapping - - id: 14874 - name: Wirework -- id: 2314 - name: Applique/Patch shape - friendly_id: applique_patch_shape - values: - - id: 1523 - name: Animal - - id: 1868 - name: Geometric - - id: 2871 - name: Floral - - id: 7894 - name: Abstract - - id: 13275 - name: Letter - - id: 14834 - name: Number - - id: 14875 - name: Figure - - id: 14876 - name: Sport accessory - - id: 14877 - name: Symbol -- id: 2315 - name: Textile craft project type - friendly_id: textile_craft_project_type - values: - - id: 372 - name: Other - - id: 14757 - name: Knitting - - id: 14758 - name: Quilting - - id: 14840 - name: Crocheting - - id: 14844 - name: Weaving - - id: 14850 - name: Sewing project - - id: 14852 - name: Upholstery crafting - - id: 14878 - name: Cross-stitching - - id: 14879 - name: Embellishments - - id: 14880 - name: Hand embroidery -- id: 2316 - name: Patch shape - friendly_id: patch_shape - values: - - id: 1523 - name: Animal - - id: 1868 - name: Geometric - - id: 2871 - name: Floral - - id: 7894 - name: Abstract - - id: 13275 - name: Letter - - id: 14834 - name: Number - - id: 14875 - name: Figure - - id: 14876 - name: Sport accessory - - id: 14877 - name: Symbol -- id: 2317 - name: Applique shape - friendly_id: applique_shape - values: - - id: 1523 - name: Animal - - id: 1868 - name: Geometric - - id: 2871 - name: Floral - - id: 7894 - name: Abstract - - id: 13275 - name: Letter - - id: 14834 - name: Number - - id: 14875 - name: Figure - - id: 14876 - name: Sport accessory - - id: 14877 - name: Symbol -- id: 2318 - name: Bead shape - friendly_id: bead_shape - values: - - id: 627 - name: Round - - id: 628 - name: Square - - id: 1266 - name: Heart - - id: 7321 - name: Oval - - id: 8496 - name: Tube - - id: 14638 - name: Star - - id: 14881 - name: Hair pipe - - id: 14882 - name: Seed -- id: 2319 - name: Adhesive type - friendly_id: adhesive_type - values: - - id: 10543 - name: Removable - - id: 11226 - name: Permanent -- id: 2320 - name: Celebration type - friendly_id: celebration_type - values: - - id: 2869 - name: Christmas - - id: 10256 - name: Travel - - id: 10774 - name: Summer - - id: 13892 - name: Conference - - id: 14703 - name: Concert - - id: 14886 - name: Baby gender reveal - - id: 14887 - name: Baby shower - - id: 14888 - name: Birthday - - id: 14889 - name: Easter - - id: 14890 - name: Graduation - - id: 14891 - name: Halloween - - id: 14892 - name: Retirement - - id: 14893 - name: Valentine's day - - id: 14894 - name: Wedding - - id: 15616 - name: Weddings - - id: 15644 - name: Theater performance -- id: 2321 - name: Craft project type - friendly_id: craft_project_type - values: - - id: 372 - name: Other - - id: 14788 - name: Scrapbooking - - id: 14850 - name: Sewing project - - id: 14869 - name: Jewelry making - - id: 14895 - name: Costume making - - id: 14896 - name: Floral arrangements - - id: 14897 - name: Hair accessory making - - id: 14898 - name: Home decor - - id: 14899 - name: Mask making - - id: 14900 - name: Millinery - - id: 14903 - name: Cardmaking - - id: 14904 - name: Clothing embellishments - - id: 14905 - name: Gift wrapping - - id: 14906 - name: DIY craft project - - id: 14907 - name: Nail art - - id: 14908 - name: Party decorations - - id: 14919 - name: Paper crafting -- id: 2322 - name: Stone shape - friendly_id: stone_shape - values: - - id: 627 - name: Round - - id: 628 - name: Square - - id: 1266 - name: Heart - - id: 6997 - name: Hexagonal - - id: 6998 - name: Triangular - - id: 7317 - name: Pear - - id: 7321 - name: Oval - - id: 7434 - name: Teardrop - - id: 10140 - name: Rectangular - - id: 14902 - name: Marquise -- id: 2323 - name: Sequin/Glitter shape - friendly_id: sequin_glitter_shape - values: - - id: 627 - name: Round - - id: 628 - name: Square - - id: 632 - name: Butterfly - - id: 1266 - name: Heart - - id: 13848 - name: Flower - - id: 14638 - name: Star -- id: 2324 - name: Glitter shape - friendly_id: glitter_shape - values: - - id: 627 - name: Round - - id: 628 - name: Square - - id: 632 - name: Butterfly - - id: 1266 - name: Heart - - id: 13848 - name: Flower - - id: 14638 - name: Star -- id: 2325 - name: Sequin shape - friendly_id: sequin_shape - values: - - id: 627 - name: Round - - id: 628 - name: Square - - id: 632 - name: Butterfly - - id: 1266 - name: Heart - - id: 13848 - name: Flower - - id: 14638 - name: Star -- id: 2326 - name: Labelling project type - friendly_id: labelling_project_type - values: - - id: 372 - name: Other - - id: 14758 - name: Quilting - - id: 14909 - name: Accessory making - - id: 14910 - name: Bag making - - id: 14911 - name: Clothing making - - id: 14912 - name: Hand crafting - - id: 14913 - name: Home textile crafting - - id: 14914 - name: Personalized gift making -- id: 2327 - name: Embossing project type - friendly_id: embossing_project_type - values: - - id: 372 - name: Other - - id: 14788 - name: Scrapbooking - - id: 14903 - name: Cardmaking - - id: 14906 - name: DIY craft project - - id: 14917 - name: Heat embossing - - id: 14918 - name: Mixed media project - - id: 14919 - name: Paper crafting - - id: 14920 - name: Rubber stamping -- id: 2328 - name: Filling/Padding project type - friendly_id: filling_padding_project_type - values: - - id: 372 - name: Other - - id: 14848 - name: Cushion making - - id: 14849 - name: Pillow making - - id: 14851 - name: Stuffed toy making - - id: 14852 - name: Upholstery crafting - - id: 14869 - name: Jewelry making - - id: 14898 - name: Home decor - - id: 14904 - name: Clothing embellishments - - id: 14906 - name: DIY craft project - - id: 14910 - name: Bag making - - id: 14921 - name: Bookbinding - - id: 14922 - name: Leathercraft - - id: 14923 - name: Sensory item crafting - - id: 14924 - name: Weighted blanket crafting -- id: 2329 - name: Craft/Sculpting project type - friendly_id: craft_sculpting_project_type - values: - - id: 372 - name: Other - - id: 11781 - name: Modeling - - id: 14899 - name: Mask making - - id: 14931 - name: Art project - - id: 14932 - name: Casting - - id: 14933 - name: Mold making - - id: 14934 - name: Object decoration - - id: 14935 - name: Piñata making - - id: 14936 - name: Sculpting -- id: 2330 - name: Leather/Vinyl texture - friendly_id: leather_vinyl_texture - values: - - id: 8689 - name: Smooth - - id: 10574 - name: Metallic - - id: 10720 - name: Embossed - - id: 14937 - name: Distressed - - id: 14938 - name: Grainy -- id: 2331 - name: Clay texture - friendly_id: clay_texture - values: - - id: 1511 - name: Medium - - id: 8689 - name: Smooth - - id: 10983 - name: Coarse -- id: 2332 - name: Pottery/Sculpting project type - friendly_id: pottery_sculpting_project_type - values: - - id: 372 - name: Other - - id: 11781 - name: Modeling - - id: 14899 - name: Mask making - - id: 14931 - name: Art project - - id: 14932 - name: Casting - - id: 14933 - name: Mold making - - id: 14934 - name: Object decoration - - id: 14935 - name: Piñata making - - id: 14936 - name: Sculpting -- id: 2333 - name: Slip texture - friendly_id: slip_texture - values: - - id: 1511 - name: Medium - - id: 8689 - name: Smooth - - id: 10983 - name: Coarse -- id: 2334 - name: Canvas finish - friendly_id: canvas_finish - values: - - id: 14131 - name: Primed - - id: 14940 - name: Unprimed -- id: 2335 - name: Canvas texture - friendly_id: canvas_texture - values: - - id: 8689 - name: Smooth - - id: 14782 - name: Medium grain - - id: 14941 - name: Heavy grain -- id: 2336 - name: Care instructions - friendly_id: care_instructions - values: - - id: 10542 - name: Machine washable - - id: 14942 - name: Dry clean only - - id: 14943 - name: Hand wash - - id: 14944 - name: Ironing instructions -- id: 2337 - name: Fabric design - friendly_id: fabric_design - values: - - id: 8445 - name: Woven - - id: 8446 - name: Non-woven -- id: 2338 - name: Compatible printer - friendly_id: compatible_printer - values: - - id: 7752 - name: Laser - - id: 13225 - name: Inkjet -- id: 2339 - name: Sewing foot type - friendly_id: sewing_foot_type - values: - - id: 17 - name: Clear - - id: 372 - name: Other - - id: 3098 - name: Zipper - - id: 7367 - name: Roller - - id: 8102 - name: Non-stick - - id: 8321 - name: Teflon - - id: 13931 - name: Pearl - - id: 14758 - name: Quilting - - id: 14947 - name: Adjustable bias binder - - id: 14948 - name: Beading - - id: 14949 - name: Bias binder - - id: 14950 - name: Binder - - id: 14951 - name: Blind hem - - id: 14952 - name: Braiding - - id: 14953 - name: Buttonhole - - id: 14954 - name: Round attachment - - id: 14955 - name: Cording - - id: 14956 - name: Couching - - id: 14957 - name: Darning - - id: 14958 - name: Edge stitching - - id: 14959 - name: Free motion - - id: 14960 - name: Fringe - - id: 14961 - name: Gathering - - id: 14962 - name: Hemmer - - id: 14963 - name: Invisible zipper - - id: 14964 - name: Open toe - - id: 14965 - name: Overcasting - - id: 14966 - name: Pintuck - - id: 14967 - name: Piping - - id: 14968 - name: Rolled hem - - id: 14969 - name: Ruffler - - id: 14970 - name: Satin stitch - - id: 14971 - name: Sequin - - id: 14972 - name: Shirring - - id: 14973 - name: Smocking - - id: 14974 - name: Taping - - id: 14975 - name: Topstitch - - id: 14976 - name: Tucks - - id: 14977 - name: Walking - - id: 14978 - name: Welt - - id: 14979 - name: Zigzag -- id: 2340 - name: Sewing machine part category - friendly_id: sewing_machine_part_category - values: - - id: 372 - name: Other - - id: 14980 - name: Bobbin - - id: 14981 - name: Bobbin case - - id: 14982 - name: Feed dog - - id: 14983 - name: Foot control pedal - - id: 14984 - name: Handwheel - - id: 14985 - name: Light bulb - - id: 14986 - name: Motor belt - - id: 14987 - name: Needle plate - - id: 14988 - name: Needle set - - id: 14989 - name: Needle threader - - id: 14990 - name: Presser foot - - id: 14991 - name: Presser foot holder - - id: 14992 - name: Reverse lever - - id: 14993 - name: Stitch selector/dial - - id: 14994 - name: Tension assembly - - id: 14995 - name: Thread cutter - - id: 14996 - name: Thread guides - - id: 14997 - name: Thread spool pin - - id: 14998 - name: Thread stand - - id: 14999 - name: Thread take-up lever - - id: 15000 - name: Thread tension spring -- id: 2341 - name: Wire thickness - friendly_id: wire_thickness - values: - - id: 1511 - name: Medium - - id: 10887 - name: Fine - - id: 10892 - name: Thick -- id: 2342 - name: Palette knife shape - friendly_id: palette_knife_shape - values: - - id: 552 - name: Straight - - id: 627 - name: Round - - id: 3105 - name: Pointed - - id: 8342 - name: Spatula - - id: 8435 - name: Trowel - - id: 8509 - name: Diamond - - id: 14358 - name: Angular - - id: 15027 - name: Offset -- id: 2343 - name: Palette design - friendly_id: palette_design - values: - - id: 11435 - name: Foldable - - id: 15028 - name: Thumb-hole -- id: 2344 - name: Scissor blade type - friendly_id: scissor_blade_type - values: - - id: 552 - name: Straight - - id: 7212 - name: Serrated - - id: 7737 - name: Curved - - id: 9881 - name: Scallop - - id: 15029 - name: Micro-tip - - id: 15030 - name: Pinking -- id: 2345 - name: Craft knife design - friendly_id: craft_knife_design - values: - - id: 552 - name: Straight - - id: 10627 - name: Precision - - id: 11316 - name: Swivel - - id: 14530 - name: Snap-off -- id: 2346 - name: Brush size - friendly_id: brush_size - values: - - id: 372 - name: Other - - id: 2878 - name: '0' - - id: 2879 - name: '1' - - id: 2880 - name: '10' - - id: 2881 - name: '12' - - id: 2882 - name: '14' - - id: 2883 - name: '16' - - id: 2884 - name: '18' - - id: 2885 - name: '2' - - id: 2886 - name: '20' - - id: 2888 - name: '24' - - id: 2896 - name: '4' - - id: 2907 - name: '6' - - id: 2909 - name: '8' -- id: 2347 - name: Ink application technique - friendly_id: ink_application_technique - values: - - id: 15031 - name: Ink application - - id: 15032 - name: Screen printing - - id: 15033 - name: Stenciling -- id: 2348 - name: Decorative stamp design - friendly_id: decorative_stamp_design - values: - - id: 372 - name: Other - - id: 1522 - name: Fairytale - - id: 1523 - name: Animal - - id: 1528 - name: Retro/Vintage - - id: 1803 - name: Feathers - - id: 1868 - name: Geometric - - id: 2375 - name: Hearts - - id: 2376 - name: Stars - - id: 2871 - name: Floral - - id: 7905 - name: Landscape - - id: 8267 - name: Fruits - - id: 8268 - name: Holidays - - id: 8269 - name: Letters - - id: 10256 - name: Travel - - id: 11297 - name: Nautical - - id: 11499 - name: Musical - - id: 13947 - name: Pattern - - id: 14915 - name: Damask - - id: 15034 - name: Butterflies - - id: 15035 - name: Mandala - - id: 15036 - name: Quote -- id: 2349 - name: Squeegee blade design - friendly_id: squeegee_blade_design - values: - - id: 552 - name: Straight - - id: 627 - name: Round -- id: 2350 - name: Stencil/Cut shape - friendly_id: stencil_cut_shape - values: - - id: 627 - name: Round - - id: 628 - name: Square - - id: 632 - name: Butterfly - - id: 1266 - name: Heart - - id: 1523 - name: Animal - - id: 1796 - name: Vehicle - - id: 1868 - name: Geometric - - id: 2871 - name: Floral - - id: 6998 - name: Triangular - - id: 7087 - name: House - - id: 8644 - name: Fish - - id: 10016 - name: Fruit - - id: 13275 - name: Letter - - id: 14213 - name: Tree - - id: 14638 - name: Star - - id: 14834 - name: Number - - id: 15038 - name: Bird - - id: 15039 - name: Cloud - - id: 15040 - name: Leaf - - id: 15041 - name: Moon - - id: 15042 - name: Sun - - id: 15043 - name: Vegetable -- id: 2351 - name: Temperature - friendly_id: temperature - values: - - id: 1364 - name: Low - - id: 1376 - name: High - - id: 10549 - name: Dual -- id: 2352 - name: Hook grip design - friendly_id: hook_grip_design - values: - - id: 10461 - name: Non-slip - - id: 12710 - name: Ergonomic - - id: 15047 - name: Comfort grip -- id: 2353 - name: Hook size - friendly_id: hook_size - values: - - id: 1968 - name: B - - id: 1995 - name: G - - id: 2929 - name: I - - id: 2930 - name: J - - id: 2932 - name: K -- id: 2354 - name: Needle eye type - friendly_id: needle_eye_type - values: - - id: 1406 - name: Long - - id: 4324 - name: Split - - id: 15048 - name: Large - - id: 15049 - name: Small -- id: 2355 - name: Needle size - friendly_id: needle_size - values: - - id: 2882 - name: '14' - - id: 2883 - name: '16' - - id: 2941 - name: '5' - - id: 2944 - name: '7' - - id: 2947 - name: '9' - - id: 3011 - name: '11' - - id: 15050 - name: 0/10 - - id: 15051 - name: 80/12 - - id: 15052 - name: 90/14 - - id: 15053 - name: 100/16 - - id: 15054 - name: 110/18 -- id: 2356 - name: Pin size - friendly_id: pin_size - values: - - id: 2878 - name: '0' - - id: 2879 - name: '1' - - id: 2885 - name: '2' - - id: 2896 - name: '4' - - id: 2938 - name: '3' - - id: 5790 - name: '00' -- id: 2357 - name: Pattern distribution format - friendly_id: pattern_distribution_format - values: - - id: 548 - name: Paper - - id: 12526 - name: PDF - - id: 13935 - name: Printed - - id: 15055 - name: Online tutorials -- id: 2358 - name: Skill level - friendly_id: skill_level - values: - - id: 6960 - name: Beginner - - id: 6961 - name: Intermediate - - id: 6962 - name: Expert - - id: 10402 - name: Advanced - - id: 16888 - name: All levels -- id: 2359 - name: Mold shape - friendly_id: mold_shape - values: - - id: 627 - name: Round - - id: 628 - name: Square - - id: 632 - name: Butterfly - - id: 1266 - name: Heart - - id: 1523 - name: Animal - - id: 1796 - name: Vehicle - - id: 1868 - name: Geometric - - id: 2871 - name: Floral - - id: 6998 - name: Triangular - - id: 7087 - name: House - - id: 8644 - name: Fish - - id: 10016 - name: Fruit - - id: 13275 - name: Letter - - id: 14213 - name: Tree - - id: 14638 - name: Star - - id: 14834 - name: Number - - id: 15038 - name: Bird - - id: 15039 - name: Cloud - - id: 15040 - name: Leaf - - id: 15041 - name: Moon - - id: 15042 - name: Sun - - id: 15043 - name: Vegetable -- id: 2360 - name: Condition - friendly_id: condition - values: - - id: 15056 - name: Gem mint (GM) - - id: 15057 - name: Pristine (P) - - id: 15058 - name: Mint (M) - - id: 15059 - name: Near mint-mint (NM-MT) - - id: 15060 - name: Near mint (NM) - - id: 15061 - name: Excellent-mint (EX-MT) - - id: 15062 - name: Excellent (EX) - - id: 15063 - name: Very good-excellent (VG-EX) - - id: 15064 - name: Very good (VG) - - id: 15065 - name: Good (G) - - id: 15066 - name: Fair (F) - - id: 15067 - name: Poor (P) - - id: 15068 - name: Uncirculated - - id: 15069 - name: Circulated - - id: 15070 - name: Graded -- id: 2361 - name: Autograph type - friendly_id: autograph_type - values: - - id: 69 - name: Baseball - - id: 71 - name: Basketball - - id: 72 - name: Boxing - - id: 78 - name: Hockey - - id: 83 - name: Soccer - - id: 85 - name: Tennis - - id: 1348 - name: Football - - id: 6760 - name: Celebrities - - id: 7722 - name: Art - - id: 7723 - name: History - - id: 7725 - name: Science - - id: 7907 - name: Music - - id: 14644 - name: Sports - - id: 15071 - name: Automotive - - id: 15072 - name: Literary - - id: 15073 - name: Political -- id: 2362 - name: Medium - friendly_id: medium - values: - - id: 7890 - name: Poster - - id: 11912 - name: CD - - id: 13276 - name: Photo - - id: 15074 - name: Artwork - - id: 15075 - name: Book - - id: 15076 - name: Memorabilia - - id: 15077 - name: Sports equipment - - id: 15078 - name: Trading card - - id: 15079 - name: Vinyl record -- id: 2363 - name: Signature placement - friendly_id: signature_placement - values: - - id: 372 - name: Other - - id: 3176 - name: Back - - id: 6195 - name: Front - - id: 10558 - name: Multiple - - id: 15080 - name: Cover - - id: 15081 - name: Exterior - - id: 15082 - name: Interior - - id: 15083 - name: Specific page -- id: 2364 - name: Country - friendly_id: country - values: - - id: 4817 - name: Singapore - - id: 8807 - name: Australia - - id: 8808 - name: Austria - - id: 8809 - name: Belgium - - id: 8810 - name: Brazil - - id: 8811 - name: Canada - - id: 8812 - name: China - - id: 8814 - name: Denmark - - id: 8815 - name: Germany - - id: 8816 - name: Ireland - - id: 8817 - name: Japan - - id: 8818 - name: Mexico - - id: 8819 - name: Netherlands - - id: 8820 - name: Poland - - id: 8821 - name: South Africa - - id: 8822 - name: Spain - - id: 8823 - name: Thailand - - id: 8824 - name: United Kingdom - - id: 8825 - name: United States - - id: 8834 - name: Afghanistan - - id: 8835 - name: Albania - - id: 8836 - name: Algeria - - id: 8837 - name: Andorra - - id: 8838 - name: Angola - - id: 8839 - name: Antigua and Barbuda - - id: 8840 - name: Argentina - - id: 8841 - name: Armenia - - id: 8842 - name: Azerbaijan - - id: 8843 - name: Bahamas - - id: 8844 - name: Bahrain - - id: 8845 - name: Bangladesh - - id: 8846 - name: Barbados - - id: 8847 - name: Belarus - - id: 8848 - name: Belize - - id: 8849 - name: Benin - - id: 8850 - name: Bhutan - - id: 8851 - name: Bolivia - - id: 8852 - name: Bosnia and Herzegovina - - id: 8853 - name: Botswana - - id: 8854 - name: Brunei - - id: 8855 - name: Bulgaria - - id: 8856 - name: Burkina Faso - - id: 8857 - name: Burundi - - id: 8858 - name: Cambodia - - id: 8859 - name: Cameroon - - id: 8860 - name: Cape Verde - - id: 8861 - name: Central Africa - - id: 8862 - name: Chad - - id: 8863 - name: Chile - - id: 8864 - name: Colombia - - id: 8865 - name: Comoros - - id: 8866 - name: Congo - - id: 8867 - name: Congo (Dem. Republic) - - id: 8868 - name: Costa Rica - - id: 8869 - name: Croatia - - id: 8870 - name: Cyprus - - id: 8871 - name: Czechia - - id: 8872 - name: Djibouti - - id: 8873 - name: Dominica - - id: 8874 - name: Dominican Republic - - id: 8875 - name: Ecuador - - id: 8876 - name: Egypt - - id: 8877 - name: El Salvador - - id: 8878 - name: Equatorial Guinea - - id: 8879 - name: Eritrea - - id: 8880 - name: Estonia - - id: 8881 - name: Eswatini - - id: 8882 - name: Ethiopia - - id: 8883 - name: Fiji - - id: 8884 - name: Finland - - id: 8885 - name: France - - id: 8886 - name: Gabon - - id: 8887 - name: Gambia - - id: 8888 - name: Georgia - - id: 8889 - name: Ghana - - id: 8890 - name: Greece - - id: 8891 - name: Grenada - - id: 8892 - name: Guatemala - - id: 8893 - name: Guinea - - id: 8894 - name: Guinea-Bissau - - id: 8895 - name: Guyana - - id: 8896 - name: Haiti - - id: 8897 - name: Honduras - - id: 8898 - name: Hungary - - id: 8899 - name: Iceland - - id: 8900 - name: India - - id: 8901 - name: Indonesia - - id: 8902 - name: Iraq - - id: 8903 - name: Israel - - id: 8904 - name: Italy - - id: 8905 - name: Ivory Coast - - id: 8906 - name: Jamaica - - id: 8907 - name: Jordan - - id: 8908 - name: Kazakhstan - - id: 8909 - name: Kenya - - id: 8910 - name: Kiribati - - id: 8911 - name: Kuwait - - id: 8912 - name: Kyrgyzstan - - id: 8913 - name: Laos - - id: 8914 - name: Latvia - - id: 8915 - name: Lebanon - - id: 8916 - name: Lesotho - - id: 8917 - name: Liberia - - id: 8918 - name: Libya - - id: 8919 - name: Liechtenstein - - id: 8920 - name: Lithuania - - id: 8921 - name: Luxembourg - - id: 8922 - name: Madagascar - - id: 8923 - name: Malawi - - id: 8924 - name: Malaysia - - id: 8925 - name: Maldives - - id: 8926 - name: Mali - - id: 8927 - name: Malta - - id: 8928 - name: Marshall Islands - - id: 8929 - name: Mauritania - - id: 8930 - name: Mauritius - - id: 8931 - name: Micronesia - - id: 8932 - name: Moldova - - id: 8933 - name: Monaco - - id: 8934 - name: Mongolia - - id: 8935 - name: Montenegro - - id: 8936 - name: Morocco - - id: 8937 - name: Mozambique - - id: 8938 - name: Myanmar - - id: 8939 - name: Namibia - - id: 8940 - name: Nauru - - id: 8941 - name: Nepal - - id: 8942 - name: New Zealand - - id: 8943 - name: Nicaragua - - id: 8944 - name: Niger - - id: 8945 - name: Nigeria - - id: 8946 - name: North Macedonia - - id: 8947 - name: Norway - - id: 8948 - name: Oman - - id: 8949 - name: Pakistan - - id: 8950 - name: Palau - - id: 8951 - name: Panama - - id: 8952 - name: Papua New Guinea - - id: 8953 - name: Paraguay - - id: 8954 - name: Peru - - id: 8955 - name: Philippines - - id: 8956 - name: Portugal - - id: 8957 - name: Qatar - - id: 8958 - name: Romania - - id: 8959 - name: Rwanda - - id: 8960 - name: Saint Kitts and Nevis - - id: 8961 - name: Saint Lucia - - id: 8962 - name: Saint Vincent and the Grenadines - - id: 8963 - name: Samoa - - id: 8964 - name: San Marino - - id: 8965 - name: Sao Tome and Principe - - id: 8966 - name: Saudi Arabia - - id: 8967 - name: Senegal - - id: 8968 - name: Serbia - - id: 8969 - name: Seychelles - - id: 8970 - name: Sierra Leone - - id: 8971 - name: Slovakia - - id: 8972 - name: Slovenia - - id: 8973 - name: Solomon Islands - - id: 8974 - name: Somalia - - id: 8975 - name: South Korea - - id: 8976 - name: South Sudan - - id: 8977 - name: Sri Lanka - - id: 8978 - name: Sudan - - id: 8979 - name: Suriname - - id: 8980 - name: Sweden - - id: 8981 - name: Switzerland - - id: 8982 - name: Tajikistan - - id: 8983 - name: Tanzania - - id: 8984 - name: Timor-Leste - - id: 8985 - name: Togo - - id: 8986 - name: Tonga - - id: 8987 - name: Trinidad and Tobago - - id: 8988 - name: Tunisia - - id: 8989 - name: Turkey - - id: 8990 - name: Turkmenistan - - id: 8991 - name: Tuvalu - - id: 8992 - name: Uganda - - id: 8993 - name: Ukraine - - id: 8994 - name: United Arab Emirates - - id: 8995 - name: Uruguay - - id: 8996 - name: Uzbekistan - - id: 8997 - name: Vanuatu - - id: 8998 - name: Vietnam - - id: 8999 - name: Yemen - - id: 9000 - name: Zambia - - id: 9001 - name: Zimbabwe -- id: 2365 - name: Denomination - friendly_id: denomination - values: - - id: 15084 - name: 1 dollar - - id: 15085 - name: 1,000 dollars - - id: 15086 - name: 10 dollars - - id: 15087 - name: 10,000 dollars - - id: 15088 - name: 100 dollars - - id: 15089 - name: 20 dollars - - id: 15090 - name: 5 dollars - - id: 15091 - name: 5,000 dollars - - id: 15092 - name: 50 dollars - - id: 15093 - name: 500 dollars - - id: 15094 - name: 1 cent (penny) - - id: 15095 - name: 10 cents - - id: 15096 - name: 2 dollars - - id: 15097 - name: 25 cents - - id: 15098 - name: 5 cents - - id: 15099 - name: 50 cents - - id: 15139 - name: Aemi -- id: 2366 - name: Card attributes - friendly_id: card_attributes - values: - - id: 949 - name: Foil - - id: 10744 - name: Holographic - - id: 12941 - name: Parallel - - id: 14633 - name: Numbered - - id: 15100 - name: Autographed - - id: 15101 - name: Relic - - id: 15102 - name: Rookie -- id: 2367 - name: Grading - friendly_id: grading - values: - - id: 15103 - name: BCCG - - id: 15104 - name: BGS - - id: 15105 - name: BVG - - id: 15106 - name: CGC trading cards - - id: 15107 - name: CSG - - id: 15108 - name: GAI - - id: 15109 - name: GMA - - id: 15110 - name: HGA - - id: 15111 - name: KSA - - id: 15112 - name: PSA - - id: 15113 - name: SGC - - id: 15114 - name: SGC authentic -- id: 2368 - name: Rarity - friendly_id: rarity - values: - - id: 15115 - name: Common - - id: 15116 - name: Limited edition - - id: 15117 - name: Promo - - id: 15118 - name: Rare - - id: 15119 - name: Super rare - - id: 15120 - name: Ultra rare - - id: 15121 - name: Uncommon -- id: 2369 - name: Trading card packaging - friendly_id: trading_card_packaging - values: - - id: 920 - name: Tin - - id: 7741 - name: Box - - id: 15122 - name: Blister pack - - id: 15123 - name: Booster pack - - id: 15124 - name: Starter deck -- id: 2370 - name: Sports theme - friendly_id: sports_theme - values: - - id: 69 - name: Baseball - - id: 70 - name: Softball - - id: 71 - name: Basketball - - id: 72 - name: Boxing - - id: 73 - name: Cheerleading - - id: 74 - name: Cricket - - id: 75 - name: Dancing - - id: 76 - name: Field hockey - - id: 77 - name: Lacrosse - - id: 78 - name: Hockey - - id: 79 - name: Gymnastics - - id: 80 - name: Racquetball - - id: 81 - name: Squash - - id: 82 - name: Rugby - - id: 83 - name: Soccer - - id: 84 - name: Handball - - id: 85 - name: Tennis - - id: 86 - name: Volleyball - - id: 87 - name: Wrestling - - id: 88 - name: Yoga - - id: 89 - name: Pilates - - id: 90 - name: Air hockey - - id: 91 - name: Karate - - id: 92 - name: Taekwondo - - id: 93 - name: Judo - - id: 94 - name: Brazilian jiu-jitsu - - id: 95 - name: Muay thai - - id: 96 - name: Krav maga - - id: 97 - name: Aikido - - id: 98 - name: Darts - - id: 99 - name: Climbing - - id: 100 - name: Cycling - - id: 101 - name: Fishing - - id: 102 - name: Golf - - id: 103 - name: Hunting - - id: 104 - name: Aerobics - - id: 105 - name: Ballet - - id: 106 - name: Horse riding - - id: 107 - name: Netball - - id: 108 - name: Padel - - id: 372 - name: Other - - id: 428 - name: Running - - id: 1348 - name: Football - - id: 1397 - name: Motorcycling - - id: 6883 - name: Universal - - id: 6914 - name: Australian football - - id: 6915 - name: Badminton - - id: 6916 - name: Floorball - - id: 6917 - name: Futsal - - id: 6918 - name: Gaelic football - - id: 6919 - name: Hurling - - id: 6920 - name: Ice hockey - - id: 6921 - name: Ultimate frisbee - - id: 6922 - name: Water polo - - id: 6983 - name: Inline skating - - id: 6984 - name: Rounders - - id: 6985 - name: Team handball - - id: 6986 - name: Track & field - - id: 6990 - name: Kickboxing - - id: 6991 - name: Mixed martial arts (MMA) - - id: 7060 - name: Hiking - - id: 7581 - name: Skiing - - id: 7641 - name: Snowboarding - - id: 15126 - name: Car racing - - id: 15127 - name: Olympics - - id: 15128 - name: Values -- id: 2371 - name: Era - friendly_id: era - values: - - id: 372 - name: Other - - id: 1247 - name: Modern - - id: 15129 - name: Civil War - - id: 15130 - name: Cold War - - id: 15131 - name: Korean War - - id: 15132 - name: Revolutionary War - - id: 15133 - name: Vietnam War - - id: 15134 - name: Wild West - - id: 15135 - name: World War I - - id: 15136 - name: World War II -- id: 2372 - name: Printing method - friendly_id: printing_method - values: - - id: 15140 - name: Engraving - - id: 15141 - name: Lithography - - id: 15142 - name: Offset printing -- id: 2373 - name: Stamp theme - friendly_id: stamp_theme - values: - - id: 372 - name: Other - - id: 1522 - name: Fairytale - - id: 2283 - name: Birds - - id: 2370 - name: Animals - - id: 2871 - name: Floral - - id: 7165 - name: Chess - - id: 7716 - name: Food & drinks - - id: 7718 - name: Space - - id: 7721 - name: Literature - - id: 7722 - name: Art - - id: 7723 - name: History - - id: 7725 - name: Science - - id: 7726 - name: Mythology - - id: 7727 - name: Transportation - - id: 7728 - name: Landmarks - - id: 7896 - name: Architecture - - id: 7899 - name: Comics - - id: 7901 - name: Famous people - - id: 7902 - name: Fashion - - id: 7907 - name: Music - - id: 7909 - name: Religion - - id: 8223 - name: Cats - - id: 8225 - name: Dogs - - id: 8267 - name: Fruits - - id: 8268 - name: Holidays - - id: 8512 - name: Nature - - id: 11112 - name: Reptiles - - id: 11294 - name: Dinosaurs - - id: 11477 - name: Dance - - id: 12959 - name: Aviation - - id: 13895 - name: Astronomy - - id: 14642 - name: Movies & TV - - id: 14644 - name: Sports - - id: 14646 - name: Cars - - id: 14708 - name: Theater - - id: 15034 - name: Butterflies - - id: 15127 - name: Olympics - - id: 15143 - name: Coins - - id: 15144 - name: Exploration - - id: 15145 - name: Flags - - id: 15146 - name: Folklore - - id: 15147 - name: Geology - - id: 15148 - name: Horses - - id: 15149 - name: Indigenous art - - id: 15150 - name: Insects - - id: 15151 - name: Marine life - - id: 15152 - name: National parks - - id: 15153 - name: Technology - - id: 15154 - name: Trains - - id: 15155 - name: Underwater life - - id: 15156 - name: Weather - - id: 15157 - name: Wildlife - - id: 15158 - name: World heritage sites -- id: 2374 - name: Authenticity - friendly_id: authenticity - values: - - id: 15159 - name: Genuine - - id: 15160 - name: Replica -- id: 2375 - name: Crystal system - friendly_id: crystal_system - values: - - id: 6997 - name: Hexagonal - - id: 15161 - name: Cubic - - id: 15162 - name: Tetragonal - - id: 15163 - name: Orthorhombic - - id: 15164 - name: Trigonal - - id: 15165 - name: Monoclinic - - id: 15166 - name: Triclinic -- id: 2376 - name: Fossil type - friendly_id: fossil_type - values: - - id: 8644 - name: Fish - - id: 8679 - name: Amber - - id: 10937 - name: Petrified wood - - id: 11089 - name: Coral - - id: 11104 - name: Insect - - id: 15038 - name: Bird - - id: 15167 - name: Ammonite - - id: 15168 - name: Belemnite - - id: 15169 - name: Brachiopod - - id: 15170 - name: Coprolite - - id: 15171 - name: Crinoid - - id: 15172 - name: Dinosaur bone - - id: 15173 - name: Echinoid - - id: 15174 - name: Gastropod - - id: 15175 - name: Mammal - - id: 15176 - name: Plant - - id: 15177 - name: Reptile - - id: 15178 - name: Shark teeth - - id: 15179 - name: Sponge - - id: 15180 - name: Trilobite -- id: 2377 - name: Geological era - friendly_id: geological_era - values: - - id: 15181 - name: Precambrian - - id: 15182 - name: Paleozoic - - id: 15183 - name: Mesozoic - - id: 15184 - name: Cenozoic -- id: 2378 - name: Mineral class - friendly_id: mineral_class - values: - - id: 15185 - name: Borates - - id: 15186 - name: Carbonates - - id: 15187 - name: Cyclosilicates - - id: 15188 - name: Halides - - id: 15189 - name: Hydroxides - - id: 15190 - name: Inosilicates - - id: 15191 - name: Native elements - - id: 15192 - name: Nesosilicates - - id: 15193 - name: Oxides - - id: 15194 - name: Phosphates - - id: 15195 - name: Phyllosilicates - - id: 15196 - name: Silicates - - id: 15197 - name: Sorosilicates - - id: 15198 - name: Sulfates - - id: 15199 - name: Sulfides - - id: 15200 - name: Tectosilicate -- id: 2379 - name: Rock composition - friendly_id: rock_composition - values: - - id: 372 - name: Other - - id: 822 - name: Granite - - id: 923 - name: Basalt - - id: 941 - name: Marble - - id: 942 - name: Slate - - id: 951 - name: Sandstone - - id: 10944 - name: Obsidian - - id: 14490 - name: Limestone - - id: 14726 - name: Chalk - - id: 15201 - name: Andesite - - id: 15202 - name: Breccia - - id: 15203 - name: Chert - - id: 15204 - name: Conglomerate - - id: 15205 - name: Diorite - - id: 15206 - name: Gabbro - - id: 15207 - name: Gneiss - - id: 15208 - name: Pumice - - id: 15209 - name: Quartzite - - id: 15210 - name: Rhyolite - - id: 15211 - name: Schist - - id: 15212 - name: Shale -- id: 2380 - name: Rock formation - friendly_id: rock_formation - values: - - id: 15213 - name: Igneous - - id: 15214 - name: Sedimentary - - id: 15215 - name: Metamorphic -- id: 2381 - name: Scale model accessory type - friendly_id: scale_model_accessory_type - values: - - id: 372 - name: Other - - id: 15216 - name: Buildings - - id: 15217 - name: Decals - - id: 15218 - name: Diorama accessories - - id: 15219 - name: Display stands - - id: 15220 - name: Figures - - id: 15221 - name: Landscape features - - id: 15222 - name: Lighting - - id: 15223 - name: Tracks - - id: 15224 - name: Vehicles -- id: 2382 - name: Scale model theme - friendly_id: scale_model_theme - values: - - id: 1518 - name: Fantasy - - id: 1520 - name: Sci-fi - - id: 7723 - name: History - - id: 7896 - name: Architecture - - id: 8512 - name: Nature - - id: 12959 - name: Aviation - - id: 15071 - name: Automotive - - id: 15225 - name: Military -- id: 2383 - name: Kit construction type - friendly_id: kit_construction_type - values: - - id: 15226 - name: Assembly kit - - id: 15227 - name: Preassembled -- id: 2384 - name: Seal stamp design - friendly_id: seal_stamp_design - values: - - id: 1523 - name: Animal - - id: 1527 - name: Mythological - - id: 2871 - name: Floral - - id: 7559 - name: Traditional - - id: 10110 - name: Decorative - - id: 11191 - name: Monogram - - id: 14680 - name: Personalized - - id: 14784 - name: Calligraphy - - id: 15229 - name: Cultural symbols -- id: 2385 - name: Logo - friendly_id: logo - values: - - id: 15230 - name: College/University teams - - id: 15231 - name: MLB - - id: 15232 - name: NBA - - id: 15233 - name: NFL - - id: 15234 - name: NHL - - id: 15235 - name: Soccer clubs -- id: 2386 - name: Art style - friendly_id: art_style - values: - - id: 1528 - name: Retro/Vintage - - id: 15236 - name: Art nouveau - - id: 15237 - name: Art deco - - id: 15238 - name: Illustrative - - id: 15239 - name: Typography -- id: 2387 - name: Flavor profile - friendly_id: flavor_profile - values: - - id: 9015 - name: Caramel - - id: 15242 - name: Malty - - id: 15243 - name: Nutty - - id: 15244 - name: Roasty -- id: 2388 - name: Lovibond - friendly_id: lovibond - values: - - id: 1511 - name: Medium - - id: 3661 - name: Light - - id: 9423 - name: Dark -- id: 2389 - name: Potential extract - friendly_id: potential_extract - values: - - id: 1364 - name: Low - - id: 1376 - name: High - - id: 1511 - name: Medium -- id: 2390 - name: Bottle closure type - friendly_id: bottle_closure_type - values: - - id: 596 - name: Cork - - id: 15245 - name: Crown cap - - id: 15246 - name: Swing top -- id: 2391 - name: Grape variety - friendly_id: grape_variety - values: - - id: 372 - name: Other - - id: 15247 - name: Cabernet Sauvignon - - id: 15248 - name: Chardonnay - - id: 15249 - name: Chenin Blanc - - id: 15250 - name: Gewürztraminer - - id: 15251 - name: Grenache/Garnacha - - id: 15252 - name: Malbec - - id: 15253 - name: Merlot - - id: 15254 - name: Nebbiolo - - id: 15255 - name: Pinot Noir - - id: 15256 - name: Riesling - - id: 15257 - name: Sangiovese - - id: 15258 - name: Sauvignon blanc - - id: 15259 - name: Syrah/Shiraz - - id: 15260 - name: Tempranillo - - id: 15261 - name: Zinfandel -- id: 2392 - name: Weight type - friendly_id: weight_type - values: - - id: 1511 - name: Medium - - id: 3661 - name: Light - - id: 3663 - name: Heavy -- id: 2393 - name: Model train accessory type - friendly_id: model_train_accessory_type - values: - - id: 372 - name: Other - - id: 15216 - name: Buildings - - id: 15217 - name: Decals - - id: 15220 - name: Figures - - id: 15221 - name: Landscape features - - id: 15222 - name: Lighting - - id: 15223 - name: Tracks - - id: 15224 - name: Vehicles - - id: 15264 - name: Controls - - id: 15265 - name: Scenery materials - - id: 15266 - name: Signals -- id: 2394 - name: Model train them - friendly_id: model_train_them - values: - - id: 1247 - name: Modern - - id: 1516 - name: Historical - - id: 1520 - name: Sci-fi - - id: 8507 - name: Contemporary - - id: 8510 - name: Industrial - - id: 15267 - name: Cityscape - - id: 15268 - name: Countryside -- id: 2395 - name: Model control technology - friendly_id: model_control_technology - values: - - id: 1656 - name: Digital - - id: 2523 - name: Analog - - id: 7347 - name: Wireless -- id: 2396 - name: Compatible brass instrument - friendly_id: compatible_brass_instrument - values: - - id: 15269 - name: Alto horn - - id: 15270 - name: Baritone horn - - id: 15271 - name: Bass trombone - - id: 15272 - name: Bugle - - id: 15273 - name: Cornet - - id: 15274 - name: Euphonium - - id: 15275 - name: Flugel horn - - id: 15276 - name: French horn - - id: 15277 - name: Mellophone - - id: 15278 - name: Piccolo trumpet - - id: 15279 - name: Sousaphone - - id: 15280 - name: Tenor horn - - id: 15281 - name: Trombone - - id: 15282 - name: Trumpet - - id: 15283 - name: Tuba - - id: 15284 - name: Wagner tuba -- id: 2397 - name: Lubricant form - friendly_id: lubricant_form - values: - - id: 783 - name: Gel - - id: 7404 - name: Paste - - id: 7406 - name: Liquid - - id: 8063 - name: Oil -- id: 2398 - name: Baton grip design - friendly_id: baton_grip_design - values: - - id: 15285 - name: Cork grip - - id: 15286 - name: Rubber grip - - id: 15287 - name: Wooden handle - - id: 15288 - name: Plastic handle -- id: 2399 - name: Tuning modes - friendly_id: tuning_modes - values: - - id: 9856 - name: Bass - - id: 12705 - name: Guitar - - id: 12706 - name: Violin - - id: 15289 - name: Chromatic - - id: 15290 - name: Cello - - id: 15291 - name: Ukulele - - id: 15292 - name: Mandolin - - id: 15293 - name: Banjo - - id: 15294 - name: Brass instruments - - id: 15295 - name: Woodwind instruments -- id: 2400 - name: Tuning range - friendly_id: tuning_range - values: - - id: 392 - name: Standard - - id: 5877 - name: Open - - id: 8508 - name: Custom - - id: 15296 - name: Drop -- id: 2401 - name: Beat subdivisions - friendly_id: beat_subdivisions - values: - - id: 15297 - name: Quarter note - - id: 15298 - name: Eighth note - - id: 15299 - name: Sixteenth note - - id: 15300 - name: Triplet -- id: 2402 - name: Sound options - friendly_id: sound_options - values: - - id: 7362 - name: Drum - - id: 10870 - name: Bell - - id: 15301 - name: Click - - id: 15302 - name: Voice count -- id: 2403 - name: Time signatures - friendly_id: time_signatures - values: - - id: 1405 - name: 3/4 - - id: 13750 - name: 3/8 - - id: 15303 - name: 2/4 - - id: 15304 - name: 4/4 - - id: 15305 - name: 5/4 - - id: 15306 - name: 6/4 - - id: 15307 - name: 7/4 - - id: 15308 - name: 6/8 - - id: 15309 - name: 9/8 - - id: 15310 - name: 12/8 -- id: 2404 - name: Height adjustment - friendly_id: height_adjustment - values: - - id: 15311 - name: Fixed height - - id: 15312 - name: Adjustable height -- id: 2405 - name: Seat cushioning - friendly_id: seat_cushioning - values: - - id: 10099 - name: Padded - - id: 15313 - name: Non-padded -- id: 2406 - name: Seat shape - friendly_id: seat_shape - values: - - id: 627 - name: Round - - id: 7218 - name: Contoured - - id: 7342 - name: Saddle - - id: 10140 - name: Rectangular -- id: 2407 - name: Lyre/Flip folder attachment type - friendly_id: lyre_flip_folder_attachment_type - values: - - id: 1650 - name: Magnetic - - id: 3732 - name: Clip-on - - id: 10102 - name: Strap - - id: 15314 - name: Lyre clamp - - id: 15315 - name: Lyre screw -- id: 2408 - name: Page size - friendly_id: page_size - values: - - id: 13255 - name: 11" x 17" - - id: 13263 - name: 8.5" x 11" - - id: 13266 - name: A3 - - id: 13267 - name: A4 - - id: 13268 - name: A5 - - id: 13274 - name: Legal - - id: 13275 - name: Letter - - id: 13278 - name: Tabloid - - id: 13925 - name: 11" x 14" - - id: 13927 - name: 9" x 12" - - id: 13928 - name: A6 - - id: 14677 - name: A2 - - id: 14770 - name: 12" x 12" - - id: 14771 - name: 12" x 18" - - id: 14772 - name: 18" x 24" - - id: 14773 - name: 24" x 36" - - id: 14774 - name: 6" x 6" - - id: 14775 - name: A1 - - id: 14776 - name: A7 -- id: 2409 - name: Compatible instrument - friendly_id: compatible_instrument - values: - - id: 372 - name: Other - - id: 7362 - name: Drum - - id: 12633 - name: Keyboard - - id: 12702 - name: Bass guitar - - id: 12705 - name: Guitar - - id: 12706 - name: Violin - - id: 14599 - name: Accordion - - id: 15269 - name: Alto horn - - id: 15270 - name: Baritone horn - - id: 15271 - name: Bass trombone - - id: 15272 - name: Bugle - - id: 15273 - name: Cornet - - id: 15274 - name: Euphonium - - id: 15275 - name: Flugel horn - - id: 15276 - name: French horn - - id: 15277 - name: Mellophone - - id: 15278 - name: Piccolo trumpet - - id: 15279 - name: Sousaphone - - id: 15280 - name: Tenor horn - - id: 15281 - name: Trombone - - id: 15282 - name: Trumpet - - id: 15283 - name: Tuba - - id: 15284 - name: Wagner tuba - - id: 15290 - name: Cello - - id: 15291 - name: Ukulele - - id: 15292 - name: Mandolin - - id: 15293 - name: Banjo - - id: 15316 - name: Acoustic guitar - - id: 15317 - name: Alto saxophone - - id: 15318 - name: Baritone saxophone - - id: 15319 - name: Bass drum - - id: 15320 - name: Bassoon - - id: 15321 - name: Bongo - - id: 15322 - name: Clarinet - - id: 15323 - name: Conga drum - - id: 15324 - name: Cowbell - - id: 15325 - name: Cymbal - - id: 15326 - name: Digital wind instrument - - id: 15327 - name: Double bass - - id: 15328 - name: Electric guitar - - id: 15329 - name: Floor tom - - id: 15330 - name: Flute - - id: 15331 - name: Gong drum - - id: 15332 - name: Hand bell - - id: 15333 - name: Harmonica - - id: 15334 - name: Harp - - id: 15335 - name: Marching baritone - - id: 15336 - name: Oboe - - id: 15337 - name: Octoban - - id: 15338 - name: Organ - - id: 15339 - name: Piano - - id: 15340 - name: Rototom - - id: 15341 - name: Saxophone - - id: 15342 - name: Snare drum - - id: 15343 - name: Synthesizer - - id: 15344 - name: Tenor saxophone - - id: 15345 - name: Timbales - - id: 15346 - name: Tom-tom - - id: 15347 - name: Viola - - id: 15348 - name: Xylophone -- id: 2410 - name: Desk size - friendly_id: desk_size - values: - - id: 2913 - name: Small (S) - - id: 2914 - name: Medium (M) - - id: 2915 - name: Large (L) -- id: 2411 - name: Speaker configuration - friendly_id: speaker_configuration - values: - - id: 11757 - name: Closed-back - - id: 11760 - name: Open-back -- id: 2412 - name: Compatible amplifier - friendly_id: compatible_amplifier - values: - - id: 9856 - name: Bass - - id: 12633 - name: Keyboard - - id: 12705 - name: Guitar -- id: 2413 - name: Control functions - friendly_id: control_functions - values: - - id: 15350 - name: Channel switching - - id: 15351 - name: Effects on/off - - id: 15352 - name: Tuner activation - - id: 15353 - name: Tap tempo -- id: 2414 - name: Knob function - friendly_id: knob_function - values: - - id: 11729 - name: EQ - - id: 12440 - name: Power - - id: 15354 - name: Volume - - id: 15355 - name: Gain - - id: 15356 - name: Tone - - id: 15357 - name: Presence -- id: 2415 - name: Knob style - friendly_id: knob_style - values: - - id: 392 - name: Standard - - id: 1528 - name: Retro/Vintage - - id: 8508 - name: Custom - - id: 8689 - name: Smooth - - id: 10238 - name: Ribbed -- id: 2416 - name: Compatible electric/acoustic instrument - friendly_id: compatible_electric_acoustic_instrument - values: - - id: 372 - name: Other - - id: 12633 - name: Keyboard - - id: 15316 - name: Acoustic guitar - - id: 15326 - name: Digital wind instrument - - id: 15328 - name: Electric guitar - - id: 15343 - name: Synthesizer - - id: 15358 - name: Electric accordion - - id: 15359 - name: Electric banjo - - id: 15360 - name: Electric bass guitar - - id: 15361 - name: Electric cello - - id: 15362 - name: Electric double bass - - id: 15363 - name: Electric drum - - id: 15364 - name: Electric mandolin - - id: 15365 - name: Electric organ - - id: 15366 - name: Electric piano - - id: 15367 - name: Electric ukulele - - id: 15368 - name: Electric violin - - id: 15369 - name: Electronic saxophone - - id: 15370 - name: Electronic trumpet - - id: 15371 - name: Harmonica synth -- id: 2417 - name: Tube component - friendly_id: tube_component - values: - - id: 8261 - name: Case - - id: 10995 - name: Stand - - id: 15372 - name: Footswitch/Controller - - id: 15373 - name: Tone capsule -- id: 2418 - name: Tube configuration - friendly_id: tube_configuration - values: - - id: 15374 - name: Single tube - - id: 15375 - name: Matched pair - - id: 15376 - name: Quartet - - id: 15377 - name: Octet -- id: 2419 - name: Input/Output ports - friendly_id: input_output_ports - values: - - id: 7271 - name: USB - - id: 11620 - name: AUX - - id: 15378 - name: Input jack - - id: 15379 - name: Output jack - - id: 15380 - name: Headphone jack - - id: 15401 - name: Audio output -- id: 2420 - name: Sound controls - friendly_id: sound_controls - values: - - id: 11738 - name: Reverb - - id: 15354 - name: Volume - - id: 15355 - name: Gain - - id: 15356 - name: Tone - - id: 15381 - name: Equalizer - - id: 15382 - name: Distortion - - id: 15383 - name: Overdrive - - id: 15384 - name: Effects level - - id: 15385 - name: Master volume -- id: 2421 - name: Compatible keyboard configuration - friendly_id: compatible_keyboard_configuration - values: - - id: 15386 - name: 61-key - - id: 15387 - name: 76-key - - id: 15388 - name: 88-key -- id: 2422 - name: Pedal polarity - friendly_id: pedal_polarity - values: - - id: 15389 - name: NC - - id: 15390 - name: 'NO' -- id: 2423 - name: Compatible percussion instrument - friendly_id: compatible_percussion_instrument - values: - - id: 7362 - name: Drum - - id: 12704 - name: Drum set - - id: 15319 - name: Bass drum - - id: 15321 - name: Bongo - - id: 15323 - name: Conga drum - - id: 15324 - name: Cowbell - - id: 15325 - name: Cymbal - - id: 15329 - name: Floor tom - - id: 15331 - name: Gong drum - - id: 15337 - name: Octoban - - id: 15340 - name: Rototom - - id: 15342 - name: Snare drum - - id: 15345 - name: Timbales - - id: 15346 - name: Tom-tom -- id: 2424 - name: Beater head size - friendly_id: beater_head_size - values: - - id: 2913 - name: Small (S) - - id: 2914 - name: Medium (M) - - id: 2915 - name: Large (L) -- id: 2425 - name: Adjustability - friendly_id: adjustability - values: - - id: 15392 - name: Adjustable beater angle - - id: 15393 - name: Adjustable footboard height - - id: 15394 - name: Adjustable spring tension -- id: 2426 - name: Compatible drum configuration - friendly_id: compatible_drum_configuration - values: - - id: 6883 - name: Universal - - id: 15327 - name: Double bass - - id: 15395 - name: Hi-hat - - id: 15396 - name: Single bass -- id: 2427 - name: Footboard type - friendly_id: footboard_type - values: - - id: 2874 - name: Solid - - id: 7618 - name: Longboard - - id: 15397 - name: Perforated - - id: 15398 - name: Shortboard -- id: 2428 - name: Grip texture - friendly_id: grip_texture - values: - - id: 8689 - name: Smooth - - id: 10241 - name: Textured - - id: 14069 - name: Lacquered - - id: 15399 - name: Dipped - - id: 15400 - name: Rubberized -- id: 2429 - name: Percussion tip shape - friendly_id: percussion_tip_shape - values: - - id: 627 - name: Round - - id: 7434 - name: Teardrop - - id: 7936 - name: Acorn - - id: 14242 - name: Barrel -- id: 2430 - name: MIDI connectivity - friendly_id: midi_connectivity - values: - - id: 15402 - name: MIDI in - - id: 15403 - name: MIDI out - - id: 15404 - name: USB midi -- id: 2431 - name: Sound effects - friendly_id: sound_effects - values: - - id: 10125 - name: Compression - - id: 11727 - name: Delay - - id: 11729 - name: EQ - - id: 11738 - name: Reverb - - id: 15383 - name: Overdrive -- id: 2432 - name: Percussion stand design - friendly_id: percussion_stand_design - values: - - id: 9837 - name: Rack - - id: 15405 - name: Mount -- id: 2433 - name: Compatible string instrument - friendly_id: compatible_string_instrument - values: - - id: 6883 - name: Universal - - id: 12702 - name: Bass guitar - - id: 15291 - name: Ukulele - - id: 15292 - name: Mandolin - - id: 15293 - name: Banjo - - id: 15316 - name: Acoustic guitar - - id: 15328 - name: Electric guitar - - id: 15406 - name: Acoustic bass guitar - - id: 15407 - name: Classical guitar - - id: 15408 - name: Lap steel guitar - - id: 15409 - name: Semi-acoustic guitar -- id: 2434 - name: Output level - friendly_id: output_level - values: - - id: 1364 - name: Low - - id: 1376 - name: High - - id: 1511 - name: Medium -- id: 2435 - name: Pickup mounting type - friendly_id: pickup_mounting_type - values: - - id: 3732 - name: Clip-on - - id: 11399 - name: Screw-on - - id: 15410 - name: Stick-on -- id: 2436 - name: Pickup type - friendly_id: pickup_type - values: - - id: 1650 - name: Magnetic - - id: 7522 - name: Active - - id: 15411 - name: Dogear - - id: 15412 - name: Humbucker - - id: 15413 - name: P-90 - - id: 15414 - name: Piezo - - id: 15415 - name: Single coil - - id: 15416 - name: Soapbar - - id: 15417 - name: Soundhole - - id: 15418 - name: Undersaddle -- id: 2437 - name: Pickup position - friendly_id: pickup_position - values: - - id: 9826 - name: Neck - - id: 15420 - name: Bridge - - id: 15421 - name: Middle -- id: 2438 - name: Inner color - friendly_id: inner_color - values: - - id: 1 - name: Black - - id: 2 - name: Blue - - id: 3 - name: White - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 6 - name: Beige - - id: 7 - name: Brown - - id: 8 - name: Gray - - id: 9 - name: Green - - id: 10 - name: Orange - - id: 11 - name: Pink - - id: 12 - name: Purple - - id: 13 - name: Red - - id: 14 - name: Yellow - - id: 15 - name: Navy - - id: 16 - name: Rose gold - - id: 17 - name: Clear - - id: 657 - name: Bronze - - id: 2865 - name: Multicolor -- id: 2439 - name: Inner pattern - friendly_id: inner_pattern - values: - - id: 1782 - name: Text - - id: 1796 - name: Vehicle - - id: 1868 - name: Geometric - - id: 2283 - name: Birds - - id: 2370 - name: Animals - - id: 2375 - name: Hearts - - id: 2376 - name: Stars - - id: 2866 - name: Camouflage - - id: 2867 - name: Characters - - id: 2868 - name: Checkered - - id: 2869 - name: Christmas - - id: 2870 - name: Dots - - id: 2871 - name: Floral - - id: 2872 - name: Leaves - - id: 2873 - name: Paisley - - id: 2874 - name: Solid - - id: 2875 - name: Striped - - id: 2876 - name: Tie-dye -- id: 2440 - name: Pick design - friendly_id: pick_design - values: - - id: 392 - name: Standard - - id: 6998 - name: Triangular - - id: 7434 - name: Teardrop - - id: 15424 - name: Jazz III - - id: 15425 - name: Thumb pick -- id: 2441 - name: Music stand design - friendly_id: music_stand_design - values: - - id: 6884 - name: Floor - - id: 7056 - name: Wall -- id: 2442 - name: Strap design - friendly_id: strap_design - values: - - id: 13935 - name: Printed - - id: 13945 - name: Patterned - - id: 14678 - name: Plain - - id: 15426 - name: Embroidered -- id: 2443 - name: Compatible orchestral string instrument - friendly_id: compatible_orchestral_string_instrument - values: - - id: 6883 - name: Universal - - id: 12706 - name: Violin - - id: 15290 - name: Cello - - id: 15327 - name: Double bass - - id: 15347 - name: Viola -- id: 2444 - name: Frog material - friendly_id: frog_material - values: - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 62 - name: Synthetic - - id: 596 - name: Cork - - id: 601 - name: Metal - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 656 - name: Brass - - id: 671 - name: Graphite - - id: 700 - name: Rosewood - - id: 764 - name: Rubber - - id: 1009 - name: Maple wood - - id: 7851 - name: Boxwood - - id: 7935 - name: Bone - - id: 8500 - name: Gold-plated - - id: 8504 - name: Silver-plated - - id: 15431 - name: Snakewood - - id: 15439 - name: Nickel silver - - id: 15464 - name: African blackwood - - id: 16934 - name: Ebony wood - - id: 16935 - name: Faux ivory -- id: 2446 - name: Tension - friendly_id: tension - values: - - id: 1511 - name: Medium - - id: 3661 - name: Light - - id: 3663 - name: Heavy - - id: 15436 - name: Extra-heavy -- id: 2447 - name: Rosin form - friendly_id: rosin_form - values: - - id: 14199 - name: Block - - id: 15438 - name: Cake -- id: 2448 - name: Rosin grade - friendly_id: rosin_grade - values: - - id: 1511 - name: Medium - - id: 3661 - name: Light - - id: 9423 - name: Dark -- id: 2449 - name: Ingredient origin - friendly_id: ingredient_origin - values: - - id: 62 - name: Synthetic - - id: 8066 - name: Natural -- id: 2450 - name: Reed strength - friendly_id: reed_strength - values: - - id: 1511 - name: Medium - - id: 6993 - name: Soft - - id: 6994 - name: Hard -- id: 2451 - name: Woodwind care items included - friendly_id: woodwind_care_items_included - values: - - id: 7415 - name: Cleaning brush - - id: 10423 - name: Swab - - id: 15440 - name: Cleaning cloth - - id: 15441 - name: Cleaning rod - - id: 15442 - name: Cleaning swab - - id: 15443 - name: Cork grease - - id: 15444 - name: Flute plug - - id: 15445 - name: Pad paper - - id: 15446 - name: Polishing cloth - - id: 15447 - name: Reed case - - id: 15448 - name: Reed guard - - id: 15449 - name: Reed holder - - id: 15450 - name: Screwdriver -- id: 2452 - name: Compatible clarinet type - friendly_id: compatible_clarinet_type - values: - - id: 6883 - name: Universal - - id: 15451 - name: A clarinet - - id: 15452 - name: B♭ clarinet - - id: 15453 - name: E♭ clarinet -- id: 2453 - name: Facing - friendly_id: facing - values: - - id: 1511 - name: Medium - - id: 5877 - name: Open - - id: 15456 - name: Close -- id: 2454 - name: Embouchure hole shape - friendly_id: embouchure_hole_shape - values: - - id: 627 - name: Round - - id: 7321 - name: Oval -- id: 2455 - name: Lip plate material - friendly_id: lip_plate_material - values: - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 62 - name: Synthetic - - id: 596 - name: Cork - - id: 601 - name: Metal - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 656 - name: Brass - - id: 671 - name: Graphite - - id: 700 - name: Rosewood - - id: 764 - name: Rubber - - id: 1009 - name: Maple wood - - id: 7851 - name: Boxwood - - id: 7935 - name: Bone - - id: 8500 - name: Gold-plated - - id: 8504 - name: Silver-plated - - id: 15431 - name: Snakewood - - id: 15439 - name: Nickel silver - - id: 15464 - name: African blackwood - - id: 16934 - name: Ebony wood - - id: 16935 - name: Faux ivory -- id: 2456 - name: Compatible flute type - friendly_id: compatible_flute_type - values: - - id: 6883 - name: Universal - - id: 15330 - name: Flute - - id: 15457 - name: Piccolo -- id: 2457 - name: Compatible harmonica type - friendly_id: compatible_harmonica_type - values: - - id: 6883 - name: Universal - - id: 15458 - name: Diatonic harmonica - - id: 15459 - name: Chromatic harmonica -- id: 2458 - name: Compatible oboe type - friendly_id: compatible_oboe_type - values: - - id: 6883 - name: Universal - - id: 15336 - name: Oboe - - id: 15460 - name: English horn -- id: 2459 - name: Cleaning solution - friendly_id: cleaning_solution - values: - - id: 15461 - name: Recorder cleaner - - id: 15462 - name: Cleaning spray -- id: 2460 - name: Tip opening - friendly_id: tip_opening - values: - - id: 1511 - name: Medium - - id: 15048 - name: Large - - id: 15049 - name: Small -- id: 2461 - name: Accordion tuning - friendly_id: accordion_tuning - values: - - id: 550 - name: Dry - - id: 8153 - name: Wet - - id: 15469 - name: Concert pitch - - id: 15470 - name: Four voice double octave - - id: 15471 - name: Musette - - id: 15472 - name: Three voice musette - - id: 15473 - name: Three voice octave - - id: 15474 - name: Tremolo - - id: 15475 - name: Two voice octave - - id: 15476 - name: Two voice unison -- id: 2462 - name: Bass button configuration - friendly_id: bass_button_configuration - values: - - id: 15477 - name: 8 bass - - id: 15478 - name: 12 bass - - id: 15479 - name: 24 bass - - id: 15480 - name: 32 bass - - id: 15481 - name: 48 bass - - id: 15482 - name: 60 bass - - id: 15483 - name: 72 bass - - id: 15484 - name: 80 bass - - id: 15485 - name: 96 bass - - id: 15486 - name: 120 bass - - id: 15487 - name: More than 120 -- id: 2463 - name: Concertina button configuration - friendly_id: concertina_button_configuration - values: - - id: 372 - name: Other - - id: 15488 - name: 104-button English concertina - - id: 15489 - name: 20-button anglo concertina - - id: 15490 - name: 30-button anglo concertina - - id: 15491 - name: 35-button duet concertina - - id: 15492 - name: 40-button anglo concertina - - id: 15493 - name: 46-button duet concertina - - id: 15494 - name: 48-button English concertina - - id: 15495 - name: 55-button duet concertina - - id: 15496 - name: 56-button English concertina - - id: 15497 - name: 64-button English concertina - - id: 15498 - name: 65-button duet concertina - - id: 15499 - name: 72-button English concertina - - id: 15500 - name: 80-button English concertina - - id: 15501 - name: 87-button English concertina -- id: 2464 - name: Bell size - friendly_id: bell_size - values: - - id: 2913 - name: Small (S) - - id: 2914 - name: Medium (M) - - id: 2915 - name: Large (L) -- id: 2465 - name: Tuning pitch - friendly_id: tuning_pitch - values: - - id: 1967 - name: A - - id: 1968 - name: B - - id: 1969 - name: C - - id: 1970 - name: D - - id: 1971 - name: E - - id: 1972 - name: F - - id: 1995 - name: G - - id: 15502 - name: A# - - id: 15503 - name: Ab - - id: 15504 - name: Bb - - id: 15505 - name: C# - - id: 15506 - name: D# - - id: 15507 - name: Db - - id: 15508 - name: Eb - - id: 15509 - name: F# - - id: 15510 - name: G# - - id: 15511 - name: Gb -- id: 2466 - name: Interface type - friendly_id: interface_type - values: - - id: 1251 - name: Bluetooth - - id: 7271 - name: USB - - id: 13572 - name: MIDI - - id: 15401 - name: Audio output -- id: 2467 - name: Key type - friendly_id: key_type - values: - - id: 15512 - name: Weighted - - id: 15513 - name: Semi-weighted - - id: 15514 - name: Synth-action -- id: 2468 - name: Polyphony - friendly_id: polyphony - values: - - id: 15515 - name: Monophonic - - id: 15516 - name: Polyphonic - - id: 15517 - name: Multi-timbral -- id: 2469 - name: Synthesis method - friendly_id: synthesis_method - values: - - id: 1656 - name: Digital - - id: 2523 - name: Analog - - id: 15518 - name: Virtual analog -- id: 2470 - name: Drum configuration - friendly_id: drum_configuration - values: - - id: 15519 - name: 10-piece - - id: 15520 - name: 4-piece - - id: 15521 - name: 5-piece - - id: 15522 - name: 6-piece - - id: 15523 - name: 7-piece - - id: 15524 - name: 8-piece - - id: 15525 - name: 9-piece - - id: 15526 - name: Shell pack -- id: 2471 - name: Instrument components - friendly_id: instrument_components - values: - - id: 15527 - name: Drum pads - - id: 15528 - name: Cymbal pads - - id: 15529 - name: Drum module -- id: 2472 - name: Tom-tom design - friendly_id: tom_tom_design - values: - - id: 6884 - name: Floor - - id: 9837 - name: Rack -- id: 2473 - name: Keyboard action - friendly_id: keyboard_action - values: - - id: 15530 - name: Hammer action - - id: 15531 - name: Weighted keys -- id: 2474 - name: Piano pedals - friendly_id: piano_pedals - values: - - id: 6993 - name: Soft - - id: 15532 - name: Sustain - - id: 15533 - name: Sostenuto -- id: 2475 - name: Piano size - friendly_id: piano_size - values: - - id: 7396 - name: Upright - - id: 13664 - name: Studio - - id: 15534 - name: Baby grand - - id: 15535 - name: Concert grand - - id: 15536 - name: Console - - id: 15537 - name: Medium grand - - id: 15538 - name: Parlor grand - - id: 15539 - name: Semi-concert grand - - id: 15540 - name: Spinet -- id: 2477 - name: String instrument size - friendly_id: string_instrument_size - values: - - id: 1405 - name: 3/4 - - id: 13749 - name: 1/4 - - id: 13800 - name: 1/2 - - id: 15304 - name: 4/4 - - id: 15543 - name: 1/8 - - id: 15544 - name: 1/10 - - id: 15545 - name: 1/16 - - id: 15546 - name: 7/8 - - id: 15547 - name: 1/32 - - id: 15548 - name: Full size -- id: 2478 - name: Fingerboard material - friendly_id: fingerboard_material - values: - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 62 - name: Synthetic - - id: 596 - name: Cork - - id: 601 - name: Metal - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 656 - name: Brass - - id: 671 - name: Graphite - - id: 700 - name: Rosewood - - id: 764 - name: Rubber - - id: 1009 - name: Maple wood - - id: 7851 - name: Boxwood - - id: 7935 - name: Bone - - id: 8500 - name: Gold-plated - - id: 8504 - name: Silver-plated - - id: 15431 - name: Snakewood - - id: 15439 - name: Nickel silver - - id: 15464 - name: African blackwood - - id: 16934 - name: Ebony wood - - id: 16935 - name: Faux ivory -- id: 2479 - name: Guitar size - friendly_id: guitar_size - values: - - id: 1405 - name: 3/4 - - id: 13749 - name: 1/4 - - id: 13800 - name: 1/2 - - id: 14703 - name: Concert - - id: 14861 - name: Jumbo - - id: 15548 - name: Full size - - id: 15549 - name: Parlor - - id: 15550 - name: Short scale -- id: 2480 - name: Neck material - friendly_id: neck_material - values: - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 62 - name: Synthetic - - id: 596 - name: Cork - - id: 601 - name: Metal - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 656 - name: Brass - - id: 671 - name: Graphite - - id: 700 - name: Rosewood - - id: 764 - name: Rubber - - id: 1009 - name: Maple wood - - id: 7851 - name: Boxwood - - id: 7935 - name: Bone - - id: 8500 - name: Gold-plated - - id: 8504 - name: Silver-plated - - id: 15431 - name: Snakewood - - id: 15439 - name: Nickel silver - - id: 15464 - name: African blackwood - - id: 16934 - name: Ebony wood - - id: 16935 - name: Faux ivory -- id: 2481 - name: Harp size - friendly_id: harp_size - values: - - id: 15535 - name: Concert grand - - id: 15551 - name: Semi-grand - - id: 15552 - name: Petite -- id: 2482 - name: Clarinet key system - friendly_id: clarinet_key_system - values: - - id: 15553 - name: Albert - - id: 15554 - name: Boehm - - id: 15555 - name: Oehler -- id: 2483 - name: Mouthpiece - friendly_id: mouthpiece - values: - - id: 1967 - name: A - - id: 9856 - name: Bass - - id: 15504 - name: Bb - - id: 15508 - name: Eb - - id: 15556 - name: Alto - - id: 15557 - name: Contra-alto -- id: 2484 - name: Flute configuration - friendly_id: flute_configuration - values: - - id: 15558 - name: B footjoint - - id: 15559 - name: Closed hole (plateau) - - id: 15560 - name: Inline G - - id: 15561 - name: Offset G - - id: 15562 - name: Open hole (French) -- id: 2485 - name: Headjoint cut - friendly_id: headjoint_cut - values: - - id: 7080 - name: Conical - - id: 7259 - name: Wave - - id: 14845 - name: Cylindrical - - id: 15563 - name: Z-cut -- id: 2486 - name: Tuning - friendly_id: tuning - values: - - id: 1967 - name: A - - id: 1968 - name: B - - id: 1969 - name: C - - id: 1970 - name: D - - id: 1971 - name: E - - id: 1972 - name: F - - id: 1995 - name: G -- id: 2487 - name: Melodica style - friendly_id: melodica_style - values: - - id: 15564 - name: Piano-style - - id: 15565 - name: Keyboard-style -- id: 2488 - name: Musical key - friendly_id: musical_key - values: - - id: 15502 - name: A# - - id: 15505 - name: C# - - id: 15506 - name: D# - - id: 15509 - name: F# - - id: 15510 - name: G# - - id: 15566 - name: A major - - id: 15567 - name: A minor - - id: 15568 - name: Ab major - - id: 15569 - name: Ab minor - - id: 15570 - name: B major - - id: 15571 - name: B minor - - id: 15572 - name: Bb major - - id: 15573 - name: Bb minor - - id: 15574 - name: C major - - id: 15575 - name: C minor - - id: 15576 - name: D major - - id: 15577 - name: D minor - - id: 15578 - name: Db major - - id: 15579 - name: Db minor - - id: 15580 - name: E major - - id: 15581 - name: E minor - - id: 15582 - name: Eb major - - id: 15583 - name: Eb minor - - id: 15584 - name: F major - - id: 15585 - name: F minor - - id: 15586 - name: G major - - id: 15587 - name: G minor - - id: 15588 - name: Gb major - - id: 15589 - name: Gb minor -- id: 2489 - name: Oboe key system - friendly_id: oboe_key_system - values: - - id: 6939 - name: French - - id: 15590 - name: Conservatory -- id: 2490 - name: Ocarina style - friendly_id: ocarina_style - values: - - id: 11765 - name: Inline - - id: 15591 - name: Pendant - - id: 15592 - name: Transverse -- id: 2491 - name: Recorder fingering system - friendly_id: recorder_fingering_system - values: - - id: 6940 - name: German - - id: 15593 - name: Baroque -- id: 2492 - name: Extended saxophone range - friendly_id: extended_saxophone_range - values: - - id: 15594 - name: High F# key - - id: 15595 - name: Low A key -- id: 2493 - name: Item style - friendly_id: item_style - values: - - id: 372 - name: Other - - id: 1247 - name: Modern - - id: 1528 - name: Retro/Vintage - - id: 1868 - name: Geometric - - id: 2871 - name: Floral - - id: 7891 - name: Rustic - - id: 7894 - name: Abstract - - id: 8511 - name: Minimalist - - id: 10768 - name: Formal - - id: 12295 - name: Novelty - - id: 15597 - name: Colorful - - id: 15598 - name: Elegant -- id: 2494 - name: Corsage/Boutonnière design - friendly_id: corsage_boutonni_re_design - values: - - id: 8055 - name: Handheld - - id: 10235 - name: Wrist - - id: 15600 - name: Pin-on -- id: 2495 - name: Ribbon color - friendly_id: ribbon_color - values: - - id: 1 - name: Black - - id: 2 - name: Blue - - id: 3 - name: White - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 6 - name: Beige - - id: 7 - name: Brown - - id: 8 - name: Gray - - id: 9 - name: Green - - id: 10 - name: Orange - - id: 11 - name: Pink - - id: 12 - name: Purple - - id: 13 - name: Red - - id: 14 - name: Yellow - - id: 15 - name: Navy - - id: 16 - name: Rose gold - - id: 17 - name: Clear - - id: 657 - name: Bronze - - id: 2865 - name: Multicolor -- id: 2496 - name: Arrangement - friendly_id: arrangement - values: - - id: 7741 - name: Box - - id: 15601 - name: Bouquet - - id: 15602 - name: Vase - - id: 15603 - name: Basket -- id: 2497 - name: Stem length - friendly_id: stem_length - values: - - id: 169 - name: Short - - id: 1406 - name: Long - - id: 1511 - name: Medium -- id: 2502 - name: Gift bag handle design - friendly_id: gift_bag_handle_design - values: - - id: 619 - name: Rope - - id: 14629 - name: Ribbon - - id: 15615 - name: Die-cut -- id: 2503 - name: Card size - friendly_id: card_size - values: - - id: 13255 - name: 11" x 17" - - id: 13263 - name: 8.5" x 11" - - id: 13266 - name: A3 - - id: 13267 - name: A4 - - id: 13268 - name: A5 - - id: 13274 - name: Legal - - id: 13275 - name: Letter - - id: 13278 - name: Tabloid - - id: 13925 - name: 11" x 14" - - id: 13927 - name: 9" x 12" - - id: 13928 - name: A6 - - id: 14677 - name: A2 - - id: 14770 - name: 12" x 12" - - id: 14771 - name: 12" x 18" - - id: 14772 - name: 18" x 24" - - id: 14773 - name: 24" x 36" - - id: 14774 - name: 6" x 6" - - id: 14775 - name: A1 - - id: 14776 - name: A7 -- id: 2504 - name: Personalization design - friendly_id: personalization_design - values: - - id: 12600 - name: Blank - - id: 13935 - name: Printed - - id: 15045 - name: Customizable -- id: 2505 - name: Balloon kit items included - friendly_id: balloon_kit_items_included - values: - - id: 7030 - name: Pump - - id: 14629 - name: Ribbon - - id: 15617 - name: Clips - - id: 15618 - name: Weights -- id: 2506 - name: Balloon shape - friendly_id: balloon_shape - values: - - id: 627 - name: Round - - id: 1266 - name: Heart - - id: 11203 - name: Animal-shaped - - id: 14638 - name: Star - - id: 15620 - name: Cartoon character -- id: 2507 - name: Banner design - friendly_id: banner_design - values: - - id: 8269 - name: Letters - - id: 8322 - name: Shapes - - id: 14628 - name: Tassel - - id: 15621 - name: Garland -- id: 2508 - name: Birthday candle design - friendly_id: birthday_candle_design - values: - - id: 11203 - name: Animal-shaped - - id: 15620 - name: Cartoon character - - id: 15622 - name: Age-specific - - id: 15623 - name: Sports accessory -- id: 2509 - name: Cocktail decoration design - friendly_id: cocktail_decoration_design - values: - - id: 2875 - name: Striped - - id: 9071 - name: Tropical - - id: 15624 - name: Polka dots - - id: 15625 - name: Novelty shapes -- id: 2510 - name: Game components - friendly_id: game_components - values: - - id: 372 - name: Other - - id: 7190 - name: Ping pong balls - - id: 8365 - name: Cups - - id: 15627 - name: Deck of cards - - id: 15628 - name: Dice - - id: 15629 - name: Game board - - id: 15630 - name: Jenga blocks -- id: 2511 - name: Game difficulty - friendly_id: game_difficulty - values: - - id: 1511 - name: Medium - - id: 15631 - name: Easy - - id: 15632 - name: Difficult -- id: 2512 - name: Game name - friendly_id: game_name - values: - - id: 372 - name: Other - - id: 15633 - name: Beer pong - - id: 15634 - name: Drunk jenga - - id: 15635 - name: Flip cup - - id: 15636 - name: Kings cup - - id: 15637 - name: Never have I ever - - id: 15638 - name: Power hour - - id: 15639 - name: Quarters - - id: 15640 - name: Ring of fire - - id: 15641 - name: Truth or drink -- id: 2513 - name: Straw/Stirrer design - friendly_id: straw_stirrer_design - values: - - id: 552 - name: Straight - - id: 7219 - name: Flexible - - id: 11332 - name: Umbrella -- id: 2514 - name: Envelope seal design - friendly_id: envelope_seal_design - values: - - id: 2871 - name: Floral - - id: 11191 - name: Monogram - - id: 14680 - name: Personalized - - id: 15642 - name: Foil stamped - - id: 15643 - name: Wax seal -- id: 2515 - name: Program format - friendly_id: program_format - values: - - id: 13275 - name: Letter - - id: 15645 - name: Booklet - - id: 15646 - name: Folded - - id: 15647 - name: Single sheet -- id: 2516 - name: Noise intensity - friendly_id: noise_intensity - values: - - id: 1364 - name: Low - - id: 1376 - name: High - - id: 1511 - name: Medium -- id: 2517 - name: Card format - friendly_id: card_format - values: - - id: 15648 - name: Flat card - - id: 15649 - name: Folded card - - id: 15650 - name: Pocket invitation -- id: 2518 - name: Invitation personalization design - friendly_id: invitation_personalization_design - values: - - id: 15045 - name: Customizable - - id: 15651 - name: Blank spaces - - id: 15652 - name: RSVP included -- id: 2519 - name: Piñata design - friendly_id: pi_ata_design - values: - - id: 1523 - name: Animal - - id: 7559 - name: Traditional - - id: 14834 - name: Number - - id: 15654 - name: Character -- id: 2520 - name: Card holder design - friendly_id: card_holder_design - values: - - id: 3732 - name: Clip-on - - id: 11442 - name: Stand-up - - id: 15625 - name: Novelty shapes - - id: 15655 - name: Photo holder -- id: 2521 - name: Card design - friendly_id: card_design - values: - - id: 1363 - name: Flat - - id: 14212 - name: Tent - - id: 15646 - name: Folded -- id: 2522 - name: Fluid type - friendly_id: fluid_type - values: - - id: 10758 - name: Water-based - - id: 15656 - name: Fog juice - - id: 15657 - name: Dry ice -- id: 2523 - name: SFX control technology - friendly_id: sfx_control_technology - values: - - id: 6977 - name: Manual - - id: 12584 - name: Remote control - - id: 15658 - name: DMX - - id: 15665 - name: Sound-activated -- id: 2524 - name: Compatible special effects device - friendly_id: compatible_special_effects_device - values: - - id: 15659 - name: LED lights - - id: 15660 - name: Fog machine - - id: 15661 - name: Laser lights - - id: 15662 - name: Strobe lights - - id: 15663 - name: Lighting fixtures - - id: 15664 - name: Gobo projector -- id: 2525 - name: Award occasion - friendly_id: award_occasion - values: - - id: 14890 - name: Graduation - - id: 15666 - name: Academic - - id: 15667 - name: Achievement - - id: 15668 - name: Employee recognition - - id: 15669 - name: Sports event -- id: 2526 - name: Award design - friendly_id: award_design - values: - - id: 1247 - name: Modern - - id: 10768 - name: Formal - - id: 15598 - name: Elegant - - id: 15670 - name: Fun -- id: 2527 - name: Engraving - friendly_id: engraving - values: - - id: 15671 - name: Custom text - - id: 15672 - name: Logo engraving -- id: 2528 - name: Trophy design - friendly_id: trophy_design - values: - - id: 7491 - name: Cup - - id: 8493 - name: Globe - - id: 8508 - name: Custom - - id: 8509 - name: Diamond - - id: 14200 - name: Column - - id: 14201 - name: Figurine - - id: 14638 - name: Star - - id: 15673 - name: Plaque - - id: 15674 - name: Shield -- id: 2529 - name: Academic level - friendly_id: academic_level - values: - - id: 15675 - name: Undergraduate - - id: 15676 - name: Graduate - - id: 15677 - name: Doctoral - - id: 15678 - name: Postdoctoral - - id: 15679 - name: Faculty research -- id: 2530 - name: Publication type - friendly_id: publication_type - values: - - id: 15680 - name: Journal article - - id: 15681 - name: Conference paper - - id: 15682 - name: Thesis - - id: 15683 - name: Dissertation - - id: 15684 - name: Research report - - id: 15685 - name: Book chapter - - id: 15686 - name: Technical report - - id: 15687 - name: White paper - - id: 15688 - name: Review article - - id: 15689 - name: Case study -- id: 2531 - name: Research focus - friendly_id: research_focus - values: - - id: 372 - name: Other - - id: 7721 - name: Literature - - id: 7723 - name: History - - id: 15690 - name: Anthropology - - id: 15691 - name: Biology - - id: 15692 - name: Chemistry - - id: 15693 - name: Computer science - - id: 15694 - name: Economics - - id: 15695 - name: Environmental science - - id: 15696 - name: Geography - - id: 15697 - name: Linguistics - - id: 15698 - name: Philosophy - - id: 15699 - name: Physics - - id: 15700 - name: Political science - - id: 15701 - name: Psychology - - id: 15702 - name: Sociology -- id: 2532 - name: Research methodology - friendly_id: research_methodology - values: - - id: 15689 - name: Case study - - id: 15703 - name: Experimental - - id: 15704 - name: Survey - - id: 15705 - name: Qualitative - - id: 15706 - name: Quantitative - - id: 15707 - name: Mixed methods - - id: 15708 - name: Observational - - id: 15709 - name: Modeling and simulation - - id: 15710 - name: Meta-analysis - - id: 15711 - name: Literature review -- id: 2533 - name: Subject area - friendly_id: subject_area - values: - - id: 372 - name: Other - - id: 7725 - name: Science - - id: 12293 - name: Business - - id: 15153 - name: Technology - - id: 15712 - name: Arts - - id: 15713 - name: Education - - id: 15714 - name: Engineering - - id: 15715 - name: Health sciences - - id: 15716 - name: Humanities - - id: 15717 - name: Mathematics - - id: 15718 - name: Social sciences -- id: 2534 - name: Time period - friendly_id: time_period - values: - - id: 1247 - name: Modern - - id: 1516 - name: Historical - - id: 8507 - name: Contemporary - - id: 11495 - name: Medieval - - id: 15719 - name: Prehistoric - - id: 15720 - name: Ancient - - id: 15721 - name: Renaissance - - id: 15722 - name: Industrial revolution - - id: 15723 - name: 20th century -- id: 2535 - name: Genre - friendly_id: genre - values: - - id: 372 - name: Other - - id: 1517 - name: Horror - - id: 1518 - name: Fantasy - - id: 1520 - name: Sci-fi - - id: 7721 - name: Literature - - id: 7723 - name: History - - id: 7907 - name: Music - - id: 10256 - name: Travel - - id: 11419 - name: Anime - - id: 12293 - name: Business - - id: 12812 - name: Gaming - - id: 14642 - name: Movies & TV - - id: 14644 - name: Sports - - id: 15153 - name: Technology - - id: 15698 - name: Philosophy - - id: 15712 - name: Arts - - id: 15713 - name: Education - - id: 15724 - name: Action & adventure - - id: 15725 - name: Animation - - id: 15726 - name: Biography - - id: 15727 - name: Children - - id: 15728 - name: Comics & graphic novels - - id: 15729 - name: Crime & mystery - - id: 15730 - name: Design - - id: 15731 - name: Documentary - - id: 15732 - name: Drama - - id: 15733 - name: Family - - id: 15734 - name: Fashion & beauty - - id: 15735 - name: Finance - - id: 15736 - name: Food & cooking - - id: 15737 - name: Game show - - id: 15738 - name: Health & fitness - - id: 15739 - name: Historical fiction - - id: 15740 - name: Hobbies & interests - - id: 15741 - name: Humor & comedy - - id: 15742 - name: Marketing - - id: 15743 - name: Mental health - - id: 15744 - name: News & politics - - id: 15745 - name: Parenting - - id: 15746 - name: Period drama - - id: 15747 - name: Reality TV - - id: 15748 - name: Relationships - - id: 15749 - name: Religion & spirituality - - id: 15750 - name: Romance - - id: 15751 - name: Self-help & personal development - - id: 15752 - name: Society & culture - - id: 15753 - name: Supernatural - - id: 15754 - name: Suspense - - id: 15755 - name: Talk show - - id: 15756 - name: Thriller & suspense - - id: 15757 - name: War - - id: 15758 - name: Western - - id: 15759 - name: Young adult -- id: 2536 - name: Language version - friendly_id: language_version - values: - - id: 372 - name: Other - - id: 12713 - name: AFR- Afrikaans - - id: 12714 - name: ALB- Albanian - - id: 12715 - name: ARA- Arabic - - id: 12716 - name: ARM- Armenian - - id: 12717 - name: BAQ- Basque - - id: 12718 - name: BRA- Brazilian Portuguese - - id: 12719 - name: BUL- Bulgarian - - id: 12720 - name: CAT- Catalan - - id: 12721 - name: CHI (simpl)- Chinese (simplified) - - id: 12722 - name: CHI (tr)- Chinese (traditional) - - id: 12723 - name: CRO- Croatian - - id: 12724 - name: CZE- Czech - - id: 12725 - name: DAN- Danish - - id: 12726 - name: DEU- German - - id: 12727 - name: DEU-BE- German (Belgium) - - id: 12728 - name: DEU-CH- German (Switzerland) - - id: 12729 - name: DUT- Dutch - - id: 12730 - name: DUT-BE- Dutch (Belgium) - - id: 12731 - name: ENG- English - - id: 12732 - name: ENG-IN- English (India) - - id: 12733 - name: ENG-SG- English (Singapore) - - id: 12734 - name: ENG-US- English (United States) - - id: 12735 - name: EPO- Esperanto - - id: 12736 - name: ESP- Spanish - - id: 12737 - name: ESP-MX- Spanish (Mexico) - - id: 12738 - name: EST- Estonian - - id: 12739 - name: FAS- Farsi - - id: 12740 - name: FIN- Finnish - - id: 12741 - name: FRE- French - - id: 12742 - name: FRE-BE- French (Belgium) - - id: 12743 - name: FRE-CH- French (Switzerland) - - id: 12744 - name: GEO- Georgian - - id: 12745 - name: GLG- Galician - - id: 12746 - name: GRE- Greek - - id: 12747 - name: GSW- Swiss German - - id: 12748 - name: HEB- Hebrew - - id: 12749 - name: HIN- Hindi - - id: 12750 - name: HRV- Croatian - - id: 12751 - name: HUN- Hungarian - - id: 12752 - name: ICE- Icelandic - - id: 12753 - name: INC- Indonesian - - id: 12754 - name: IND- Indonesian - - id: 12755 - name: IRA- Iranian - - id: 12756 - name: ITA- Italian - - id: 12757 - name: JPN- Japanese - - id: 12758 - name: KAZ- Kazakh - - id: 12759 - name: KIR- Kirghiz - - id: 12760 - name: KOR- Korean - - id: 12761 - name: KUR- Kurdish - - id: 12762 - name: LAT- Latin - - id: 12763 - name: LAV- Latvian - - id: 12764 - name: LIT- Lithuanian - - id: 12765 - name: MAL- Malay - - id: 12766 - name: MDR- Mandar - - id: 12767 - name: MON- Mongolian - - id: 12768 - name: Multilingual- multilingual (not specific to one language) - - id: 12769 - name: NEP- Nepali - - id: 12770 - name: NOR- Norwegian - - id: 12771 - name: PER- Persian - - id: 12772 - name: PHI- Filipino - - id: 12773 - name: POL- Polish - - id: 12774 - name: POR- Portuguese - - id: 12775 - name: POR-BRA- Portuguese (Brazil) - - id: 12776 - name: ROH- Romansh - - id: 12777 - name: RUM- Romanian - - id: 12778 - name: RUS- Russian - - id: 12779 - name: SCR- Croatian - - id: 12780 - name: SLK- Slovak - - id: 12781 - name: SLV- Slovenian - - id: 12782 - name: SRP- Serbian - - id: 12783 - name: SWE- Swedish - - id: 12784 - name: TGL- Tagalog - - id: 12785 - name: THA- Thai - - id: 12786 - name: TIB- Tibetan - - id: 12787 - name: TUR- Turkish - - id: 12788 - name: UKR- Ukrainian - - id: 12789 - name: VIE- Vietnamese -- id: 2537 - name: Target audience - friendly_id: target_audience - values: - - id: 1515 - name: Kids - - id: 2403 - name: Adults - - id: 15760 - name: Suitable for all ages - - id: 15761 - name: Teens & young adults -- id: 2538 - name: Book cover type - friendly_id: book_cover_type - values: - - id: 372 - name: Other - - id: 6993 - name: Soft - - id: 15762 - name: Hardcover - - id: 15763 - name: Paperback - - id: 15764 - name: Soft front & hard back -- id: 2539 - name: Media access - friendly_id: media_access - values: - - id: 13287 - name: Print - - id: 15609 - name: Online - - id: 15765 - name: Digital subscription - - id: 15766 - name: Print & online -- id: 2540 - name: Media theme - friendly_id: media_theme - values: - - id: 426 - name: Lifestyle - - id: 7730 - name: Photography - - id: 7902 - name: Fashion - - id: 7907 - name: Music - - id: 10256 - name: Travel - - id: 10495 - name: Mature - - id: 12812 - name: Gaming - - id: 14894 - name: Wedding - - id: 15071 - name: Automotive - - id: 15153 - name: Technology - - id: 15713 - name: Education - - id: 15736 - name: Food & cooking - - id: 15767 - name: Art & culture - - id: 15768 - name: Business & finance - - id: 15769 - name: Entertainment & celebrity - - id: 15770 - name: Gardening - - id: 15771 - name: Health & wellness - - id: 15772 - name: History & heritage - - id: 15773 - name: Hobby & crafts - - id: 15774 - name: Home & decor - - id: 15775 - name: LGBTQ+ - - id: 15776 - name: Literary & writing - - id: 15777 - name: Men's interests - - id: 15778 - name: News & current affairs - - id: 15779 - name: Outdoor & adventure - - id: 15780 - name: Parenting & family - - id: 15781 - name: Pets & animals - - id: 15782 - name: Science & nature - - id: 15783 - name: Sport & fitness - - id: 15784 - name: Teen & young adult - - id: 15785 - name: Women's interests -- id: 2541 - name: Publication frequency - friendly_id: publication_frequency - values: - - id: 8518 - name: Daily - - id: 8519 - name: Weekly - - id: 14635 - name: Monthly - - id: 15786 - name: Bi-monthly - - id: 15787 - name: Quarterly - - id: 15788 - name: Semi-annual - - id: 15789 - name: Annual - - id: 15790 - name: Bi-weekly -- id: 2542 - name: Media section - friendly_id: media_section - values: - - id: 372 - name: Other - - id: 426 - name: Lifestyle - - id: 429 - name: Sport - - id: 13278 - name: Tabloid - - id: 15768 - name: Business & finance - - id: 15791 - name: Entertainment - - id: 15792 - name: General news - - id: 15793 - name: Politics -- id: 2543 - name: Download format - friendly_id: download_format - values: - - id: 372 - name: Other - - id: 11591 - name: AAC - - id: 11711 - name: DSD - - id: 11832 - name: AIFF - - id: 11833 - name: ALAC - - id: 11855 - name: FLAC - - id: 11880 - name: MP3 - - id: 11884 - name: MQA - - id: 11889 - name: OGG - - id: 11903 - name: WAV - - id: 11904 - name: WMA -- id: 2544 - name: Release schedule - friendly_id: release_schedule - values: - - id: 372 - name: Other - - id: 8518 - name: Daily - - id: 8519 - name: Weekly - - id: 14635 - name: Monthly - - id: 15790 - name: Bi-weekly - - id: 15797 - name: Irregular -- id: 2545 - name: Product manual area - friendly_id: product_manual_area - values: - - id: 372 - name: Other - - id: 14046 - name: Electronics - - id: 15798 - name: Camera & optics - - id: 15799 - name: Exercise & fitness equipment - - id: 15800 - name: Household appliance - - id: 15801 - name: Kitchen appliance - - id: 15802 - name: Model & toys - - id: 15803 - name: Office supplies - - id: 15804 - name: Power tool & equipment - - id: 15805 - name: Vehicle service - - id: 15806 - name: Carpentry & woodworking project plans -- id: 2546 - name: Media content type - friendly_id: media_content_type - values: - - id: 372 - name: Other - - id: 13864 - name: Movie - - id: 14703 - name: Concert - - id: 15731 - name: Documentary - - id: 15747 - name: Reality TV - - id: 15807 - name: Animated series - - id: 15808 - name: Educational program - - id: 15809 - name: Exercise/Fitness program - - id: 15810 - name: Live performance - - id: 15811 - name: Mini-series - - id: 15812 - name: Music video compilation - - id: 15813 - name: Special event coverage - - id: 15814 - name: Sport event - - id: 15815 - name: Stand-up comedy - - id: 15816 - name: TV show - - id: 15817 - name: Web series -- id: 2547 - name: MPAA rating - friendly_id: mpaa_rating - values: - - id: 1995 - name: G - - id: 3081 - name: R - - id: 3083 - name: U - - id: 15818 - name: PG - - id: 15819 - name: PG-13 - - id: 15820 - name: NC-17 - - id: 15821 - name: NR -- id: 2548 - name: Display recommended use - friendly_id: display_recommended_use - values: - - id: 6883 - name: Universal - - id: 7727 - name: Transportation - - id: 14071 - name: Commercial - - id: 15713 - name: Education - - id: 15735 - name: Finance - - id: 15828 - name: Corporate - - id: 15829 - name: Government - - id: 15830 - name: Healthcare - - id: 15831 - name: Retail -- id: 2549 - name: Totem design - friendly_id: totem_design - values: - - id: 15833 - name: Double-sided - - id: 15834 - name: Single-sided -- id: 2550 - name: Animal feed form - friendly_id: animal_feed_form - values: - - id: 372 - name: Other - - id: 2874 - name: Solid - - id: 7404 - name: Paste - - id: 7405 - name: Powder - - id: 7406 - name: Liquid - - id: 7407 - name: Spray - - id: 7408 - name: Pellets - - id: 7409 - name: Cubes - - id: 7410 - name: Granules - - id: 7411 - name: Mash - - id: 7412 - name: Chaff - - id: 15835 - name: Crumbles -- id: 2551 - name: Livestock food ingredients - friendly_id: livestock_food_ingredients - values: - - id: 775 - name: Corn - - id: 1036 - name: Wheat - - id: 9438 - name: Barley - - id: 9522 - name: Oats - - id: 15836 - name: Soybean meal -- id: 2552 - name: Chicken feed stage - friendly_id: chicken_feed_stage - values: - - id: 11926 - name: Scratch - - id: 15838 - name: Broiler - - id: 15839 - name: Grower - - id: 15840 - name: Layer - - id: 15841 - name: Starter -- id: 2553 - name: Pig feed stage - friendly_id: pig_feed_stage - values: - - id: 15839 - name: Grower - - id: 15841 - name: Starter - - id: 15842 - name: Finisher - - id: 15843 - name: Sow -- id: 2554 - name: Suitable for animal type - friendly_id: suitable_for_animal_type - values: - - id: 6883 - name: Universal - - id: 7997 - name: Horse - - id: 9925 - name: Goat - - id: 15849 - name: Sheep - - id: 15850 - name: Cow - - id: 15851 - name: Lama - - id: 15852 - name: Pig -- id: 2555 - name: Communication protocols - friendly_id: communication_protocols - values: - - id: 7271 - name: USB - - id: 11571 - name: Ethernet - - id: 12659 - name: Serial - - id: 15853 - name: Modbus - - id: 15854 - name: Profibus - - id: 15855 - name: Profinet -- id: 2556 - name: Controller design - friendly_id: controller_design - values: - - id: 10993 - name: Safety - - id: 11119 - name: Compact - - id: 12458 - name: Modular - - id: 12606 - name: Rack-mounted - - id: 15049 - name: Small -- id: 2557 - name: Phase type - friendly_id: phase_type - values: - - id: 15856 - name: Single-phase - - id: 15857 - name: Two-phase - - id: 15858 - name: Three-phase -- id: 2558 - name: Control method - friendly_id: control_method - values: - - id: 15859 - name: Direct torque - - id: 15860 - name: Scalar (V/f) - - id: 15861 - name: Vector -- id: 2559 - name: Controller drive type - friendly_id: controller_drive_type - values: - - id: 7773 - name: AC-powered - - id: 10127 - name: DC - - id: 13777 - name: Servo - - id: 15862 - name: Stepper -- id: 2560 - name: Mirror handle design - friendly_id: mirror_handle_design - values: - - id: 14308 - name: Double-ended - - id: 15866 - name: Single-ended -- id: 2561 - name: Dentistry items included - friendly_id: dentistry_items_included - values: - - id: 15867 - name: Dental mirror - - id: 15868 - name: Dental polisher - - id: 15869 - name: Interdental pick - - id: 15870 - name: Plaque removal tool - - id: 15871 - name: Stain eraser - - id: 15872 - name: Whitening paste -- id: 2562 - name: Prophy cup design - friendly_id: prophy_cup_design - values: - - id: 7487 - name: Brush - - id: 10238 - name: Ribbed - - id: 15874 - name: Webbed -- id: 2563 - name: Dental paste flavor - friendly_id: dental_paste_flavor - values: - - id: 7854 - name: Cherry - - id: 8619 - name: Mint - - id: 9072 - name: Unflavored - - id: 9972 - name: Bubblegum -- id: 2564 - name: Costume theme - friendly_id: costume_theme - values: - - id: 372 - name: Other - - id: 1516 - name: Historical - - id: 1517 - name: Horror - - id: 1518 - name: Fantasy - - id: 1520 - name: Sci-fi - - id: 1521 - name: Cultural - - id: 1525 - name: Movie/TV characters - - id: 1526 - name: Cartoon/Animated characters - - id: 1527 - name: Mythological - - id: 1528 - name: Retro/Vintage - - id: 1530 - name: Carnival/Mardi Gras - - id: 1531 - name: Pirates - - id: 1532 - name: Princesses - - id: 1533 - name: Villains - - id: 1534 - name: Heroes - - id: 1535 - name: Robots - - id: 1536 - name: Aliens - - id: 1537 - name: Zombies - - id: 1538 - name: Vampires - - id: 1539 - name: Witches/Wizards - - id: 1540 - name: Ghosts - - id: 1541 - name: Angels/Demons - - id: 2370 - name: Animals - - id: 6760 - name: Celebrities - - id: 8507 - name: Contemporary - - id: 14644 - name: Sports - - id: 14645 - name: Superheroes - - id: 16896 - name: Fairytales - - id: 16897 - name: Occupations -- id: 2565 - name: Prop theme - friendly_id: prop_theme - values: - - id: 1516 - name: Historical - - id: 1518 - name: Fantasy - - id: 1520 - name: Sci-fi - - id: 8507 - name: Contemporary -- id: 2566 - name: Bullion form - friendly_id: bullion_form - values: - - id: 15143 - name: Coins - - id: 15875 - name: Bars - - id: 15876 - name: Rounds -- id: 2567 - name: Shelf material - friendly_id: shelf_material - values: - - id: 64 - name: Bamboo - - id: 601 - name: Metal - - id: 620 - name: Stainless steel - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 665 - name: Chrome - - id: 801 - name: Steel - - id: 888 - name: Particle board - - id: 971 - name: Chrome steel - - id: 1853 - name: Medium density fiberboard (MDF) - - id: 2557 - name: Beech wood - - id: 2995 - name: Oak wood -- id: 2568 - name: Bottom surface material - friendly_id: bottom_surface_material - values: - - id: 601 - name: Metal - - id: 620 - name: Stainless steel - - id: 640 - name: Glass - - id: 643 - name: Ceramic - - id: 666 - name: Copper - - id: 774 - name: Cast iron - - id: 809 - name: Silicone - - id: 863 - name: Carbon steel - - id: 1175 - name: Enamel - - id: 1637 - name: Aluminum - - id: 8321 - name: Teflon -- id: 2569 - name: Burner material - friendly_id: burner_material - values: - - id: 601 - name: Metal - - id: 620 - name: Stainless steel - - id: 640 - name: Glass - - id: 643 - name: Ceramic - - id: 666 - name: Copper - - id: 774 - name: Cast iron - - id: 809 - name: Silicone - - id: 863 - name: Carbon steel - - id: 1175 - name: Enamel - - id: 1637 - name: Aluminum - - id: 8321 - name: Teflon -- id: 2570 - name: Lid material - friendly_id: lid_material - values: - - id: 601 - name: Metal - - id: 620 - name: Stainless steel - - id: 640 - name: Glass - - id: 643 - name: Ceramic - - id: 666 - name: Copper - - id: 774 - name: Cast iron - - id: 809 - name: Silicone - - id: 863 - name: Carbon steel - - id: 1175 - name: Enamel - - id: 1637 - name: Aluminum - - id: 8321 - name: Teflon -- id: 2571 - name: Jaw material - friendly_id: jaw_material - values: - - id: 601 - name: Metal - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 620 - name: Stainless steel - - id: 623 - name: Titanium - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 643 - name: Ceramic - - id: 774 - name: Cast iron - - id: 801 - name: Steel - - id: 809 - name: Silicone - - id: 823 - name: Fiberglass - - id: 860 - name: Iron - - id: 863 - name: Carbon steel - - id: 1001 - name: Carbide - - id: 1637 - name: Aluminum - - id: 2981 - name: Carbon fiber - - id: 8198 - name: Damascus steel - - id: 8398 - name: G-10 - - id: 8509 - name: Diamond - - id: 14470 - name: High-speed steel - - id: 16902 - name: VG-10 -- id: 2572 - name: Scale material - friendly_id: scale_material - values: - - id: 601 - name: Metal - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 620 - name: Stainless steel - - id: 623 - name: Titanium - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 643 - name: Ceramic - - id: 774 - name: Cast iron - - id: 801 - name: Steel - - id: 809 - name: Silicone - - id: 823 - name: Fiberglass - - id: 860 - name: Iron - - id: 863 - name: Carbon steel - - id: 1001 - name: Carbide - - id: 1637 - name: Aluminum - - id: 2981 - name: Carbon fiber - - id: 8198 - name: Damascus steel - - id: 8398 - name: G-10 - - id: 8509 - name: Diamond - - id: 14470 - name: High-speed steel - - id: 16902 - name: VG-10 -- id: 2573 - name: Bulldozer blade type - friendly_id: bulldozer_blade_type - values: - - id: 14593 - name: Angle - - id: 15878 - name: Semi-U - - id: 15879 - name: Straight (S-blade) - - id: 15880 - name: Universal (U-blade) -- id: 2574 - name: Chipper technology - friendly_id: chipper_technology - values: - - id: 7254 - name: Screw - - id: 7362 - name: Drum - - id: 15881 - name: Disk - - id: 15882 - name: High-torque roller -- id: 2575 - name: Discharge type - friendly_id: discharge_type - values: - - id: 392 - name: Standard - - id: 15883 - name: Bottom dump - - id: 15884 - name: Side dump - - id: 15885 - name: Transfer -- id: 2576 - name: Drive type - friendly_id: drive_type - values: - - id: 15886 - name: 2WD - - id: 15887 - name: 4WD - - id: 15888 - name: Track - - id: 16765 - name: FWD - - id: 16766 - name: RWD - - id: 16767 - name: AWD -- id: 2577 - name: Counter shape - friendly_id: counter_shape - values: - - id: 552 - name: Straight - - id: 7737 - name: Curved - - id: 7738 - name: L-shaped - - id: 7739 - name: U-shaped -- id: 2578 - name: Rack design - friendly_id: rack_design - values: - - id: 5877 - name: Open - - id: 15892 - name: Compartment - - id: 15893 - name: Stemware -- id: 2579 - name: Bell design - friendly_id: bell_design - values: - - id: 7400 - name: Push - - id: 15894 - name: Call bell - - id: 15895 - name: Tap -- id: 2580 - name: Bell sound - friendly_id: bell_sound - values: - - id: 15896 - name: Chime - - id: 15897 - name: Ding - - id: 15898 - name: Ding-dong -- id: 2581 - name: Handcuff lock type - friendly_id: handcuff_lock_type - values: - - id: 7783 - name: Key - - id: 15899 - name: Double lock - - id: 15900 - name: Push pin -- id: 2582 - name: Detector sensitivity - friendly_id: detector_sensitivity - values: - - id: 395 - name: Adjustable - - id: 8451 - name: Fixed -- id: 2583 - name: Automation - friendly_id: automation - values: - - id: 6977 - name: Manual - - id: 11743 - name: Automatic - - id: 15901 - name: Semi-automatic -- id: 2584 - name: Conveyor operation - friendly_id: conveyor_operation - values: - - id: 6977 - name: Manual - - id: 7024 - name: Electromagnetic - - id: 11925 - name: Powered - - id: 15902 - name: Gravity-driven -- id: 2585 - name: Pneumatic conveyor operation - friendly_id: pneumatic_conveyor_operation - values: - - id: 15903 - name: Dense phase - - id: 15904 - name: Dilute phase - - id: 15905 - name: Eco phase -- id: 2586 - name: Suitable for vehicle type - friendly_id: suitable_for_vehicle_type - values: - - id: 6883 - name: Universal - - id: 10253 - name: Car - - id: 11169 - name: Truck - - id: 15906 - name: Bus - - id: 15907 - name: Tractor -- id: 2587 - name: Operating mode - friendly_id: operating_mode - values: - - id: 15901 - name: Semi-automatic -- id: 2588 - name: Tuning fork design - friendly_id: tuning_fork_design - values: - - id: 15512 - name: Weighted - - id: 15908 - name: Unweighted -- id: 2589 - name: Tuning fork frequency - friendly_id: tuning_fork_frequency - values: - - id: 15909 - name: 128 Hz - - id: 15910 - name: 256 hZ - - id: 15911 - name: 512 Hz -- id: 2590 - name: Compatible patient profile - friendly_id: compatible_patient_profile - values: - - id: 6883 - name: Universal - - id: 7348 - name: Average - - id: 10187 - name: Bariatric - - id: 10464 - name: Pediatric - - id: 15912 - name: Geriatric - - id: 15913 - name: Neonatal -- id: 2591 - name: Stretcher/Gurney intended use - friendly_id: stretcher_gurney_intended_use - values: - - id: 15914 - name: Ambulance - - id: 15915 - name: Emergency transport - - id: 15916 - name: Fluoroscopy - - id: 15917 - name: General transport - - id: 15918 - name: MRI - - id: 15919 - name: Surgical -- id: 2592 - name: Equipment operation - friendly_id: equipment_operation - values: - - id: 6977 - name: Manual - - id: 11925 - name: Powered -- id: 2593 - name: Stethoscope design - friendly_id: stethoscope_design - values: - - id: 15920 - name: Dual-head - - id: 15921 - name: Single-head -- id: 2594 - name: Stethoscope technology - friendly_id: stethoscope_technology - values: - - id: 7779 - name: Electronic - - id: 14137 - name: Acoustic -- id: 2595 - name: Tube color - friendly_id: tube_color - values: - - id: 1 - name: Black - - id: 2 - name: Blue - - id: 3 - name: White - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 6 - name: Beige - - id: 7 - name: Brown - - id: 8 - name: Gray - - id: 9 - name: Green - - id: 10 - name: Orange - - id: 11 - name: Pink - - id: 12 - name: Purple - - id: 13 - name: Red - - id: 14 - name: Yellow - - id: 15 - name: Navy - - id: 16 - name: Rose gold - - id: 17 - name: Clear - - id: 657 - name: Bronze - - id: 2865 - name: Multicolor -- id: 2596 - name: Chiropractic table design - friendly_id: chiropractic_table_design - values: - - id: 15296 - name: Drop - - id: 15922 - name: Decompression - - id: 15923 - name: Elevation - - id: 15924 - name: Flexion-distraction - - id: 15925 - name: Hylo -- id: 2597 - name: Cart design - friendly_id: cart_design - values: - - id: 15926 - name: Double-hook - - id: 15927 - name: Multiple-hook - - id: 15928 - name: Single-hook - - id: 15929 - name: With base -- id: 2598 - name: Blade shape - friendly_id: blade_shape - values: - - id: 552 - name: Straight - - id: 7737 - name: Curved -- id: 2599 - name: Scalpel blade number - friendly_id: scalpel_blade_number - values: - - id: 372 - name: Other - - id: 2880 - name: '10' - - id: 2881 - name: '12' - - id: 2882 - name: '14' - - id: 2883 - name: '16' - - id: 2884 - name: '18' - - id: 2886 - name: '20' - - id: 2887 - name: '22' - - id: 2888 - name: '24' - - id: 2889 - name: '26' - - id: 2893 - name: '34' - - id: 2894 - name: '36' - - id: 2897 - name: '40' - - id: 2907 - name: '6' - - id: 2908 - name: '60' - - id: 2947 - name: '9' - - id: 2949 - name: '15' - - id: 2952 - name: '17' - - id: 2955 - name: '19' - - id: 2958 - name: '21' - - id: 2961 - name: '23' - - id: 2964 - name: '25' - - id: 2967 - name: '27' - - id: 3011 - name: '11' - - id: 3014 - name: '13' - - id: 15930 - name: 10a - - id: 15931 - name: 11P - - id: 15932 - name: 12D - - id: 15933 - name: 15A - - id: 15934 - name: 15C - - id: 15935 - name: 15T - - id: 15936 - name: 22A - - id: 15937 - name: 25a - - id: 15938 - name: D/15 - - id: 15939 - name: E/11 - - id: 15940 - name: E11 - - id: 15941 - name: PM40 - - id: 15942 - name: PM40B - - id: 15943 - name: PM60 - - id: 15944 - name: PM60B -- id: 2600 - name: Scalpel handle number - friendly_id: scalpel_handle_number - values: - - id: 2896 - name: '4' - - id: 2938 - name: '3' - - id: 2944 - name: '7' - - id: 2947 - name: '9' - - id: 15945 - name: 3L - - id: 15946 - name: 4L -- id: 2601 - name: Medical syringe purpose - friendly_id: medical_syringe_purpose - values: - - id: 15947 - name: Injection - - id: 15948 - name: Irrigation - - id: 15949 - name: Tubing -- id: 2602 - name: Needle gauge - friendly_id: needle_gauge - values: - - id: 372 - name: Other - - id: 2880 - name: '10' - - id: 2881 - name: '12' - - id: 2882 - name: '14' - - id: 2883 - name: '16' - - id: 2884 - name: '18' - - id: 2886 - name: '20' - - id: 2887 - name: '22' - - id: 2888 - name: '24' - - id: 2889 - name: '26' - - id: 2890 - name: '28' - - id: 2891 - name: '30' - - id: 2892 - name: '32' - - id: 2893 - name: '34' - - id: 2907 - name: '6' - - id: 2909 - name: '8' - - id: 2944 - name: '7' - - id: 2947 - name: '9' - - id: 2949 - name: '15' - - id: 2952 - name: '17' - - id: 2955 - name: '19' - - id: 2958 - name: '21' - - id: 2961 - name: '23' - - id: 2964 - name: '25' - - id: 2967 - name: '27' - - id: 3011 - name: '11' - - id: 3014 - name: '13' - - id: 3019 - name: '29' - - id: 3022 - name: '31' - - id: 3025 - name: '33' - - id: 15950 - name: 22s - - id: 15951 - name: 26s -- id: 2603 - name: Tip design - friendly_id: tip_design - values: - - id: 15952 - name: Catheter tip - - id: 15953 - name: Eccentric tip - - id: 15954 - name: Luer lock - - id: 15955 - name: Slip tip -- id: 2604 - name: Drilling method - friendly_id: drilling_method - values: - - id: 7745 - name: Rotary - - id: 15957 - name: DTH - - id: 15958 - name: Percussion - - id: 15959 - name: Top hammer -- id: 2605 - name: Drilling rig orientation - friendly_id: drilling_rig_orientation - values: - - id: 7683 - name: Directional - - id: 8167 - name: Horizontal - - id: 8168 - name: Vertical -- id: 2606 - name: Currencies supported - friendly_id: currencies_supported - values: - - id: 372 - name: Other - - id: 11445 - name: Australian Dollar (AUD) - - id: 11446 - name: British Pound Sterling (GBP) - - id: 11447 - name: Canadian Dollar (CAD) - - id: 11448 - name: Chinese Yuan (CNY) - - id: 11449 - name: Euro (EUR) - - id: 11450 - name: Indian Rupee (INR) - - id: 11451 - name: Japanese Yen (JPY) - - id: 11452 - name: Mexican Peso (MXN) - - id: 11453 - name: Swiss Franc (CHF) - - id: 11454 - name: United States Dollar (USD) - - id: 15960 - name: Afghan Afghani (AFN) - - id: 15961 - name: Albanian Lek (ALL) - - id: 15962 - name: Algerian Dinar (DZD) - - id: 15963 - name: Angolan Kwanza (AOA) - - id: 15964 - name: Argentine Peso (ARS) - - id: 15965 - name: Armenian Dram (AMD) - - id: 15966 - name: Aruban Florin (AWG) - - id: 15967 - name: Azerbaijani Manat (AZN) - - id: 15968 - name: Bahamian Dollar (BSD) - - id: 15969 - name: Bahraini Dinar (BHD) - - id: 15970 - name: Bangladeshi Taka (BDT) - - id: 15971 - name: Barbadian Dollar (BBD) - - id: 15972 - name: Belarusian Ruble (BYN) - - id: 15973 - name: Belize Dollar (BZD) - - id: 15974 - name: Bermudian Dollar (BMD) - - id: 15975 - name: Bhutanese Ngultrum (BTN) - - id: 15976 - name: Bolivian Boliviano (BOB) - - id: 15977 - name: Bosnia and Herzegovina Convertible Mark (BAM) - - id: 15978 - name: Botswana Pula (BWP) - - id: 15979 - name: Brazilian Real (BRL) - - id: 15980 - name: Brunei Dollar (BND) - - id: 15981 - name: Bulgarian Lev (BGN) - - id: 15982 - name: Burundian Franc (BIF) - - id: 15983 - name: Cambodian Riel (KHR) - - id: 15984 - name: Cape Verdean Escudo (CVE) - - id: 15985 - name: Central African CFA Franc (XAF) - - id: 15986 - name: CFP Franc (XPF) - - id: 15987 - name: Chilean Peso (CLP) - - id: 15988 - name: Colombian Peso (COP) - - id: 15989 - name: Comorian Franc (KMF) - - id: 15990 - name: Congolese Franc (CDF) - - id: 15991 - name: Costa Rican Colón (CRC) - - id: 15992 - name: Croatian Kuna (HRK) - - id: 15993 - name: Cuban Peso (CUP) - - id: 15994 - name: Czech Koruna (CZK) - - id: 15995 - name: Danish Krone (DKK) - - id: 15996 - name: Djiboutian Franc (DJF) - - id: 15997 - name: Dominican Peso (DOP) - - id: 15998 - name: East Caribbean Dollar (XCD) - - id: 15999 - name: Egyptian Pound (EGP) - - id: 16000 - name: Eritrean Nakfa (ERN) - - id: 16001 - name: Ethiopian Birr (ETB) - - id: 16002 - name: Fijian Dollar (FJD) - - id: 16003 - name: Gambian Dalasi (GMD) - - id: 16004 - name: Georgian Lari (GEL) - - id: 16005 - name: Ghanaian Cedi (GHS) - - id: 16006 - name: Guatemalan Quetzal (GTQ) - - id: 16007 - name: Guinean Franc (GNF) - - id: 16008 - name: Guyanese Dollar (GYD) - - id: 16009 - name: Haitian Gourde (HTG) - - id: 16010 - name: Honduran Lempira (HNL) - - id: 16011 - name: Hong Kong Dollar (HKD) - - id: 16012 - name: Hungarian Forint (HUF) - - id: 16013 - name: Icelandic Króna (ISK) - - id: 16014 - name: Indonesian Rupiah (IDR) - - id: 16015 - name: Iranian Rial (IRR) - - id: 16016 - name: Iraqi Dinar (IQD) - - id: 16017 - name: Israeli New Shekel (ILS) - - id: 16018 - name: Jamaican Dollar (JMD) - - id: 16019 - name: Jordanian Dinar (JOD) - - id: 16020 - name: Kazakhstani Tenge (KZT) - - id: 16021 - name: Kenyan Shilling (KES) - - id: 16022 - name: Kuwaiti Dinar (KWD) - - id: 16023 - name: Kyrgyzstani Som (KGS) - - id: 16024 - name: Lao Kip (LAK) - - id: 16025 - name: Lebanese Pound (LBP) - - id: 16026 - name: Lesotho Loti (LSL) - - id: 16027 - name: Liberian Dollar (LRD) - - id: 16028 - name: Libyan Dinar (LYD) - - id: 16029 - name: Macanese Pataca (MOP) - - id: 16030 - name: Macedonian Denar (MKD) - - id: 16031 - name: Malagasy Ariary (MGA) - - id: 16032 - name: Malawian Kwacha (MWK) - - id: 16033 - name: Malaysian Ringgit (MYR) - - id: 16034 - name: Maldivian Rufiyaa (MVR) - - id: 16035 - name: Mauritanian Ouguiya (MRU) - - id: 16036 - name: Mauritian Rupee (MUR) - - id: 16037 - name: Moldovan Leu (MDL) - - id: 16038 - name: Mongolian Tögrög (MNT) - - id: 16039 - name: Moroccan Dirham (MAD) - - id: 16040 - name: Mozambican Metical (MZN) - - id: 16041 - name: Myanmar Kyat (MMK) - - id: 16042 - name: Namibian Dollar (NAD) - - id: 16043 - name: Nepalese Rupee (NPR) - - id: 16044 - name: New Zealand Dollar (NZD) - - id: 16045 - name: Nicaraguan Córdoba (NIO) - - id: 16046 - name: Nigerian Naira (NGN) - - id: 16047 - name: Norwegian Krone (NOK) - - id: 16048 - name: Omani Rial (OMR) - - id: 16049 - name: Pakistani Rupee (PKR) - - id: 16050 - name: Panamanian Balboa (PAB) - - id: 16051 - name: Papua New Guinean Kina (PGK) - - id: 16052 - name: Paraguayan Guarani (PYG) - - id: 16053 - name: Peruvian Sol (PEN) - - id: 16054 - name: Philippine Peso (PHP) - - id: 16055 - name: Polish Złoty (PLN) - - id: 16056 - name: Qatari Riyal (QAR) - - id: 16057 - name: Romanian Leu (RON) - - id: 16058 - name: Russian Ruble (RUB) - - id: 16059 - name: Rwandan Franc (RWF) - - id: 16060 - name: Saint Helena Pound (SHP) - - id: 16061 - name: Samoan Tālā (WST) - - id: 16062 - name: São Tomé and Príncipe Dobra (STN) - - id: 16063 - name: Saudi Riyal (SAR) - - id: 16064 - name: Serbian Dinar (RSD) - - id: 16065 - name: Seychellois Rupee (SCR) - - id: 16066 - name: Sierra Leonean Leone (SLL) - - id: 16067 - name: Singapore Dollar (SGD) - - id: 16068 - name: Solomon Islands Dollar (SBD) - - id: 16069 - name: Somali Shilling (SOS) - - id: 16070 - name: South African Rand (ZAR) - - id: 16071 - name: South Korean Won (KRW) - - id: 16072 - name: Sri Lankan Rupee (LKR) - - id: 16073 - name: Sudanese Pound (SDG) - - id: 16074 - name: Surinamese Dollar (SRD) - - id: 16075 - name: Swazi Lilangeni (SZL) - - id: 16076 - name: Swedish Krona (SEK) - - id: 16077 - name: Syrian Pound (SYP) - - id: 16078 - name: Taiwanese Dollar (TWD) - - id: 16079 - name: Tajikistani Somoni (TJS) - - id: 16080 - name: Tanzanian Shilling (TZS) - - id: 16081 - name: Thai Baht (THB) - - id: 16082 - name: Tongan Paʻanga (TOP) - - id: 16083 - name: Trinidad and Tobago Dollar (TTD) - - id: 16084 - name: Tunisian Dinar (TND) - - id: 16085 - name: Turkish Lira (TRY) - - id: 16086 - name: Turkmenistani Manat (TMT) - - id: 16087 - name: Ugandan Shilling (UGX) - - id: 16088 - name: Ukrainian Hryvnia (UAH) - - id: 16089 - name: United Arab Emirates Dirham (AED) - - id: 16090 - name: Uruguayan Peso (UYU) - - id: 16091 - name: Uzbekistani Som (UZS) - - id: 16092 - name: Vanuatu Vatu (VUV) - - id: 16093 - name: Venezuelan Bolívar (VEF) - - id: 16094 - name: Vietnamese đồng (VND) - - id: 16095 - name: West African CFA Franc (XOF) - - id: 16096 - name: Yemeni Rial (YER) - - id: 16097 - name: Zambian Kwacha (ZMW) - - id: 16098 - name: Zimbabwean Dollar (ZWL) -- id: 2607 - name: Verification technology - friendly_id: verification_technology - values: - - id: 1650 - name: Magnetic - - id: 7751 - name: Infrared - - id: 8201 - name: Ink - - id: 10190 - name: Color - - id: 11398 - name: UV - - id: 16099 - name: Metallic thread - - id: 16100 - name: Size - - id: 16101 - name: Thickness - - id: 16102 - name: Watermark -- id: 2608 - name: Pad display profile - friendly_id: pad_display_profile - values: - - id: 10189 - name: Monochrome - - id: 10190 - name: Color -- id: 2609 - name: Terminal operation - friendly_id: terminal_operation - values: - - id: 6977 - name: Manual - - id: 7779 - name: Electronic -- id: 2610 - name: Currency type - friendly_id: currency_type - values: - - id: 15143 - name: Coins - - id: 16103 - name: Bills - - id: 16104 - name: Tokens -- id: 2611 - name: Chemical grade - friendly_id: chemical_grade - values: - - id: 8025 - name: Food - - id: 16105 - name: Laboratory - - id: 16106 - name: Pharmaceutical - - id: 16107 - name: Reagent -- id: 2612 - name: Chemical purity - friendly_id: chemical_purity - values: - - id: 16108 - name: ">90%" - - id: 16109 - name: ">95%" - - id: 16110 - name: ">99%" -- id: 2613 - name: Autoclave sterilization method - friendly_id: autoclave_sterilization_method - values: - - id: 8057 - name: Steam - - id: 16111 - name: Chemical vapor - - id: 16112 - name: Dry heat -- id: 2614 - name: Blending type - friendly_id: blending_type - values: - - id: 13769 - name: Continuous - - id: 16113 - name: Batch -- id: 2615 - name: Laboratory freezer design - friendly_id: laboratory_freezer_design - values: - - id: 7396 - name: Upright - - id: 7425 - name: Chest - - id: 8296 - name: Undercounter -- id: 2616 - name: Magnification - friendly_id: magnification - values: - - id: 372 - name: Other - - id: 12814 - name: 1x - - id: 12815 - name: 4x - - id: 16116 - name: 0.5x - - id: 16117 - name: 2x - - id: 16118 - name: 5x - - id: 16119 - name: 10x - - id: 16120 - name: 20x - - id: 16121 - name: 40x - - id: 16122 - name: 50x - - id: 16123 - name: 60x - - id: 16124 - name: 63x - - id: 16125 - name: 100x - - id: 16126 - name: 150x - - id: 16127 - name: 200x -- id: 2617 - name: Maximum magnification - friendly_id: maximum_magnification - values: - - id: 372 - name: Other - - id: 12814 - name: 1x - - id: 12815 - name: 4x - - id: 16116 - name: 0.5x - - id: 16117 - name: 2x - - id: 16118 - name: 5x - - id: 16119 - name: 10x - - id: 16120 - name: 20x - - id: 16121 - name: 40x - - id: 16122 - name: 50x - - id: 16123 - name: 60x - - id: 16124 - name: 63x - - id: 16125 - name: 100x - - id: 16126 - name: 150x - - id: 16127 - name: 200x -- id: 2618 - name: Minimum magnification - friendly_id: minimum_magnification - values: - - id: 372 - name: Other - - id: 12814 - name: 1x - - id: 12815 - name: 4x - - id: 16116 - name: 0.5x - - id: 16117 - name: 2x - - id: 16118 - name: 5x - - id: 16119 - name: 10x - - id: 16120 - name: 20x - - id: 16121 - name: 40x - - id: 16122 - name: 50x - - id: 16123 - name: 60x - - id: 16124 - name: 63x - - id: 16125 - name: 100x - - id: 16126 - name: 150x - - id: 16127 - name: 200x -- id: 2619 - name: Field of view - friendly_id: field_of_view - values: - - id: 16128 - name: Plan - - id: 16129 - name: Semi-plan - - id: 16130 - name: Super plan -- id: 2620 - name: Illumination technique - friendly_id: illumination_technique - values: - - id: 16131 - name: Brightfield - - id: 16132 - name: Darkfield - - id: 16133 - name: DIC - - id: 16134 - name: Fluorescence - - id: 16135 - name: Phase contrast -- id: 2621 - name: Preservation type - friendly_id: preservation_type - values: - - id: 8451 - name: Fixed - - id: 9697 - name: Dried - - id: 9698 - name: Fresh - - id: 16136 - name: Slide-mounted -- id: 2622 - name: Display sign design - friendly_id: display_sign_design - values: - - id: 372 - name: Other - - id: 5877 - name: Open - - id: 6972 - name: Closed - - id: 8508 - name: Custom - - id: 10167 - name: Entrance - - id: 16142 - name: Advertising - - id: 16143 - name: Discount - - id: 16144 - name: Exit - - id: 16145 - name: Open/Closed - - id: 16146 - name: Opening hours - - id: 16147 - name: Restroom - - id: 16148 - name: Sale - - id: 16149 - name: Wayfinding -- id: 2623 - name: Emergency/Safety sign design - friendly_id: emergency_safety_sign_design - values: - - id: 372 - name: Other - - id: 16144 - name: Exit - - id: 16150 - name: Assembly point - - id: 16151 - name: Emergency exit - - id: 16152 - name: Fire equipment - - id: 16153 - name: Fire exit - - id: 16164 - name: Staff only - - id: 16209 - name: First aid - - id: 16210 - name: Hard hat area - - id: 16211 - name: Hazardous materials - - id: 16212 - name: High voltage - - id: 16213 - name: No trespassing - - id: 16214 - name: Slippery surface - - id: 16219 - name: Alarm system - - id: 16220 - name: Guard dog - - id: 16221 - name: ID required - - id: 16222 - name: No entry - - id: 16223 - name: Restricted area - - id: 16224 - name: Video surveillance -- id: 2624 - name: Light features - friendly_id: light_features - values: - - id: 13902 - name: Illuminated - - id: 16154 - name: Non-illuminated - - id: 16155 - name: Photoluminescent -- id: 2625 - name: Facility sign design - friendly_id: facility_sign_design - values: - - id: 372 - name: Other - - id: 10171 - name: Kitchen - - id: 10176 - name: Storage room - - id: 11722 - name: Office - - id: 14229 - name: Elevator - - id: 16147 - name: Restroom - - id: 16156 - name: Cafeteria - - id: 16157 - name: Conference room - - id: 16158 - name: Entrance/Exit - - id: 16159 - name: First aid room - - id: 16160 - name: Lobby - - id: 16161 - name: Meeting room - - id: 16162 - name: Parking - - id: 16163 - name: Reception - - id: 16164 - name: Staff only - - id: 16165 - name: Stairwell -- id: 2626 - name: Open/Closed sign design - friendly_id: open_closed_sign_design - values: - - id: 5877 - name: Open - - id: 6972 - name: Closed - - id: 8508 - name: Custom - - id: 16145 - name: Open/Closed - - id: 16146 - name: Opening hours -- id: 2627 - name: Parking sign design - friendly_id: parking_sign_design - values: - - id: 372 - name: Other - - id: 16166 - name: Accessible parking - - id: 16167 - name: Compact cars only - - id: 16168 - name: Customer/Visitor parking - - id: 16169 - name: Employee parking - - id: 16170 - name: Fire lane - - id: 16171 - name: Loading zone - - id: 16172 - name: No parking - - id: 16173 - name: Permit parking - - id: 16174 - name: Reserved parking - - id: 16175 - name: Time limit parking -- id: 2628 - name: Policy sign design - friendly_id: policy_sign_design - values: - - id: 372 - name: Other - - id: 16176 - name: Employees only - - id: 16177 - name: Hand sanitizer required - - id: 16178 - name: Mask required - - id: 16179 - name: No cell phones - - id: 16180 - name: No food or drink - - id: 16181 - name: No pets - - id: 16182 - name: No photography - - id: 16183 - name: No smoking - - id: 16184 - name: No soliciting - - id: 16185 - name: Quiet zone - - id: 16186 - name: Shirt and shoes required - - id: 16187 - name: Social distancing -- id: 2629 - name: Retail/Sale sign design - friendly_id: retail_sale_sign_design - values: - - id: 372 - name: Other - - id: 8508 - name: Custom - - id: 16145 - name: Open/Closed - - id: 16147 - name: Restroom - - id: 16148 - name: Sale - - id: 16158 - name: Entrance/Exit - - id: 16188 - name: Clearance - - id: 16189 - name: Closing sale - - id: 16190 - name: Coming soon - - id: 16191 - name: Grand opening - - id: 16192 - name: Limited time offer - - id: 16193 - name: New arrival - - id: 16194 - name: Now hiring - - id: 16195 - name: Seasonal sale - - id: 16196 - name: Special offer -- id: 2630 - name: Road sign design - friendly_id: road_sign_design - values: - - id: 372 - name: Other - - id: 16172 - name: No parking - - id: 16197 - name: Bike lane - - id: 16198 - name: Construction zone - - id: 16199 - name: Do not enter - - id: 16200 - name: Merge - - id: 16201 - name: No U-turn - - id: 16202 - name: One way - - id: 16203 - name: Pedestrian crossing - - id: 16204 - name: School zone - - id: 16205 - name: Speed limit - - id: 16206 - name: Stop - - id: 16207 - name: Traffic signal ahead - - id: 16208 - name: Yield -- id: 2631 - name: Warning category - friendly_id: warning_category - values: - - id: 16215 - name: Emergency - - id: 16216 - name: Mandatory - - id: 16217 - name: Prohibition - - id: 16218 - name: Warning -- id: 2632 - name: Bullet protection level - friendly_id: bullet_protection_level - values: - - id: 16225 - name: II - - id: 16226 - name: IIA - - id: 16227 - name: III - - id: 16228 - name: IIIA - - id: 16229 - name: IV -- id: 2633 - name: Filtration class - friendly_id: filtration_class - values: - - id: 12393 - name: P2 - - id: 13266 - name: A3 - - id: 14677 - name: A2 - - id: 14775 - name: A1 - - id: 16230 - name: B1 - - id: 16231 - name: B2 - - id: 16232 - name: B3 - - id: 16233 - name: E1 - - id: 16234 - name: E2 - - id: 16235 - name: E3 - - id: 16236 - name: K1 - - id: 16237 - name: K2 - - id: 16238 - name: K3 - - id: 16239 - name: P1 - - id: 16240 - name: P3 - - id: 16250 - name: FFP1 - - id: 16251 - name: FFP2 - - id: 16252 - name: FFP3 -- id: 2634 - name: Hardhat class - friendly_id: hardhat_class - values: - - id: 16241 - name: C (conductive) - - id: 16242 - name: E (electrical) - - id: 16243 - name: G (general) -- id: 2635 - name: Protection type - friendly_id: protection_type - values: - - id: 12955 - name: Type I - - id: 16244 - name: Type II -- id: 2636 - name: Hazmat suit design - friendly_id: hazmat_suit_design - values: - - id: 16245 - name: Coverall - - id: 16246 - name: Encapsulated - - id: 16247 - name: Lab coat -- id: 2637 - name: Lens color - friendly_id: lens_color - values: - - id: 1 - name: Black - - id: 2 - name: Blue - - id: 3 - name: White - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 6 - name: Beige - - id: 7 - name: Brown - - id: 8 - name: Gray - - id: 9 - name: Green - - id: 10 - name: Orange - - id: 11 - name: Pink - - id: 12 - name: Purple - - id: 13 - name: Red - - id: 14 - name: Yellow - - id: 15 - name: Navy - - id: 16 - name: Rose gold - - id: 17 - name: Clear - - id: 657 - name: Bronze - - id: 2865 - name: Multicolor -- id: 2638 - name: Dust mask type - friendly_id: dust_mask_type - values: - - id: 7491 - name: Cup - - id: 16249 - name: Flat fold -- id: 2639 - name: Helmet shade design - friendly_id: helmet_shade_design - values: - - id: 8451 - name: Fixed - - id: 10559 - name: Variable - - id: 12483 - name: Passive - - id: 16253 - name: Auto-darkening -- id: 2640 - name: Viewing area height - friendly_id: viewing_area_height - values: - - id: 1511 - name: Medium - - id: 15048 - name: Large - - id: 15049 - name: Small -- id: 2641 - name: Viewing area width - friendly_id: viewing_area_width - values: - - id: 1511 - name: Medium - - id: 15048 - name: Large - - id: 15049 - name: Small -- id: 2642 - name: Compatible programming languages - friendly_id: compatible_programming_languages - values: - - id: 372 - name: Other - - id: 1969 - name: C - - id: 3081 - name: R - - id: 8503 - name: Shell - - id: 14468 - name: Rust - - id: 15505 - name: C# - - id: 16254 - name: Bash - - id: 16255 - name: C++ - - id: 16256 - name: Docker - - id: 16257 - name: Go - - id: 16258 - name: Java - - id: 16259 - name: Javascript - - id: 16260 - name: Kotlin - - id: 16261 - name: Kubernetes - - id: 16262 - name: Node.js - - id: 16263 - name: Perl - - id: 16264 - name: PHP - - id: 16265 - name: Python - - id: 16266 - name: PyTorch - - id: 16267 - name: Ruby - - id: 16268 - name: Scala - - id: 16269 - name: SQL - - id: 16270 - name: Swift - - id: 16271 - name: TensorFlow - - id: 16272 - name: TypeScript -- id: 2643 - name: Compliance certifications - friendly_id: compliance_certifications - values: - - id: 372 - name: Other - - id: 16273 - name: CJIS - - id: 16274 - name: FedRAMP - - id: 16275 - name: FISMA - - id: 16276 - name: GDPR - - id: 16277 - name: HIPAA - - id: 16278 - name: ISO 27001 - - id: 16279 - name: PCI DSS - - id: 16280 - name: SOC 1/2/3 -- id: 2644 - name: Primary region - friendly_id: primary_region - values: - - id: 12416 - name: Africa - - id: 12421 - name: Europe - - id: 12424 - name: North America - - id: 16281 - name: Asia-Pacific - - id: 16282 - name: Latin America - - id: 16283 - name: Middle East - - id: 16284 - name: Oceania -- id: 2645 - name: Service type - friendly_id: service_type - values: - - id: 16285 - name: Function as a service (FaaS) - - id: 16286 - name: Infrastructure as a service (IaaS) - - id: 16287 - name: Platform as a service (PaaS) - - id: 16288 - name: Software as a service (SaaS) -- id: 2646 - name: License type - friendly_id: license_type - values: - - id: 16289 - name: Free to use - - id: 16290 - name: Freemium - - id: 16291 - name: One-time purchase - - id: 16292 - name: Open-source - - id: 16293 - name: Subscription-based - - id: 16294 - name: Trial version -- id: 2647 - name: Supported language - friendly_id: supported_language - values: - - id: 372 - name: Other - - id: 3095 - name: Polish - - id: 6939 - name: French - - id: 6940 - name: German - - id: 6941 - name: Hungarian - - id: 6942 - name: Italian - - id: 6944 - name: Russian - - id: 7960 - name: Persian - - id: 9779 - name: Japanese - - id: 9780 - name: Korean - - id: 9796 - name: Spanish - - id: 9797 - name: Thai - - id: 9798 - name: Turkish - - id: 9799 - name: Vietnamese - - id: 10119 - name: Swedish - - id: 11227 - name: Afrikaans - - id: 11228 - name: Albanian - - id: 11229 - name: Arabic - - id: 11230 - name: Armenian - - id: 11231 - name: Basque - - id: 11232 - name: Bulgarian - - id: 11233 - name: Catalan - - id: 11234 - name: Chinese (simplified) - - id: 11235 - name: Chinese (traditional) - - id: 11236 - name: Croatian - - id: 11237 - name: Czech - - id: 11238 - name: Danish - - id: 11239 - name: Dutch - - id: 11240 - name: Dutch (Belgium) - - id: 11241 - name: English - - id: 11242 - name: English (India) - - id: 11243 - name: English (Singapore) - - id: 11244 - name: English (United States) - - id: 11245 - name: Estonian - - id: 11246 - name: Farsi - - id: 11247 - name: Filipino - - id: 11248 - name: Finnish - - id: 11249 - name: French (Belgium) - - id: 11250 - name: French (Switzerland) - - id: 11251 - name: Galician - - id: 11252 - name: Georgian - - id: 11253 - name: German (Belgium) - - id: 11254 - name: German (Switzerland) - - id: 11255 - name: Greek - - id: 11256 - name: Hebrew - - id: 11257 - name: Hindi - - id: 11258 - name: Icelandic - - id: 11259 - name: Indonesian - - id: 11260 - name: Kazakh - - id: 11261 - name: Kirghiz - - id: 11262 - name: Kurdish - - id: 11263 - name: Latvian - - id: 11264 - name: Lithuanian - - id: 11265 - name: Malay - - id: 11266 - name: Mandar - - id: 11267 - name: Mongolian - - id: 11268 - name: Nepali - - id: 11269 - name: Norwegian - - id: 11270 - name: Portuguese - - id: 11271 - name: Portuguese (Brazil) - - id: 11272 - name: Romanian - - id: 11273 - name: Romansh - - id: 11274 - name: Serbian - - id: 11275 - name: Slovak - - id: 11276 - name: Slovenian - - id: 11277 - name: Spanish (Latin America) - - id: 11278 - name: Tagalog - - id: 11279 - name: Tibetan - - id: 11280 - name: Ukrainian - - id: 11281 - name: Multilingual -- id: 2648 - name: User type - friendly_id: user_type - values: - - id: 16296 - name: Individual - - id: 16297 - name: Small business - - id: 16298 - name: Medium-sized business/enterprise - - id: 16299 - name: Large enterprise -- id: 2649 - name: AI application - friendly_id: ai_application - values: - - id: 16300 - name: Autonomous system - - id: 16301 - name: Computer vision - - id: 16302 - name: Fraud detection - - id: 16303 - name: Natural language processing (NLP) - - id: 16304 - name: Predictive analytics - - id: 16305 - name: Recommendation system - - id: 16306 - name: Speech recognition -- id: 2650 - name: Deployment type - friendly_id: deployment_type - values: - - id: 7083 - name: Hybrid - - id: 16307 - name: Cloud-based - - id: 16308 - name: On-premises -- id: 2651 - name: Industry focus - friendly_id: industry_focus - values: - - id: 372 - name: Other - - id: 15071 - name: Automotive - - id: 15713 - name: Education - - id: 15735 - name: Finance - - id: 15742 - name: Marketing - - id: 15830 - name: Healthcare - - id: 15831 - name: Retail - - id: 16309 - name: Manufacturing -- id: 2652 - name: Performance metrics - friendly_id: performance_metrics - values: - - id: 10627 - name: Precision - - id: 16310 - name: Accuracy - - id: 16311 - name: Recall - - id: 16312 - name: F1 score - - id: 16313 - name: Training time - - id: 16314 - name: Inference speed -- id: 2653 - name: Training data requirements - friendly_id: training_data_requirements - values: - - id: 16315 - name: Labeled data - - id: 16316 - name: Unlabeled data - - id: 16317 - name: Structured data - - id: 16318 - name: Unstructured data -- id: 2654 - name: Customer support channels - friendly_id: customer_support_channels - values: - - id: 16319 - name: Community forum - - id: 16320 - name: Email support - - id: 16321 - name: Forum support - - id: 16322 - name: In-app support - - id: 16323 - name: Knowledge base & FAQs - - id: 16324 - name: Live chat support - - id: 16325 - name: Personal agent - - id: 16326 - name: Phone support - - id: 16327 - name: Social media support - - id: 16328 - name: Training classes - - id: 16329 - name: Video tutorials - - id: 16330 - name: Webinars -- id: 2655 - name: Software tool type - friendly_id: software_tool_type - values: - - id: 16331 - name: Build tool - - id: 16332 - name: Compiler - - id: 16333 - name: Debugger - - id: 16334 - name: GUI designer - - id: 16335 - name: Linker - - id: 16336 - name: Source code editor - - id: 16337 - name: Version control system -- id: 2656 - name: Utility/Maintenance task type - friendly_id: utility_maintenance_task_type - values: - - id: 372 - name: Other - - id: 16338 - name: Antivirus - - id: 16339 - name: Data backup - - id: 16340 - name: Data recovery - - id: 16341 - name: Defragmentation - - id: 16342 - name: Disk cleanup - - id: 16343 - name: Disk partitioning - - id: 16344 - name: Driver updater - - id: 16345 - name: File compression - - id: 16346 - name: Registry cleaner - - id: 16347 - name: System optimizer -- id: 2657 - name: Education level - friendly_id: education_level - values: - - id: 12489 - name: Professional - - id: 16348 - name: Elementary school - - id: 16349 - name: Middle school - - id: 16350 - name: High school - - id: 16351 - name: College - - id: 16352 - name: Graduate school -- id: 2658 - name: Coverage area - friendly_id: coverage_area - values: - - id: 4817 - name: Singapore - - id: 8807 - name: Australia - - id: 8808 - name: Austria - - id: 8809 - name: Belgium - - id: 8810 - name: Brazil - - id: 8811 - name: Canada - - id: 8812 - name: China - - id: 8814 - name: Denmark - - id: 8815 - name: Germany - - id: 8816 - name: Ireland - - id: 8817 - name: Japan - - id: 8818 - name: Mexico - - id: 8819 - name: Netherlands - - id: 8820 - name: Poland - - id: 8821 - name: South Africa - - id: 8822 - name: Spain - - id: 8823 - name: Thailand - - id: 8824 - name: United Kingdom - - id: 8825 - name: United States - - id: 8834 - name: Afghanistan - - id: 8835 - name: Albania - - id: 8836 - name: Algeria - - id: 8837 - name: Andorra - - id: 8838 - name: Angola - - id: 8839 - name: Antigua and Barbuda - - id: 8840 - name: Argentina - - id: 8841 - name: Armenia - - id: 8842 - name: Azerbaijan - - id: 8843 - name: Bahamas - - id: 8844 - name: Bahrain - - id: 8845 - name: Bangladesh - - id: 8846 - name: Barbados - - id: 8847 - name: Belarus - - id: 8848 - name: Belize - - id: 8849 - name: Benin - - id: 8850 - name: Bhutan - - id: 8851 - name: Bolivia - - id: 8852 - name: Bosnia and Herzegovina - - id: 8853 - name: Botswana - - id: 8854 - name: Brunei - - id: 8855 - name: Bulgaria - - id: 8856 - name: Burkina Faso - - id: 8857 - name: Burundi - - id: 8858 - name: Cambodia - - id: 8859 - name: Cameroon - - id: 8860 - name: Cape Verde - - id: 8861 - name: Central Africa - - id: 8862 - name: Chad - - id: 8863 - name: Chile - - id: 8864 - name: Colombia - - id: 8865 - name: Comoros - - id: 8866 - name: Congo - - id: 8867 - name: Congo (Dem. Republic) - - id: 8868 - name: Costa Rica - - id: 8869 - name: Croatia - - id: 8870 - name: Cyprus - - id: 8871 - name: Czechia - - id: 8872 - name: Djibouti - - id: 8873 - name: Dominica - - id: 8874 - name: Dominican Republic - - id: 8875 - name: Ecuador - - id: 8876 - name: Egypt - - id: 8877 - name: El Salvador - - id: 8878 - name: Equatorial Guinea - - id: 8879 - name: Eritrea - - id: 8880 - name: Estonia - - id: 8881 - name: Eswatini - - id: 8882 - name: Ethiopia - - id: 8883 - name: Fiji - - id: 8884 - name: Finland - - id: 8885 - name: France - - id: 8886 - name: Gabon - - id: 8887 - name: Gambia - - id: 8888 - name: Georgia - - id: 8889 - name: Ghana - - id: 8890 - name: Greece - - id: 8891 - name: Grenada - - id: 8892 - name: Guatemala - - id: 8893 - name: Guinea - - id: 8894 - name: Guinea-Bissau - - id: 8895 - name: Guyana - - id: 8896 - name: Haiti - - id: 8897 - name: Honduras - - id: 8898 - name: Hungary - - id: 8899 - name: Iceland - - id: 8900 - name: India - - id: 8901 - name: Indonesia - - id: 8902 - name: Iraq - - id: 8903 - name: Israel - - id: 8904 - name: Italy - - id: 8905 - name: Ivory Coast - - id: 8906 - name: Jamaica - - id: 8907 - name: Jordan - - id: 8908 - name: Kazakhstan - - id: 8909 - name: Kenya - - id: 8910 - name: Kiribati - - id: 8911 - name: Kuwait - - id: 8912 - name: Kyrgyzstan - - id: 8913 - name: Laos - - id: 8914 - name: Latvia - - id: 8915 - name: Lebanon - - id: 8916 - name: Lesotho - - id: 8917 - name: Liberia - - id: 8918 - name: Libya - - id: 8919 - name: Liechtenstein - - id: 8920 - name: Lithuania - - id: 8921 - name: Luxembourg - - id: 8922 - name: Madagascar - - id: 8923 - name: Malawi - - id: 8924 - name: Malaysia - - id: 8925 - name: Maldives - - id: 8926 - name: Mali - - id: 8927 - name: Malta - - id: 8928 - name: Marshall Islands - - id: 8929 - name: Mauritania - - id: 8930 - name: Mauritius - - id: 8931 - name: Micronesia - - id: 8932 - name: Moldova - - id: 8933 - name: Monaco - - id: 8934 - name: Mongolia - - id: 8935 - name: Montenegro - - id: 8936 - name: Morocco - - id: 8937 - name: Mozambique - - id: 8938 - name: Myanmar - - id: 8939 - name: Namibia - - id: 8940 - name: Nauru - - id: 8941 - name: Nepal - - id: 8942 - name: New Zealand - - id: 8943 - name: Nicaragua - - id: 8944 - name: Niger - - id: 8945 - name: Nigeria - - id: 8946 - name: North Macedonia - - id: 8947 - name: Norway - - id: 8948 - name: Oman - - id: 8949 - name: Pakistan - - id: 8950 - name: Palau - - id: 8951 - name: Panama - - id: 8952 - name: Papua New Guinea - - id: 8953 - name: Paraguay - - id: 8954 - name: Peru - - id: 8955 - name: Philippines - - id: 8956 - name: Portugal - - id: 8957 - name: Qatar - - id: 8958 - name: Romania - - id: 8959 - name: Rwanda - - id: 8960 - name: Saint Kitts and Nevis - - id: 8961 - name: Saint Lucia - - id: 8962 - name: Saint Vincent and the Grenadines - - id: 8963 - name: Samoa - - id: 8964 - name: San Marino - - id: 8965 - name: Sao Tome and Principe - - id: 8966 - name: Saudi Arabia - - id: 8967 - name: Senegal - - id: 8968 - name: Serbia - - id: 8969 - name: Seychelles - - id: 8970 - name: Sierra Leone - - id: 8971 - name: Slovakia - - id: 8972 - name: Slovenia - - id: 8973 - name: Solomon Islands - - id: 8974 - name: Somalia - - id: 8975 - name: South Korea - - id: 8976 - name: South Sudan - - id: 8977 - name: Sri Lanka - - id: 8978 - name: Sudan - - id: 8979 - name: Suriname - - id: 8980 - name: Sweden - - id: 8981 - name: Switzerland - - id: 8982 - name: Tajikistan - - id: 8983 - name: Tanzania - - id: 8984 - name: Timor-Leste - - id: 8985 - name: Togo - - id: 8986 - name: Tonga - - id: 8987 - name: Trinidad and Tobago - - id: 8988 - name: Tunisia - - id: 8989 - name: Turkey - - id: 8990 - name: Turkmenistan - - id: 8991 - name: Tuvalu - - id: 8992 - name: Uganda - - id: 8993 - name: Ukraine - - id: 8994 - name: United Arab Emirates - - id: 8995 - name: Uruguay - - id: 8996 - name: Uzbekistan - - id: 8997 - name: Vanuatu - - id: 8998 - name: Vietnam - - id: 8999 - name: Yemen - - id: 9000 - name: Zambia - - id: 9001 - name: Zimbabwe -- id: 2659 - name: Coverage region - friendly_id: coverage_region - values: - - id: 9766 - name: Caribbean - - id: 12421 - name: Europe - - id: 12423 - name: North Africa - - id: 12424 - name: North America - - id: 12425 - name: South America - - id: 16283 - name: Middle East - - id: 16284 - name: Oceania - - id: 16353 - name: Central Asia - - id: 16354 - name: East Asia - - id: 16355 - name: Central America - - id: 16356 - name: South Asia - - id: 16357 - name: Sub-Saharan Africa -- id: 2660 - name: GPS compatible device - friendly_id: gps_compatible_device - values: - - id: 10333 - name: Tablet - - id: 12946 - name: Smartphone - - id: 13893 - name: Laptop - - id: 16358 - name: Aviation device - - id: 16359 - name: GPS navigator - - id: 16360 - name: Marine device -- id: 2661 - name: Update frequency - friendly_id: update_frequency - values: - - id: 8518 - name: Daily - - id: 8519 - name: Weekly - - id: 14635 - name: Monthly - - id: 15787 - name: Quarterly - - id: 16361 - name: Real-time - - id: 16362 - name: Annually -- id: 2662 - name: Disk format type - friendly_id: disk_format_type - values: - - id: 7271 - name: USB - - id: 11912 - name: CD - - id: 13535 - name: Blu-ray - - id: 16363 - name: DVD -- id: 2663 - name: File format type - friendly_id: file_format_type - values: - - id: 372 - name: Other - - id: 11882 - name: MP4 - - id: 12526 - name: PDF - - id: 12527 - name: RTF - - id: 13435 - name: AVI - - id: 13469 - name: MOV - - id: 13518 - name: WebM - - id: 13544 - name: JPEG - - id: 13577 - name: RAW - - id: 13766 - name: AI - - id: 13794 - name: TIFF - - id: 16364 - name: BMP - - id: 16365 - name: CSV - - id: 16366 - name: DOC - - id: 16367 - name: DOCX - - id: 16368 - name: EOT - - id: 16369 - name: EPS - - id: 16370 - name: GIF - - id: 16371 - name: ICO - - id: 16372 - name: INDD - - id: 16373 - name: OTF - - id: 16374 - name: PNG - - id: 16375 - name: PPT - - id: 16376 - name: PPTX - - id: 16377 - name: PSD - - id: 16378 - name: SVG - - id: 16379 - name: TTF - - id: 16380 - name: WOFF - - id: 16381 - name: XLS - - id: 16382 - name: XLSX -- id: 2664 - name: Icon type - friendly_id: icon_type - values: - - id: 16383 - name: Application - - id: 16384 - name: Device - - id: 16385 - name: File type - - id: 16386 - name: Folder - - id: 16387 - name: Process - - id: 16388 - name: Social media - - id: 16389 - name: System - - id: 16390 - name: User interface - - id: 16391 - name: Web -- id: 2665 - name: Wallpaper theme - friendly_id: wallpaper_theme - values: - - id: 372 - name: Other - - id: 2370 - name: Animals - - id: 7718 - name: Space - - id: 7894 - name: Abstract - - id: 7896 - name: Architecture - - id: 8268 - name: Holidays - - id: 8511 - name: Minimalist - - id: 8512 - name: Nature - - id: 14642 - name: Movies & TV - - id: 14644 - name: Sports - - id: 14646 - name: Cars - - id: 15153 - name: Technology - - id: 16392 - name: Art & illustration - - id: 16393 - name: Games - - id: 16394 - name: Seasonal -- id: 2666 - name: Artwork type - friendly_id: artwork_type - values: - - id: 15239 - name: Typography - - id: 16395 - name: Digital illustration - - id: 16396 - name: Digital painting - - id: 16397 - name: Mixed media - - id: 16398 - name: 3D render - - id: 16399 - name: Photomanipulation - - id: 16400 - name: Pixel art - - id: 16401 - name: Vector art - - id: 16402 - name: Fractal art - - id: 16403 - name: Concept art -- id: 2667 - name: Compatible software platform - friendly_id: compatible_software_platform - values: - - id: 372 - name: Other - - id: 16404 - name: Adobe Creative - - id: 16405 - name: Canva - - id: 16406 - name: Google Workspace - - id: 16407 - name: iWork - - id: 16408 - name: LibreOffice - - id: 16409 - name: Microsoft Office - - id: 16410 - name: WordPress -- id: 2668 - name: Template type - friendly_id: template_type - values: - - id: 372 - name: Other - - id: 16411 - name: Brochure - - id: 16412 - name: Business card - - id: 16413 - name: Certificate - - id: 16414 - name: Cover letter - - id: 16415 - name: Flyer - - id: 16416 - name: Invoice - - id: 16417 - name: Legal document - - id: 16418 - name: Newsletter - - id: 16419 - name: Powerpoint presentation - - id: 16420 - name: Report - - id: 16421 - name: Resume - - id: 16422 - name: Wedding invitation -- id: 2669 - name: Font style - friendly_id: font_style - values: - - id: 10110 - name: Decorative - - id: 16423 - name: Display - - id: 16424 - name: Handwritten - - id: 16425 - name: Icon - - id: 16426 - name: Monospaced - - id: 16427 - name: Sans serif - - id: 16428 - name: Script - - id: 16429 - name: Serif - - id: 16430 - name: Slab serif -- id: 2670 - name: Footage type - friendly_id: footage_type - values: - - id: 16431 - name: Animations - - id: 16432 - name: Icons - - id: 16433 - name: Illustrations - - id: 16434 - name: Stock photos - - id: 16435 - name: Stock videos - - id: 16436 - name: Textures - - id: 16437 - name: Vectors -- id: 2671 - name: Content features - friendly_id: content_features - values: - - id: 16438 - name: Downloadable content (DLC) - - id: 16439 - name: Early access - - id: 16440 - name: Free to play -- id: 2672 - name: ESRB rating - friendly_id: esrb_rating - values: - - id: 16441 - name: EC (Early Childhood) - - id: 16442 - name: E (Everyone) - - id: 16443 - name: E10+ (Everyone 10 and older) - - id: 16444 - name: T (Teen) - - id: 16445 - name: M (Mature) - - id: 16446 - name: AO (Adults Only) - - id: 16447 - name: RP (Rating Pending) -- id: 2673 - name: National/Regional rating - friendly_id: national_regional_rating - values: - - id: 137 - name: M - - id: 138 - name: L - - id: 372 - name: Other - - id: 1967 - name: A - - id: 1968 - name: B - - id: 1969 - name: C - - id: 1970 - name: D - - id: 1995 - name: G - - id: 2878 - name: '0' - - id: 2880 - name: '10' - - id: 2881 - name: '12' - - id: 2882 - name: '14' - - id: 2883 - name: '16' - - id: 2884 - name: '18' - - id: 2885 - name: '2' - - id: 2886 - name: '20' - - id: 2896 - name: '4' - - id: 2907 - name: '6' - - id: 2909 - name: '8' - - id: 2929 - name: I - - id: 2938 - name: '3' - - id: 2941 - name: '5' - - id: 2944 - name: '7' - - id: 2947 - name: '9' - - id: 2949 - name: '15' - - id: 2952 - name: '17' - - id: 2955 - name: '19' - - id: 2958 - name: '21' - - id: 3011 - name: '11' - - id: 3014 - name: '13' - - id: 3079 - name: P - - id: 3088 - name: Z - - id: 14281 - name: M18 - - id: 15818 - name: PG - - id: 16225 - name: II - - id: 16227 - name: III - - id: 16448 - name: 0/1 - - id: 16449 - name: 0+ - - id: 16450 - name: 10–12PG - - id: 16451 - name: 12+ - - id: 16452 - name: 13+ - - id: 16453 - name: 14+ - - id: 16454 - name: 15+ - - id: 16455 - name: 16+ - - id: 16456 - name: 17+ - - id: 16457 - name: 18+ - - id: 16458 - name: 3+ - - id: 16459 - name: 4+ - - id: 16460 - name: 6+ - - id: 16461 - name: 7–9PG - - id: 16462 - name: 7+ - - id: 16463 - name: 8+ - - id: 16464 - name: 9+ - - id: 16465 - name: ADV16 - - id: 16466 - name: All Ages - - id: 16467 - name: ATP - - id: 16468 - name: B15 - - id: 16469 - name: CTC - - id: 16470 - name: MA 15+ - - id: 16471 - name: R 18+ - - id: 16472 - name: R13 - - id: 16473 - name: R15 - - id: 16474 - name: R16 - - id: 16475 - name: R18 - - id: 16476 - name: RC - - id: 16477 - name: SU - - id: 16478 - name: TE -- id: 2674 - name: PEGI rating - friendly_id: pegi_rating - values: - - id: 2881 - name: '12' - - id: 2883 - name: '16' - - id: 2884 - name: '18' - - id: 2938 - name: '3' - - id: 2944 - name: '7' -- id: 2675 - name: Platform - friendly_id: platform - values: - - id: 372 - name: Other - - id: 8057 - name: Steam - - id: 12684 - name: Atari 2600 - - id: 12688 - name: Nintendo Wii - - id: 12689 - name: Nintendo Wii U - - id: 12690 - name: PC - - id: 12698 - name: Xbox - - id: 12699 - name: Xbox 360 - - id: 14542 - name: Mobile - - id: 16479 - name: Amiga - - id: 16480 - name: Arcade - - id: 16481 - name: Atari 7800 - - id: 16482 - name: Commodore 64 - - id: 16483 - name: Game Boy - - id: 16484 - name: Neo Geo - - id: 16485 - name: Nintendo 2DS - - id: 16486 - name: Nintendo 3DS - - id: 16487 - name: Nintendo 64 - - id: 16488 - name: Nintendo DS - - id: 16489 - name: Nintendo Entertainment System (NES) - - id: 16490 - name: Nintendo GameCube - - id: 16491 - name: Nintendo Switch - - id: 16492 - name: PlayStation 1 - - id: 16493 - name: PlayStation 2 - - id: 16494 - name: PlayStation 3 - - id: 16495 - name: PlayStation 4 - - id: 16496 - name: PlayStation 5 - - id: 16497 - name: PlayStation Portable (PSP) - - id: 16498 - name: PlayStation Vita - - id: 16499 - name: Sega Dreamcast - - id: 16500 - name: Sega Genesis - - id: 16501 - name: Sega Saturn - - id: 16502 - name: Super Nintendo Entertainment System (SNES) - - id: 16503 - name: Virtual Reality - - id: 16504 - name: Xbox One - - id: 16926 - name: Xbox Series XS -- id: 2676 - name: Region code - friendly_id: region_code - values: - - id: 16506 - name: Africa (AF) - - id: 16507 - name: Asia (AS) - - id: 16508 - name: Australia (AUS) - - id: 16509 - name: Europe (EU) - - id: 16510 - name: Global (GL) - - id: 16511 - name: Japan (JP) - - id: 16512 - name: Latin America (LA) - - id: 16513 - name: Middle East (ME) - - id: 16514 - name: North America (NA) -- id: 2677 - name: Video game genre - friendly_id: video_game_genre - values: - - id: 372 - name: Other - - id: 1291 - name: Casual - - id: 1517 - name: Horror - - id: 7691 - name: Fitness - - id: 7907 - name: Music - - id: 11071 - name: Adult - - id: 11491 - name: Indie - - id: 12968 - name: Racing - - id: 14644 - name: Sports - - id: 15733 - name: Family - - id: 16480 - name: Arcade - - id: 16515 - name: Action - - id: 16516 - name: Adventure - - id: 16517 - name: Brain training - - id: 16518 - name: Driving/Racing - - id: 16519 - name: Educational - - id: 16520 - name: Fighting - - id: 16521 - name: Massively multiplayer - - id: 16522 - name: Party - - id: 16523 - name: Puzzle - - id: 16524 - name: RPG - - id: 16525 - name: Shooter - - id: 16526 - name: Simulation - - id: 16527 - name: Strategy - - id: 16528 - name: Survival - - id: 16529 - name: Trivia & quiz - - id: 16530 - name: Unique - - id: 16531 - name: Visual novel -- id: 2678 - name: Video game sub-genre - friendly_id: video_game_sub_genre - values: - - id: 372 - name: Other - - id: 16522 - name: Party - - id: 16532 - name: 4X - - id: 16533 - name: Artillery - - id: 16534 - name: Auto battler - - id: 16535 - name: Battle royale - - id: 16536 - name: Beat 'em up - - id: 16537 - name: City building - - id: 16538 - name: Construction and management simulation - - id: 16539 - name: Dating sim - - id: 16540 - name: First-person shooter - - id: 16541 - name: Flight simulator - - id: 16542 - name: God game - - id: 16543 - name: Graphic adventure - - id: 16544 - name: Hack and slash - - id: 16545 - name: Life simulation - - id: 16546 - name: Metroidvania - - id: 16547 - name: MMORPG - - id: 16548 - name: MOBA - - id: 16549 - name: Platformer - - id: 16550 - name: Point-and-click adventure - - id: 16551 - name: Puzzle platformer - - id: 16552 - name: Real-time tactics - - id: 16553 - name: Rhythm - - id: 16554 - name: Roguelike - - id: 16555 - name: Sandbox - - id: 16556 - name: Sports management - - id: 16557 - name: Survival horror - - id: 16558 - name: Tactical shooter - - id: 16559 - name: Text adventure - - id: 16560 - name: Third-person shooter - - id: 16561 - name: Tower defense - - id: 16562 - name: Turn-based tactics - - id: 16563 - name: Vehicle simulation - - id: 16564 - name: Walking simulator -- id: 2679 - name: Compatible aircraft type - friendly_id: compatible_aircraft_type - values: - - id: 16565 - name: Airplane - - id: 16566 - name: Balloon - - id: 16567 - name: Blimp - - id: 16568 - name: Glider - - id: 16569 - name: Helicopter -- id: 2680 - name: Item condition - friendly_id: item_condition - values: - - id: 12335 - name: New - - id: 16571 - name: Certified pre-owned - - id: 16572 - name: Refurbished - - id: 16573 - name: Used -- id: 2681 - name: Manufacturer type - friendly_id: manufacturer_type - values: - - id: 15159 - name: Genuine - - id: 16574 - name: Aftermarket - - id: 16575 - name: OEM - - id: 16576 - name: Third-party -- id: 2682 - name: Charging cable type - friendly_id: charging_cable_type - values: - - id: 2969 - name: Level 1 - - id: 2970 - name: Level 2 - - id: 2971 - name: Level 3 - - id: 16577 - name: Adapter -- id: 2683 - name: Charging level - friendly_id: charging_level - values: - - id: 16578 - name: Level 1 (120v) - - id: 16579 - name: Level 2 (240v) - - id: 16580 - name: Level 3 (480v+) -- id: 2684 - name: Input phase type - friendly_id: input_phase_type - values: - - id: 15856 - name: Single-phase - - id: 15857 - name: Two-phase - - id: 15858 - name: Three-phase -- id: 2685 - name: Station type - friendly_id: station_type - values: - - id: 16581 - name: Fast charging - - id: 16582 - name: Home charging - - id: 16583 - name: Portable charging - - id: 16584 - name: Public charging - - id: 16585 - name: Supercharging -- id: 2686 - name: EV connector/adapter type - friendly_id: ev_connector_adapter_type - values: - - id: 16586 - name: CCS - - id: 16587 - name: CHAdeMO - - id: 16588 - name: J1772 - - id: 16589 - name: Tesla - - id: 16590 - name: Type 2 - - id: 16591 - name: Vehicle-to-home (V2H) - - id: 16592 - name: Vehicle-to-grid (V2G) -- id: 2687 - name: EV conversion kit components - friendly_id: ev_conversion_kit_components - values: - - id: 7578 - name: Charger - - id: 16593 - name: Battery pack - - id: 16594 - name: Controller - - id: 16595 - name: DC-DC converter - - id: 16596 - name: Fuses - - id: 16597 - name: Motor - - id: 16598 - name: Mounts - - id: 16599 - name: Sensors - - id: 16600 - name: Throttle - - id: 16601 - name: Wiring harness -- id: 2688 - name: EV battery type - friendly_id: ev_battery_type - values: - - id: 12321 - name: Lithium-ion (Li-ion) - - id: 12325 - name: Nickel-metal hydride (NiMH) - - id: 16570 - name: Lead-acid - - id: 16602 - name: Flow - - id: 16603 - name: Lithium-air (Li-air) - - id: 16604 - name: Lithium-sulfur (Li-S) - - id: 16605 - name: Lithium-titanate (Li-Ti) - - id: 16606 - name: Nickel-cadmium (Ni-Cd) - - id: 16607 - name: Sodium-ion (Na-ion) - - id: 16608 - name: Solid-state - - id: 16609 - name: Ultra-capacitor -- id: 2689 - name: Inverter type - friendly_id: inverter_type - values: - - id: 16610 - name: Modified sine wave - - id: 16611 - name: Pure sine wave - - id: 16612 - name: Square wave -- id: 2690 - name: Amplifier configuration - friendly_id: amplifier_configuration - values: - - id: 11595 - name: Mono - - id: 11782 - name: Multi-channel - - id: 16613 - name: Two-channel - - id: 16614 - name: Four-channel - - id: 16615 - name: Five-channel - - id: 16616 - name: Six-channel -- id: 2691 - name: Cassette adapter type - friendly_id: cassette_adapter_type - values: - - id: 16617 - name: 3.5mm to cassette - - id: 16618 - name: Bluetooth to cassette - - id: 16619 - name: USB to cassette -- id: 2692 - name: Compatible player - friendly_id: compatible_player - values: - - id: 10333 - name: Tablet - - id: 12946 - name: Smartphone - - id: 13893 - name: Laptop - - id: 16620 - name: CD player - - id: 16621 - name: iPad - - id: 16622 - name: iPhone - - id: 16623 - name: iPod - - id: 16624 - name: MP3 player - - id: 16625 - name: Portable DVD player -- id: 2693 - name: Speakerphone type - friendly_id: speakerphone_type - values: - - id: 1251 - name: Bluetooth - - id: 7346 - name: Wired - - id: 7347 - name: Wireless - - id: 16626 - name: Hands-free -- id: 2694 - name: Engine type - friendly_id: engine_type - values: - - id: 6976 - name: Electric - - id: 7083 - name: Hybrid - - id: 7745 - name: Rotary - - id: 8034 - name: Gas - - id: 14422 - name: Diesel - - id: 16627 - name: Petrol - - id: 16628 - name: Supercharged - - id: 16629 - name: Turbocharged -- id: 2695 - name: Motor vehicle type - friendly_id: motor_vehicle_type - values: - - id: 10253 - name: Car - - id: 11167 - name: SUV - - id: 11168 - name: Van - - id: 11169 - name: Truck -- id: 2696 - name: Fit type - friendly_id: fit_type - values: - - id: 6883 - name: Universal - - id: 8508 - name: Custom - - id: 11919 - name: Direct -- id: 2697 - name: Gauge type - friendly_id: gauge_type - values: - - id: 16631 - name: Tachometer - - id: 16632 - name: Speedometer - - id: 16633 - name: Odometer - - id: 16634 - name: Fuel level - - id: 16635 - name: Temperature - - id: 16636 - name: Pressure - - id: 16637 - name: Voltage -- id: 2698 - name: Motor vehicle placement - friendly_id: motor_vehicle_placement - values: - - id: 6195 - name: Front - - id: 7339 - name: Rear - - id: 7340 - name: Left side - - id: 7341 - name: Right side -- id: 2699 - name: Transmission type - friendly_id: transmission_type - values: - - id: 6977 - name: Manual - - id: 11743 - name: Automatic - - id: 16638 - name: CVT - - id: 16639 - name: Dual-clutch - - id: 16640 - name: Tiptronic -- id: 2700 - name: Rim/Wheel design - friendly_id: rim_wheel_design - values: - - id: 665 - name: Chrome - - id: 801 - name: Steel - - id: 2981 - name: Carbon fiber - - id: 6900 - name: Alloy - - id: 16641 - name: Forged - - id: 16642 - name: Multi-piece - - id: 16643 - name: Spoked -- id: 2701 - name: Vehicle tire type - friendly_id: vehicle_tire_type - values: - - id: 7653 - name: Touring - - id: 10287 - name: Performance - - id: 10774 - name: Summer - - id: 10776 - name: Winter - - id: 11314 - name: All-terrain - - id: 16644 - name: All-season - - id: 16645 - name: Mud-terrain - - id: 16646 - name: Run-flat -- id: 2702 - name: Motorcycle tire type - friendly_id: motorcycle_tire_type - values: - - id: 429 - name: Sport - - id: 7617 - name: Cruiser - - id: 7653 - name: Touring - - id: 12968 - name: Racing - - id: 16516 - name: Adventure - - id: 16647 - name: Dirt - - id: 16648 - name: Dual sport - - id: 16649 - name: Scooter -- id: 2703 - name: ATV/Off-road tire type - friendly_id: atv_off_road_tire_type - values: - - id: 684 - name: Sand - - id: 8188 - name: Mud - - id: 12968 - name: Racing - - id: 13856 - name: Snow - - id: 14442 - name: ATV - - id: 16650 - name: Off-road truck - - id: 16651 - name: Rock crawling - - id: 16652 - name: UTV -- id: 2704 - name: Wheel part type - friendly_id: wheel_part_type - values: - - id: 16653 - name: Wheel bearing - - id: 16654 - name: Wheel hub - - id: 16655 - name: Lug nut - - id: 16656 - name: Wheel spacer - - id: 16657 - name: Wheel stud - - id: 16658 - name: Wheel weight - - id: 16659 - name: Wheel center cap - - id: 16660 - name: Wheel lock -- id: 2705 - name: Vehicle type - friendly_id: vehicle_type - values: - - id: 6706 - name: Boat - - id: 7999 - name: Sailboat - - id: 10253 - name: Car - - id: 11167 - name: SUV - - id: 11168 - name: Van - - id: 11169 - name: Truck - - id: 14446 - name: Motorcycle - - id: 16661 - name: Golf cart - - id: 16662 - name: Recreational vehicle - - id: 16663 - name: Watercraft - - id: 16737 - name: Jet ski - - id: 16738 - name: Yacht -- id: 2706 - name: Vehicle application area - friendly_id: vehicle_application_area - values: - - id: 558 - name: Leather - - id: 601 - name: Metal - - id: 624 - name: Vinyl - - id: 626 - name: Plastic - - id: 764 - name: Rubber - - id: 8146 - name: Upholstery - - id: 15081 - name: Exterior - - id: 15082 - name: Interior - - id: 16664 - name: Wheels -- id: 2707 - name: Cover type - friendly_id: cover_type - values: - - id: 7389 - name: Folding - - id: 8452 - name: Retractable - - id: 16670 - name: Full cover - - id: 16671 - name: Top cover - - id: 16672 - name: Roll-up -- id: 2708 - name: Air freshener form - friendly_id: air_freshener_form - values: - - id: 783 - name: Gel - - id: 7163 - name: Cards - - id: 7407 - name: Spray - - id: 8063 - name: Oil - - id: 16673 - name: Vent clip -- id: 2709 - name: Car freshener fragrance - friendly_id: car_freshener_fragrance - values: - - id: 372 - name: Other - - id: 992 - name: Coconut - - id: 1033 - name: Pine - - id: 7854 - name: Cherry - - id: 7946 - name: Citrus - - id: 7948 - name: Lavender - - id: 7951 - name: Vanilla - - id: 8180 - name: Fresh linen - - id: 9005 - name: Apple - - id: 9042 - name: Lemon - - id: 9068 - name: Strawberry - - id: 10492 - name: Unscented - - id: 16674 - name: New car -- id: 2710 - name: Antifreeze type - friendly_id: antifreeze_type - values: - - id: 9595 - name: Concentrate - - id: 16675 - name: Prediluted -- id: 2711 - name: Viscosity - friendly_id: viscosity - values: - - id: 372 - name: Other - - id: 16676 - name: 0W-16 - - id: 16677 - name: 0W-20 - - id: 16678 - name: 0W-30 - - id: 16679 - name: 0W-40 - - id: 16680 - name: 5W-20 - - id: 16681 - name: 5W-30 - - id: 16682 - name: 5W-40 - - id: 16683 - name: 5W-50 - - id: 16684 - name: 10W-30 - - id: 16685 - name: 10W-40 - - id: 16686 - name: 10W-50 - - id: 16687 - name: 10W-60 - - id: 16688 - name: 15W-40 - - id: 16689 - name: 15W-50 - - id: 16690 - name: 15W-60 - - id: 16691 - name: 20W-50 - - id: 16692 - name: 20W-60 -- id: 2712 - name: Paint finish - friendly_id: paint_finish - values: - - id: 763 - name: Satin - - id: 10573 - name: Matte - - id: 10574 - name: Metallic - - id: 13931 - name: Pearl - - id: 13981 - name: Gloss -- id: 2713 - name: Vehicle paint type - friendly_id: vehicle_paint_type - values: - - id: 16693 - name: Paint kit - - id: 16694 - name: Spray paint - - id: 16695 - name: Touch-up paint -- id: 2714 - name: Charger type - friendly_id: charger_type - values: - - id: 6977 - name: Manual - - id: 11808 - name: Smart - - id: 16697 - name: Trickle -- id: 2715 - name: Filler type - friendly_id: filler_type - values: - - id: 601 - name: Metal - - id: 626 - name: Plastic - - id: 823 - name: Fiberglass - - id: 10462 - name: Lightweight -- id: 2716 - name: Motorcycle glove purpose - friendly_id: motorcycle_glove_purpose - values: - - id: 7623 - name: Off-road - - id: 7653 - name: Touring - - id: 10774 - name: Summer - - id: 10776 - name: Winter - - id: 12968 - name: Racing -- id: 2717 - name: Hitch class - friendly_id: hitch_class - values: - - id: 16699 - name: Class I - - id: 16700 - name: Class II - - id: 16701 - name: Class III - - id: 16702 - name: Class IV - - id: 16703 - name: Class V -- id: 2718 - name: Immobilizer type - friendly_id: immobilizer_type - values: - - id: 16704 - name: Steering wheel lock - - id: 16705 - name: Pedal lock - - id: 16706 - name: Tire lock -- id: 2719 - name: Flare type - friendly_id: flare_type - values: - - id: 7195 - name: LED - - id: 7559 - name: Traditional -- id: 2720 - name: Cage type - friendly_id: cage_type - values: - - id: 16708 - name: Full cage - - id: 16709 - name: Half-cage - - id: 16710 - name: Roll bar -- id: 2721 - name: Belt type - friendly_id: belt_type - values: - - id: 16711 - name: Lap - - id: 16712 - name: Three-point - - id: 16713 - name: Five-point -- id: 2722 - name: Rack type - friendly_id: rack_type - values: - - id: 467 - name: Trunk - - id: 14086 - name: Roof - - id: 16714 - name: Hitch - - id: 16715 - name: Spare tire - - id: 16716 - name: Back window - - id: 16717 - name: Floor mount -- id: 2723 - name: Loading ramp type - friendly_id: loading_ramp_type - values: - - id: 7229 - name: Single - - id: 15825 - name: Tri-fold - - id: 16718 - name: Pair -- id: 2724 - name: Trailer type - friendly_id: trailer_type - values: - - id: 5877 - name: Open - - id: 7434 - name: Teardrop - - id: 14438 - name: Conventional - - id: 16719 - name: Bumper pull - - id: 16720 - name: Enclosed - - id: 16721 - name: Expandable - - id: 16722 - name: Fifth-wheel - - id: 16723 - name: Gooseneck - - id: 16724 - name: Living quarters - - id: 16725 - name: Single axle - - id: 16726 - name: Tandem axle -- id: 2725 - name: Bag type - friendly_id: bag_type - values: - - id: 16727 - name: Saddlebag - - id: 16728 - name: Tank bag - - id: 16729 - name: Tail bag - - id: 16730 - name: Tool bag -- id: 2726 - name: Box type - friendly_id: box_type - values: - - id: 7425 - name: Chest - - id: 11566 - name: Crossover - - id: 16731 - name: Drawer - - id: 16732 - name: Side mount -- id: 2727 - name: Organizer type - friendly_id: organizer_type - values: - - id: 15536 - name: Console - - id: 16733 - name: Backseat - - id: 16734 - name: Cup holder - - id: 16735 - name: Glove box - - id: 16736 - name: Visor -- id: 2728 - name: Chain type - friendly_id: chain_type - values: - - id: 16739 - name: BBB - - id: 16740 - name: High test (HT) - - id: 16741 - name: Proof coil - - id: 16742 - name: Stainless steel (SS) -- id: 2729 - name: Line/Rope type - friendly_id: line_rope_type - values: - - id: 16743 - name: Three-strand - - id: 16744 - name: Double braid - - id: 16745 - name: Single braid -- id: 2730 - name: Windlass design - friendly_id: windlass_design - values: - - id: 8167 - name: Horizontal - - id: 8168 - name: Vertical -- id: 2731 - name: Hook type - friendly_id: hook_type - values: - - id: 8451 - name: Fixed - - id: 16747 - name: Telescoping -- id: 2732 - name: Ladder type - friendly_id: ladder_type - values: - - id: 8451 - name: Fixed - - id: 16747 - name: Telescoping - - id: 16748 - name: Under-platform - - id: 16749 - name: Over-platform -- id: 2733 - name: Cleat type - friendly_id: cleat_type - values: - - id: 16750 - name: Open base - - id: 16751 - name: Closed base - - id: 16752 - name: Flip-up -- id: 2734 - name: Step type - friendly_id: step_type - values: - - id: 7081 - name: Double - - id: 7229 - name: Single - - id: 10984 - name: Triple -- id: 2735 - name: Cleaner purpose - friendly_id: cleaner_purpose - values: - - id: 601 - name: Metal - - id: 624 - name: Vinyl - - id: 16753 - name: All-purpose - - id: 16754 - name: Hull - - id: 16755 - name: Deck -- id: 2736 - name: Polish type - friendly_id: polish_type - values: - - id: 601 - name: Metal - - id: 624 - name: Vinyl - - id: 16753 - name: All-purpose - - id: 16754 - name: Hull - - id: 16755 - name: Deck -- id: 2737 - name: Watercraft engine control type - friendly_id: watercraft_engine_control_type - values: - - id: 16600 - name: Throttle - - id: 16756 - name: Shift - - id: 16757 - name: Steering -- id: 2738 - name: Lock placement - friendly_id: lock_placement - values: - - id: 14447 - name: Outboard - - id: 16758 - name: Inboard -- id: 2739 - name: Watercraft motor mounting type - friendly_id: watercraft_motor_mounting_type - values: - - id: 7554 - name: Bow - - id: 16759 - name: Transom - - id: 16760 - name: Stern -- id: 2740 - name: Propeller blade design - friendly_id: propeller_blade_design - values: - - id: 16761 - name: 3-blade - - id: 16762 - name: 4-blade - - id: 16763 - name: 5-blade -- id: 2741 - name: Meter type - friendly_id: meter_type - values: - - id: 1656 - name: Digital - - id: 2523 - name: Analog -- id: 2742 - name: Light type - friendly_id: light_type - values: - - id: 12967 - name: Navigation - - id: 13858 - name: Underwater - - id: 16755 - name: Deck - - id: 16764 - name: Cabin -- id: 2743 - name: Watercraft steering wheel type - friendly_id: watercraft_steering_wheel_type - values: - - id: 392 - name: Standard - - id: 429 - name: Sport - - id: 12440 - name: Power -- id: 2744 - name: Body color - friendly_id: body_color - values: - - id: 1 - name: Black - - id: 2 - name: Blue - - id: 3 - name: White - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 6 - name: Beige - - id: 7 - name: Brown - - id: 8 - name: Gray - - id: 9 - name: Green - - id: 10 - name: Orange - - id: 11 - name: Pink - - id: 12 - name: Purple - - id: 13 - name: Red - - id: 14 - name: Yellow - - id: 15 - name: Navy - - id: 16 - name: Rose gold - - id: 17 - name: Clear - - id: 657 - name: Bronze - - id: 2865 - name: Multicolor -- id: 2745 - name: Upholstery color - friendly_id: upholstery_color - values: - - id: 1 - name: Black - - id: 2 - name: Blue - - id: 3 - name: White - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 6 - name: Beige - - id: 7 - name: Brown - - id: 8 - name: Gray - - id: 9 - name: Green - - id: 10 - name: Orange - - id: 11 - name: Pink - - id: 12 - name: Purple - - id: 13 - name: Red - - id: 14 - name: Yellow - - id: 15 - name: Navy - - id: 16 - name: Rose gold - - id: 17 - name: Clear - - id: 657 - name: Bronze - - id: 2865 - name: Multicolor -- id: 2746 - name: Car type - friendly_id: car_type - values: - - id: 396 - name: Convertible - - id: 11167 - name: SUV - - id: 11566 - name: Crossover - - id: 16768 - name: Sedan - - id: 16769 - name: Coupe - - id: 16770 - name: Hatchback - - id: 16771 - name: Wagon -- id: 2747 - name: Truck type - friendly_id: truck_type - values: - - id: 16772 - name: Pickup - - id: 16773 - name: Box truck - - id: 16774 - name: Dump truck - - id: 16775 - name: Flatbed truck -- id: 2748 - name: Van type - friendly_id: van_type - values: - - id: 16776 - name: Minivan - - id: 16777 - name: Cargo van - - id: 16778 - name: Passenger van - - id: 16779 - name: Conversion van -- id: 2749 - name: Cart type - friendly_id: cart_type - values: - - id: 6976 - name: Electric - - id: 8034 - name: Gas -- id: 2750 - name: Motorcycle drive type - friendly_id: motorcycle_drive_type - values: - - id: 7393 - name: Chain - - id: 7395 - name: Belt - - id: 16780 - name: Shaft -- id: 2751 - name: Motorcycle/Scooter type - friendly_id: motorcycle_scooter_type - values: - - id: 372 - name: Other - - id: 429 - name: Sport - - id: 7617 - name: Cruiser - - id: 7623 - name: Off-road - - id: 7653 - name: Touring - - id: 16781 - name: Dual-sport - - id: 16782 - name: Maxi-scooter - - id: 16783 - name: Moped - - id: 16784 - name: Three-wheel -- id: 2752 - name: Recreational vehicle type - friendly_id: recreational_vehicle_type - values: - - id: 8036 - name: Class A - - id: 8037 - name: Class B - - id: 8038 - name: Class C - - id: 16785 - name: Travel trailer - - id: 16786 - name: Fifth wheel - - id: 16787 - name: Pop-up camper - - id: 16788 - name: Truck camper -- id: 2753 - name: Snowmobile type - friendly_id: snowmobile_type - values: - - id: 6887 - name: Youth - - id: 7336 - name: Mountain - - id: 7518 - name: Utility - - id: 7653 - name: Touring - - id: 10287 - name: Performance -- id: 2754 - name: Boat type - friendly_id: boat_type - values: - - id: 16789 - name: Bowrider - - id: 16790 - name: Center console - - id: 16791 - name: Cuddy cabin - - id: 16792 - name: Pontoon - - id: 16793 - name: Deck boat -- id: 2755 - name: Watercraft type - friendly_id: watercraft_type - values: - - id: 429 - name: Sport - - id: 11441 - name: Sit-down - - id: 11442 - name: Stand-up - - id: 16794 - name: Luxury -- id: 2756 - name: Sailboat type - friendly_id: sailboat_type - values: - - id: 16795 - name: Sloop - - id: 16796 - name: Cutter - - id: 16797 - name: Catamaran - - id: 16798 - name: Trimaran - - id: 16799 - name: Yawl -- id: 2757 - name: Yacht type - friendly_id: yacht_type - values: - - id: 429 - name: Sport - - id: 12969 - name: Sailing - - id: 16597 - name: Motor - - id: 16800 - name: Explorer -- id: 2758 - name: Recommended age group - friendly_id: recommended_age_group - values: - - id: 372 - name: Other - - id: 534 - name: All ages - - id: 2403 - name: Adults - - id: 2404 - name: Teens - - id: 2974 - name: Babies - - id: 10090 - name: Toddlers - - id: 11175 - name: 3 years or older - - id: 14700 - name: 18 years or older - - id: 16801 - name: 0-1 year - - id: 16802 - name: 1-3 years - - id: 16803 - name: 3-5 years - - id: 16804 - name: 6-8 years - - id: 16805 - name: 9-12 years - - id: 16806 - name: 13-18 years - - id: 16807 - name: 1 year or older - - id: 16808 - name: 2 years or older - - id: 16809 - name: 4 years or older - - id: 16810 - name: 5 years or older - - id: 16811 - name: 6 years or older - - id: 16812 - name: 7 years or older - - id: 16813 - name: 8 years or older - - id: 16814 - name: 9 years or older - - id: 16815 - name: 10 years or older - - id: 16816 - name: 12 years or older - - id: 16817 - name: Preschoolers - - id: 16818 - name: School-age children -- id: 2759 - name: Board game mechanics - friendly_id: board_game_mechanics - values: - - id: 372 - name: Other - - id: 12012 - name: Legacy - - id: 15733 - name: Family - - id: 16519 - name: Educational - - id: 16522 - name: Party - - id: 16527 - name: Strategy - - id: 16819 - name: Adventure & travel - - id: 16820 - name: Area control - - id: 16821 - name: Card exchange - - id: 16822 - name: Cooperative - - id: 16823 - name: Deck building - - id: 16824 - name: Deduction & detectives - - id: 16825 - name: Economic simulation - - id: 16826 - name: Escape game - - id: 16827 - name: Hidden role - - id: 16828 - name: Quiz & trivia - - id: 16829 - name: Race - - id: 16830 - name: Role-playing - - id: 16831 - name: Tile-based - - id: 16832 - name: War simulation - - id: 16833 - name: Words - - id: 16834 - name: Worker placement -- id: 2760 - name: Gameplay skills - friendly_id: gameplay_skills - values: - - id: 372 - name: Other - - id: 14786 - name: Drawing - - id: 16835 - name: Arithmetic - - id: 16836 - name: Concentration - - id: 16837 - name: Deduction - - id: 16838 - name: Dexterity - - id: 16839 - name: Lateral thinking - - id: 16840 - name: Learning - - id: 16841 - name: Matching - - id: 16842 - name: Memory - - id: 16843 - name: Negotiation - - id: 16844 - name: Pattern recognition - - id: 16845 - name: Strategic thinking - - id: 16846 - name: Tactical decision making -- id: 2761 - name: Dice shape - friendly_id: dice_shape - values: - - id: 372 - name: Other - - id: 16847 - name: Tetrahedron (4 sides) - - id: 16848 - name: Cube (6 sides) - - id: 16849 - name: Octahedron (8 sides) - - id: 16850 - name: Pentagonal trapezohedron (10 sides) - - id: 16851 - name: Dodecahedron (12 sides) - - id: 16852 - name: Icosahedron (20 sides) -- id: 2762 - name: RPG genre - friendly_id: rpg_genre - values: - - id: 1537 - name: Zombies - - id: 7718 - name: Space - - id: 7726 - name: Mythology - - id: 11495 - name: Medieval - - id: 15225 - name: Military - - id: 16853 - name: Crime - - id: 16854 - name: Dragons - - id: 16855 - name: Lovecraftian - - id: 16856 - name: Magic - - id: 16857 - name: Steampunk -- id: 2763 - name: Electronic game genre - friendly_id: electronic_game_genre - values: - - id: 372 - name: Other - - id: 1291 - name: Casual - - id: 1517 - name: Horror - - id: 7691 - name: Fitness - - id: 7907 - name: Music - - id: 11071 - name: Adult - - id: 11491 - name: Indie - - id: 12968 - name: Racing - - id: 14644 - name: Sports - - id: 15733 - name: Family - - id: 16480 - name: Arcade - - id: 16515 - name: Action - - id: 16516 - name: Adventure - - id: 16517 - name: Brain training - - id: 16518 - name: Driving/Racing - - id: 16519 - name: Educational - - id: 16520 - name: Fighting - - id: 16521 - name: Massively multiplayer - - id: 16522 - name: Party - - id: 16523 - name: Puzzle - - id: 16524 - name: RPG - - id: 16525 - name: Shooter - - id: 16526 - name: Simulation - - id: 16527 - name: Strategy - - id: 16528 - name: Survival - - id: 16529 - name: Trivia & quiz - - id: 16530 - name: Unique - - id: 16531 - name: Visual novel -- id: 2764 - name: Playhouse design - friendly_id: playhouse_design - values: - - id: 16858 - name: Floorstanding playhouse - - id: 16859 - name: Playhouse on poles - - id: 16860 - name: Tree house -- id: 2765 - name: Jumping surface material - friendly_id: jumping_surface_material - values: - - id: 44 - name: Nylon - - id: 45 - name: Polyester - - id: 62 - name: Synthetic - - id: 589 - name: Polypropylene (PP) - - id: 2996 - name: Polyethylene (PE) -- id: 2766 - name: Trampoline design - friendly_id: trampoline_design - values: - - id: 16862 - name: Springfree - - id: 16863 - name: Coil spring -- id: 2767 - name: Sprinkler shape - friendly_id: sprinkler_shape - values: - - id: 627 - name: Round - - id: 628 - name: Square - - id: 1266 - name: Heart - - id: 6996 - name: Octagonal - - id: 6997 - name: Hexagonal - - id: 6998 - name: Triangular - - id: 7080 - name: Conical - - id: 7321 - name: Oval - - id: 7940 - name: Cylinder - - id: 10140 - name: Rectangular - - id: 10871 - name: V-shaped - - id: 12452 - name: Cube - - id: 14638 - name: Star - - id: 15039 - name: Cloud - - id: 16864 - name: Christmas tree - - id: 16865 - name: Spheric -- id: 2768 - name: Difficulty level - friendly_id: difficulty_level - values: - - id: 1511 - name: Medium - - id: 6962 - name: Expert - - id: 6994 - name: Hard - - id: 15631 - name: Easy -- id: 2769 - name: Puzzle theme - friendly_id: puzzle_theme - values: - - id: 105 - name: Ballet - - id: 372 - name: Other - - id: 1518 - name: Fantasy - - id: 2370 - name: Animals - - id: 2869 - name: Christmas - - id: 7716 - name: Food & drinks - - id: 7718 - name: Space - - id: 7722 - name: Art - - id: 7723 - name: History - - id: 7725 - name: Science - - id: 7896 - name: Architecture - - id: 7897 - name: Cartoons - - id: 7898 - name: City - - id: 7899 - name: Comics - - id: 7903 - name: Flora - - id: 7905 - name: Landscape - - id: 7907 - name: Music - - id: 7908 - name: People - - id: 7913 - name: Video games - - id: 8268 - name: Holidays - - id: 8322 - name: Shapes - - id: 11181 - name: Toys - - id: 11294 - name: Dinosaurs - - id: 11490 - name: Humor - - id: 14642 - name: Movies & TV - - id: 14644 - name: Sports - - id: 15145 - name: Flags - - id: 15150 - name: Insects - - id: 15154 - name: Trains - - id: 15224 - name: Vehicles - - id: 15713 - name: Education - - id: 15727 - name: Children - - id: 16866 - name: Aircraft - - id: 16867 - name: Circus - - id: 16868 - name: Fairy - - id: 16869 - name: Farm - - id: 16870 - name: Fauna - - id: 16871 - name: Maps - - id: 16872 - name: Professions - - id: 16873 - name: Ships -- id: 2770 - name: Construction set theme - friendly_id: construction_set_theme - values: - - id: 372 - name: Other - - id: 1531 - name: Pirates - - id: 2370 - name: Animals - - id: 14245 - name: Castle - - id: 15224 - name: Vehicles - - id: 16663 - name: Watercraft - - id: 16866 - name: Aircraft - - id: 16874 - name: Building - - id: 16875 - name: Construction site - - id: 16876 - name: Spacecraft -- id: 2771 - name: Doll target gender - friendly_id: doll_target_gender - values: - - id: 20 - name: Unisex -- id: 2772 - name: Puppet theme - friendly_id: puppet_theme - values: - - id: 1522 - name: Fairytale - - id: 1523 - name: Animal - - id: 11104 - name: Insect - - id: 16877 - name: Fantastic - - id: 16878 - name: Human -- id: 2773 - name: Puppet type - friendly_id: puppet_type - values: - - id: 16879 - name: Finger puppet - - id: 16880 - name: Hand puppet - - id: 16881 - name: Marionette - - id: 16882 - name: Rod puppet - - id: 16883 - name: Ventriloquist's dummy - - id: 16884 - name: Shadow puppet -- id: 2774 - name: Compatible play vehicle type - friendly_id: compatible_play_vehicle_type - values: - - id: 6706 - name: Boat - - id: 10253 - name: Car - - id: 11169 - name: Truck - - id: 14446 - name: Motorcycle - - id: 16565 - name: Airplane - - id: 16569 - name: Helicopter - - id: 16876 - name: Spacecraft - - id: 16885 - name: Construction vehicle - - id: 16886 - name: Race car & track set - - id: 16887 - name: Trains & train set -- id: 2775 - name: Riding toy propulsion type - friendly_id: riding_toy_propulsion_type - values: - - id: 6976 - name: Electric - - id: 6977 - name: Manual - - id: 7400 - name: Push - - id: 8462 - name: Tow - - id: 11085 - name: Battery-powered - - id: 16889 - name: Pedal -- id: 2776 - name: Instrument/Accessory finish - friendly_id: instrument_accessory_finish - values: - - id: 1 - name: Black - - id: 4 - name: Gold - - id: 7 - name: Brown - - id: 656 - name: Brass - - id: 665 - name: Chrome - - id: 679 - name: Nickel - - id: 8066 - name: Natural - - id: 8500 - name: Gold-plated - - id: 8502 - name: Pewter - - id: 8504 - name: Silver-plated - - id: 14069 - name: Lacquered - - id: 15026 - name: Nickel-plated - - id: 15432 - name: Reddish-brown - - id: 15455 - name: Plated - - id: 15463 - name: Pink gold-plated - - id: 15596 - name: Unlacquered -- id: 2777 - name: Fabric - friendly_id: fabric - values: - - id: 40 - name: Cotton - - id: 44 - name: Nylon - - id: 45 - name: Polyester - - id: 50 - name: Lyocell - - id: 51 - name: Wool - - id: 52 - name: Faux leather - - id: 54 - name: Denim - - id: 55 - name: Viscose - - id: 57 - name: Modal - - id: 60 - name: Linen - - id: 61 - name: Silk - - id: 62 - name: Synthetic - - id: 63 - name: Fur - - id: 64 - name: Bamboo - - id: 66 - name: Cashmere - - id: 67 - name: Acrylic - - id: 372 - name: Other - - id: 555 - name: Fleece - - id: 556 - name: Flannel - - id: 557 - name: Felt - - id: 558 - name: Leather - - id: 559 - name: Plush - - id: 561 - name: Suede - - id: 563 - name: Velvet - - id: 564 - name: Velour - - id: 565 - name: Twill - - id: 566 - name: Neoprene - - id: 594 - name: Faux fur - - id: 596 - name: Cork - - id: 600 - name: Mesh - - id: 603 - name: Angora - - id: 605 - name: Canvas - - id: 606 - name: Corduroy - - id: 608 - name: Sherpa - - id: 613 - name: Jute - - id: 624 - name: Vinyl - - id: 626 - name: Plastic - - id: 763 - name: Satin - - id: 764 - name: Rubber - - id: 830 - name: Latex - - id: 850 - name: Tweed - - id: 858 - name: Rattan - - id: 983 - name: Mohair - - id: 1007 - name: Lycra - - id: 1019 - name: Terrycloth - - id: 1042 - name: Hemp - - id: 16890 - name: Merino -- id: 2778 - name: Size - friendly_id: size - values: - - id: 215 - name: Preemie - - id: 216 - name: Newborn - - id: 217 - name: 0-3 months - - id: 218 - name: 3-6 months - - id: 219 - name: 6-9 months - - id: 220 - name: 9-12 months - - id: 221 - name: 12-18 months - - id: 222 - name: 18-24 months - - id: 223 - name: 2-3 years - - id: 224 - name: 3-4 years - - id: 225 - name: 4-5 years - - id: 226 - name: 5-6 years - - id: 227 - name: 6-7 years - - id: 228 - name: 7-8 years - - id: 229 - name: 8-9 years - - id: 2878 - name: '0' - - id: 2879 - name: '1' - - id: 2880 - name: '10' - - id: 2881 - name: '12' - - id: 2882 - name: '14' - - id: 2883 - name: '16' - - id: 2884 - name: '18' - - id: 2885 - name: '2' - - id: 2886 - name: '20' - - id: 2887 - name: '22' - - id: 2888 - name: '24' - - id: 2889 - name: '26' - - id: 2890 - name: '28' - - id: 2891 - name: '30' - - id: 2892 - name: '32' - - id: 2893 - name: '34' - - id: 2894 - name: '36' - - id: 2895 - name: '38' - - id: 2896 - name: '4' - - id: 2897 - name: '40' - - id: 2898 - name: '42' - - id: 2899 - name: '44' - - id: 2900 - name: '46' - - id: 2901 - name: '48' - - id: 2902 - name: '50' - - id: 2903 - name: '52' - - id: 2904 - name: '54' - - id: 2905 - name: '56' - - id: 2906 - name: '58' - - id: 2907 - name: '6' - - id: 2908 - name: '60' - - id: 2909 - name: '8' - - id: 2910 - name: Triple extra small (XXXS) - - id: 2911 - name: Double extra small (XXS) - - id: 2912 - name: Extra small (XS) - - id: 2913 - name: Small (S) - - id: 2914 - name: Medium (M) - - id: 2915 - name: Large (L) - - id: 2916 - name: Extra large (XL) - - id: 2917 - name: Double extra large (XXL) - - id: 2918 - name: Triple extra large (XXXL) - - id: 2919 - name: Four extra large (4XL) - - id: 2920 - name: Five extra large (5XL) - - id: 2921 - name: Six extra large (6XL) - - id: 5790 - name: '00' - - id: 6703 - name: '000' -- id: 2779 - name: Clothing accessory material - friendly_id: clothing_accessory_material - values: - - id: 40 - name: Cotton - - id: 44 - name: Nylon - - id: 45 - name: Polyester - - id: 51 - name: Wool - - id: 52 - name: Faux leather - - id: 54 - name: Denim - - id: 60 - name: Linen - - id: 61 - name: Silk - - id: 62 - name: Synthetic - - id: 555 - name: Fleece - - id: 557 - name: Felt - - id: 558 - name: Leather - - id: 563 - name: Velvet - - id: 594 - name: Faux fur - - id: 600 - name: Mesh - - id: 601 - name: Metal - - id: 605 - name: Canvas - - id: 615 - name: Microfiber - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 624 - name: Vinyl - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 763 - name: Satin - - id: 764 - name: Rubber - - id: 809 - name: Silicone - - id: 821 - name: Foam - - id: 850 - name: Tweed - - id: 1817 - name: Polyurethane (PU) - - id: 7884 - name: Burlap -- id: 2780 - name: Handwear material - friendly_id: handwear_material - values: - - id: 40 - name: Cotton - - id: 44 - name: Nylon - - id: 45 - name: Polyester - - id: 47 - name: Spandex - - id: 51 - name: Wool - - id: 52 - name: Faux leather - - id: 61 - name: Silk - - id: 62 - name: Synthetic - - id: 64 - name: Bamboo - - id: 65 - name: Ethylene vinyl acetate (EVA) - - id: 67 - name: Acrylic - - id: 372 - name: Other - - id: 555 - name: Fleece - - id: 558 - name: Leather - - id: 566 - name: Neoprene - - id: 594 - name: Faux fur - - id: 600 - name: Mesh - - id: 615 - name: Microfiber - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 763 - name: Satin - - id: 828 - name: Kevlar - - id: 830 - name: Latex - - id: 831 - name: Elastomer - - id: 1817 - name: Polyurethane (PU) - - id: 2191 - name: Nitrile - - id: 2996 - name: Polyethylene (PE) -- id: 2781 - name: Jewelry material - friendly_id: jewelry_material - values: - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 16 - name: Rose gold - - id: 44 - name: Nylon - - id: 52 - name: Faux leather - - id: 67 - name: Acrylic - - id: 372 - name: Other - - id: 558 - name: Leather - - id: 585 - name: Fabric - - id: 596 - name: Cork - - id: 601 - name: Metal - - id: 615 - name: Microfiber - - id: 623 - name: Titanium - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 643 - name: Ceramic - - id: 656 - name: Brass - - id: 657 - name: Bronze - - id: 665 - name: Chrome - - id: 666 - name: Copper - - id: 679 - name: Nickel - - id: 683 - name: Platinum - - id: 772 - name: Bakelite - - id: 814 - name: Porcelain - - id: 823 - name: Fiberglass - - id: 860 - name: Iron - - id: 877 - name: Resin - - id: 919 - name: Alcantara - - id: 941 - name: Marble - - id: 1038 - name: Cordura - - id: 1127 - name: White gold - - id: 1175 - name: Enamel - - id: 1193 - name: Sterling silver - - id: 1316 - name: Palladium - - id: 1317 - name: Precious resin - - id: 1319 - name: Duralumin - - id: 1637 - name: Aluminum - - id: 2981 - name: Carbon fiber - - id: 8509 - name: Diamond - - id: 16891 - name: Red gold -- id: 2782 - name: Decoration material - friendly_id: decoration_material - values: - - id: 40 - name: Cotton - - id: 44 - name: Nylon - - id: 45 - name: Polyester - - id: 51 - name: Wool - - id: 61 - name: Silk - - id: 64 - name: Bamboo - - id: 67 - name: Acrylic - - id: 372 - name: Other - - id: 548 - name: Paper - - id: 557 - name: Felt - - id: 558 - name: Leather - - id: 585 - name: Fabric - - id: 589 - name: Polypropylene (PP) - - id: 601 - name: Metal - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 620 - name: Stainless steel - - id: 624 - name: Vinyl - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 643 - name: Ceramic - - id: 656 - name: Brass - - id: 657 - name: Bronze - - id: 665 - name: Chrome - - id: 666 - name: Copper - - id: 688 - name: Terracotta - - id: 763 - name: Satin - - id: 764 - name: Rubber - - id: 773 - name: Cardboard - - id: 774 - name: Cast iron - - id: 801 - name: Steel - - id: 809 - name: Silicone - - id: 814 - name: Porcelain - - id: 842 - name: Wax - - id: 856 - name: Melamine - - id: 858 - name: Rattan - - id: 860 - name: Iron - - id: 865 - name: Zinc - - id: 876 - name: Stone - - id: 877 - name: Resin - - id: 929 - name: Concrete - - id: 930 - name: Sequins - - id: 941 - name: Marble - - id: 980 - name: Capiz - - id: 1637 - name: Aluminum - - id: 1803 - name: Feathers - - id: 1853 - name: Medium density fiberboard (MDF) - - id: 7183 - name: Crystal - - id: 7187 - name: Veneer - - id: 16892 - name: Papier-mâché -- id: 2783 - name: Footwear material - friendly_id: footwear_material - values: - - id: 40 - name: Cotton - - id: 44 - name: Nylon - - id: 45 - name: Polyester - - id: 47 - name: Spandex - - id: 51 - name: Wool - - id: 52 - name: Faux leather - - id: 60 - name: Linen - - id: 61 - name: Silk - - id: 62 - name: Synthetic - - id: 372 - name: Other - - id: 555 - name: Fleece - - id: 558 - name: Leather - - id: 561 - name: Suede - - id: 566 - name: Neoprene - - id: 592 - name: Thermoplastic polyurethane (TPU) - - id: 594 - name: Faux fur - - id: 600 - name: Mesh - - id: 605 - name: Canvas - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 626 - name: Plastic - - id: 763 - name: Satin - - id: 764 - name: Rubber -- id: 2784 - name: Bag/Case material - friendly_id: bag_case_material - values: - - id: 40 - name: Cotton - - id: 44 - name: Nylon - - id: 45 - name: Polyester - - id: 52 - name: Faux leather - - id: 54 - name: Denim - - id: 60 - name: Linen - - id: 62 - name: Synthetic - - id: 65 - name: Ethylene vinyl acetate (EVA) - - id: 67 - name: Acrylic - - id: 372 - name: Other - - id: 557 - name: Felt - - id: 558 - name: Leather - - id: 563 - name: Velvet - - id: 566 - name: Neoprene - - id: 592 - name: Thermoplastic polyurethane (TPU) - - id: 600 - name: Mesh - - id: 601 - name: Metal - - id: 605 - name: Canvas - - id: 615 - name: Microfiber - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 618 - name: Ripstop - - id: 624 - name: Vinyl - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 789 - name: Memory foam - - id: 811 - name: Leatherette - - id: 823 - name: Fiberglass - - id: 850 - name: Tweed - - id: 919 - name: Alcantara - - id: 1038 - name: Cordura - - id: 1637 - name: Aluminum - - id: 2981 - name: Carbon fiber - - id: 7884 - name: Burlap -- id: 2785 - name: Watch material - friendly_id: watch_material - values: - - id: 44 - name: Nylon - - id: 45 - name: Polyester - - id: 52 - name: Faux leather - - id: 372 - name: Other - - id: 558 - name: Leather - - id: 592 - name: Thermoplastic polyurethane (TPU) - - id: 600 - name: Mesh - - id: 601 - name: Metal - - id: 605 - name: Canvas - - id: 615 - name: Microfiber - - id: 616 - name: Polycarbonate (PC) - - id: 620 - name: Stainless steel - - id: 623 - name: Titanium - - id: 624 - name: Vinyl - - id: 626 - name: Plastic - - id: 764 - name: Rubber - - id: 806 - name: Thermoplastic elastomer (TPE) - - id: 809 - name: Silicone - - id: 919 - name: Alcantara - - id: 1817 - name: Polyurethane (PU) - - id: 2251 - name: Polyamide (PA) -- id: 2786 - name: Furniture/Fixture material - friendly_id: furniture_fixture_material - values: - - id: 52 - name: Faux leather - - id: 64 - name: Bamboo - - id: 67 - name: Acrylic - - id: 372 - name: Other - - id: 558 - name: Leather - - id: 585 - name: Fabric - - id: 601 - name: Metal - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 620 - name: Stainless steel - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 643 - name: Ceramic - - id: 656 - name: Brass - - id: 801 - name: Steel - - id: 821 - name: Foam - - id: 822 - name: Granite - - id: 823 - name: Fiberglass - - id: 856 - name: Melamine - - id: 858 - name: Rattan - - id: 860 - name: Iron - - id: 877 - name: Resin - - id: 888 - name: Particle board - - id: 899 - name: Plywood - - id: 929 - name: Concrete - - id: 941 - name: Marble - - id: 997 - name: High density fiberboard (HDF) - - id: 1009 - name: Maple wood - - id: 1637 - name: Aluminum - - id: 1817 - name: Polyurethane (PU) - - id: 1853 - name: Medium density fiberboard (MDF) - - id: 2557 - name: Beech wood - - id: 2988 - name: Fiber reinforced plastic (FRP) - - id: 2995 - name: Oak wood - - id: 3009 - name: Wood plastic composite (WPC) - - id: 6754 - name: Pine wood - - id: 7925 - name: Wicker - - id: 8351 - name: Teak wood - - id: 10111 - name: Cherry wood - - id: 10112 - name: Walnut wood - - id: 16861 - name: Cedar wood -- id: 2787 - name: Rug/Mat material - friendly_id: rug_mat_material - values: - - id: 40 - name: Cotton - - id: 44 - name: Nylon - - id: 45 - name: Polyester - - id: 51 - name: Wool - - id: 61 - name: Silk - - id: 64 - name: Bamboo - - id: 558 - name: Leather - - id: 589 - name: Polypropylene (PP) - - id: 613 - name: Jute - - id: 615 - name: Microfiber - - id: 616 - name: Polycarbonate (PC) - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 764 - name: Rubber - - id: 771 - name: Sisal - - id: 1021 - name: Seagrass - - id: 7695 - name: Coir -- id: 2788 - name: Mat/Rug shape - friendly_id: mat_rug_shape - values: - - id: 372 - name: Other - - id: 627 - name: Round - - id: 628 - name: Square - - id: 7321 - name: Oval - - id: 7714 - name: Runner - - id: 10140 - name: Rectangular - - id: 14390 - name: Semicircular -- id: 2789 - name: Mount material - friendly_id: mount_material - values: - - id: 44 - name: Nylon - - id: 45 - name: Polyester - - id: 558 - name: Leather - - id: 589 - name: Polypropylene (PP) - - id: 601 - name: Metal - - id: 620 - name: Stainless steel - - id: 624 - name: Vinyl - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 643 - name: Ceramic - - id: 656 - name: Brass - - id: 665 - name: Chrome - - id: 764 - name: Rubber - - id: 801 - name: Steel - - id: 1637 - name: Aluminum -- id: 2790 - name: Hardware material - friendly_id: hardware_material - values: - - id: 44 - name: Nylon - - id: 601 - name: Metal - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 620 - name: Stainless steel - - id: 623 - name: Titanium - - id: 624 - name: Vinyl - - id: 626 - name: Plastic - - id: 643 - name: Ceramic - - id: 656 - name: Brass - - id: 657 - name: Bronze - - id: 666 - name: Copper - - id: 774 - name: Cast iron - - id: 801 - name: Steel - - id: 860 - name: Iron - - id: 863 - name: Carbon steel - - id: 865 - name: Zinc - - id: 1637 - name: Aluminum - - id: 8465 - name: Galvanized iron - - id: 15026 - name: Nickel-plated - - id: 16898 - name: Chrome-plated -- id: 2791 - name: Shower curtain mounting type - friendly_id: shower_curtain_mounting_type - values: - - id: 372 - name: Other - - id: 7333 - name: Grommet - - id: 7733 - name: Ring - - id: 7734 - name: Hidden tab - - id: 7735 - name: Rod pocket - - id: 7736 - name: Hanging hook -- id: 2792 - name: Brush material - friendly_id: brush_material - values: - - id: 44 - name: Nylon - - id: 64 - name: Bamboo - - id: 555 - name: Fleece - - id: 558 - name: Leather - - id: 601 - name: Metal - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 643 - name: Ceramic - - id: 671 - name: Graphite - - id: 696 - name: Carbon - - id: 764 - name: Rubber - - id: 801 - name: Steel - - id: 809 - name: Silicone - - id: 830 - name: Latex -- id: 2793 - name: Motion sensor type - friendly_id: motion_sensor_type - values: - - id: 7751 - name: Infrared - - id: 7752 - name: Laser - - id: 7753 - name: Microwave - - id: 7754 - name: Photocell - - id: 7755 - name: PIR - - id: 7756 - name: Ultrasonic -- id: 2794 - name: Mounting hardware - friendly_id: mounting_hardware - values: - - id: 372 - name: Other - - id: 6885 - name: Free-standing - - id: 7757 - name: Hanger - - id: 7758 - name: Hook - - id: 7759 - name: Screws - - id: 8055 - name: Handheld - - id: 10523 - name: Suction cup -- id: 2795 - name: Monitor mounting type - friendly_id: monitor_mounting_type - values: - - id: 372 - name: Other - - id: 6885 - name: Free-standing - - id: 7056 - name: Wall - - id: 7772 - name: Armband -- id: 2796 - name: Artwork frame material - friendly_id: artwork_frame_material - values: - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 601 - name: Metal - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 882 - name: Composite - - id: 1637 - name: Aluminum - - id: 8500 - name: Gold-plated - - id: 8504 - name: Silver-plated -- id: 2797 - name: Upholstery material - friendly_id: upholstery_material - values: - - id: 40 - name: Cotton - - id: 44 - name: Nylon - - id: 45 - name: Polyester - - id: 51 - name: Wool - - id: 52 - name: Faux leather - - id: 60 - name: Linen - - id: 67 - name: Acrylic - - id: 558 - name: Leather - - id: 561 - name: Suede - - id: 563 - name: Velvet - - id: 605 - name: Canvas - - id: 615 - name: Microfiber - - id: 624 - name: Vinyl - - id: 763 - name: Satin - - id: 811 - name: Leatherette - - id: 1817 - name: Polyurethane (PU) -- id: 2798 - name: Basket material - friendly_id: basket_material - values: - - id: 45 - name: Polyester - - id: 52 - name: Faux leather - - id: 558 - name: Leather - - id: 585 - name: Fabric - - id: 601 - name: Metal - - id: 626 - name: Plastic - - id: 858 - name: Rattan - - id: 7925 - name: Wicker -- id: 2799 - name: Door mat base material - friendly_id: door_mat_base_material - values: - - id: 44 - name: Nylon - - id: 47 - name: Spandex - - id: 65 - name: Ethylene vinyl acetate (EVA) - - id: 596 - name: Cork - - id: 613 - name: Jute - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 624 - name: Vinyl - - id: 764 - name: Rubber - - id: 789 - name: Memory foam - - id: 806 - name: Thermoplastic elastomer (TPE) - - id: 830 - name: Latex - - id: 831 - name: Elastomer - - id: 928 - name: Reed - - id: 2996 - name: Polyethylene (PE) - - id: 16901 - name: Synthetic rubber -- id: 2800 - name: Door mat surface material - friendly_id: door_mat_surface_material - values: - - id: 40 - name: Cotton - - id: 44 - name: Nylon - - id: 45 - name: Polyester - - id: 51 - name: Wool - - id: 61 - name: Silk - - id: 64 - name: Bamboo - - id: 558 - name: Leather - - id: 589 - name: Polypropylene (PP) - - id: 613 - name: Jute - - id: 615 - name: Microfiber - - id: 616 - name: Polycarbonate (PC) - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 764 - name: Rubber - - id: 771 - name: Sisal - - id: 1021 - name: Seagrass - - id: 7695 - name: Coir -- id: 2801 - name: Candle shape - friendly_id: candle_shape - values: - - id: 372 - name: Other - - id: 627 - name: Round - - id: 628 - name: Square - - id: 7941 - name: Egg - - id: 7942 - name: Ellipse - - id: 14845 - name: Cylindrical -- id: 2802 - name: Post material - friendly_id: post_material - values: - - id: 620 - name: Stainless steel - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 801 - name: Steel - - id: 823 - name: Fiberglass - - id: 860 - name: Iron - - id: 1637 - name: Aluminum -- id: 2803 - name: Rug material - friendly_id: rug_material - values: - - id: 40 - name: Cotton - - id: 44 - name: Nylon - - id: 45 - name: Polyester - - id: 51 - name: Wool - - id: 61 - name: Silk - - id: 64 - name: Bamboo - - id: 558 - name: Leather - - id: 589 - name: Polypropylene (PP) - - id: 613 - name: Jute - - id: 615 - name: Microfiber - - id: 616 - name: Polycarbonate (PC) - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 764 - name: Rubber - - id: 771 - name: Sisal - - id: 1021 - name: Seagrass - - id: 7695 - name: Coir -- id: 2804 - name: Rug shape - friendly_id: rug_shape - values: - - id: 372 - name: Other - - id: 627 - name: Round - - id: 628 - name: Square - - id: 7321 - name: Oval - - id: 7714 - name: Runner - - id: 10140 - name: Rectangular - - id: 14390 - name: Semicircular -- id: 2805 - name: Tree stand material - friendly_id: tree_stand_material - values: - - id: 601 - name: Metal - - id: 626 - name: Plastic - - id: 929 - name: Concrete -- id: 2806 - name: Throw pillow shape - friendly_id: throw_pillow_shape - values: - - id: 372 - name: Other - - id: 627 - name: Round - - id: 628 - name: Square - - id: 7983 - name: Bolster - - id: 10140 - name: Rectangular -- id: 2807 - name: Window treatment material - friendly_id: window_treatment_material - values: - - id: 45 - name: Polyester - - id: 548 - name: Paper - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 823 - name: Fiberglass - - id: 1637 - name: Aluminum - - id: 3009 - name: Wood plastic composite (WPC) -- id: 2808 - name: Blind/Shade style - friendly_id: blind_shade_style - values: - - id: 8009 - name: Vertical blind - - id: 8010 - name: Bracket roller blind - - id: 8011 - name: Cassette roller blind - - id: 8012 - name: Roman blind - - id: 8013 - name: Venetian blind - - id: 8014 - name: Roller blind - - id: 8015 - name: Day & night roller blind - - id: 8016 - name: Pleated shades -- id: 2809 - name: Disposable bag material - friendly_id: disposable_bag_material - values: - - id: 548 - name: Paper - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 8265 - name: Biodegradable materials -- id: 2810 - name: Barware material - friendly_id: barware_material - values: - - id: 52 - name: Faux leather - - id: 64 - name: Bamboo - - id: 67 - name: Acrylic - - id: 372 - name: Other - - id: 589 - name: Polypropylene (PP) - - id: 596 - name: Cork - - id: 601 - name: Metal - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 620 - name: Stainless steel - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 643 - name: Ceramic - - id: 764 - name: Rubber - - id: 774 - name: Cast iron - - id: 801 - name: Steel - - id: 809 - name: Silicone - - id: 822 - name: Granite - - id: 941 - name: Marble - - id: 1637 - name: Aluminum - - id: 7183 - name: Crystal - - id: 14220 - name: Zinc alloy -- id: 2811 - name: Cookware/Bakeware material - friendly_id: cookware_bakeware_material - values: - - id: 601 - name: Metal - - id: 620 - name: Stainless steel - - id: 640 - name: Glass - - id: 643 - name: Ceramic - - id: 666 - name: Copper - - id: 774 - name: Cast iron - - id: 809 - name: Silicone - - id: 863 - name: Carbon steel - - id: 1175 - name: Enamel - - id: 1637 - name: Aluminum - - id: 8321 - name: Teflon -- id: 2812 - name: Baking sheet material - friendly_id: baking_sheet_material - values: - - id: 620 - name: Stainless steel - - id: 809 - name: Silicone - - id: 863 - name: Carbon steel - - id: 1637 - name: Aluminum - - id: 8321 - name: Teflon -- id: 2813 - name: Bakeware shape - friendly_id: bakeware_shape - values: - - id: 372 - name: Other - - id: 627 - name: Round - - id: 628 - name: Square - - id: 8276 - name: Bundt - - id: 8277 - name: Springform - - id: 10140 - name: Rectangular -- id: 2814 - name: Food bag material - friendly_id: food_bag_material - values: - - id: 548 - name: Paper - - id: 626 - name: Plastic - - id: 809 - name: Silicone -- id: 2815 - name: Food storage material - friendly_id: food_storage_material - values: - - id: 64 - name: Bamboo - - id: 67 - name: Acrylic - - id: 601 - name: Metal - - id: 620 - name: Stainless steel - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 643 - name: Ceramic - - id: 858 - name: Rattan - - id: 879 - name: Clay - - id: 1637 - name: Aluminum - - id: 2557 - name: Beech wood -- id: 2816 - name: Filter material - friendly_id: filter_material - values: - - id: 40 - name: Cotton - - id: 548 - name: Paper - - id: 601 - name: Metal - - id: 620 - name: Stainless steel - - id: 626 - name: Plastic - - id: 643 - name: Ceramic - - id: 801 - name: Steel - - id: 809 - name: Silicone - - id: 814 - name: Porcelain - - id: 1042 - name: Hemp -- id: 2817 - name: Tool/Utensil material - friendly_id: tool_utensil_material - values: - - id: 40 - name: Cotton - - id: 44 - name: Nylon - - id: 62 - name: Synthetic - - id: 64 - name: Bamboo - - id: 67 - name: Acrylic - - id: 372 - name: Other - - id: 589 - name: Polypropylene (PP) - - id: 601 - name: Metal - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 620 - name: Stainless steel - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 643 - name: Ceramic - - id: 656 - name: Brass - - id: 764 - name: Rubber - - id: 774 - name: Cast iron - - id: 801 - name: Steel - - id: 809 - name: Silicone - - id: 814 - name: Porcelain - - id: 822 - name: Granite - - id: 856 - name: Melamine - - id: 860 - name: Iron - - id: 941 - name: Marble - - id: 1637 - name: Aluminum - - id: 2557 - name: Beech wood - - id: 2996 - name: Polyethylene (PE) - - id: 8349 - name: Acacia wood - - id: 8350 - name: Olive wood - - id: 8351 - name: Teak wood - - id: 8352 - name: Alder wood -- id: 2818 - name: Edge type - friendly_id: edge_type - values: - - id: 552 - name: Straight - - id: 7209 - name: Combination - - id: 7210 - name: Micro-serrated - - id: 7211 - name: Notched - - id: 7212 - name: Serrated - - id: 7684 - name: Tapered - - id: 8333 - name: Granton - - id: 8334 - name: Hollow -- id: 2819 - name: Tableware material - friendly_id: tableware_material - values: - - id: 62 - name: Synthetic - - id: 64 - name: Bamboo - - id: 372 - name: Other - - id: 601 - name: Metal - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 620 - name: Stainless steel - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 643 - name: Ceramic - - id: 656 - name: Brass - - id: 774 - name: Cast iron - - id: 801 - name: Steel - - id: 809 - name: Silicone - - id: 814 - name: Porcelain - - id: 815 - name: Zamak - - id: 856 - name: Melamine - - id: 876 - name: Stone - - id: 917 - name: Stoneware - - id: 929 - name: Concrete - - id: 941 - name: Marble - - id: 984 - name: Bone china - - id: 8351 - name: Teak wood - - id: 16904 - name: Earthenware -- id: 2820 - name: Drinkware material - friendly_id: drinkware_material - values: - - id: 620 - name: Stainless steel - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 643 - name: Ceramic -- id: 2821 - name: Flatware material - friendly_id: flatware_material - values: - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 44 - name: Nylon - - id: 62 - name: Synthetic - - id: 64 - name: Bamboo - - id: 372 - name: Other - - id: 589 - name: Polypropylene (PP) - - id: 592 - name: Thermoplastic polyurethane (TPU) - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 620 - name: Stainless steel - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 643 - name: Ceramic - - id: 801 - name: Steel - - id: 806 - name: Thermoplastic elastomer (TPE) - - id: 809 - name: Silicone - - id: 814 - name: Porcelain - - id: 856 - name: Melamine - - id: 2557 - name: Beech wood - - id: 2996 - name: Polyethylene (PE) - - id: 8500 - name: Gold-plated - - id: 8504 - name: Silver-plated -- id: 2822 - name: Plant support material - friendly_id: plant_support_material - values: - - id: 64 - name: Bamboo - - id: 601 - name: Metal - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 643 - name: Ceramic - - id: 688 - name: Terracotta - - id: 823 - name: Fiberglass - - id: 876 - name: Stone - - id: 877 - name: Resin - - id: 929 - name: Concrete - - id: 7695 - name: Coir -- id: 2823 - name: Awning design - friendly_id: awning_design - values: - - id: 1363 - name: Flat - - id: 7737 - name: Curved -- id: 2824 - name: Surface texture - friendly_id: surface_texture - values: - - id: 8689 - name: Smooth - - id: 10237 - name: Assorted - - id: 10238 - name: Ribbed - - id: 10239 - name: Rugged - - id: 10240 - name: Dotted - - id: 10241 - name: Textured -- id: 2825 - name: Heat source - friendly_id: heat_source - values: - - id: 7271 - name: USB - - id: 7751 - name: Infrared - - id: 7773 - name: AC-powered - - id: 8064 - name: Hot water - - id: 11084 - name: Chemical - - id: 11085 - name: Battery-powered - - id: 16907 - name: Microwavable - - id: 16908 - name: Thermal gel -- id: 2826 - name: Medical tape material - friendly_id: medical_tape_material - values: - - id: 40 - name: Cotton - - id: 45 - name: Polyester - - id: 55 - name: Viscose - - id: 62 - name: Synthetic - - id: 626 - name: Plastic - - id: 809 - name: Silicone - - id: 830 - name: Latex - - id: 1030 - name: Hydrogel - - id: 1817 - name: Polyurethane (PU) - - id: 2251 - name: Polyamide (PA) -- id: 2827 - name: Food supplement form - friendly_id: food_supplement_form - values: - - id: 372 - name: Other - - id: 783 - name: Gel - - id: 7405 - name: Powder - - id: 7406 - name: Liquid - - id: 7407 - name: Spray - - id: 7410 - name: Granules - - id: 8063 - name: Oil - - id: 8311 - name: Syrup - - id: 9163 - name: Capsules - - id: 10325 - name: Ampoule - - id: 10326 - name: Caplet - - id: 10327 - name: Chewable tablets - - id: 10328 - name: Drops - - id: 10330 - name: Lozenges - - id: 10331 - name: Pill - - id: 10332 - name: Softgel - - id: 11129 - name: Tablets - - id: 16909 - name: Effervescent tablets -- id: 2828 - name: Hearing aid material - friendly_id: hearing_aid_material - values: - - id: 626 - name: Plastic - - id: 809 - name: Silicone -- id: 2829 - name: Medicine/Drug form - friendly_id: medicine_drug_form - values: - - id: 372 - name: Other - - id: 783 - name: Gel - - id: 7405 - name: Powder - - id: 7406 - name: Liquid - - id: 7407 - name: Spray - - id: 7410 - name: Granules - - id: 8063 - name: Oil - - id: 8311 - name: Syrup - - id: 9163 - name: Capsules - - id: 10325 - name: Ampoule - - id: 10326 - name: Caplet - - id: 10327 - name: Chewable tablets - - id: 10328 - name: Drops - - id: 10330 - name: Lozenges - - id: 10331 - name: Pill - - id: 10332 - name: Softgel - - id: 11129 - name: Tablets - - id: 16909 - name: Effervescent tablets -- id: 2830 - name: Support/Brace material - friendly_id: support_brace_material - values: - - id: 566 - name: Neoprene - - id: 585 - name: Fabric - - id: 809 - name: Silicone - - id: 821 - name: Foam -- id: 2831 - name: Suitable for precious material - friendly_id: suitable_for_precious_material - values: - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 601 - name: Metal - - id: 683 - name: Platinum - - id: 8509 - name: Diamond - - id: 14901 - name: Gemstone - - id: 16910 - name: Hard gemstone - - id: 16911 - name: Soft gemstone -- id: 2832 - name: File shape - friendly_id: file_shape - values: - - id: 372 - name: Other - - id: 7218 - name: Contoured - - id: 7321 - name: Oval - - id: 10140 - name: Rectangular -- id: 2833 - name: Eyelash material - friendly_id: eyelash_material - values: - - id: 61 - name: Silk - - id: 62 - name: Synthetic -- id: 2834 - name: Polish dry form - friendly_id: polish_dry_form - values: - - id: 372 - name: Other - - id: 10757 - name: Oil-based - - id: 10758 - name: Water-based - - id: 10759 - name: Solvent-based - - id: 10760 - name: Silicone-based -- id: 2836 - name: Candle material - friendly_id: candle_material - values: - - id: 10728 - name: Beeswax - - id: 10853 - name: Soy wax - - id: 10854 - name: Paraffin wax -- id: 2837 - name: Ear car application method - friendly_id: ear_car_application_method - values: - - id: 10855 - name: Dropper - - id: 10856 - name: Nozzle -- id: 2838 - name: Stone material - friendly_id: stone_material - values: - - id: 923 - name: Basalt - - id: 941 - name: Marble - - id: 10550 - name: Jade - - id: 16913 - name: Himalayan salt stone -- id: 2839 - name: Massage stone texture - friendly_id: massage_stone_texture - values: - - id: 8689 - name: Smooth - - id: 10498 - name: Rough -- id: 2840 - name: Stimulator tip shape - friendly_id: stimulator_tip_shape - values: - - id: 7080 - name: Conical - - id: 7684 - name: Tapered -- id: 2841 - name: Eyewear lens material - friendly_id: eyewear_lens_material - values: - - id: 44 - name: Nylon - - id: 592 - name: Thermoplastic polyurethane (TPU) - - id: 616 - name: Polycarbonate (PC) - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 11011 - name: CR-39 - - id: 16914 - name: High-index plastic - - id: 16915 - name: Trivex -- id: 2842 - name: Eyewear frame material - friendly_id: eyewear_frame_material - values: - - id: 64 - name: Bamboo - - id: 598 - name: Acetate - - id: 601 - name: Metal - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 2981 - name: Carbon fiber -- id: 2843 - name: Gear material - friendly_id: gear_material - values: - - id: 40 - name: Cotton - - id: 44 - name: Nylon - - id: 47 - name: Spandex - - id: 50 - name: Lyocell - - id: 51 - name: Wool - - id: 52 - name: Faux leather - - id: 54 - name: Denim - - id: 60 - name: Linen - - id: 61 - name: Silk - - id: 62 - name: Synthetic - - id: 63 - name: Fur - - id: 67 - name: Acrylic - - id: 372 - name: Other - - id: 548 - name: Paper - - id: 558 - name: Leather - - id: 589 - name: Polypropylene (PP) - - id: 594 - name: Faux fur - - id: 599 - name: Acrylonitrile butadiene styrene (ABS) - - id: 601 - name: Metal - - id: 605 - name: Canvas - - id: 613 - name: Jute - - id: 615 - name: Microfiber - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 619 - name: Rope - - id: 621 - name: Tarpaulin - - id: 623 - name: Titanium - - id: 624 - name: Vinyl - - id: 626 - name: Plastic - - id: 643 - name: Ceramic - - id: 764 - name: Rubber - - id: 801 - name: Steel - - id: 821 - name: Foam - - id: 823 - name: Fiberglass - - id: 828 - name: Kevlar - - id: 830 - name: Latex - - id: 1637 - name: Aluminum - - id: 1817 - name: Polyurethane (PU) - - id: 2251 - name: Polyamide (PA) - - id: 2981 - name: Carbon fiber - - id: 2996 - name: Polyethylene (PE) - - id: 14550 - name: Elastane -- id: 2844 - name: Ball material - friendly_id: ball_material - values: - - id: 40 - name: Cotton - - id: 44 - name: Nylon - - id: 45 - name: Polyester - - id: 52 - name: Faux leather - - id: 62 - name: Synthetic - - id: 65 - name: Ethylene vinyl acetate (EVA) - - id: 67 - name: Acrylic - - id: 558 - name: Leather - - id: 566 - name: Neoprene - - id: 592 - name: Thermoplastic polyurethane (TPU) - - id: 596 - name: Cork - - id: 615 - name: Microfiber - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 624 - name: Vinyl - - id: 626 - name: Plastic - - id: 643 - name: Ceramic - - id: 764 - name: Rubber - - id: 809 - name: Silicone - - id: 821 - name: Foam - - id: 830 - name: Latex - - id: 877 - name: Resin - - id: 1817 - name: Polyurethane (PU) -- id: 2845 - name: Bat material - friendly_id: bat_material - values: - - id: 601 - name: Metal - - id: 625 - name: Wood - - id: 882 - name: Composite - - id: 1637 - name: Aluminum - - id: 2981 - name: Carbon fiber -- id: 2846 - name: Basketball equipment included - friendly_id: basketball_equipment_included - values: - - id: 6913 - name: Net - - id: 14153 - name: Post - - id: 14837 - name: Hoop - - id: 16916 - name: Basketball ball -- id: 2847 - name: Punching/Training bag material - friendly_id: punching_training_bag_material - values: - - id: 558 - name: Leather - - id: 585 - name: Fabric - - id: 605 - name: Canvas - - id: 624 - name: Vinyl - - id: 684 - name: Sand - - id: 764 - name: Rubber - - id: 821 - name: Foam - - id: 16917 - name: Sawdust -- id: 2848 - name: Net material - friendly_id: net_material - values: - - id: 40 - name: Cotton - - id: 44 - name: Nylon - - id: 45 - name: Polyester - - id: 52 - name: Faux leather - - id: 558 - name: Leather - - id: 589 - name: Polypropylene (PP) - - id: 605 - name: Canvas - - id: 624 - name: Vinyl - - id: 626 - name: Plastic - - id: 801 - name: Steel - - id: 2996 - name: Polyethylene (PE) -- id: 2849 - name: Cricket equipment included - friendly_id: cricket_equipment_included - values: - - id: 6925 - name: Abdominal guard - - id: 6926 - name: Bails - - id: 6927 - name: Cricket ball - - id: 6928 - name: Cricket bat - - id: 6929 - name: Gloves - - id: 6930 - name: Helmet - - id: 6931 - name: Kit bag - - id: 6932 - name: Pads - - id: 6933 - name: Stumps - - id: 6934 - name: Thigh guard -- id: 2850 - name: Stick material - friendly_id: stick_material - values: - - id: 623 - name: Titanium - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 696 - name: Carbon - - id: 823 - name: Fiberglass - - id: 828 - name: Kevlar - - id: 1637 - name: Aluminum - - id: 2981 - name: Carbon fiber -- id: 2851 - name: Lacrosse equipment included - friendly_id: lacrosse_equipment_included - values: - - id: 6929 - name: Gloves - - id: 6930 - name: Helmet - - id: 6948 - name: Arm pads - - id: 6949 - name: Athletic cup - - id: 6950 - name: Cleats - - id: 6951 - name: Lacrosse ball - - id: 6952 - name: Lacrosse stick - - id: 6953 - name: Mouthguard - - id: 6954 - name: Rib pads - - id: 6955 - name: Shoulder pads -- id: 2852 - name: Hockey equipment included - friendly_id: hockey_equipment_included - values: - - id: 6949 - name: Athletic cup - - id: 6963 - name: Chest protector - - id: 6964 - name: Goalie blocker - - id: 6965 - name: Goalie catcher - - id: 6966 - name: Goalie mask - - id: 6967 - name: Skates - - id: 6968 - name: Stick - - id: 6969 - name: Goalie pads -- id: 2853 - name: Exercise mat material - friendly_id: exercise_mat_material - values: - - id: 44 - name: Nylon - - id: 47 - name: Spandex - - id: 65 - name: Ethylene vinyl acetate (EVA) - - id: 596 - name: Cork - - id: 613 - name: Jute - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 624 - name: Vinyl - - id: 764 - name: Rubber - - id: 789 - name: Memory foam - - id: 806 - name: Thermoplastic elastomer (TPE) - - id: 830 - name: Latex - - id: 831 - name: Elastomer - - id: 928 - name: Reed - - id: 2996 - name: Polyethylene (PE) - - id: 16901 - name: Synthetic rubber -- id: 2854 - name: Racket material - friendly_id: racket_material - values: - - id: 44 - name: Nylon - - id: 601 - name: Metal - - id: 623 - name: Titanium - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 671 - name: Graphite - - id: 696 - name: Carbon - - id: 764 - name: Rubber - - id: 806 - name: Thermoplastic elastomer (TPE) - - id: 823 - name: Fiberglass - - id: 828 - name: Kevlar - - id: 1637 - name: Aluminum - - id: 1817 - name: Polyurethane (PU) - - id: 2981 - name: Carbon fiber -- id: 2855 - name: Net mounting type - friendly_id: net_mounting_type - values: - - id: 372 - name: Other - - id: 3732 - name: Clip-on - - id: 7008 - name: C-clamp - - id: 7009 - name: I-bolt - - id: 7010 - name: Stand-mounted - - id: 7011 - name: Tripod stand -- id: 2856 - name: Racket string design - friendly_id: racket_string_design - values: - - id: 7012 - name: Mono-filament - - id: 7013 - name: Multi-filament -- id: 2857 - name: Racket string material - friendly_id: racket_string_material - values: - - id: 44 - name: Nylon - - id: 45 - name: Polyester - - id: 819 - name: Polyolefin - - id: 828 - name: Kevlar - - id: 947 - name: Vectran - - id: 1817 - name: Polyurethane (PU) - - id: 2251 - name: Polyamide (PA) -- id: 2858 - name: Exercise equipment material - friendly_id: exercise_equipment_material - values: - - id: 44 - name: Nylon - - id: 62 - name: Synthetic - - id: 589 - name: Polypropylene (PP) - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 764 - name: Rubber - - id: 801 - name: Steel - - id: 809 - name: Silicone - - id: 821 - name: Foam - - id: 1637 - name: Aluminum - - id: 2992 - name: High density polyethylene (HDPE) - - id: 2996 - name: Polyethylene (PE) -- id: 2859 - name: Exercise equipment included - friendly_id: exercise_equipment_included - values: - - id: 7028 - name: Exercise guide - - id: 7029 - name: Handle - - id: 7030 - name: Pump - - id: 7035 - name: Barbell - - id: 7036 - name: Dumbbells - - id: 7037 - name: Elliptical machine - - id: 7038 - name: Exercise ball - - id: 7039 - name: Exercise bike - - id: 7040 - name: Jump rope - - id: 7041 - name: Resistance bands - - id: 7042 - name: Treadmill - - id: 7043 - name: Weight bench - - id: 7044 - name: Yoga mat -- id: 2860 - name: Bar mounting type - friendly_id: bar_mounting_type - values: - - id: 372 - name: Other - - id: 7056 - name: Wall - - id: 7057 - name: Ceiling - - id: 7058 - name: Door - - id: 7059 - name: Joist -- id: 2861 - name: Collar lock type - friendly_id: collar_lock_type - values: - - id: 7072 - name: Spinlock - - id: 7073 - name: Spring clamp -- id: 2862 - name: Ping pong equipment included - friendly_id: ping_pong_equipment_included - values: - - id: 6913 - name: Net - - id: 7189 - name: Posts - - id: 7190 - name: Ping pong balls - - id: 7191 - name: Ping pong paddles -- id: 2863 - name: Watercraft propulsion type - friendly_id: watercraft_propulsion_type - values: - - id: 6977 - name: Manual - - id: 7193 - name: Motorized -- id: 2864 - name: Diving/Snorkeling equipment included - friendly_id: diving_snorkeling_equipment_included - values: - - id: 7197 - name: Dive bag - - id: 7198 - name: Dive computer - - id: 7199 - name: Dive knife - - id: 7200 - name: Fins - - id: 7201 - name: Mask - - id: 7202 - name: Snorkel - - id: 7203 - name: Wetsuit -- id: 2865 - name: Fin material - friendly_id: fin_material - values: - - id: 566 - name: Neoprene - - id: 589 - name: Polypropylene (PP) - - id: 626 - name: Plastic - - id: 764 - name: Rubber - - id: 809 - name: Silicone -- id: 2866 - name: Diving regulator style - friendly_id: diving_regulator_style - values: - - id: 7214 - name: Balanced piston - - id: 7215 - name: Diaphragm - - id: 7216 - name: Unbalanced piston -- id: 2867 - name: Snorkel shape - friendly_id: snorkel_shape - values: - - id: 372 - name: Other - - id: 7217 - name: J-shaped - - id: 7218 - name: Contoured - - id: 7219 - name: Flexible -- id: 2868 - name: Ski construction - friendly_id: ski_construction - values: - - id: 1407 - name: Cap - - id: 16918 - name: Hybrid cap - - id: 16919 - name: Partial cap - - id: 16920 - name: Sidewall -- id: 2869 - name: Windsurfing board style - friendly_id: windsurfing_board_style - values: - - id: 7255 - name: Formula - - id: 7256 - name: Freeride - - id: 7257 - name: Freestyle - - id: 7258 - name: Slalom - - id: 7259 - name: Wave -- id: 2870 - name: Hunting/Survival knife design - friendly_id: hunting_survival_knife_design - values: - - id: 7272 - name: Clip point - - id: 7273 - name: Drop point - - id: 7274 - name: Needle point - - id: 7275 - name: Pen - - id: 7276 - name: Sheepsfoot - - id: 7277 - name: Spey point - - id: 7278 - name: Spear point - - id: 7279 - name: Tanto point - - id: 7280 - name: Wharncliffe - - id: 7281 - name: Dagger -- id: 2871 - name: Compass style - friendly_id: compass_style - values: - - id: 7302 - name: Hand compass - - id: 7303 - name: Car compass - - id: 7304 - name: Dive compass -- id: 2872 - name: Carabiner shape - friendly_id: carabiner_shape - values: - - id: 372 - name: Other - - id: 7317 - name: Pear - - id: 7318 - name: HMS - - id: 7319 - name: D-shaped - - id: 7320 - name: Offset-D - - id: 7321 - name: Oval - - id: 7322 - name: Rectangle - - id: 7323 - name: Triangle - - id: 7324 - name: S-shaped -- id: 2873 - name: Crampon attachment type - friendly_id: crampon_attachment_type - values: - - id: 7083 - name: Hybrid - - id: 7326 - name: Step-in - - id: 7327 - name: Strap-on -- id: 2874 - name: Child seat placement - friendly_id: child_seat_placement - values: - - id: 6195 - name: Front - - id: 7339 - name: Rear -- id: 2875 - name: Saddle base material - friendly_id: saddle_base_material - values: - - id: 44 - name: Nylon - - id: 558 - name: Leather - - id: 589 - name: Polypropylene (PP) - - id: 601 - name: Metal - - id: 615 - name: Microfiber - - id: 623 - name: Titanium - - id: 624 - name: Vinyl - - id: 626 - name: Plastic - - id: 764 - name: Rubber - - id: 801 - name: Steel - - id: 821 - name: Foam - - id: 2981 - name: Carbon fiber -- id: 2876 - name: Saddle seat material - friendly_id: saddle_seat_material - values: - - id: 44 - name: Nylon - - id: 558 - name: Leather - - id: 589 - name: Polypropylene (PP) - - id: 601 - name: Metal - - id: 615 - name: Microfiber - - id: 623 - name: Titanium - - id: 624 - name: Vinyl - - id: 626 - name: Plastic - - id: 764 - name: Rubber - - id: 801 - name: Steel - - id: 821 - name: Foam - - id: 2981 - name: Carbon fiber -- id: 2877 - name: Tricycle design - friendly_id: tricycle_design - values: - - id: 7396 - name: Upright - - id: 7397 - name: Recumbent -- id: 2878 - name: Tricycle propulsion type - friendly_id: tricycle_propulsion_type - values: - - id: 7398 - name: Rear drive - - id: 7399 - name: Front drive - - id: 7400 - name: Push -- id: 2879 - name: Horse grooming accessories included - friendly_id: horse_grooming_accessories_included - values: - - id: 7413 - name: Blades - - id: 7414 - name: Carrying case - - id: 7415 - name: Cleaning brush - - id: 7416 - name: Lubricating oil -- id: 2880 - name: Fishing wire material - friendly_id: fishing_wire_material - values: - - id: 44 - name: Nylon - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 620 - name: Stainless steel - - id: 792 - name: Polyethylene terephthalate (PET) - - id: 978 - name: Polyvinylidene fluoride (PVDF) - - id: 2996 - name: Polyethylene (PE) - - id: 15428 - name: Fluorocarbon -- id: 2881 - name: Sinker material - friendly_id: sinker_material - values: - - id: 686 - name: Tungsten - - id: 865 - name: Zinc - - id: 7470 - name: Lead -- id: 2882 - name: Golf equipment included - friendly_id: golf_equipment_included - values: - - id: 7471 - name: Balance stripe - - id: 7472 - name: Tee - - id: 7473 - name: Cleaner - - id: 7474 - name: Spare ball - - id: 7476 - name: Grip - - id: 7477 - name: Nameplate - - id: 7478 - name: Putter cover - - id: 7479 - name: Head cover - - id: 7480 - name: Ball marker - - id: 7481 - name: Score counter - - id: 7482 - name: Tee holder - - id: 7483 - name: Polishing pad - - id: 7484 - name: GPS navigation - - id: 7485 - name: Stinger - - id: 7486 - name: Flag - - id: 7487 - name: Brush - - id: 7488 - name: Scoop - - id: 7489 - name: Spike wrench - - id: 7490 - name: Direction cross - - id: 7491 - name: Cup - - id: 7492 - name: Ball holder - - id: 7493 - name: Golf ball case - - id: 7494 - name: Golf scope - - id: 7495 - name: Divot tool - - id: 16922 - name: Finger support -- id: 2883 - name: Arrow fletching material - friendly_id: arrow_fletching_material - values: - - id: 62 - name: Synthetic - - id: 626 - name: Plastic - - id: 1803 - name: Feathers -- id: 2884 - name: Nock material - friendly_id: nock_material - values: - - id: 626 - name: Plastic - - id: 1637 - name: Aluminum -- id: 2885 - name: Broadhead/Field point material - friendly_id: broadhead_field_point_material - values: - - id: 620 - name: Stainless steel - - id: 863 - name: Carbon steel -- id: 2886 - name: Arrow material - friendly_id: arrow_material - values: - - id: 64 - name: Bamboo - - id: 625 - name: Wood - - id: 823 - name: Fiberglass - - id: 1637 - name: Aluminum - - id: 2981 - name: Carbon fiber - - id: 3089 - name: Carbon fiber reinforced polymer (CFRP) -- id: 2887 - name: Bolt material - friendly_id: bolt_material - values: - - id: 64 - name: Bamboo - - id: 625 - name: Wood - - id: 823 - name: Fiberglass - - id: 1637 - name: Aluminum - - id: 2981 - name: Carbon fiber - - id: 3089 - name: Carbon fiber reinforced polymer (CFRP) -- id: 2888 - name: Archery equipment included - friendly_id: archery_equipment_included - values: - - id: 7546 - name: Bow stringer - - id: 7547 - name: Sight mount - - id: 7548 - name: Stabilizer mount - - id: 7549 - name: Armguard - - id: 7550 - name: Arrow rest - - id: 7551 - name: Quiver - - id: 7552 - name: Safety glass arrows - - id: 7553 - name: Sight pin -- id: 2889 - name: Paintball/Airsoft equipment included - friendly_id: paintball_airsoft_equipment_included - values: - - id: 6987 - name: Batteries - - id: 7578 - name: Charger - - id: 7579 - name: Protective eyewear - - id: 7580 - name: Tactical vest -- id: 2890 - name: Shell/Frame material - friendly_id: shell_frame_material - values: - - id: 626 - name: Plastic - - id: 764 - name: Rubber - - id: 882 - name: Composite - - id: 1637 - name: Aluminum - - id: 1817 - name: Polyurethane (PU) -- id: 2891 - name: Paddle equipment included - friendly_id: paddle_equipment_included - values: - - id: 6913 - name: Net - - id: 7189 - name: Posts - - id: 7593 - name: Paddle balls - - id: 7594 - name: Paddles -- id: 2892 - name: Tetherball equipment included - friendly_id: tetherball_equipment_included - values: - - id: 619 - name: Rope - - id: 7595 - name: Tetherball - - id: 7596 - name: Tetherball pole -- id: 2893 - name: Wax application method - friendly_id: wax_application_method - values: - - id: 7642 - name: Cold - - id: 7643 - name: Hot -- id: 2894 - name: Snowboard construction - friendly_id: snowboard_construction - values: - - id: 1363 - name: Flat - - id: 7083 - name: Hybrid - - id: 7236 - name: Camber - - id: 7237 - name: Rocker -- id: 2895 - name: Foundation material - friendly_id: foundation_material - values: - - id: 45 - name: Polyester - - id: 585 - name: Fabric - - id: 601 - name: Metal - - id: 625 - name: Wood - - id: 801 - name: Steel - - id: 899 - name: Plywood - - id: 6754 - name: Pine wood - - id: 16906 - name: Spruce wood -- id: 2896 - name: Toy/Game material - friendly_id: toy_game_material - values: - - id: 40 - name: Cotton - - id: 44 - name: Nylon - - id: 45 - name: Polyester - - id: 51 - name: Wool - - id: 62 - name: Synthetic - - id: 372 - name: Other - - id: 555 - name: Fleece - - id: 559 - name: Plush - - id: 585 - name: Fabric - - id: 600 - name: Mesh - - id: 601 - name: Metal - - id: 624 - name: Vinyl - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 764 - name: Rubber - - id: 773 - name: Cardboard - - id: 801 - name: Steel - - id: 809 - name: Silicone - - id: 821 - name: Foam - - id: 823 - name: Fiberglass - - id: 920 - name: Tin - - id: 1637 - name: Aluminum -- id: 2897 - name: Gravel/Substrate material - friendly_id: gravel_substrate_material - values: - - id: 640 - name: Glass - - id: 876 - name: Stone - - id: 879 - name: Clay - - id: 10551 - name: Quartz - - id: 11089 - name: Coral -- id: 2898 - name: Habitat material - friendly_id: habitat_material - values: - - id: 67 - name: Acrylic - - id: 600 - name: Mesh - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass -- id: 2899 - name: Waste bag material - friendly_id: waste_bag_material - values: - - id: 548 - name: Paper - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 8265 - name: Biodegradable materials -- id: 2900 - name: Diaper bag material - friendly_id: diaper_bag_material - values: - - id: 40 - name: Cotton - - id: 44 - name: Nylon - - id: 45 - name: Polyester - - id: 52 - name: Faux leather - - id: 54 - name: Denim - - id: 60 - name: Linen - - id: 62 - name: Synthetic - - id: 65 - name: Ethylene vinyl acetate (EVA) - - id: 67 - name: Acrylic - - id: 372 - name: Other - - id: 557 - name: Felt - - id: 558 - name: Leather - - id: 563 - name: Velvet - - id: 566 - name: Neoprene - - id: 592 - name: Thermoplastic polyurethane (TPU) - - id: 600 - name: Mesh - - id: 601 - name: Metal - - id: 605 - name: Canvas - - id: 615 - name: Microfiber - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 618 - name: Ripstop - - id: 624 - name: Vinyl - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 789 - name: Memory foam - - id: 811 - name: Leatherette - - id: 823 - name: Fiberglass - - id: 850 - name: Tweed - - id: 919 - name: Alcantara - - id: 1038 - name: Cordura - - id: 1637 - name: Aluminum - - id: 2981 - name: Carbon fiber - - id: 7884 - name: Burlap -- id: 2901 - name: Bottle material - friendly_id: bottle_material - values: - - id: 64 - name: Bamboo - - id: 548 - name: Paper - - id: 601 - name: Metal - - id: 620 - name: Stainless steel - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 764 - name: Rubber - - id: 773 - name: Cardboard - - id: 809 - name: Silicone - - id: 1637 - name: Aluminum -- id: 2902 - name: Nursing pillow shape - friendly_id: nursing_pillow_shape - values: - - id: 372 - name: Other - - id: 7739 - name: U-shaped - - id: 11414 - name: C-shaped -- id: 2903 - name: Wire/Rope material - friendly_id: wire_rope_material - values: - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 44 - name: Nylon - - id: 45 - name: Polyester - - id: 620 - name: Stainless steel - - id: 624 - name: Vinyl - - id: 656 - name: Brass - - id: 666 - name: Copper - - id: 679 - name: Nickel - - id: 785 - name: Galvanized steel - - id: 801 - name: Steel - - id: 865 - name: Zinc - - id: 1637 - name: Aluminum - - id: 8504 - name: Silver-plated - - id: 15026 - name: Nickel-plated - - id: 16925 - name: Polypropylene -- id: 2904 - name: E-reader display technology - friendly_id: e_reader_display_technology - values: - - id: 372 - name: Other - - id: 7771 - name: LCD - - id: 8324 - name: OLED - - id: 10199 - name: E-ink - - id: 12515 - name: E-ink Carta - - id: 12516 - name: E-ink Pearl - - id: 12517 - name: E-ink Triton -- id: 2905 - name: Monitor shape - friendly_id: monitor_shape - values: - - id: 1363 - name: Flat - - id: 7737 - name: Curved -- id: 2906 - name: 3D glasses material - friendly_id: 3d_glasses_material - values: - - id: 64 - name: Bamboo - - id: 548 - name: Paper - - id: 601 - name: Metal - - id: 620 - name: Stainless steel - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 764 - name: Rubber - - id: 773 - name: Cardboard - - id: 809 - name: Silicone - - id: 1637 - name: Aluminum -- id: 2907 - name: Projector light source - friendly_id: projector_light_source - values: - - id: 372 - name: Other - - id: 7195 - name: LED - - id: 7752 - name: Laser - - id: 13425 - name: Metal halide - - id: 13426 - name: NSH - - id: 13427 - name: P-VIP - - id: 13428 - name: SHP - - id: 13429 - name: UHP -- id: 2908 - name: Cable housing material - friendly_id: cable_housing_material - values: - - id: 44 - name: Nylon - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 620 - name: Stainless steel - - id: 764 - name: Rubber - - id: 806 - name: Thermoplastic elastomer (TPE) - - id: 1637 - name: Aluminum -- id: 2909 - name: Camera lens material - friendly_id: camera_lens_material - values: - - id: 626 - name: Plastic - - id: 640 - name: Glass -- id: 2910 - name: Masonry material - friendly_id: masonry_material - values: - - id: 822 - name: Granite - - id: 834 - name: Dolomite - - id: 876 - name: Stone - - id: 879 - name: Clay - - id: 924 - name: Cement - - id: 929 - name: Concrete - - id: 941 - name: Marble - - id: 942 - name: Slate - - id: 951 - name: Sandstone - - id: 999 - name: Plaster - - id: 13977 - name: Calcium silicate - - id: 13978 - name: Fly ash - - id: 13980 - name: Brick - - id: 14483 - name: Grout - - id: 14490 - name: Limestone - - id: 14493 - name: Mortar -- id: 2911 - name: Garage door material - friendly_id: garage_door_material - values: - - id: 372 - name: Other - - id: 601 - name: Metal - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 620 - name: Stainless steel - - id: 624 - name: Vinyl - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 801 - name: Steel - - id: 823 - name: Fiberglass - - id: 860 - name: Iron - - id: 882 - name: Composite - - id: 888 - name: Particle board - - id: 899 - name: Plywood - - id: 997 - name: High density fiberboard (HDF) - - id: 1009 - name: Maple wood - - id: 1637 - name: Aluminum - - id: 1817 - name: Polyurethane (PU) - - id: 1853 - name: Medium density fiberboard (MDF) - - id: 2557 - name: Beech wood - - id: 2995 - name: Oak wood - - id: 6754 - name: Pine wood - - id: 8352 - name: Alder wood - - id: 10092 - name: Mahogany - - id: 10111 - name: Cherry wood - - id: 10112 - name: Walnut wood - - id: 16924 - name: Poplar wood -- id: 2912 - name: Building board material - friendly_id: building_board_material - values: - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 624 - name: Vinyl - - id: 625 - name: Wood - - id: 888 - name: Particle board - - id: 892 - name: Hardboard - - id: 899 - name: Plywood - - id: 924 - name: Cement - - id: 1853 - name: Medium density fiberboard (MDF) - - id: 14054 - name: Gypsum -- id: 2913 - name: Insulation material - friendly_id: insulation_material - values: - - id: 40 - name: Cotton - - id: 51 - name: Wool - - id: 591 - name: Straw - - id: 780 - name: Cellulose - - id: 823 - name: Fiberglass - - id: 990 - name: Polystyrene (PS) - - id: 1817 - name: Polyurethane (PU) - - id: 14087 - name: Mineral wool - - id: 16927 - name: Phenolic foam - - id: 16928 - name: Polyisocyanurate (PIR) -- id: 2914 - name: Lumber/Wood type - friendly_id: lumber_wood_type - values: - - id: 64 - name: Bamboo - - id: 625 - name: Wood - - id: 899 - name: Plywood - - id: 1009 - name: Maple wood - - id: 1037 - name: Ash wood - - id: 1323 - name: Balsa wood - - id: 1853 - name: Medium density fiberboard (MDF) - - id: 2995 - name: Oak wood - - id: 6754 - name: Pine wood - - id: 10111 - name: Cherry wood - - id: 10112 - name: Walnut wood - - id: 14831 - name: Birch wood - - id: 14833 - name: Basswood - - id: 16861 - name: Cedar wood - - id: 16924 - name: Poplar wood - - id: 16929 - name: Hickory wood - - id: 16930 - name: Redwood -- id: 2915 - name: Flashing material - friendly_id: flashing_material - values: - - id: 626 - name: Plastic - - id: 666 - name: Copper - - id: 764 - name: Rubber - - id: 785 - name: Galvanized steel - - id: 1637 - name: Aluminum -- id: 2916 - name: Shingle/Tile material - friendly_id: shingle_tile_material - values: - - id: 601 - name: Metal - - id: 764 - name: Rubber - - id: 879 - name: Clay - - id: 882 - name: Composite - - id: 929 - name: Concrete - - id: 942 - name: Slate - - id: 14114 - name: Asphalt - - id: 16861 - name: Cedar wood -- id: 2917 - name: Siding material - friendly_id: siding_material - values: - - id: 601 - name: Metal - - id: 624 - name: Vinyl - - id: 625 - name: Wood - - id: 876 - name: Stone - - id: 924 - name: Cement - - id: 1637 - name: Aluminum - - id: 13980 - name: Brick - - id: 14040 - name: Stucco - - id: 14134 - name: Fiber cement -- id: 2918 - name: Tile material - friendly_id: tile_material - values: - - id: 601 - name: Metal - - id: 624 - name: Vinyl - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 643 - name: Ceramic - - id: 876 - name: Stone - - id: 14054 - name: Gypsum - - id: 16931 - name: Acoustic materials -- id: 2919 - name: Hose material - friendly_id: hose_material - values: - - id: 601 - name: Metal - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 620 - name: Stainless steel - - id: 624 - name: Vinyl - - id: 626 - name: Plastic - - id: 666 - name: Copper - - id: 764 - name: Rubber - - id: 1637 - name: Aluminum -- id: 2920 - name: Hammer head material - friendly_id: hammer_head_material - values: - - id: 44 - name: Nylon - - id: 620 - name: Stainless steel - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 656 - name: Brass - - id: 657 - name: Bronze - - id: 666 - name: Copper - - id: 671 - name: Graphite - - id: 764 - name: Rubber - - id: 801 - name: Steel - - id: 823 - name: Fiberglass - - id: 860 - name: Iron - - id: 863 - name: Carbon steel - - id: 1637 - name: Aluminum - - id: 1817 - name: Polyurethane (PU) -- id: 2921 - name: Book cover material - friendly_id: book_cover_material - values: - - id: 548 - name: Paper - - id: 558 - name: Leather - - id: 601 - name: Metal - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 773 - name: Cardboard - - id: 809 - name: Silicone -- id: 2922 - name: Office supply material - friendly_id: office_supply_material - values: - - id: 44 - name: Nylon - - id: 52 - name: Faux leather - - id: 548 - name: Paper - - id: 557 - name: Felt - - id: 558 - name: Leather - - id: 585 - name: Fabric - - id: 589 - name: Polypropylene (PP) - - id: 601 - name: Metal - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 620 - name: Stainless steel - - id: 624 - name: Vinyl - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 773 - name: Cardboard - - id: 792 - name: Polyethylene terephthalate (PET) - - id: 1817 - name: Polyurethane (PU) - - id: 2996 - name: Polyethylene (PE) -- id: 2923 - name: Folder/Report cover material - friendly_id: folder_report_cover_material - values: - - id: 548 - name: Paper - - id: 558 - name: Leather - - id: 601 - name: Metal - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 773 - name: Cardboard - - id: 809 - name: Silicone -- id: 2924 - name: Office instrument material - friendly_id: office_instrument_material - values: - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 67 - name: Acrylic - - id: 372 - name: Other - - id: 558 - name: Leather - - id: 620 - name: Stainless steel - - id: 623 - name: Titanium - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 643 - name: Ceramic - - id: 656 - name: Brass - - id: 657 - name: Bronze - - id: 666 - name: Copper - - id: 679 - name: Nickel - - id: 764 - name: Rubber - - id: 807 - name: Zinc steel - - id: 860 - name: Iron - - id: 892 - name: Hardboard - - id: 920 - name: Tin - - id: 1637 - name: Aluminum - - id: 8502 - name: Pewter -- id: 2925 - name: Moving/Shipping box material - friendly_id: moving_shipping_box_material - values: - - id: 64 - name: Bamboo - - id: 548 - name: Paper - - id: 601 - name: Metal - - id: 620 - name: Stainless steel - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 764 - name: Rubber - - id: 773 - name: Cardboard - - id: 809 - name: Silicone - - id: 1637 - name: Aluminum -- id: 2926 - name: Fastener material - friendly_id: fastener_material - values: - - id: 44 - name: Nylon - - id: 45 - name: Polyester - - id: 372 - name: Other - - id: 558 - name: Leather - - id: 585 - name: Fabric - - id: 589 - name: Polypropylene (PP) - - id: 601 - name: Metal - - id: 620 - name: Stainless steel - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 656 - name: Brass - - id: 666 - name: Copper - - id: 679 - name: Nickel - - id: 764 - name: Rubber - - id: 809 - name: Silicone - - id: 865 - name: Zinc - - id: 877 - name: Resin - - id: 1044 - name: Seashell - - id: 1637 - name: Aluminum - - id: 2251 - name: Polyamide (PA) - - id: 7935 - name: Bone - - id: 8502 - name: Pewter -- id: 2927 - name: Embellishment/Trim material - friendly_id: embellishment_trim_material - values: - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 16 - name: Rose gold - - id: 40 - name: Cotton - - id: 44 - name: Nylon - - id: 45 - name: Polyester - - id: 47 - name: Spandex - - id: 51 - name: Wool - - id: 55 - name: Viscose - - id: 60 - name: Linen - - id: 61 - name: Silk - - id: 64 - name: Bamboo - - id: 67 - name: Acrylic - - id: 372 - name: Other - - id: 548 - name: Paper - - id: 557 - name: Felt - - id: 563 - name: Velvet - - id: 589 - name: Polypropylene (PP) - - id: 596 - name: Cork - - id: 601 - name: Metal - - id: 624 - name: Vinyl - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 643 - name: Ceramic - - id: 666 - name: Copper - - id: 763 - name: Satin - - id: 764 - name: Rubber - - id: 842 - name: Wax - - id: 876 - name: Stone - - id: 877 - name: Resin - - id: 930 - name: Sequins - - id: 7183 - name: Crystal - - id: 11089 - name: Coral - - id: 13931 - name: Pearl - - id: 14901 - name: Gemstone -- id: 2928 - name: Canvas material - friendly_id: canvas_material - values: - - id: 40 - name: Cotton - - id: 60 - name: Linen - - id: 62 - name: Synthetic - - id: 626 - name: Plastic - - id: 16933 - name: Aida cloth -- id: 2929 - name: Painting canvas material - friendly_id: painting_canvas_material - values: - - id: 40 - name: Cotton - - id: 60 - name: Linen - - id: 62 - name: Synthetic -- id: 2930 - name: Art/Crafting tool material - friendly_id: art_crafting_tool_material - values: - - id: 51 - name: Wool - - id: 52 - name: Faux leather - - id: 64 - name: Bamboo - - id: 65 - name: Ethylene vinyl acetate (EVA) - - id: 67 - name: Acrylic - - id: 372 - name: Other - - id: 558 - name: Leather - - id: 596 - name: Cork - - id: 601 - name: Metal - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 620 - name: Stainless steel - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 643 - name: Ceramic - - id: 666 - name: Copper - - id: 764 - name: Rubber - - id: 801 - name: Steel - - id: 809 - name: Silicone - - id: 814 - name: Porcelain - - id: 1637 - name: Aluminum - - id: 15026 - name: Nickel-plated -- id: 2931 - name: Coin material - friendly_id: coin_material - values: - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 657 - name: Bronze - - id: 666 - name: Copper - - id: 679 - name: Nickel -- id: 2932 - name: Scale model material - friendly_id: scale_model_material - values: - - id: 548 - name: Paper - - id: 599 - name: Acrylonitrile butadiene styrene (ABS) - - id: 601 - name: Metal - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 877 - name: Resin - - id: 960 - name: Polylactic acid (PLA) - - id: 14637 - name: Cardstock -- id: 2933 - name: Instrument accessory material - friendly_id: instrument_accessory_material - values: - - id: 40 - name: Cotton - - id: 44 - name: Nylon - - id: 45 - name: Polyester - - id: 61 - name: Silk - - id: 62 - name: Synthetic - - id: 64 - name: Bamboo - - id: 372 - name: Other - - id: 555 - name: Fleece - - id: 558 - name: Leather - - id: 566 - name: Neoprene - - id: 585 - name: Fabric - - id: 599 - name: Acrylonitrile butadiene styrene (ABS) - - id: 600 - name: Mesh - - id: 601 - name: Metal - - id: 605 - name: Canvas - - id: 615 - name: Microfiber - - id: 620 - name: Stainless steel - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 643 - name: Ceramic - - id: 656 - name: Brass - - id: 657 - name: Bronze - - id: 679 - name: Nickel - - id: 764 - name: Rubber - - id: 801 - name: Steel - - id: 809 - name: Silicone - - id: 821 - name: Foam - - id: 823 - name: Fiberglass - - id: 879 - name: Clay - - id: 899 - name: Plywood - - id: 909 - name: Synthetic resin - - id: 1637 - name: Aluminum - - id: 1853 - name: Medium density fiberboard (MDF) - - id: 2981 - name: Carbon fiber - - id: 15179 - name: Sponge - - id: 15428 - name: Fluorocarbon - - id: 15454 - name: Hard rubber -- id: 2934 - name: Drum hardware material - friendly_id: drum_hardware_material - values: - - id: 44 - name: Nylon - - id: 62 - name: Synthetic - - id: 64 - name: Bamboo - - id: 555 - name: Fleece - - id: 557 - name: Felt - - id: 600 - name: Mesh - - id: 601 - name: Metal - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 665 - name: Chrome - - id: 764 - name: Rubber - - id: 801 - name: Steel - - id: 823 - name: Fiberglass - - id: 1637 - name: Aluminum - - id: 2981 - name: Carbon fiber -- id: 2935 - name: Mallet material - friendly_id: mallet_material - values: - - id: 44 - name: Nylon - - id: 52 - name: Faux leather - - id: 557 - name: Felt - - id: 558 - name: Leather - - id: 566 - name: Neoprene - - id: 620 - name: Stainless steel - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 656 - name: Brass - - id: 657 - name: Bronze - - id: 666 - name: Copper - - id: 671 - name: Graphite - - id: 764 - name: Rubber - - id: 801 - name: Steel - - id: 823 - name: Fiberglass - - id: 860 - name: Iron - - id: 1637 - name: Aluminum - - id: 1817 - name: Polyurethane (PU) - - id: 8169 - name: Yarn -- id: 2936 - name: Instrument part material - friendly_id: instrument_part_material - values: - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 62 - name: Synthetic - - id: 596 - name: Cork - - id: 601 - name: Metal - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 656 - name: Brass - - id: 671 - name: Graphite - - id: 700 - name: Rosewood - - id: 764 - name: Rubber - - id: 1009 - name: Maple wood - - id: 7851 - name: Boxwood - - id: 7935 - name: Bone - - id: 8500 - name: Gold-plated - - id: 8504 - name: Silver-plated - - id: 15431 - name: Snakewood - - id: 15439 - name: Nickel silver - - id: 15464 - name: African blackwood - - id: 16934 - name: Ebony wood - - id: 16935 - name: Faux ivory -- id: 2937 - name: Instrument string material - friendly_id: instrument_string_material - values: - - id: 44 - name: Nylon - - id: 62 - name: Synthetic - - id: 657 - name: Bronze - - id: 679 - name: Nickel - - id: 801 - name: Steel - - id: 15428 - name: Fluorocarbon -- id: 2938 - name: Bow hair material - friendly_id: bow_hair_material - values: - - id: 44 - name: Nylon - - id: 62 - name: Synthetic - - id: 16894 - name: Horsehair -- id: 2939 - name: Swab material - friendly_id: swab_material - values: - - id: 40 - name: Cotton - - id: 51 - name: Wool - - id: 61 - name: Silk - - id: 548 - name: Paper - - id: 557 - name: Felt - - id: 615 - name: Microfiber - - id: 626 - name: Plastic -- id: 2940 - name: Instrument material - friendly_id: instrument_material - values: - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 44 - name: Nylon - - id: 62 - name: Synthetic - - id: 372 - name: Other - - id: 601 - name: Metal - - id: 620 - name: Stainless steel - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 643 - name: Ceramic - - id: 656 - name: Brass - - id: 657 - name: Bronze - - id: 666 - name: Copper - - id: 679 - name: Nickel - - id: 700 - name: Rosewood - - id: 764 - name: Rubber - - id: 801 - name: Steel - - id: 809 - name: Silicone - - id: 823 - name: Fiberglass - - id: 1009 - name: Maple wood - - id: 1037 - name: Ash wood - - id: 1637 - name: Aluminum - - id: 2557 - name: Beech wood - - id: 2981 - name: Carbon fiber - - id: 2995 - name: Oak wood - - id: 8352 - name: Alder wood - - id: 8500 - name: Gold-plated - - id: 8504 - name: Silver-plated - - id: 10092 - name: Mahogany - - id: 14831 - name: Birch wood - - id: 14833 - name: Basswood - - id: 15026 - name: Nickel-plated - - id: 15439 - name: Nickel silver - - id: 15454 - name: Hard rubber - - id: 15464 - name: African blackwood - - id: 15465 - name: Cocobolo - - id: 15541 - name: Brazilwood - - id: 15542 - name: Pernambuco - - id: 16906 - name: Spruce wood - - id: 16934 - name: Ebony wood -- id: 2941 - name: Instrument bow material - friendly_id: instrument_bow_material - values: - - id: 4 - name: Gold - - id: 5 - name: Silver - - id: 44 - name: Nylon - - id: 62 - name: Synthetic - - id: 372 - name: Other - - id: 601 - name: Metal - - id: 620 - name: Stainless steel - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 643 - name: Ceramic - - id: 656 - name: Brass - - id: 657 - name: Bronze - - id: 666 - name: Copper - - id: 679 - name: Nickel - - id: 700 - name: Rosewood - - id: 764 - name: Rubber - - id: 801 - name: Steel - - id: 809 - name: Silicone - - id: 823 - name: Fiberglass - - id: 1009 - name: Maple wood - - id: 1037 - name: Ash wood - - id: 1637 - name: Aluminum - - id: 2557 - name: Beech wood - - id: 2981 - name: Carbon fiber - - id: 2995 - name: Oak wood - - id: 8352 - name: Alder wood - - id: 8500 - name: Gold-plated - - id: 8504 - name: Silver-plated - - id: 10092 - name: Mahogany - - id: 14831 - name: Birch wood - - id: 14833 - name: Basswood - - id: 15026 - name: Nickel-plated - - id: 15439 - name: Nickel silver - - id: 15454 - name: Hard rubber - - id: 15464 - name: African blackwood - - id: 15465 - name: Cocobolo - - id: 15541 - name: Brazilwood - - id: 15542 - name: Pernambuco - - id: 16906 - name: Spruce wood - - id: 16934 - name: Ebony wood -- id: 2942 - name: Cocktail decoration material - friendly_id: cocktail_decoration_material - values: - - id: 64 - name: Bamboo - - id: 548 - name: Paper - - id: 601 - name: Metal - - id: 620 - name: Stainless steel - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 764 - name: Rubber - - id: 773 - name: Cardboard - - id: 809 - name: Silicone - - id: 1637 - name: Aluminum -- id: 2943 - name: Disposable tableware material - friendly_id: disposable_tableware_material - values: - - id: 548 - name: Paper - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 8265 - name: Biodegradable materials -- id: 2944 - name: Needle housing material - friendly_id: needle_housing_material - values: - - id: 64 - name: Bamboo - - id: 548 - name: Paper - - id: 601 - name: Metal - - id: 620 - name: Stainless steel - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 764 - name: Rubber - - id: 773 - name: Cardboard - - id: 809 - name: Silicone - - id: 1637 - name: Aluminum -- id: 2945 - name: Shopping bag material - friendly_id: shopping_bag_material - values: - - id: 548 - name: Paper - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 8265 - name: Biodegradable materials -- id: 2946 - name: Eyepiece/Adapter material - friendly_id: eyepiece_adapter_material - values: - - id: 44 - name: Nylon - - id: 601 - name: Metal - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 764 - name: Rubber - - id: 801 - name: Steel - - id: 809 - name: Silicone - - id: 1637 - name: Aluminum -- id: 2947 - name: Microscope slide material - friendly_id: microscope_slide_material - values: - - id: 626 - name: Plastic - - id: 640 - name: Glass -- id: 2948 - name: Item material - friendly_id: item_material - values: - - id: 44 - name: Nylon - - id: 52 - name: Faux leather - - id: 62 - name: Synthetic - - id: 372 - name: Other - - id: 558 - name: Leather - - id: 566 - name: Neoprene - - id: 589 - name: Polypropylene (PP) - - id: 599 - name: Acrylonitrile butadiene styrene (ABS) - - id: 601 - name: Metal - - id: 616 - name: Polycarbonate (PC) - - id: 617 - name: Polyvinyl chloride (PVC) - - id: 620 - name: Stainless steel - - id: 623 - name: Titanium - - id: 624 - name: Vinyl - - id: 625 - name: Wood - - id: 626 - name: Plastic - - id: 640 - name: Glass - - id: 643 - name: Ceramic - - id: 656 - name: Brass - - id: 665 - name: Chrome - - id: 666 - name: Copper - - id: 764 - name: Rubber - - id: 805 - name: Thermoplastic - - id: 809 - name: Silicone - - id: 823 - name: Fiberglass - - id: 1637 - name: Aluminum - - id: 1817 - name: Polyurethane (PU) - - id: 2981 - name: Carbon fiber - - id: 2996 - name: Polyethylene (PE) -- id: 2949 - name: Safety equipment material - friendly_id: safety_equipment_material - values: - - id: 44 - name: Nylon - - id: 45 - name: Polyester - - id: 558 - name: Leather - - id: 601 - name: Metal - - id: 626 - name: Plastic - - id: 764 - name: Rubber - - id: 823 - name: Fiberglass diff --git a/data/categories/aa_apparel_accessories.yml b/data/categories/aa_apparel_accessories.yml index 94152ec7..f076f2d8 100644 --- a/data/categories/aa_apparel_accessories.yml +++ b/data/categories/aa_apparel_accessories.yml @@ -18,4953 +18,4953 @@ children: - aa-1-1 - aa-1-2 + - aa-1-3 - aa-1-4 + - aa-1-5 + - aa-1-6 + - aa-1-7 + - aa-1-8 - aa-1-9 - aa-1-10 - aa-1-11 - aa-1-12 + - aa-1-13 - aa-1-14 - aa-1-15 - aa-1-16 - aa-1-17 + - aa-1-18 - aa-1-19 - aa-1-20 - - aa-1-23 - aa-1-21 - aa-1-22 - - aa-1-6 - - aa-1-8 - - aa-1-18 - - aa-1-3 - - aa-1-5 - - aa-1-7 - - aa-1-13 + - aa-1-23 attributes: - color - - pattern - fabric + - pattern - id: aa-1-1 name: Activewear children: - - aa-1-1-4 - - aa-1-1-5 - aa-1-1-1 - aa-1-1-2 + - aa-1-1-4 + - aa-1-1-5 - aa-1-1-6 - aa-1-1-7 - aa-1-1-8 attributes: + - activity - color + - fabric - pattern + - size - target_gender +- id: aa-1-1-1 + name: Activewear Pants + children: + - aa-1-1-1-1 + - aa-1-1-1-2 + - aa-1-1-1-3 + - aa-1-1-1-4 + - aa-1-1-1-5 + - aa-1-1-1-6 + - aa-1-1-1-7 + - aa-1-1-1-8 + attributes: - activity + - color - fabric + - pants_length_type + - pattern - size -- id: aa-1-1-4 - name: Boxing Shorts + - target_gender + - waist_rise +- id: aa-1-1-1-1 + name: Joggers children: [] attributes: + - activity - color - - pattern - - target_gender - fabric + - pants_length_type + - pattern - size -- id: aa-1-1-5 - name: Dance Dresses, Skirts & Costumes + - target_gender + - waist_rise +- id: aa-1-1-1-2 + name: Leggings children: [] attributes: + - activity - color - - sleeve_length_type - - pattern - - target_gender - - skirt_dress_length_type - fabric + - pants_length_type + - pattern - size -- id: aa-1-2 - name: Baby & Toddler Clothing - children: - - aa-1-2-1 - - aa-1-2-2 - - aa-1-2-3 - - aa-1-2-4 - - aa-1-2-5 - - aa-1-2-6 - - aa-1-2-7 - - aa-1-2-8 - - aa-1-2-9 - - aa-1-2-10 - - aa-1-2-11 + - target_gender + - waist_rise +- id: aa-1-1-1-3 + name: Shorts + children: [] attributes: + - activity - color - - pattern - fabric -- id: aa-1-2-1 - name: Baby & Toddler Bottoms - children: - - aa-1-2-1-3 - - aa-1-2-1-4 - - aa-1-2-1-5 - - aa-1-2-1-7 - - aa-1-2-1-8 - - aa-1-2-1-11 - - aa-1-2-1-12 - - aa-1-2-1-14 - - aa-1-2-1-2 - - aa-1-2-1-13 + - pants_length_type + - pattern + - size + - target_gender + - waist_rise +- id: aa-1-1-1-4 + name: Sweatpants + children: [] attributes: + - activity - color + - fabric + - pants_length_type - pattern + - size - target_gender - - pants_length_type + - waist_rise +- id: aa-1-1-1-5 + name: Tights + children: [] + attributes: + - activity + - color - fabric + - pants_length_type + - pattern - size -- id: aa-1-2-2 - name: Baby & Toddler Diaper Covers + - target_gender + - waist_rise +- id: aa-1-1-1-6 + name: Track Pants children: [] attributes: + - activity - color + - fabric + - pants_length_type - pattern + - size - target_gender + - waist_rise +- id: aa-1-1-1-7 + name: Training Pants + children: [] + attributes: + - activity + - color - fabric + - pants_length_type + - pattern - size -- id: aa-1-2-3 - name: Baby & Toddler Dresses + - target_gender + - waist_rise +- id: aa-1-1-1-8 + name: Wind Pants children: [] attributes: + - activity - color - - sleeve_length_type - - pattern - - skirt_dress_length_type - fabric + - pants_length_type + - pattern - size -- id: aa-1-2-4 - name: Baby & Toddler Outerwear + - target_gender + - waist_rise +- id: aa-1-1-2 + name: Activewear Tops children: - - aa-1-2-4-17 - - aa-1-2-4-18 + - aa-1-1-2-1 + - aa-1-1-2-2 + - aa-1-1-2-3 attributes: + - activity - color - - pattern - - target_gender - fabric + - pattern - size -- id: aa-1-2-5 - name: Baby & Toddler Outfits + - sleeve_length_type + - target_gender +- id: aa-1-1-2-1 + name: Crop Tops children: [] attributes: + - activity - color - - pattern - - target_gender - fabric + - pattern - size -- id: aa-1-2-6 - name: Baby & Toddler Sleepwear + - sleeve_length_type + - target_gender +- id: aa-1-1-2-2 + name: T-Shirts children: [] attributes: + - activity - color - - pattern - - target_gender - fabric + - pattern - size -- id: aa-1-2-7 - name: Baby & Toddler Socks & Tights + - sleeve_length_type + - target_gender +- id: aa-1-1-2-3 + name: Tank Tops children: [] attributes: + - activity - color - - pattern - - shoe_size - - target_gender - fabric + - pattern - size -- id: aa-1-2-8 - name: Baby & Toddler Swimwear - children: - - aa-1-2-8-2 - - aa-1-2-8-3 - - aa-1-2-8-4 - - aa-1-2-8-9 - - aa-1-2-8-10 - - aa-1-2-8-13 - - aa-1-2-8-14 - - aa-1-2-8-15 - - aa-1-2-8-16 - - aa-1-2-8-17 - - aa-1-2-8-22 - - aa-1-2-8-23 - - aa-1-2-8-24 + - sleeve_length_type + - target_gender +- id: aa-1-1-4 + name: Boxing Shorts + children: [] attributes: - color - - pattern - - target_gender - - sleeve_length_type - fabric + - pattern - size -- id: aa-1-2-9 - name: Baby & Toddler Tops - children: - - aa-1-2-9-2 - - aa-1-2-9-3 - - aa-1-2-9-4 - - aa-1-2-9-5 - - aa-1-2-9-6 - - aa-1-2-9-7 + - target_gender +- id: aa-1-1-5 + name: Dance Dresses, Skirts & Costumes + children: [] attributes: - color - - pattern - - target_gender - - sleeve_length_type - - top_length_type - fabric + - pattern - size -- id: aa-1-2-10 - name: Baby One-Pieces + - skirt_dress_length_type + - sleeve_length_type + - target_gender +- id: aa-1-1-6 + name: Sports Bras children: [] attributes: + - bra_strap_type + - bra_support_level - color - - sleeve_length_type + - cup_size + - fabric - pattern - target_gender - - pants_length_type - - fabric - - size -- id: aa-1-2-11 - name: Toddler Underwear +- id: aa-1-1-7 + name: Activewear Sweatshirts & Hoodies children: - - aa-1-2-11-2 - - aa-1-2-11-3 - - aa-1-2-11-4 - - aa-1-2-11-1 - - aa-1-2-11-5 + - aa-1-1-7-2 + - aa-1-1-7-3 + - aa-1-1-7-4 + - aa-1-1-7-5 attributes: + - activity - color - - pattern - - target_gender - fabric + - neckline + - pattern - size -- id: aa-1-4 - name: Dresses + - target_gender +- id: aa-1-1-7-2 + name: Hoodies children: [] attributes: + - activity - color + - fabric - neckline - - sleeve_length_type - - age_group - pattern - - skirt_dress_length_type - - fabric - size -- id: aa-1-9 - name: One-Pieces + - sleeve_length_type + - target_gender +- id: aa-1-1-7-3 + name: Sweaters children: [] attributes: + - activity - color + - fabric - neckline - - sleeve_length_type - - age_group - pattern - - target_gender - - pants_length_type - - fabric - size -- id: aa-1-10 - name: Outerwear - children: - - aa-1-10-1 - - aa-1-10-2 - - aa-1-10-3 - - aa-1-10-4 - - aa-1-10-5 - - aa-1-10-6 - attributes: - - color - sleeve_length_type - - age_group - - pattern - target_gender - - fabric -- id: aa-1-10-1 - name: Chaps +- id: aa-1-1-7-4 + name: Sweatshirts children: [] attributes: + - activity - color - - sleeve_length_type - - age_group + - fabric - neckline - pattern - - target_gender - - fabric - size -- id: aa-1-10-2 - name: Coats & Jackets - children: - - aa-1-10-2-1 - - aa-1-10-2-2 - - aa-1-10-2-3 - - aa-1-10-2-4 - - aa-1-10-2-5 - - aa-1-10-2-6 - - aa-1-10-2-7 - - aa-1-10-2-8 - - aa-1-10-2-9 - - aa-1-10-2-10 - - aa-1-10-2-11 - - aa-1-10-2-12 - - aa-1-10-2-13 - - aa-1-10-2-14 - - aa-1-10-2-15 - - aa-1-10-2-16 - - aa-1-10-2-17 + - sleeve_length_type + - target_gender +- id: aa-1-1-7-5 + name: Track Jackets + children: [] attributes: + - activity - color - - sleeve_length_type - - age_group + - fabric - neckline - pattern + - size + - sleeve_length_type - target_gender +- id: aa-1-1-8 + name: Activewear Vests & Jackets + children: + - aa-1-1-8-1 + - aa-1-1-8-2 + attributes: + - activity + - color - fabric + - pattern - size -- id: aa-1-10-3 - name: Rain Pants + - sleeve_length_type + - target_gender +- id: aa-1-1-8-1 + name: Vests children: [] attributes: + - activity - color - - sleeve_length_type - - age_group - - pattern - - target_gender - fabric + - pattern - size -- id: aa-1-10-4 - name: Rain Suits + - target_gender +- id: aa-1-1-8-2 + name: Jackets children: [] attributes: + - activity - color - - sleeve_length_type - - age_group - - pattern - - target_gender - fabric + - pattern - size -- id: aa-1-10-5 - name: Snow Pants & Suits - children: [] + - sleeve_length_type + - target_gender +- id: aa-1-2 + name: Baby & Toddler Clothing + children: + - aa-1-2-1 + - aa-1-2-2 + - aa-1-2-3 + - aa-1-2-4 + - aa-1-2-5 + - aa-1-2-6 + - aa-1-2-7 + - aa-1-2-8 + - aa-1-2-9 + - aa-1-2-10 + - aa-1-2-11 attributes: - color - - sleeve_length_type - - age_group + - fabric - pattern - - target_gender +- id: aa-1-2-1 + name: Baby & Toddler Bottoms + children: + - aa-1-2-1-2 + - aa-1-2-1-3 + - aa-1-2-1-4 + - aa-1-2-1-5 + - aa-1-2-1-7 + - aa-1-2-1-8 + - aa-1-2-1-11 + - aa-1-2-1-12 + - aa-1-2-1-13 + - aa-1-2-1-14 + attributes: + - color - fabric + - pants_length_type + - pattern - size -- id: aa-1-10-6 - name: Vests + - target_gender +- id: aa-1-2-1-2 + name: Cargos children: [] attributes: - color - - age_group - - pattern - - target_gender - fabric + - pants_length_type + - pattern - size -- id: aa-1-11 - name: Outfit Sets + - target_gender +- id: aa-1-2-1-3 + name: Chinos children: [] attributes: - color - - age_group - - pattern - - target_gender - fabric + - pants_length_type + - pattern - size -- id: aa-1-12 - name: Pants - children: - - aa-1-12-3 - - aa-1-12-4 - - aa-1-12-5 - - aa-1-12-7 - - aa-1-12-8 - - aa-1-12-11 - - aa-1-12-2 + - target_gender +- id: aa-1-2-1-4 + name: Jeans + children: [] attributes: - color - - fit - - waist_rise - - age_group + - fabric + - pants_length_type - pattern + - size - target_gender - - pants_length_type +- id: aa-1-2-1-5 + name: Jeggings + children: [] + attributes: + - color - fabric + - pants_length_type + - pattern - size -- id: aa-1-14 - name: Shorts - children: - - aa-1-14-1 - - aa-1-14-2 - - aa-1-14-3 - - aa-1-14-5 - - aa-1-14-6 - - aa-1-14-7 - - aa-1-14-8 - - aa-1-14-4 + - target_gender +- id: aa-1-2-1-7 + name: Joggers + children: [] attributes: - color - - fit - - waist_rise + - fabric + - pants_length_type - pattern + - size - target_gender - - age_group +- id: aa-1-2-1-8 + name: Leggings + children: [] + attributes: + - color - fabric + - pants_length_type + - pattern - size -- id: aa-1-15 + - target_gender +- id: aa-1-2-1-11 name: Skirts children: [] attributes: - - best_uses - color - - pattern - - skirt_dress_length_type - fabric + - pattern - size -- id: aa-1-16 + - skirt_dress_length_type +- id: aa-1-2-1-12 name: Skorts children: [] attributes: - color - - age_group - - pattern - fabric - - size -- id: aa-1-17 - name: Sleepwear & Loungewear - children: - - aa-1-17-2 - - aa-1-17-3 - - aa-1-17-4 - - aa-1-17-5 - - aa-1-17-1 - attributes: - - color - pattern - - target_gender - - fabric - size -- id: aa-1-17-2 - name: Loungewear - children: - - aa-1-17-2-2 - - aa-1-17-2-1 + - skirt_dress_length_type + - target_gender +- id: aa-1-2-1-13 + name: Sweatpants + children: [] attributes: - color - - age_group + - fabric + - pants_length_type - pattern + - size - target_gender - - fabric -- id: aa-1-17-3 - name: Nightgowns +- id: aa-1-2-1-14 + name: Trousers children: [] attributes: - color - - sleeve_length_type - - age_group - - pattern - - target_gender - - skirt_dress_length_type - - nightgown_style - fabric + - pants_length_type + - pattern - size -- id: aa-1-17-4 - name: Pajamas + - target_gender +- id: aa-1-2-2 + name: Baby & Toddler Diaper Covers children: [] attributes: - color - - age_group - - pattern - - target_gender - fabric + - pattern - size -- id: aa-1-17-5 - name: Robes + - target_gender +- id: aa-1-2-3 + name: Baby & Toddler Dresses children: [] attributes: - color - - age_group - - pattern - - target_gender - fabric + - pattern - size -- id: aa-1-19 - name: Suits + - skirt_dress_length_type + - sleeve_length_type +- id: aa-1-2-4 + name: Baby & Toddler Outerwear children: - - aa-1-19-1 - - aa-1-19-2 - - aa-1-19-3 + - aa-1-2-4-17 + - aa-1-2-4-18 attributes: - color - - age_group + - fabric - pattern + - size - target_gender +- id: aa-1-2-4-17 + name: Baby & Toddler Coats & Jackets + children: + - aa-1-2-4-17-1 + - aa-1-2-4-17-2 + - aa-1-2-4-17-3 + - aa-1-2-4-17-4 + - aa-1-2-4-17-5 + - aa-1-2-4-17-6 + - aa-1-2-4-17-7 + - aa-1-2-4-17-8 + - aa-1-2-4-17-9 + - aa-1-2-4-17-10 + - aa-1-2-4-17-11 + - aa-1-2-4-17-12 + - aa-1-2-4-17-13 + - aa-1-2-4-17-14 + - aa-1-2-4-17-15 + - aa-1-2-4-17-16 + attributes: + - color - fabric + - pattern - size -- id: aa-1-19-1 - name: Pant Suits + - sleeve_length_type + - target_gender +- id: aa-1-2-4-17-1 + name: Bolero Jackets children: [] attributes: - color - - fit - - waist_rise - - age_group - - pattern - - target_gender - - pants_length_type - fabric + - pattern - size -- id: aa-1-19-2 - name: Skirt Suits + - sleeve_length_type + - target_gender +- id: aa-1-2-4-17-2 + name: Bomber Jackets children: [] attributes: - color - - age_group - - pattern - - target_gender - - skirt_dress_length_type - fabric + - pattern - size -- id: aa-1-19-3 - name: Tuxedos + - sleeve_length_type + - target_gender +- id: aa-1-2-4-17-3 + name: Capes children: [] attributes: - color - - age_group - - pattern - - target_gender - fabric + - pattern - size -- id: aa-1-20 - name: Swimwear - children: - - aa-1-20-2 - - aa-1-20-5 - - aa-1-20-6 - - aa-1-20-7 - - aa-1-20-12 - - aa-1-20-17 - - aa-1-20-22 - - aa-1-20-23 - - aa-1-20-3 - - aa-1-20-4 - - aa-1-20-24 + - sleeve_length_type + - target_gender +- id: aa-1-2-4-17-4 + name: Motorcycle Outerwear + children: [] attributes: - color - - age_group - - pattern - - target_gender - fabric + - pattern - size -- id: aa-1-23 - name: Traditional & Ceremonial Clothing - children: - - aa-1-23-1 - - aa-1-23-2 + - sleeve_length_type + - target_gender +- id: aa-1-2-4-17-5 + name: Overcoats + children: [] attributes: - color - - pattern - - age_group - - target_gender - fabric + - pattern - size -- id: aa-1-23-1 - name: Kimonos + - sleeve_length_type + - target_gender +- id: aa-1-2-4-17-6 + name: Parkas children: [] attributes: - color - - pattern - - age_group - - target_gender - fabric + - pattern - size -- id: aa-1-23-2 - name: Saris & Lehengas + - sleeve_length_type + - target_gender +- id: aa-1-2-4-17-7 + name: Pea Coats children: [] attributes: - color - - pattern - - age_group - - target_gender - fabric + - pattern - size -- id: aa-1-21 - name: Uniforms - children: - - aa-1-21-1 - - aa-1-21-2 - - aa-1-21-3 - - aa-1-21-4 - - aa-1-21-5 - - aa-1-21-6 - - aa-1-21-7 - - aa-1-21-8 + - sleeve_length_type + - target_gender +- id: aa-1-2-4-17-8 + name: Ponchos + children: [] attributes: - color - - age_group - - pattern - fabric -- id: aa-1-21-1 - name: Contractor Pants & Coveralls + - pattern + - size + - sleeve_length_type + - target_gender +- id: aa-1-2-4-17-9 + name: Puffer Jackets children: [] attributes: - color - - age_group - - pattern - - target_gender - fabric + - pattern - size -- id: aa-1-21-2 - name: Flight Suits + - sleeve_length_type + - target_gender +- id: aa-1-2-4-17-10 + name: Rain Coats children: [] attributes: - color - - age_group - - pattern - - target_gender - fabric + - pattern - size -- id: aa-1-21-3 - name: Food Service Uniforms + - sleeve_length_type + - target_gender +- id: aa-1-2-4-17-11 + name: Sport Jackets children: [] attributes: - color - - age_group - - pattern - - target_gender - fabric + - pattern - size -- id: aa-1-21-4 - name: Military Uniforms + - sleeve_length_type + - target_gender +- id: aa-1-2-4-17-12 + name: Track Jackets children: [] attributes: - color - - age_group - - pattern - - target_gender - fabric + - pattern - size -- id: aa-1-21-5 - name: School Uniforms + - sleeve_length_type + - target_gender +- id: aa-1-2-4-17-13 + name: Trench Coats children: [] attributes: - color - - age_group + - fabric - pattern - - pants_length_type - - skirt_dress_length_type + - size - sleeve_length_type - - fabric - - size -- id: aa-1-21-6 - name: Security Uniforms + - target_gender +- id: aa-1-2-4-17-14 + name: Trucker Jackets children: [] attributes: - color - - age_group - - pattern - - target_gender - fabric + - pattern - size -- id: aa-1-21-7 - name: Sports Uniforms + - sleeve_length_type + - target_gender +- id: aa-1-2-4-17-15 + name: Windbreakers children: [] attributes: - - age_group - color - - pattern - - target_gender - - sleeve_length_type - - activity - - pants_length_type - fabric + - pattern - size -- id: aa-1-21-8 - name: White Coats + - sleeve_length_type + - target_gender +- id: aa-1-2-4-17-16 + name: Wrap Coats children: [] attributes: - color - - age_group - - pattern - - target_gender - - sleeve_length_type - fabric - - size -- id: aa-1-22 - name: Wedding & Bridal Party Dresses - children: - - aa-1-22-1 - - aa-1-22-2 - attributes: - - color - - neckline - - sleeve_length_type - pattern - - skirt_dress_length_type - - fabric - size -- id: aa-1-22-1 - name: Bridal Party Dresses + - sleeve_length_type + - target_gender +- id: aa-1-2-4-18 + name: Snow Pants & Suits children: [] attributes: - color - - neckline - - sleeve_length_type - - pattern - - skirt_dress_length_type - fabric + - pattern - size -- id: aa-1-22-2 - name: Wedding Dresses + - sleeve_length_type + - target_gender +- id: aa-1-2-5 + name: Baby & Toddler Outfits children: [] attributes: - color - - neckline - - sleeve_length_type - - pattern - - skirt_dress_length_type - fabric + - pattern - size -- id: aa-2 - name: Clothing Accessories - children: - - aa-2-1 - - aa-2-2 - - aa-2-3 - - aa-2-4 - - aa-2-5 - - aa-2-6 - - aa-2-7 - - aa-2-8 - - aa-2-9 - - aa-2-10 - - aa-2-11 - - aa-2-12 - - aa-2-13 - - aa-2-14 - - aa-2-15 - - aa-2-16 - - aa-2-17 - - aa-2-18 - - aa-2-19 - - aa-2-20 - - aa-2-21 - - aa-2-22 - - aa-2-23 - - aa-2-24 - - aa-2-25 - - aa-2-26 - - aa-2-27 - - aa-2-28 - - aa-2-29 - - aa-2-31 - - aa-2-30 + - target_gender +- id: aa-1-2-6 + name: Baby & Toddler Sleepwear + children: [] attributes: - color - - age_group + - fabric - pattern + - size - target_gender -- id: aa-2-1 - name: Arm Warmers & Sleeves +- id: aa-1-2-7 + name: Baby & Toddler Socks & Tights children: [] attributes: - color - - age_group - - accessory_size - - activity + - fabric - pattern + - shoe_size + - size - target_gender - - fabric -- id: aa-2-2 - name: Baby & Toddler Clothing Accessories +- id: aa-1-2-8 + name: Baby & Toddler Swimwear children: - - aa-2-2-1 - - aa-2-2-2 - - aa-2-2-3 - - aa-2-2-4 + - aa-1-2-8-2 + - aa-1-2-8-3 + - aa-1-2-8-4 + - aa-1-2-8-9 + - aa-1-2-8-10 + - aa-1-2-8-13 + - aa-1-2-8-14 + - aa-1-2-8-15 + - aa-1-2-8-16 + - aa-1-2-8-17 + - aa-1-2-8-22 + - aa-1-2-8-23 + - aa-1-2-8-24 attributes: - color - - pattern - - target_gender - fabric + - pattern - size -- id: aa-2-2-1 - name: Baby & Toddler Belts + - sleeve_length_type + - target_gender +- id: aa-1-2-8-2 + name: Burkinis children: [] attributes: - color + - fabric - pattern - - target_gender - - clothing_accessory_material - size -- id: aa-2-2-2 - name: Baby & Toddler Gloves & Mittens + - sleeve_length_type + - target_gender +- id: aa-1-2-8-3 + name: Classic Bikinis children: [] attributes: - color + - fabric - pattern - - target_gender - - handwear_material - size -- id: aa-2-2-3 - name: Baby & Toddler Hats + - sleeve_length_type + - target_gender +- id: aa-1-2-8-4 + name: Cover Ups children: [] attributes: - color - - pattern - - target_gender - fabric + - pattern - size -- id: aa-2-2-4 - name: Baby Protective Wear + - sleeve_length_type + - target_gender +- id: aa-1-2-8-9 + name: Rash Guards children: [] attributes: - color - - pattern - - target_gender - fabric + - pattern - size -- id: aa-2-3 - name: Balaclavas + - target_gender +- id: aa-1-2-8-10 + name: Skirtinis children: [] attributes: - color - - age_group + - fabric - pattern + - size + - sleeve_length_type - target_gender - - fabric -- id: aa-2-4 - name: Bandanas & Headties +- id: aa-1-2-8-13 + name: Swim Boxers children: [] attributes: - color - - age_group + - fabric - pattern + - size - target_gender - - fabric -- id: aa-2-5 - name: Belt Buckles +- id: aa-1-2-8-14 + name: Swim Briefs children: [] attributes: - color - - age_group + - fabric - pattern + - size - target_gender - - fabric -- id: aa-2-6 - name: Belts +- id: aa-1-2-8-15 + name: Swim Dresses children: [] attributes: - color - - accessory_size - - age_group + - fabric - pattern + - size + - sleeve_length_type - target_gender - - clothing_accessory_material -- id: aa-2-7 - name: Bridal Accessories +- id: aa-1-2-8-16 + name: Swim Jammers children: [] attributes: - color + - fabric - pattern + - size - target_gender - - fabric -- id: aa-2-8 - name: Button Studs +- id: aa-1-2-8-17 + name: Swim Trunks children: [] attributes: - color - - age_group + - fabric - pattern + - size - target_gender - - fabric -- id: aa-2-9 - name: Collar Stays +- id: aa-1-2-8-22 + name: One-Piece Swimsuits children: [] attributes: - color - - age_group - - accessory_size + - fabric - pattern + - size + - sleeve_length_type - target_gender - - fabric -- id: aa-2-10 - name: Cufflinks +- id: aa-1-2-8-23 + name: Surf Tops children: [] attributes: - color - - jewelry_type - - age_group + - fabric - pattern + - size + - sleeve_length_type - target_gender - - jewelry_material -- id: aa-2-11 - name: Decorative Fans +- id: aa-1-2-8-24 + name: Swimwear Tops children: [] attributes: - color - - age_group + - fabric - pattern + - size + - sleeve_length_type - target_gender - - decoration_material -- id: aa-2-12 - name: Earmuffs - children: [] +- id: aa-1-2-9 + name: Baby & Toddler Tops + children: + - aa-1-2-9-2 + - aa-1-2-9-3 + - aa-1-2-9-4 + - aa-1-2-9-5 + - aa-1-2-9-6 + - aa-1-2-9-7 attributes: - color - - age_group + - fabric - pattern + - size + - sleeve_length_type - target_gender - - fabric -- id: aa-2-13 - name: Gloves & Mittens + - top_length_type +- id: aa-1-2-9-2 + name: Bodysuits children: [] attributes: - color - - age_group - - accessory_size + - fabric - pattern + - size + - sleeve_length_type - target_gender - - handwear_material -- id: aa-2-14 - name: Hair Accessories - children: - - aa-2-14-1 - - aa-2-14-2 - - aa-2-14-3 - - aa-2-14-4 - - aa-2-14-5 - - aa-2-14-6 - - aa-2-14-7 - - aa-2-14-8 - - aa-2-14-9 - - aa-2-14-10 - - aa-2-14-11 - - aa-2-14-12 + - top_length_type +- id: aa-1-2-9-3 + name: Cardigans + children: [] attributes: - color - - age_group + - fabric - pattern + - size + - sleeve_length_type - target_gender -- id: aa-2-14-1 - name: Hair Bun & Volume Shapers + - top_length_type +- id: aa-1-2-9-4 + name: Overshirts children: [] attributes: - color - - age_group + - fabric - pattern + - size + - sleeve_length_type - target_gender - - fabric -- id: aa-2-14-2 - name: Hair Combs + - top_length_type +- id: aa-1-2-9-5 + name: Polos children: [] attributes: - color - - age_group + - fabric - pattern + - size + - sleeve_length_type - target_gender - - bristle_material -- id: aa-2-14-3 - name: Hair Extensions + - top_length_type +- id: aa-1-2-9-6 + name: Shirts children: [] attributes: - color - - age_group + - fabric - pattern + - size + - sleeve_length_type - target_gender - - fabric -- id: aa-2-14-4 - name: Hair Forks & Sticks + - top_length_type +- id: aa-1-2-9-7 + name: T-Shirts children: [] attributes: - color - - age_group + - fabric - pattern + - size + - sleeve_length_type - target_gender - - fabric -- id: aa-2-14-5 - name: Hair Nets + - top_length_type +- id: aa-1-2-10 + name: Baby One-Pieces children: [] attributes: - color - - age_group + - fabric + - pants_length_type - pattern + - size + - sleeve_length_type - target_gender - - fabric -- id: aa-2-14-6 - name: Hair Pins, Claws & Clips - children: [] +- id: aa-1-2-11 + name: Toddler Underwear + children: + - aa-1-2-11-1 + - aa-1-2-11-2 + - aa-1-2-11-3 + - aa-1-2-11-4 + - aa-1-2-11-5 attributes: - - age_group - color + - fabric - pattern + - size - target_gender - - fabric -- id: aa-2-14-7 - name: Hair Wreaths +- id: aa-1-2-11-1 + name: Boxer Briefs children: [] attributes: - color - - age_group + - fabric - pattern + - size - target_gender - - fabric -- id: aa-2-14-8 - name: Headbands +- id: aa-1-2-11-2 + name: Boxers children: [] attributes: - - age_group - color + - fabric - pattern + - size - target_gender - - fabric -- id: aa-2-14-9 - name: Ponytail Holders +- id: aa-1-2-11-3 + name: Briefs children: [] attributes: - color - - age_group + - fabric - pattern + - size - target_gender - - fabric -- id: aa-2-14-10 - name: Tiaras +- id: aa-1-2-11-4 + name: Panties children: [] attributes: - - age_group - color + - fabric - pattern + - size - target_gender - - fabric -- id: aa-2-14-11 - name: Wig Accessories +- id: aa-1-2-11-5 + name: Training Pants children: [] attributes: - color - - age_group + - fabric - pattern + - size - target_gender -- id: aa-2-14-12 - name: Wigs - children: [] +- id: aa-1-3 + name: Boys' Underwear + children: + - aa-1-3-1 + - aa-1-3-2 + - aa-1-3-3 attributes: - age_group - color - - pattern - - target_gender - - hair_type - fabric -- id: aa-2-15 - name: Hand Muffs - children: [] - attributes: - - color - - age_group - - accessory_size - pattern - - target_gender - - fabric -- id: aa-2-16 - name: Handkerchiefs +- id: aa-1-3-1 + name: Boys' Long Johns children: [] attributes: - - color - age_group - - pattern - - target_gender + - color - fabric -- id: aa-2-17 - name: Hats + - pattern + - size + - underwear_style +- id: aa-1-3-2 + name: Boys' Underpants children: - - aa-2-17-1 - - aa-2-17-2 - - aa-2-17-3 - - aa-2-17-4 - - aa-2-17-5 - - aa-2-17-6 - - aa-2-17-7 - - aa-2-17-8 - - aa-2-17-9 - - aa-2-17-10 - - aa-2-17-11 - - aa-2-17-12 - - aa-2-17-13 - - aa-2-17-14 - - aa-2-17-15 - - aa-2-17-16 + - aa-1-3-2-1 + - aa-1-3-2-2 + - aa-1-3-2-3 + - aa-1-3-2-4 + - aa-1-3-2-5 attributes: - age_group - color - - accessory_size - - pattern - - target_gender - fabric -- id: aa-2-18 - name: Headwear - children: - - aa-2-18-1 - - aa-2-18-2 - - aa-2-18-3 + - pattern + - size + - underwear_style +- id: aa-1-3-2-1 + name: Boxer Briefs + children: [] attributes: + - age_group - color - - pattern - - target_gender - fabric -- id: aa-2-18-1 - name: Fascinators + - pattern + - size + - underwear_style +- id: aa-1-3-2-2 + name: Boxer Shorts children: [] attributes: - - color - age_group - - pattern - - target_gender + - color - fabric -- id: aa-2-18-2 - name: Headdresses + - pattern + - size + - underwear_style +- id: aa-1-3-2-3 + name: Briefs children: [] attributes: - - color - age_group + - color + - fabric - pattern - - target_gender - - fabric -- id: aa-2-18-3 - name: Turbans + - size + - underwear_style +- id: aa-1-3-2-4 + name: Midway Briefs children: [] attributes: - - color - age_group - - pattern - - target_gender - - fabric -- id: aa-2-19 - name: Leg Warmers - children: [] - attributes: - color - - age_group - - activity - - pattern - - target_gender - fabric + - pattern - size -- id: aa-2-20 - name: Leis + - underwear_style +- id: aa-1-3-2-5 + name: Trunks children: [] attributes: + - age_group - color + - fabric - pattern - - target_gender -- id: aa-2-21 - name: Maternity Belts & Support Bands + - size + - underwear_style +- id: aa-1-3-3 + name: Boys' Undershirts children: [] attributes: + - age_group - color - - pattern - - target_gender - fabric -- id: aa-2-22 - name: Neck Gaiters + - pattern + - size + - underwear_style +- id: aa-1-4 + name: Dresses children: [] attributes: - - color - age_group - - accessory_size - - pattern - - target_gender + - color - fabric -- id: aa-2-23 - name: Neckties - children: [] + - neckline + - pattern + - size + - skirt_dress_length_type + - sleeve_length_type +- id: aa-1-5 + name: Girls' Underwear + children: + - aa-1-5-1 + - aa-1-5-2 + - aa-1-5-3 attributes: - - color - age_group - - accessory_size - - pattern - - target_gender + - color - fabric -- id: aa-2-24 - name: Pinback Buttons + - pattern +- id: aa-1-5-1 + name: Girls' Long Johns children: [] attributes: + - age_group - color - - shape + - fabric - pattern - - target_gender - - jewelry_material -- id: aa-2-25 - name: Sashes - children: [] + - size +- id: aa-1-5-2 + name: Girls' Underpants + children: + - aa-1-5-2-1 + - aa-1-5-2-2 + - aa-1-5-2-3 + - aa-1-5-2-4 + - aa-1-5-2-5 + - aa-1-5-2-6 + - aa-1-5-2-7 + - aa-1-5-2-8 attributes: - - color - age_group - - pattern - - target_gender + - color - fabric -- id: aa-2-26 - name: Scarves & Shawls + - pattern + - size + - waist_rise +- id: aa-1-5-2-1 + name: Bikinis children: [] attributes: - - color - age_group - - pattern - - target_gender + - color - fabric -- id: aa-2-27 - name: Sunglasses + - pattern + - size + - waist_rise +- id: aa-1-5-2-2 + name: Boxer Briefs children: [] attributes: - age_group - color - - temple_color - - pattern - - target_gender - - lens_polarization - fabric -- id: aa-2-28 - name: Suspenders + - pattern + - waist_rise +- id: aa-1-5-2-3 + name: Boyshorts children: [] attributes: + - age_group - color - - pattern - - target_gender - - closure_type - - suspender_style - fabric + - pattern - size -- id: aa-2-29 - name: Tie Clips + - waist_rise +- id: aa-1-5-2-4 + name: Briefs children: [] attributes: + - age_group - color - - jewelry_type - - pattern - - target_gender - fabric -- id: aa-2-31 - name: Traditional Clothing Accessories + - pattern + - size + - waist_rise +- id: aa-1-5-2-5 + name: Hipsters children: [] attributes: - - color - age_group - - pattern - - target_gender - - accessory_size + - color - fabric -- id: aa-2-30 - name: Wristbands + - pattern + - size + - waist_rise +- id: aa-1-5-2-6 + name: Panties children: [] attributes: - - color - - material - age_group + - color + - fabric - pattern - - target_gender -- id: aa-3 - name: Costumes & Accessories - children: - - aa-3-1 - - aa-3-2 - - aa-3-3 - - aa-3-4 + - size + - waist_rise +- id: aa-1-5-2-7 + name: Period Underwear + children: [] attributes: + - absorbency_level - age_group + - fabric - pattern -- id: aa-3-1 - name: Costume Accessories + - size + - underwear_style + - waist_rise +- id: aa-1-5-2-8 + name: Thongs children: [] attributes: - age_group - - accessory_size + - fabric - pattern - - target_gender -- id: aa-3-2 - name: Costume Shoes + - size + - waist_rise +- id: aa-1-5-3 + name: Girls' Undershirts children: [] attributes: - age_group - color + - fabric - pattern - - shoe_size - - target_gender - - footwear_material -- id: aa-3-3 - name: Costumes + - size +- id: aa-1-6 + name: Lingerie children: - - aa-3-3-1 - - aa-3-3-2 + - aa-1-6-1 + - aa-1-6-2 + - aa-1-6-3 + - aa-1-6-4 + - aa-1-6-6 + - aa-1-6-7 + - aa-1-6-8 + - aa-1-6-9 + - aa-1-6-10 + - aa-1-6-11 + - aa-1-6-12 + - aa-1-6-13 attributes: - - age_group - color - - pattern - - target_gender - - costume_theme - fabric + - pattern - size -- id: aa-3-4 - name: Masks +- id: aa-1-6-1 + name: Bodysuits children: [] attributes: - - age_group - color - - target_gender - - usage_type - - pattern + - cup_size - fabric -- id: aa-4 - name: Handbag & Wallet Accessories + - pattern +- id: aa-1-6-2 + name: Bra Accessories children: - - aa-4-1 - - aa-4-2 - - aa-4-3 + - aa-1-6-2-1 + - aa-1-6-2-2 + - aa-1-6-2-3 + - aa-1-6-2-4 attributes: - color - - target_gender -- id: aa-4-1 - name: Keychains + - fabric + - pattern +- id: aa-1-6-2-1 + name: Bra Strap Pads children: [] attributes: - color - - target_gender -- id: aa-4-2 - name: Lanyards - children: [] - attributes: - - color - - target_gender -- id: aa-4-3 - name: Wallet Chains - children: [] - attributes: - - color - - target_gender -- id: aa-5 - name: Handbags, Wallets & Cases - children: - - aa-5-1 - - aa-5-2 - - aa-5-4 - - aa-5-5 - - aa-5-3 - attributes: - - color - - target_gender -- id: aa-5-1 - name: Badge & Pass Holders - children: [] - attributes: - - color - - age_group + - cup_size + - fabric - pattern - - target_gender - - attachment_options -- id: aa-5-2 - name: Business Card Cases +- id: aa-1-6-2-2 + name: Bra Straps & Extenders children: [] attributes: - color - - age_group - - pattern - - target_gender -- id: aa-5-4 - name: Handbags - children: - - aa-5-4-1 - - aa-5-4-2 - - aa-5-4-3 - - aa-5-4-4 - - aa-5-4-5 - - aa-5-4-6 - - aa-5-4-7 - - aa-5-4-8 - - aa-5-4-9 - - aa-5-4-10 - - aa-5-4-11 - - aa-5-4-12 - - aa-5-4-13 - - aa-5-4-14 - - aa-5-4-15 - - aa-5-4-16 - - aa-5-4-17 - - aa-5-4-18 - - aa-5-4-19 - - aa-5-4-20 - attributes: - - age_group - - color + - fabric - pattern - - target_gender - - bag_case_material -- id: aa-5-5 - name: Wallets & Money Clips - children: - - aa-5-5-2 - - aa-5-5-3 - - aa-5-5-4 - - aa-5-5-5 - - aa-5-5-6 - - aa-5-5-7 - - aa-5-5-8 +- id: aa-1-6-2-3 + name: Breast Enhancing Inserts + children: [] attributes: - color - - age_group + - fabric - pattern - - target_gender - - clothing_accessory_material -- id: aa-6 - name: Jewelry - children: - - aa-6-1 - - aa-6-2 - - aa-6-3 - - aa-6-4 - - aa-6-5 - - aa-6-6 - - aa-6-7 - - aa-6-8 - - aa-6-9 - - aa-6-10 - - aa-6-11 - - aa-6-12 +- id: aa-1-6-2-4 + name: Breast Petals & Concealers + children: [] attributes: - color - - jewelry_type + - fabric - pattern - - target_gender - - jewelry_material -- id: aa-6-1 - name: Anklets +- id: aa-1-6-3 + name: Bras children: [] attributes: + - bra_closure_type + - bra_coverage + - bra_strap_type - color - - jewelry_type - - age_group + - cup_size + - fabric - pattern - - target_gender - - chain_link_type - - jewelry_material -- id: aa-6-2 - name: Body Jewelry +- id: aa-1-6-4 + name: Camisoles children: [] attributes: - color - - age_group + - fabric - pattern - - target_gender - - jewelry_material -- id: aa-6-3 - name: Bracelets + - size +- id: aa-1-6-6 + name: Hosiery children: [] attributes: - - age_group - color - - jewelry_type + - fabric - pattern - - target_gender - - jewelry_material -- id: aa-6-4 - name: Brooches & Lapel Pins + - size +- id: aa-1-6-7 + name: Jock Straps children: [] attributes: - color - - jewelry_type - - age_group + - fabric - pattern - - jewelry_material -- id: aa-6-5 - name: Charms & Pendants - children: [] + - size +- id: aa-1-6-8 + name: Lingerie Accessories + children: + - aa-1-6-8-1 + - aa-1-6-8-2 + - aa-1-6-8-3 attributes: - color - - jewelry_type - - age_group + - fabric - pattern - - target_gender - - jewelry_material -- id: aa-6-6 - name: Earrings +- id: aa-1-6-8-1 + name: Garter Belts children: [] attributes: - - age_group - color - - jewelry_type + - fabric - pattern - - target_gender - - jewelry_material -- id: aa-6-7 - name: Jewelry Sets + - size +- id: aa-1-6-8-2 + name: Garters children: [] attributes: - color - - jewelry_type - - age_group + - fabric - pattern - - ring_size - - target_gender - - jewelry_material -- id: aa-6-8 - name: Necklaces + - size +- id: aa-1-6-8-3 + name: Pantyhose children: [] attributes: - - age_group - color - - jewelry_type + - fabric - pattern - - target_gender - - jewelry_material -- id: aa-6-9 - name: Rings + - size +- id: aa-1-6-9 + name: Petticoats & Pettipants children: [] attributes: - - age_group - color - - jewelry_type + - fabric - pattern - - ring_size - - target_gender - - jewelry_material -- id: aa-6-10 - name: Watch Accessories + - size +- id: aa-1-6-10 + name: Shapewear children: - - aa-6-10-1 - - aa-6-10-2 - - aa-6-10-3 + - aa-1-6-10-1 + - aa-1-6-10-2 + - aa-1-6-10-3 + - aa-1-6-10-4 + - aa-1-6-10-5 attributes: - color - - material - - age_group + - fabric - pattern - - target_gender - - watch_accessory_style -- id: aa-6-10-1 - name: Watch Bands + - shapewear_support_level + - size +- id: aa-1-6-10-1 + name: Bodysuits children: [] attributes: - - clasp_type - color - - age_group + - fabric - pattern - - target_gender - - watch_accessory_style - - band_material -- id: aa-6-10-2 - name: Watch Stickers & Decals + - shapewear_support_level + - size +- id: aa-1-6-10-2 + name: Full Body Shapes children: [] attributes: - color - - age_group + - fabric - pattern - - target_gender -- id: aa-6-10-3 - name: Watch Winders + - shapewear_support_level + - size +- id: aa-1-6-10-3 + name: High Waisted Briefs children: [] attributes: - color - - age_group + - fabric - pattern - - target_gender - - connectivity_technology -- id: aa-6-11 - name: Watches + - shapewear_support_level + - size +- id: aa-1-6-10-4 + name: Thigh Slimmers children: [] attributes: - - age_group - - band_color - - case_color - - dial_color - - pattern - - watch_display - - watch_material - - bag_case_material -- id: aa-7 - name: Shoe Accessories - children: - - aa-7-1 - - aa-7-2 - - aa-7-3 - - aa-7-6 - - aa-7-7 - - aa-7-4 - - aa-7-5 - attributes: - color - - age_group + - fabric - pattern - - target_gender -- id: aa-7-1 - name: Boot Liners + - shapewear_support_level + - size +- id: aa-1-6-10-5 + name: Waist Cinchers children: [] attributes: - color - - age_group + - fabric - pattern - - shoe_size - - target_gender - - clothing_accessory_material -- id: aa-7-2 - name: Gaiters - children: [] + - shapewear_support_level + - size +- id: aa-1-6-11 + name: Women's Underpants + children: + - aa-1-6-11-1 + - aa-1-6-11-2 + - aa-1-6-11-3 + - aa-1-6-11-4 + - aa-1-6-11-5 + - aa-1-6-11-6 attributes: - color - - age_group + - fabric - pattern - - shoe_size - - target_gender - - clothing_accessory_material -- id: aa-7-3 - name: Shoe Covers + - size + - underwear_style + - waist_rise +- id: aa-1-6-11-1 + name: Bikinis children: [] attributes: - color - - age_group - - pattern - - shoe_size - - target_gender - fabric -- id: aa-7-6 - name: Shoelaces - children: [] - attributes: - - color - - age_group - pattern - - target_gender - - clothing_accessory_material -- id: aa-7-7 - name: Spurs + - size + - underwear_style + - waist_rise +- id: aa-1-6-11-2 + name: Boyshorts children: [] attributes: - color - - age_group - - pattern - - target_gender - - clothing_accessory_material -- id: aa-8 - name: Shoes - children: - - aa-8-2 - - aa-8-3 - - aa-8-6 - - aa-8-7 - - aa-8-1 - - aa-8-8 - attributes: - - color - - age_group - - closure_type - - pattern - - shoe_fit - - shoe_size - - target_gender - - toe_style - - occasion_style - - footwear_material -- id: aa-1-1-1 - name: Activewear Pants - children: - - aa-1-1-1-1 - - aa-1-1-1-2 - - aa-1-1-1-3 - - aa-1-1-1-5 - - aa-1-1-1-4 - - aa-1-1-1-6 - - aa-1-1-1-7 - - aa-1-1-1-8 - attributes: - - activity - - color - - pattern - - target_gender - - waist_rise - - pants_length_type - fabric + - pattern - size -- id: aa-1-1-2 - name: Activewear Tops - children: - - aa-1-1-2-1 - - aa-1-1-2-2 - - aa-1-1-2-3 + - underwear_style + - waist_rise +- id: aa-1-6-11-3 + name: Briefs + children: [] attributes: - - activity - color - - pattern - - target_gender - - sleeve_length_type - fabric + - pattern - size -- id: aa-1-17-2-2 - name: Loungewear Tops + - underwear_style + - waist_rise +- id: aa-1-6-11-4 + name: G-Strings children: [] attributes: - color - - age_group - - pattern - - target_gender - - top_length_type - fabric + - pattern - size -- id: aa-8-2 - name: Baby & Toddler Shoes - children: - - aa-8-2-1 - - aa-8-2-2 - - aa-8-2-4 - - aa-8-2-5 - - aa-8-2-6 + - underwear_style + - waist_rise +- id: aa-1-6-11-5 + name: Period Underwear + children: [] attributes: + - absorbency_level - color - - closure_type + - fabric - pattern - - shoe_fit - - shoe_size - - target_gender - - toe_style - - footwear_material -- id: aa-8-2-1 - name: Baby & Toddler Boots + - size + - underwear_style + - waist_rise +- id: aa-1-6-11-6 + name: Thongs children: [] attributes: - color - - closure_type + - fabric - pattern - - shoe_fit - - shoe_size - - target_gender - - toe_style - - occasion_style - - boot_style - - footwear_material -- id: aa-8-2-2 - name: Baby & Toddler Sandals + - size + - underwear_style + - waist_rise +- id: aa-1-6-12 + name: Women's Undershirts children: [] attributes: - color - - closure_type + - fabric - pattern - - shoe_fit - - target_gender - - toe_style - - shoe_size - - occasion_style - - footwear_material -- id: aa-8-3 - name: Boots + - size +- id: aa-1-6-13 + name: Women's Underwear Slips children: [] attributes: - color - - heel_height_type - - age_group - - closure_type + - fabric - pattern - - shoe_fit - - shoe_size - - target_gender - - toe_style - - occasion_style - - footwear_material -- id: aa-8-6 - name: Sandals - children: [] + - size +- id: aa-1-7 + name: Maternity Clothing + children: + - aa-1-7-1 + - aa-1-7-2 + - aa-1-7-3 + - aa-1-7-4 + - aa-1-7-5 + - aa-1-7-6 + - aa-1-7-7 + - aa-1-7-8 attributes: - color - - heel_height_type - - age_group - - closure_type + - fabric - pattern - - shoe_fit - - target_gender - - toe_style - - shoe_size - - occasion_style - - footwear_material -- id: aa-8-7 - name: Slippers +- id: aa-1-7-1 + name: Nursing Bras children: [] attributes: + - bra_closure_type + - bra_coverage + - bra_strap_type - color - - heel_height_type - - closure_type + - cup_size + - fabric - pattern - - shoe_fit - - shoe_size - - target_gender - - toe_style - - footwear_material -- id: aa-1-1-1-1 - name: Joggers +- id: aa-1-7-2 + name: Maternity Dresses children: [] attributes: - - activity - color - - pattern - - target_gender - - waist_rise - - pants_length_type - fabric + - neckline + - pattern - size -- id: aa-1-1-1-2 - name: Leggings + - skirt_dress_length_type + - sleeve_length_type +- id: aa-1-7-3 + name: Maternity One-Pieces children: [] attributes: - - activity - color - - pattern - - target_gender - - waist_rise - - pants_length_type - fabric + - neckline + - pants_length_type + - pattern - size -- id: aa-1-1-1-3 - name: Shorts - children: [] + - sleeve_length_type +- id: aa-1-7-4 + name: Maternity Pants + children: + - aa-1-7-4-2 + - aa-1-7-4-3 + - aa-1-7-4-4 + - aa-1-7-4-5 + - aa-1-7-4-7 + - aa-1-7-4-8 + - aa-1-7-4-11 + - aa-1-7-4-12 attributes: - - activity - color - - pattern - - target_gender - - waist_rise - - pants_length_type + - fit - fabric + - pants_length_type + - pattern - size -- id: aa-1-1-1-5 - name: Tights +- id: aa-1-7-4-2 + name: Cargos children: [] attributes: - - activity - color - - pattern - - target_gender - - waist_rise - - pants_length_type + - fit - fabric + - pants_length_type + - pattern - size -- id: aa-1-2-1-3 +- id: aa-1-7-4-3 name: Chinos children: [] attributes: - color - - pattern - - target_gender - - pants_length_type + - fit - fabric + - pants_length_type + - pattern - size -- id: aa-1-2-1-4 +- id: aa-1-7-4-4 name: Jeans children: [] attributes: - color - - pattern - - target_gender - - pants_length_type + - fit - fabric + - pants_length_type + - pattern - size -- id: aa-1-2-1-5 +- id: aa-1-7-4-5 name: Jeggings children: [] attributes: - color - - pattern - - target_gender - - pants_length_type + - fit - fabric + - pants_length_type + - pattern - size -- id: aa-1-2-1-7 +- id: aa-1-7-4-7 name: Joggers children: [] attributes: - color - - pattern - - target_gender - - pants_length_type + - fit - fabric + - pants_length_type + - pattern - size -- id: aa-1-2-1-8 +- id: aa-1-7-4-8 name: Leggings children: [] attributes: - color - - pattern - - target_gender - - pants_length_type + - fit - fabric - - size -- id: aa-1-2-1-11 - name: Skirts - children: [] - attributes: - - color + - pants_length_type - pattern - - skirt_dress_length_type - - fabric - size -- id: aa-1-2-1-12 +- id: aa-1-7-4-11 name: Skorts children: [] attributes: - color - - pattern - - target_gender - - skirt_dress_length_type + - fit - fabric + - pants_length_type + - pattern - size -- id: aa-1-2-1-14 +- id: aa-1-7-4-12 name: Trousers children: [] attributes: - color - - pattern - - target_gender - - pants_length_type + - fit - fabric - - size -- id: aa-1-2-11-2 - name: Boxers - children: [] - attributes: - - color + - pants_length_type - pattern - - target_gender - - fabric - size -- id: aa-1-2-11-3 - name: Briefs +- id: aa-1-7-5 + name: Maternity Skirts children: [] attributes: - color - - pattern - - target_gender - fabric + - pattern - size -- id: aa-1-2-11-4 - name: Panties + - skirt_dress_length_type +- id: aa-1-7-6 + name: Maternity Sleepwear children: [] attributes: - color - - pattern - - target_gender - fabric - - size -- id: aa-1-6 - name: Lingerie - children: - - aa-1-6-2 - - aa-1-6-3 - - aa-1-6-6 - - aa-1-6-7 - - aa-1-6-8 - - aa-1-6-9 - - aa-1-6-10 - - aa-1-6-1 - - aa-1-6-4 - - aa-1-6-11 - - aa-1-6-12 - - aa-1-6-13 - attributes: - - color - pattern - - fabric - size -- id: aa-1-6-2 - name: Bra Accessories +- id: aa-1-7-7 + name: Maternity Swimwear children: - - aa-1-6-2-1 - - aa-1-6-2-2 - - aa-1-6-2-3 - - aa-1-6-2-4 + - aa-1-7-7-2 + - aa-1-7-7-4 + - aa-1-7-7-5 + - aa-1-7-7-6 + - aa-1-7-7-14 + - aa-1-7-7-20 + - aa-1-7-7-21 attributes: - color - - pattern - fabric -- id: aa-1-6-2-1 - name: Bra Strap Pads + - pattern + - size +- id: aa-1-7-7-2 + name: Swim Boxers children: [] attributes: - color - - cup_size - - pattern - fabric -- id: aa-1-6-2-2 - name: Bra Straps & Extenders + - pattern + - size +- id: aa-1-7-7-4 + name: Burkinis children: [] attributes: - color - - pattern - fabric -- id: aa-1-6-2-3 - name: Breast Enhancing Inserts + - pattern + - size + - sleeve_length_type +- id: aa-1-7-7-5 + name: Classic Bikinis children: [] attributes: - color - - pattern - fabric -- id: aa-1-6-2-4 - name: Breast Petals & Concealers + - pattern + - size + - sleeve_length_type +- id: aa-1-7-7-6 + name: Cover Ups children: [] attributes: - color - - pattern - fabric -- id: aa-1-6-3 - name: Bras + - pattern + - size + - sleeve_length_type +- id: aa-1-7-7-14 + name: Swim Dresses children: [] attributes: - color - - cup_size - - pattern - - bra_closure_type - - bra_coverage - - bra_strap_type - fabric -- id: aa-1-6-6 - name: Hosiery + - pattern + - size + - sleeve_length_type +- id: aa-1-7-7-20 + name: One-Piece Swimsuits children: [] attributes: - color - - pattern - fabric + - pattern - size -- id: aa-1-6-7 - name: Jock Straps + - sleeve_length_type +- id: aa-1-7-7-21 + name: Swimwear Tops children: [] attributes: - color - - pattern - fabric + - pattern - size -- id: aa-1-6-8 - name: Lingerie Accessories + - sleeve_length_type +- id: aa-1-7-8 + name: Maternity Tops children: - - aa-1-6-8-2 - - aa-1-6-8-3 - - aa-1-6-8-1 + - aa-1-7-8-1 + - aa-1-7-8-2 + - aa-1-7-8-3 + - aa-1-7-8-4 + - aa-1-7-8-5 + - aa-1-7-8-7 + - aa-1-7-8-8 + - aa-1-7-8-11 attributes: - color - - pattern - fabric -- id: aa-1-6-8-2 - name: Garters - children: [] - attributes: - - color + - neckline - pattern - - fabric - size -- id: aa-1-6-8-3 - name: Pantyhose + - sleeve_length_type + - top_length_type +- id: aa-1-7-8-1 + name: Blouses children: [] attributes: - color - - pattern - fabric + - neckline + - pattern - size -- id: aa-1-6-9 - name: Petticoats & Pettipants + - sleeve_length_type + - top_length_type +- id: aa-1-7-8-2 + name: Bodysuits children: [] attributes: - color - - pattern - fabric + - neckline + - pattern - size -- id: aa-1-6-10 - name: Shapewear - children: - - aa-1-6-10-1 - - aa-1-6-10-2 - - aa-1-6-10-3 - - aa-1-6-10-4 - - aa-1-6-10-5 + - sleeve_length_type + - top_length_type +- id: aa-1-7-8-3 + name: Cardigans + children: [] attributes: - color - - pattern - - shapewear_support_level - fabric + - neckline + - pattern - size -- id: aa-1-8 - name: Men's Undergarments - children: - - aa-1-8-2 - - aa-1-8-3 - - aa-1-8-1 + - sleeve_length_type + - top_length_type +- id: aa-1-7-8-4 + name: Nursing Shirts + children: [] attributes: + - age_group - color - - pattern - fabric + - neckline + - pattern - size -- id: aa-1-12-3 - name: Chinos + - sleeve_length_type + - top_length_type +- id: aa-1-7-8-5 + name: Overshirts children: [] attributes: - color - - fit - - waist_rise - - age_group - - pattern - - target_gender - - pants_length_type - fabric + - neckline + - pattern - size -- id: aa-1-12-4 - name: Jeans + - sleeve_length_type + - top_length_type +- id: aa-1-7-8-7 + name: Shirts children: [] attributes: - color - - fit - - waist_rise - - age_group - - pattern - - target_gender - - pants_length_type - fabric + - neckline + - pattern - size -- id: aa-1-12-5 - name: Jeggings + - sleeve_length_type + - top_length_type +- id: aa-1-7-8-8 + name: T-Shirts children: [] attributes: - color - - fit - - waist_rise - - age_group - - pattern - - target_gender - - pants_length_type - fabric + - neckline + - pattern - size -- id: aa-1-12-7 - name: Joggers + - sleeve_length_type + - top_length_type +- id: aa-1-7-8-11 + name: Tunics children: [] attributes: - color - - fit - - waist_rise - - age_group - - pattern - - target_gender - - pants_length_type - fabric + - neckline + - pattern - size -- id: aa-1-12-8 - name: Leggings - children: [] + - sleeve_length_type + - top_length_type +- id: aa-1-8 + name: Men's Undergarments + children: + - aa-1-8-1 + - aa-1-8-2 + - aa-1-8-3 attributes: - color - - fit - - waist_rise - - age_group - - pattern - - target_gender - - pants_length_type - fabric + - pattern - size -- id: aa-1-12-11 - name: Trousers +- id: aa-1-8-1 + name: Men's Long Johns children: [] attributes: - color - - fit - - waist_rise - - age_group - - pattern - - target_gender - - pants_length_type - fabric + - pattern - size -- id: aa-1-17-1 - name: Long Johns +- id: aa-1-8-2 + name: Men's Undershirts children: [] attributes: - color - - pattern - - target_gender - fabric + - pattern - size -- id: aa-1-18 - name: Socks +- id: aa-1-8-3 + name: Men's Underwear children: - - aa-1-18-1 - - aa-1-18-2 - - aa-1-18-3 - - aa-1-18-4 - - aa-1-18-5 - - aa-1-18-6 - - aa-1-18-7 - - aa-1-18-8 - - aa-1-18-9 - - aa-1-18-10 + - aa-1-8-3-2 + - aa-1-8-3-3 + - aa-1-8-3-4 + - aa-1-8-3-5 + - aa-1-8-3-6 + - aa-1-8-3-7 + - aa-1-8-3-8 + - aa-1-8-3-9 attributes: - - activity - color - - accessory_size - - pattern - - target_gender - fabric -- id: aa-1-20-2 - name: Boardshorts + - pattern + - size + - underwear_style +- id: aa-1-8-3-2 + name: Boxer Briefs children: [] attributes: - color - - age_group - - pattern - - target_gender - fabric + - pattern - size -- id: aa-1-1-1-4 - name: Sweatpants + - underwear_style +- id: aa-1-8-3-3 + name: Boxer Shorts children: [] attributes: - - activity - color - - pattern - - target_gender - - waist_rise - - pants_length_type - fabric + - pattern - size -- id: aa-1-1-1-6 - name: Track Pants + - underwear_style +- id: aa-1-8-3-4 + name: Briefs children: [] attributes: - - activity - color - - pattern - - target_gender - - waist_rise - - pants_length_type - fabric + - pattern - size -- id: aa-1-1-1-7 - name: Training Pants + - underwear_style +- id: aa-1-8-3-5 + name: Jockstraps children: [] attributes: - - activity - color - - pattern - - target_gender - - waist_rise - - pants_length_type - fabric + - pattern - size -- id: aa-1-1-1-8 - name: Wind Pants + - underwear_style +- id: aa-1-8-3-6 + name: Midway Briefs children: [] attributes: - - activity - color - - pattern - - target_gender - - waist_rise - - pants_length_type - fabric + - pattern - size -- id: aa-1-1-2-1 - name: Crop Tops + - underwear_style +- id: aa-1-8-3-7 + name: Thongs children: [] attributes: - - activity - color - - pattern - - target_gender - - sleeve_length_type - fabric + - pattern - size -- id: aa-1-1-2-2 - name: T-Shirts + - underwear_style +- id: aa-1-8-3-8 + name: Trunks children: [] attributes: - - activity - color - - pattern - - target_gender - - sleeve_length_type - fabric + - pattern - size -- id: aa-1-1-2-3 - name: Tank Tops + - underwear_style +- id: aa-1-8-3-9 + name: Undershorts children: [] attributes: - - activity - color - - pattern - - target_gender - - sleeve_length_type - fabric + - pattern - size -- id: aa-1-1-6 - name: Sports Bras + - underwear_style +- id: aa-1-9 + name: One-Pieces children: [] attributes: + - age_group - color - - cup_size + - fabric + - neckline + - pants_length_type - pattern + - size + - sleeve_length_type - target_gender - - bra_strap_type - - bra_support_level - - fabric -- id: aa-1-2-1-2 - name: Cargos - children: [] +- id: aa-1-10 + name: Outerwear + children: + - aa-1-10-1 + - aa-1-10-2 + - aa-1-10-3 + - aa-1-10-4 + - aa-1-10-5 + - aa-1-10-6 attributes: + - age_group - color + - fabric - pattern + - sleeve_length_type - target_gender - - pants_length_type - - fabric - - size -- id: aa-1-2-1-13 - name: Sweatpants +- id: aa-1-10-1 + name: Chaps children: [] attributes: + - age_group - color + - fabric + - neckline - pattern + - size + - sleeve_length_type - target_gender - - pants_length_type +- id: aa-1-10-2 + name: Coats & Jackets + children: + - aa-1-10-2-1 + - aa-1-10-2-2 + - aa-1-10-2-3 + - aa-1-10-2-4 + - aa-1-10-2-5 + - aa-1-10-2-6 + - aa-1-10-2-7 + - aa-1-10-2-8 + - aa-1-10-2-9 + - aa-1-10-2-10 + - aa-1-10-2-11 + - aa-1-10-2-12 + - aa-1-10-2-13 + - aa-1-10-2-14 + - aa-1-10-2-15 + - aa-1-10-2-16 + - aa-1-10-2-17 + attributes: + - age_group + - color - fabric + - neckline + - pattern - size -- id: aa-1-2-8-2 - name: Burkinis + - sleeve_length_type + - target_gender +- id: aa-1-10-2-1 + name: Bolero Jackets children: [] attributes: + - age_group - color + - fabric + - neckline - pattern - - target_gender + - size - sleeve_length_type + - target_gender +- id: aa-1-10-2-2 + name: Bomber Jackets + children: [] + attributes: + - age_group + - color - fabric + - neckline + - pattern - size -- id: aa-1-2-8-3 - name: Classic Bikinis + - sleeve_length_type + - target_gender +- id: aa-1-10-2-3 + name: Capes children: [] attributes: + - age_group - color + - fabric + - neckline - pattern - - target_gender + - size - sleeve_length_type + - target_gender +- id: aa-1-10-2-4 + name: Motorcycle Outerwear + children: [] + attributes: + - age_group + - color - fabric + - neckline + - pattern - size -- id: aa-1-2-8-4 - name: Cover Ups + - sleeve_length_type + - target_gender +- id: aa-1-10-2-5 + name: Overcoats children: [] attributes: + - age_group - color + - fabric + - neckline - pattern - - target_gender + - size - sleeve_length_type + - target_gender +- id: aa-1-10-2-6 + name: Parkas + children: [] + attributes: + - age_group + - color - fabric + - neckline + - pattern - size -- id: aa-1-2-8-9 - name: Rash Guards + - sleeve_length_type + - target_gender +- id: aa-1-10-2-7 + name: Pea Coats children: [] attributes: + - age_group - color + - fabric + - neckline - pattern + - size + - sleeve_length_type - target_gender +- id: aa-1-10-2-8 + name: Ponchos + children: [] + attributes: + - age_group + - color - fabric + - neckline + - pattern - size -- id: aa-1-2-8-10 - name: Skirtinis + - sleeve_length_type + - target_gender +- id: aa-1-10-2-9 + name: Puffer Jackets children: [] attributes: + - age_group - color + - fabric + - neckline - pattern - - target_gender + - size - sleeve_length_type + - target_gender +- id: aa-1-10-2-10 + name: Rain Coats + children: [] + attributes: + - age_group + - color - fabric + - neckline + - pattern - size -- id: aa-1-2-8-13 - name: Swim Boxers + - sleeve_length_type + - target_gender +- id: aa-1-10-2-11 + name: Sport Jackets children: [] attributes: + - age_group - color - - pattern - - target_gender - fabric + - neckline + - pattern - size -- id: aa-1-2-8-14 - name: Swim Briefs + - sleeve_length_type + - target_gender +- id: aa-1-10-2-12 + name: Track Jackets children: [] attributes: + - age_group - color - - pattern - - target_gender - fabric + - neckline + - pattern - size -- id: aa-1-2-8-15 - name: Swim Dresses + - sleeve_length_type + - target_gender +- id: aa-1-10-2-13 + name: Trench Coats children: [] attributes: + - age_group - color - - pattern - - target_gender - - sleeve_length_type - fabric + - neckline + - pattern - size -- id: aa-1-2-8-16 - name: Swim Jammers + - sleeve_length_type + - target_gender +- id: aa-1-10-2-14 + name: Trucker Jackets children: [] attributes: + - age_group - color - - pattern - - target_gender - fabric + - neckline + - pattern - size -- id: aa-1-2-8-17 - name: Swim Trunks + - sleeve_length_type + - target_gender +- id: aa-1-10-2-15 + name: Varsity Jackets children: [] attributes: + - age_group - color - - pattern - - target_gender - fabric + - neckline + - pattern - size -- id: aa-1-2-9-2 - name: Bodysuits + - sleeve_length_type + - target_gender +- id: aa-1-10-2-16 + name: Windbreakers children: [] attributes: + - age_group - color + - fabric + - neckline - pattern + - size - sleeve_length_type - target_gender - - top_length_type - - fabric - - size -- id: aa-1-2-9-3 - name: Cardigans +- id: aa-1-10-2-17 + name: Wrap Coats children: [] attributes: + - age_group - color + - fabric + - neckline - pattern + - size - sleeve_length_type - target_gender - - top_length_type - - fabric - - size -- id: aa-1-2-9-4 - name: Overshirts +- id: aa-1-10-3 + name: Rain Pants children: [] attributes: + - age_group - color + - fabric - pattern + - size - sleeve_length_type - target_gender - - top_length_type - - fabric - - size -- id: aa-1-2-9-5 - name: Polos +- id: aa-1-10-4 + name: Rain Suits children: [] attributes: + - age_group - color + - fabric - pattern + - size - sleeve_length_type - target_gender - - top_length_type - - fabric - - size -- id: aa-1-2-9-6 - name: Shirts +- id: aa-1-10-5 + name: Snow Pants & Suits children: [] attributes: + - age_group - color + - fabric - pattern + - size - sleeve_length_type - target_gender - - top_length_type +- id: aa-1-10-6 + name: Vests + children: [] + attributes: + - age_group + - color - fabric + - pattern - size -- id: aa-1-2-9-7 - name: T-Shirts + - target_gender +- id: aa-1-11 + name: Outfit Sets children: [] attributes: + - age_group - color + - fabric - pattern - - sleeve_length_type + - size - target_gender - - top_length_type +- id: aa-1-12 + name: Pants + children: + - aa-1-12-2 + - aa-1-12-3 + - aa-1-12-4 + - aa-1-12-5 + - aa-1-12-7 + - aa-1-12-8 + - aa-1-12-11 + attributes: + - age_group + - color + - fit - fabric + - pants_length_type + - pattern - size -- id: aa-1-2-11-1 - name: Boxer Briefs + - target_gender + - waist_rise +- id: aa-1-12-2 + name: Cargo Pants children: [] attributes: + - age_group - color - - pattern - - target_gender + - fit - fabric + - pants_length_type + - pattern - size -- id: aa-1-2-11-5 - name: Training Pants + - target_gender + - waist_rise +- id: aa-1-12-3 + name: Chinos children: [] attributes: + - age_group - color + - fit + - fabric + - pants_length_type - pattern + - size - target_gender + - waist_rise +- id: aa-1-12-4 + name: Jeans + children: [] + attributes: + - age_group + - color + - fit - fabric + - pants_length_type + - pattern - size -- id: aa-1-3 - name: Boys' Underwear - children: - - aa-1-3-1 - - aa-1-3-2 - - aa-1-3-3 + - target_gender + - waist_rise +- id: aa-1-12-5 + name: Jeggings + children: [] attributes: - age_group - color - - pattern + - fit - fabric -- id: aa-1-5 - name: Girls' Underwear - children: - - aa-1-5-1 - - aa-1-5-2 - - aa-1-5-3 + - pants_length_type + - pattern + - size + - target_gender + - waist_rise +- id: aa-1-12-7 + name: Joggers + children: [] attributes: - age_group - color - - pattern + - fit - fabric -- id: aa-1-6-1 - name: Bodysuits + - pants_length_type + - pattern + - size + - target_gender + - waist_rise +- id: aa-1-12-8 + name: Leggings children: [] attributes: + - age_group - color - - cup_size - - pattern + - fit - fabric -- id: aa-1-6-4 - name: Camisoles + - pants_length_type + - pattern + - size + - target_gender + - waist_rise +- id: aa-1-12-11 + name: Trousers children: [] attributes: + - age_group - color + - fit + - fabric + - pants_length_type - pattern + - size + - target_gender + - waist_rise +- id: aa-1-13 + name: Clothing Tops + children: + - aa-1-13-1 + - aa-1-13-2 + - aa-1-13-3 + - aa-1-13-5 + - aa-1-13-6 + - aa-1-13-7 + - aa-1-13-8 + - aa-1-13-9 + - aa-1-13-11 + attributes: + - age_group + - color - fabric + - neckline + - pattern - size -- id: aa-1-6-8-1 - name: Garter Belts + - sleeve_length_type + - top_length_type +- id: aa-1-13-1 + name: Blouses children: [] attributes: + - age_group - color - - pattern - fabric + - neckline + - pattern - size -- id: aa-1-6-10-1 + - sleeve_length_type + - target_gender + - top_length_type +- id: aa-1-13-2 name: Bodysuits children: [] attributes: + - age_group - color - - pattern - - shapewear_support_level - fabric + - neckline + - pattern - size -- id: aa-1-6-10-2 - name: Full Body Shapes + - sleeve_length_type + - target_gender + - top_length_type +- id: aa-1-13-3 + name: Cardigans children: [] attributes: + - age_group - color - - pattern - - shapewear_support_level - fabric + - neckline + - pattern - size -- id: aa-1-6-10-3 - name: High Waisted Briefs + - sleeve_length_type + - target_gender + - top_length_type +- id: aa-1-13-5 + name: Overshirts children: [] attributes: + - age_group - color - - pattern - - shapewear_support_level - fabric + - neckline + - pattern - size -- id: aa-1-6-10-4 - name: Thigh Slimmers + - sleeve_length_type + - target_gender + - top_length_type +- id: aa-1-13-6 + name: Polos children: [] attributes: + - age_group - color - - pattern - - shapewear_support_level - fabric + - neckline + - pattern - size -- id: aa-1-6-10-5 - name: Waist Cinchers + - sleeve_length_type + - target_gender + - top_length_type +- id: aa-1-13-7 + name: Shirts children: [] attributes: + - age_group - color - - pattern - - shapewear_support_level - fabric + - neckline + - pattern - size -- id: aa-1-7 - name: Maternity Clothing - children: - - aa-1-7-2 - - aa-1-7-3 - - aa-1-7-4 - - aa-1-7-5 - - aa-1-7-6 - - aa-1-7-7 - - aa-1-7-8 - - aa-1-7-1 + - target_gender + - top_length_type +- id: aa-1-13-8 + name: T-Shirts + children: [] attributes: + - age_group - color - - pattern - fabric -- id: aa-1-7-2 - name: Maternity Dresses + - neckline + - pattern + - size + - sleeve_length_type + - target_gender + - top_length_type +- id: aa-1-13-9 + name: Tank Tops children: [] attributes: + - age_group - color + - fabric - neckline - pattern - - sleeve_length_type - - skirt_dress_length_type - - fabric - size -- id: aa-1-7-3 - name: Maternity One-Pieces + - sleeve_length_type + - target_gender + - top_length_type +- id: aa-1-13-11 + name: Tunics children: [] attributes: + - age_group - color + - fabric - neckline - pattern - - sleeve_length_type - - pants_length_type - - fabric - size -- id: aa-1-7-4 - name: Maternity Pants + - sleeve_length_type + - target_gender + - top_length_type +- id: aa-1-14 + name: Shorts children: - - aa-1-7-4-2 - - aa-1-7-4-3 - - aa-1-7-4-4 - - aa-1-7-4-5 - - aa-1-7-4-7 - - aa-1-7-4-8 - - aa-1-7-4-11 - - aa-1-7-4-12 + - aa-1-14-1 + - aa-1-14-2 + - aa-1-14-3 + - aa-1-14-4 + - aa-1-14-5 + - aa-1-14-6 + - aa-1-14-7 + - aa-1-14-8 attributes: + - age_group - color - fit - - pattern - - pants_length_type - fabric + - pattern - size -- id: aa-1-7-4-2 - name: Cargos + - target_gender + - waist_rise +- id: aa-1-14-1 + name: Bermudas children: [] attributes: + - age_group - color - fit - - pattern - - pants_length_type - fabric + - pattern - size -- id: aa-1-7-4-3 - name: Chinos + - target_gender + - waist_rise +- id: aa-1-14-2 + name: Cargo Shorts children: [] attributes: + - age_group - color - fit - - pattern - - pants_length_type - fabric + - pattern - size -- id: aa-1-7-4-4 - name: Jeans + - target_gender + - waist_rise +- id: aa-1-14-3 + name: Chino Shorts children: [] attributes: + - age_group - color - fit - - pattern - - pants_length_type - fabric + - pattern - size -- id: aa-1-7-4-5 - name: Jeggings + - target_gender + - waist_rise +- id: aa-1-14-4 + name: Short Trousers children: [] attributes: + - age_group - color - fit - - pattern - - pants_length_type - fabric + - pattern - size -- id: aa-1-7-4-7 - name: Joggers + - target_gender + - waist_rise +- id: aa-1-14-5 + name: Denim Shorts children: [] attributes: + - age_group - color - fit - - pattern - - pants_length_type - fabric + - pattern - size -- id: aa-1-7-4-8 - name: Leggings + - target_gender + - waist_rise +- id: aa-1-14-6 + name: Jegging Shorts children: [] attributes: + - age_group - color - fit - - pattern - - pants_length_type - fabric + - pattern - size -- id: aa-1-7-4-11 - name: Skorts + - target_gender + - waist_rise +- id: aa-1-14-7 + name: Jogger Shorts children: [] attributes: + - age_group - color - fit - - pattern - - pants_length_type - fabric + - pattern - size -- id: aa-1-7-4-12 - name: Trousers + - target_gender + - waist_rise +- id: aa-1-14-8 + name: Legging Shorts children: [] attributes: + - age_group - color - fit - - pattern - - pants_length_type - fabric - - size -- id: aa-1-7-5 - name: Maternity Skirts - children: [] - attributes: - - color - pattern - - skirt_dress_length_type - - fabric - size -- id: aa-1-7-6 - name: Maternity Sleepwear + - target_gender + - waist_rise +- id: aa-1-15 + name: Skirts children: [] attributes: + - best_uses - color - - pattern - fabric - - size -- id: aa-1-7-7 - name: Maternity Swimwear - children: - - aa-1-7-7-4 - - aa-1-7-7-5 - - aa-1-7-7-6 - - aa-1-7-7-14 - - aa-1-7-7-20 - - aa-1-7-7-2 - - aa-1-7-7-21 - attributes: - - color - pattern - - fabric - size -- id: aa-1-7-7-4 - name: Burkinis + - skirt_dress_length_type +- id: aa-1-16 + name: Skorts children: [] attributes: + - age_group - color - - pattern - - sleeve_length_type - fabric + - pattern - size -- id: aa-1-7-7-5 - name: Classic Bikinis - children: [] +- id: aa-1-17 + name: Sleepwear & Loungewear + children: + - aa-1-17-1 + - aa-1-17-2 + - aa-1-17-3 + - aa-1-17-4 + - aa-1-17-5 attributes: - color - - pattern - - sleeve_length_type - fabric + - pattern - size -- id: aa-1-7-7-6 - name: Cover Ups + - target_gender +- id: aa-1-17-1 + name: Long Johns children: [] attributes: - color - - pattern - - sleeve_length_type - fabric + - pattern - size -- id: aa-1-7-7-14 - name: Swim Dresses - children: [] + - target_gender +- id: aa-1-17-2 + name: Loungewear + children: + - aa-1-17-2-1 + - aa-1-17-2-2 attributes: + - age_group - color - - pattern - - sleeve_length_type - fabric - - size -- id: aa-1-7-8 - name: Maternity Tops + - pattern + - target_gender +- id: aa-1-17-2-1 + name: Loungewear Bottoms children: - - aa-1-7-8-1 - - aa-1-7-8-2 - - aa-1-7-8-3 - - aa-1-7-8-4 - - aa-1-7-8-5 - - aa-1-7-8-7 - - aa-1-7-8-8 - - aa-1-7-8-11 + - aa-1-17-2-1-1 + - aa-1-17-2-1-2 + - aa-1-17-2-1-3 + - aa-1-17-2-1-4 + - aa-1-17-2-1-5 attributes: + - age_group - color - - neckline - - pattern - - sleeve_length_type - - top_length_type + - fit - fabric + - pants_length_type + - pattern - size -- id: aa-1-7-8-1 - name: Blouses + - skirt_dress_length_type + - target_gender + - waist_rise +- id: aa-1-17-2-1-1 + name: Boxers children: [] attributes: - color - - neckline - - pattern - - sleeve_length_type - - top_length_type + - fit - fabric + - pants_length_type + - pattern - size -- id: aa-1-7-8-2 - name: Bodysuits + - target_gender + - waist_rise +- id: aa-1-17-2-1-2 + name: Joggers children: [] attributes: - color - - neckline - - pattern - - sleeve_length_type - - top_length_type + - fit - fabric + - pants_length_type + - pattern - size -- id: aa-1-7-8-3 - name: Cardigans + - target_gender + - waist_rise +- id: aa-1-17-2-1-3 + name: Leggings children: [] attributes: - color - - neckline - - pattern - - sleeve_length_type - - top_length_type + - fit - fabric + - pants_length_type + - pattern - size -- id: aa-1-7-8-4 - name: Nursing Shirts + - target_gender + - waist_rise +- id: aa-1-17-2-1-4 + name: Shorts children: [] attributes: - - age_group - color - - neckline - - pattern - - sleeve_length_type - - top_length_type + - fit - fabric + - pants_length_type + - pattern - size -- id: aa-1-7-8-5 - name: Overshirts + - target_gender + - waist_rise +- id: aa-1-17-2-1-5 + name: Skirts children: [] attributes: - color - - neckline - - pattern - - sleeve_length_type - - top_length_type + - fit - fabric + - pattern - size -- id: aa-1-7-8-7 - name: Shirts + - skirt_dress_length_type + - target_gender + - waist_rise +- id: aa-1-17-2-2 + name: Loungewear Tops children: [] attributes: + - age_group - color - - neckline - - pattern - - sleeve_length_type - - top_length_type - fabric + - pattern - size -- id: aa-1-7-8-8 - name: T-Shirts + - target_gender + - top_length_type +- id: aa-1-17-3 + name: Nightgowns children: [] attributes: + - age_group - color - - neckline - - pattern - - sleeve_length_type - - top_length_type - fabric + - nightgown_style + - pattern - size -- id: aa-1-7-8-11 - name: Tunics + - skirt_dress_length_type + - sleeve_length_type + - target_gender +- id: aa-1-17-4 + name: Pajamas children: [] attributes: + - age_group - color - - neckline - - pattern - - sleeve_length_type - - top_length_type - fabric + - pattern - size -- id: aa-1-8-2 - name: Men's Undershirts + - target_gender +- id: aa-1-17-5 + name: Robes children: [] attributes: + - age_group - color - - pattern - fabric + - pattern - size -- id: aa-1-8-3 - name: Men's Underwear + - target_gender +- id: aa-1-18 + name: Socks children: - - aa-1-8-3-2 - - aa-1-8-3-3 - - aa-1-8-3-4 - - aa-1-8-3-5 - - aa-1-8-3-6 - - aa-1-8-3-7 - - aa-1-8-3-8 - - aa-1-8-3-9 + - aa-1-18-1 + - aa-1-18-2 + - aa-1-18-3 + - aa-1-18-4 + - aa-1-18-5 + - aa-1-18-6 + - aa-1-18-7 + - aa-1-18-8 + - aa-1-18-9 + - aa-1-18-10 attributes: + - accessory_size + - activity - color - - pattern - - underwear_style - fabric - - size -- id: aa-1-8-3-2 - name: Boxer Briefs - children: [] - attributes: - - color - pattern - - underwear_style - - fabric - - size -- id: aa-1-8-3-3 - name: Boxer Shorts + - target_gender +- id: aa-1-18-1 + name: Ankle Socks children: [] attributes: + - accessory_size + - activity - color - - pattern - - underwear_style - fabric - - size -- id: aa-1-8-3-4 - name: Briefs - children: [] - attributes: - - color - pattern - - underwear_style - - fabric - - size -- id: aa-1-8-3-5 - name: Jockstraps + - target_gender +- id: aa-1-18-2 + name: Athletic Socks children: [] attributes: + - accessory_size + - activity - color - - pattern - - underwear_style - fabric - - size -- id: aa-1-8-3-6 - name: Midway Briefs + - pattern + - target_gender +- id: aa-1-18-3 + name: Crew Socks children: [] attributes: + - accessory_size + - activity - color - - pattern - - underwear_style - fabric - - size -- id: aa-1-8-3-7 - name: Thongs + - pattern + - target_gender +- id: aa-1-18-4 + name: Dance Socks children: [] attributes: + - accessory_size + - activity - color - - pattern - - underwear_style - fabric - - size -- id: aa-1-8-3-8 - name: Trunks + - pattern + - target_gender +- id: aa-1-18-5 + name: Footie Socks children: [] attributes: + - accessory_size + - activity - color - - pattern - - underwear_style - fabric - - size -- id: aa-1-8-3-9 - name: Undershorts + - pattern + - target_gender +- id: aa-1-18-6 + name: Heel Socks children: [] attributes: + - accessory_size + - activity - color - - pattern - - underwear_style - fabric - - size -- id: aa-1-10-2-1 - name: Bolero Jackets + - pattern + - target_gender +- id: aa-1-18-7 + name: Hold Up Socks children: [] attributes: - - age_group + - accessory_size + - activity - color - - neckline + - fabric - pattern - - sleeve_length_type - target_gender - - fabric - - size -- id: aa-1-10-2-2 - name: Bomber Jackets +- id: aa-1-18-8 + name: Knee Socks children: [] attributes: - - age_group + - accessory_size + - activity - color - - neckline + - fabric - pattern - - sleeve_length_type - target_gender - - fabric - - size -- id: aa-1-10-2-3 - name: Capes +- id: aa-1-18-9 + name: Panty Socks children: [] attributes: - - age_group + - accessory_size + - activity - color - - neckline + - fabric - pattern - - sleeve_length_type - target_gender - - fabric - - size -- id: aa-1-10-2-4 - name: Motorcycle Outerwear +- id: aa-1-18-10 + name: Sneaker Socks children: [] attributes: - - age_group + - accessory_size + - activity - color - - neckline + - fabric - pattern - - sleeve_length_type - target_gender +- id: aa-1-19 + name: Suits + children: + - aa-1-19-1 + - aa-1-19-2 + - aa-1-19-3 + attributes: + - age_group + - color - fabric + - pattern - size -- id: aa-1-10-2-5 - name: Overcoats + - target_gender +- id: aa-1-19-1 + name: Pant Suits children: [] attributes: - age_group - color - - neckline - - pattern - - sleeve_length_type - - target_gender + - fit - fabric + - pants_length_type + - pattern - size -- id: aa-1-10-2-6 - name: Parkas + - target_gender + - waist_rise +- id: aa-1-19-2 + name: Skirt Suits children: [] attributes: - age_group - color - - neckline - - pattern - - sleeve_length_type - - target_gender - fabric + - pattern - size -- id: aa-1-10-2-7 - name: Pea Coats + - skirt_dress_length_type + - target_gender +- id: aa-1-19-3 + name: Tuxedos children: [] attributes: - age_group - color - - neckline + - fabric - pattern - - sleeve_length_type + - size - target_gender +- id: aa-1-20 + name: Swimwear + children: + - aa-1-20-2 + - aa-1-20-3 + - aa-1-20-4 + - aa-1-20-5 + - aa-1-20-6 + - aa-1-20-7 + - aa-1-20-12 + - aa-1-20-17 + - aa-1-20-22 + - aa-1-20-23 + - aa-1-20-24 + attributes: + - age_group + - color - fabric + - pattern - size -- id: aa-1-10-2-8 - name: Ponchos + - target_gender +- id: aa-1-20-2 + name: Boardshorts children: [] attributes: - age_group - color - - neckline - - pattern - - sleeve_length_type - - target_gender - fabric + - pattern - size -- id: aa-1-10-2-9 - name: Puffer Jackets + - target_gender +- id: aa-1-20-3 + name: Swim Boxers children: [] attributes: - age_group - color - - neckline - - pattern - - sleeve_length_type - - target_gender - fabric + - pattern - size -- id: aa-1-10-2-10 - name: Rain Coats + - target_gender +- id: aa-1-20-4 + name: Swim Briefs children: [] attributes: - age_group - color - - neckline - - pattern - - sleeve_length_type - - target_gender - fabric + - pattern - size -- id: aa-1-10-2-11 - name: Sport Jackets + - target_gender +- id: aa-1-20-5 + name: Burkinis children: [] attributes: - age_group - color - - neckline + - fabric - pattern + - size - sleeve_length_type - target_gender - - fabric - - size -- id: aa-1-10-2-12 - name: Track Jackets +- id: aa-1-20-6 + name: Classic Bikinis children: [] attributes: - age_group - color - - neckline + - fabric - pattern + - size - sleeve_length_type - target_gender - - fabric - - size -- id: aa-1-10-2-13 - name: Trench Coats +- id: aa-1-20-7 + name: Cover Ups children: [] attributes: - age_group - color - - neckline + - fabric - pattern + - size - sleeve_length_type - target_gender - - fabric - - size -- id: aa-1-10-2-14 - name: Trucker Jackets +- id: aa-1-20-12 + name: Rash Guards children: [] attributes: - age_group - color - - neckline - - pattern - - sleeve_length_type - - target_gender - fabric + - pattern - size -- id: aa-1-10-2-15 - name: Varsity Jackets + - target_gender +- id: aa-1-20-17 + name: Swim Dresses children: [] attributes: - age_group - color - - neckline + - fabric - pattern + - size - sleeve_length_type - target_gender - - fabric - - size -- id: aa-1-10-2-16 - name: Windbreakers +- id: aa-1-20-22 + name: One-Piece Swimsuits children: [] attributes: - age_group - color - - neckline + - fabric - pattern + - size - sleeve_length_type - target_gender - - fabric - - size -- id: aa-1-10-2-17 - name: Wrap Coats +- id: aa-1-20-23 + name: Surf Tops children: [] attributes: - age_group - color - - neckline + - fabric - pattern + - size - sleeve_length_type - target_gender - - fabric - - size -- id: aa-1-12-2 - name: Cargo Pants +- id: aa-1-20-24 + name: Swimwear Tops children: [] attributes: - age_group - color - - fit - - pattern - - target_gender - - waist_rise - - pants_length_type - fabric + - pattern - size -- id: aa-1-14-1 - name: Bermudas - children: [] + - sleeve_length_type + - target_gender +- id: aa-1-21 + name: Uniforms + children: + - aa-1-21-1 + - aa-1-21-2 + - aa-1-21-3 + - aa-1-21-4 + - aa-1-21-5 + - aa-1-21-6 + - aa-1-21-7 + - aa-1-21-8 attributes: - age_group - color - - fit - - pattern - - target_gender - - waist_rise - fabric - - size -- id: aa-1-14-2 - name: Cargo Shorts + - pattern +- id: aa-1-21-1 + name: Contractor Pants & Coveralls children: [] attributes: - age_group - color - - fit - - pattern - - target_gender - - waist_rise - fabric + - pattern - size -- id: aa-1-14-3 - name: Chino Shorts + - target_gender +- id: aa-1-21-2 + name: Flight Suits children: [] attributes: - age_group - color - - fit - - pattern - - target_gender - - waist_rise - fabric + - pattern - size -- id: aa-1-14-5 - name: Denim Shorts + - target_gender +- id: aa-1-21-3 + name: Food Service Uniforms children: [] attributes: - age_group - color - - fit - - pattern - - target_gender - - waist_rise - fabric + - pattern - size -- id: aa-1-14-6 - name: Jegging Shorts + - target_gender +- id: aa-1-21-4 + name: Military Uniforms children: [] attributes: - age_group - color - - fit - - pattern - - target_gender - - waist_rise - fabric + - pattern - size -- id: aa-1-14-7 - name: Jogger Shorts + - target_gender +- id: aa-1-21-5 + name: School Uniforms children: [] attributes: - age_group - color - - fit - - pattern - - target_gender - - waist_rise - fabric + - pants_length_type + - pattern - size -- id: aa-1-14-8 - name: Legging Shorts + - skirt_dress_length_type + - sleeve_length_type +- id: aa-1-21-6 + name: Security Uniforms children: [] attributes: - age_group - color - - fit - - pattern - - target_gender - - waist_rise - fabric - - size -- id: aa-1-17-2-1 - name: Loungewear Bottoms - children: - - aa-1-17-2-1-1 - - aa-1-17-2-1-2 - - aa-1-17-2-1-3 - - aa-1-17-2-1-4 - - aa-1-17-2-1-5 - attributes: - - age_group - - color - - fit - pattern - - target_gender - - waist_rise - - skirt_dress_length_type - - pants_length_type - - fabric - size -- id: aa-1-17-2-1-1 - name: Boxers + - target_gender +- id: aa-1-21-7 + name: Sports Uniforms children: [] attributes: + - activity + - age_group - color - - fit - - pattern - - target_gender - - waist_rise - - pants_length_type - fabric + - pants_length_type + - pattern - size -- id: aa-1-17-2-1-2 - name: Joggers + - sleeve_length_type + - target_gender +- id: aa-1-21-8 + name: White Coats children: [] attributes: + - age_group - color - - fit - - pattern - - target_gender - - waist_rise - - pants_length_type - fabric + - pattern - size -- id: aa-1-17-2-1-3 - name: Leggings - children: [] + - sleeve_length_type + - target_gender +- id: aa-1-22 + name: Wedding & Bridal Party Dresses + children: + - aa-1-22-1 + - aa-1-22-2 attributes: - color - - fit - - pattern - - target_gender - - waist_rise - - pants_length_type - fabric + - neckline + - pattern - size -- id: aa-1-17-2-1-4 - name: Shorts + - skirt_dress_length_type + - sleeve_length_type +- id: aa-1-22-1 + name: Bridal Party Dresses children: [] attributes: - color - - fit - - pattern - - target_gender - - waist_rise - - pants_length_type - fabric + - neckline + - pattern - size -- id: aa-1-17-2-1-5 - name: Skirts + - skirt_dress_length_type + - sleeve_length_type +- id: aa-1-22-2 + name: Wedding Dresses children: [] attributes: - color - - fit - - pattern - - target_gender - - waist_rise - - skirt_dress_length_type - fabric + - neckline + - pattern - size -- id: aa-1-18-1 - name: Ankle Socks - children: [] + - skirt_dress_length_type + - sleeve_length_type +- id: aa-1-23 + name: Traditional & Ceremonial Clothing + children: + - aa-1-23-1 + - aa-1-23-2 attributes: - - accessory_size - - activity + - age_group - color - - pattern - - target_gender - fabric -- id: aa-1-18-2 - name: Athletic Socks - children: [] - attributes: - - accessory_size - - activity - - color - pattern + - size - target_gender - - fabric -- id: aa-1-18-3 - name: Crew Socks +- id: aa-1-23-1 + name: Kimonos children: [] attributes: - - accessory_size - - activity + - age_group - color - - pattern - - target_gender - fabric -- id: aa-1-18-4 - name: Dance Socks - children: [] - attributes: - - accessory_size - - activity - - color - pattern + - size - target_gender - - fabric -- id: aa-1-18-5 - name: Footie Socks +- id: aa-1-23-2 + name: Saris & Lehengas children: [] attributes: - - accessory_size - - activity + - age_group - color + - fabric - pattern + - size - target_gender - - fabric -- id: aa-1-18-6 - name: Heel Socks - children: [] +- id: aa-2 + name: Clothing Accessories + children: + - aa-2-1 + - aa-2-2 + - aa-2-3 + - aa-2-4 + - aa-2-5 + - aa-2-6 + - aa-2-7 + - aa-2-8 + - aa-2-9 + - aa-2-10 + - aa-2-11 + - aa-2-12 + - aa-2-13 + - aa-2-14 + - aa-2-15 + - aa-2-16 + - aa-2-17 + - aa-2-18 + - aa-2-19 + - aa-2-20 + - aa-2-21 + - aa-2-22 + - aa-2-23 + - aa-2-24 + - aa-2-25 + - aa-2-26 + - aa-2-27 + - aa-2-28 + - aa-2-29 + - aa-2-30 + - aa-2-31 attributes: - - accessory_size - - activity + - age_group - color - pattern - target_gender - - fabric -- id: aa-1-18-7 - name: Hold Up Socks +- id: aa-2-1 + name: Arm Warmers & Sleeves children: [] attributes: - accessory_size - activity + - age_group - color + - fabric - pattern - target_gender - - fabric -- id: aa-1-18-8 - name: Knee Socks - children: [] +- id: aa-2-2 + name: Baby & Toddler Clothing Accessories + children: + - aa-2-2-1 + - aa-2-2-2 + - aa-2-2-3 + - aa-2-2-4 attributes: - - accessory_size - - activity - color + - fabric - pattern + - size - target_gender - - fabric -- id: aa-1-18-9 - name: Panty Socks +- id: aa-2-2-1 + name: Baby & Toddler Belts children: [] attributes: - - accessory_size - - activity - color + - clothing_accessory_material - pattern + - size - target_gender - - fabric -- id: aa-1-18-10 - name: Sneaker Socks +- id: aa-2-2-2 + name: Baby & Toddler Gloves & Mittens children: [] attributes: - - accessory_size - - activity - color + - handwear_material - pattern + - size - target_gender - - fabric -- id: aa-1-20-5 - name: Burkinis +- id: aa-2-2-3 + name: Baby & Toddler Hats children: [] attributes: - - age_group - color - - pattern - - target_gender - - sleeve_length_type - fabric + - pattern - size -- id: aa-1-20-6 - name: Classic Bikinis + - target_gender +- id: aa-2-2-4 + name: Baby Protective Wear children: [] attributes: - - age_group - color - - pattern - - target_gender - - sleeve_length_type - fabric + - pattern - size -- id: aa-1-20-7 - name: Cover Ups + - target_gender +- id: aa-2-3 + name: Balaclavas children: [] attributes: - age_group - color + - fabric - pattern - target_gender - - sleeve_length_type - - fabric - - size -- id: aa-1-20-12 - name: Rash Guards +- id: aa-2-4 + name: Bandanas & Headties children: [] attributes: - age_group - color + - fabric - pattern - target_gender - - fabric - - size -- id: aa-1-20-17 - name: Swim Dresses +- id: aa-2-5 + name: Belt Buckles children: [] attributes: - age_group - color + - fabric - pattern - target_gender - - sleeve_length_type - - fabric - - size -- id: aa-2-17-1 - name: Baseball Caps +- id: aa-2-6 + name: Belts children: [] attributes: - accessory_size - age_group - color + - clothing_accessory_material - pattern - target_gender - - fabric -- id: aa-2-17-2 - name: Beanies +- id: aa-2-7 + name: Bridal Accessories children: [] attributes: - - accessory_size - - age_group - color + - fabric - pattern - target_gender - - fabric -- id: aa-2-17-3 - name: Berets +- id: aa-2-8 + name: Button Studs children: [] attributes: - - accessory_size - age_group - color + - fabric - pattern - target_gender - - fabric -- id: aa-2-17-4 - name: Bowler Hats +- id: aa-2-9 + name: Collar Stays children: [] attributes: - accessory_size - age_group - color + - fabric - pattern - target_gender - - fabric -- id: aa-2-17-5 - name: Bucket Hats +- id: aa-2-10 + name: Cufflinks children: [] attributes: - - accessory_size - age_group - color + - jewelry_type + - jewelry_material - pattern - target_gender - - fabric -- id: aa-2-17-6 - name: Cowboy Hats +- id: aa-2-11 + name: Decorative Fans children: [] attributes: - - accessory_size - age_group - color + - decoration_material - pattern - target_gender - - fabric -- id: aa-2-17-7 - name: Fedoras +- id: aa-2-12 + name: Earmuffs children: [] attributes: - - accessory_size - age_group - color + - fabric - pattern - target_gender - - fabric -- id: aa-2-17-8 - name: Flat Caps +- id: aa-2-13 + name: Gloves & Mittens children: [] attributes: - accessory_size - age_group - color + - handwear_material - pattern - target_gender - - fabric -- id: aa-2-17-9 - name: Panama Hats - children: [] +- id: aa-2-14 + name: Hair Accessories + children: + - aa-2-14-1 + - aa-2-14-2 + - aa-2-14-3 + - aa-2-14-4 + - aa-2-14-5 + - aa-2-14-6 + - aa-2-14-7 + - aa-2-14-8 + - aa-2-14-9 + - aa-2-14-10 + - aa-2-14-11 + - aa-2-14-12 attributes: - - accessory_size - age_group - color - pattern - target_gender - - fabric -- id: aa-2-17-10 - name: Snapback Caps +- id: aa-2-14-1 + name: Hair Bun & Volume Shapers children: [] attributes: - - accessory_size - age_group - color + - fabric - pattern - target_gender - - fabric -- id: aa-2-17-11 - name: Sun Hats +- id: aa-2-14-2 + name: Hair Combs children: [] attributes: - - accessory_size - age_group - color + - bristle_material - pattern - target_gender - - fabric -- id: aa-2-17-12 - name: Top Hats +- id: aa-2-14-3 + name: Hair Extensions children: [] attributes: - - accessory_size - age_group - color + - fabric - pattern - target_gender - - fabric -- id: aa-2-17-13 - name: Trilbies +- id: aa-2-14-4 + name: Hair Forks & Sticks children: [] attributes: - - accessory_size - age_group - color + - fabric - pattern - target_gender - - fabric -- id: aa-2-17-14 - name: Trucker Hats +- id: aa-2-14-5 + name: Hair Nets children: [] attributes: - - accessory_size - age_group - color + - fabric - pattern - target_gender - - fabric -- id: aa-2-17-15 - name: Visors +- id: aa-2-14-6 + name: Hair Pins, Claws & Clips children: [] attributes: - - accessory_size - age_group - color + - fabric - pattern - target_gender - - fabric -- id: aa-2-17-16 - name: Winter Hats +- id: aa-2-14-7 + name: Hair Wreaths children: [] attributes: - - accessory_size - age_group - color + - fabric - pattern - target_gender - - fabric -- id: aa-3-3-1 - name: Costume Dresses +- id: aa-2-14-8 + name: Headbands children: [] attributes: - age_group - color + - fabric - pattern - target_gender - - costume_theme - - fabric - - size -- id: aa-3-3-2 - name: Costume Sets +- id: aa-2-14-9 + name: Ponytail Holders children: [] attributes: - age_group - color + - fabric - pattern - target_gender - - costume_theme - - fabric - - size -- id: aa-5-3 - name: Checkbook Covers +- id: aa-2-14-10 + name: Tiaras children: [] attributes: - age_group - color + - fabric - pattern - target_gender -- id: aa-5-4-1 - name: Baguette Handbags +- id: aa-2-14-11 + name: Wig Accessories children: [] attributes: - age_group - color - pattern - target_gender - - bag_case_material -- id: aa-5-4-2 - name: Barrel Bags +- id: aa-2-14-12 + name: Wigs children: [] attributes: - age_group - color + - hair_type + - fabric - pattern - target_gender - - bag_case_material -- id: aa-5-4-3 - name: Beach Bags +- id: aa-2-15 + name: Hand Muffs children: [] attributes: + - accessory_size - age_group - color + - fabric - pattern - target_gender - - bag_case_material -- id: aa-5-4-4 - name: Bucket Bags +- id: aa-2-16 + name: Handkerchiefs children: [] attributes: - age_group - color + - fabric - pattern - target_gender - - bag_case_material -- id: aa-5-4-5 - name: Clutch Bags - children: [] +- id: aa-2-17 + name: Hats + children: + - aa-2-17-1 + - aa-2-17-2 + - aa-2-17-3 + - aa-2-17-4 + - aa-2-17-5 + - aa-2-17-6 + - aa-2-17-7 + - aa-2-17-8 + - aa-2-17-9 + - aa-2-17-10 + - aa-2-17-11 + - aa-2-17-12 + - aa-2-17-13 + - aa-2-17-14 + - aa-2-17-15 + - aa-2-17-16 attributes: + - accessory_size - age_group - color + - fabric - pattern - target_gender - - bag_case_material -- id: aa-5-4-6 - name: Convertible Bags +- id: aa-2-17-1 + name: Baseball Caps children: [] attributes: + - accessory_size - age_group - color + - fabric - pattern - target_gender - - bag_case_material -- id: aa-5-4-7 - name: Cross Body Bags +- id: aa-2-17-2 + name: Beanies children: [] attributes: + - accessory_size - age_group - color + - fabric - pattern - target_gender - - bag_case_material -- id: aa-5-4-8 - name: Doctor Bags +- id: aa-2-17-3 + name: Berets children: [] attributes: + - accessory_size - age_group - color + - fabric - pattern - target_gender - - bag_case_material -- id: aa-5-4-9 - name: Envelope Clutches +- id: aa-2-17-4 + name: Bowler Hats children: [] attributes: + - accessory_size - age_group - color + - fabric - pattern - target_gender - - bag_case_material -- id: aa-5-4-10 - name: Fold Over Clutches +- id: aa-2-17-5 + name: Bucket Hats children: [] attributes: + - accessory_size - age_group - color + - fabric - pattern - target_gender - - bag_case_material -- id: aa-5-4-11 - name: Half-Moon Bags +- id: aa-2-17-6 + name: Cowboy Hats children: [] attributes: + - accessory_size - age_group - color + - fabric - pattern - target_gender - - bag_case_material -- id: aa-5-4-12 - name: Hobo Bags +- id: aa-2-17-7 + name: Fedoras children: [] attributes: + - accessory_size - age_group - color + - fabric - pattern - target_gender - - bag_case_material -- id: aa-5-4-13 - name: Minaudieres +- id: aa-2-17-8 + name: Flat Caps children: [] attributes: + - accessory_size - age_group - color + - fabric - pattern - target_gender - - bag_case_material -- id: aa-5-4-14 - name: Muff Clutches & Bags +- id: aa-2-17-9 + name: Panama Hats children: [] attributes: + - accessory_size - age_group - color + - fabric - pattern - target_gender - - bag_case_material -- id: aa-5-4-15 - name: Saddle Bags +- id: aa-2-17-10 + name: Snapback Caps children: [] attributes: + - accessory_size - age_group - color + - fabric - pattern - target_gender - - bag_case_material -- id: aa-5-4-16 - name: Satchel Bags +- id: aa-2-17-11 + name: Sun Hats children: [] attributes: + - accessory_size - age_group - color + - fabric - pattern - target_gender - - bag_case_material -- id: aa-5-4-17 - name: School Bags +- id: aa-2-17-12 + name: Top Hats children: [] attributes: + - accessory_size - age_group - color + - fabric - pattern - target_gender - - bag_case_material -- id: aa-5-4-18 - name: Shopper Bags +- id: aa-2-17-13 + name: Trilbies children: [] attributes: + - accessory_size - age_group - color + - fabric - pattern - target_gender - - bag_case_material -- id: aa-5-4-19 - name: Shoulder Bags +- id: aa-2-17-14 + name: Trucker Hats children: [] attributes: + - accessory_size - age_group - color + - fabric - pattern - target_gender - - bag_case_material -- id: aa-5-4-20 - name: Trapezoid Bags +- id: aa-2-17-15 + name: Visors children: [] attributes: + - accessory_size - age_group - color + - fabric - pattern - target_gender - - bag_case_material -- id: aa-5-5-2 - name: Card Cases +- id: aa-2-17-16 + name: Winter Hats children: [] attributes: + - accessory_size + - age_group - color + - fabric - pattern - target_gender - - clothing_accessory_material -- id: aa-5-5-3 - name: Coin Purses - children: [] +- id: aa-2-18 + name: Headwear + children: + - aa-2-18-1 + - aa-2-18-2 + - aa-2-18-3 attributes: - color + - fabric - pattern - target_gender - - clothing_accessory_material -- id: aa-5-5-4 - name: Key Cases +- id: aa-2-18-1 + name: Fascinators children: [] attributes: + - age_group - color + - fabric - pattern - target_gender - - clothing_accessory_material -- id: aa-5-5-5 - name: Neck Pouches +- id: aa-2-18-2 + name: Headdresses children: [] attributes: + - age_group - color + - fabric - pattern - target_gender - - clothing_accessory_material -- id: aa-5-5-6 - name: Travel Wallets +- id: aa-2-18-3 + name: Turbans children: [] attributes: + - age_group - color + - fabric - pattern - target_gender - - clothing_accessory_material -- id: aa-5-5-7 - name: Wallets +- id: aa-2-19 + name: Leg Warmers children: [] attributes: + - activity + - age_group - color + - fabric - pattern + - size - target_gender - - clothing_accessory_material -- id: aa-5-5-8 - name: Wrist Bags +- id: aa-2-20 + name: Leis children: [] attributes: - color - pattern - target_gender - - clothing_accessory_material -- id: aa-7-4 - name: Shoe Grips +- id: aa-2-21 + name: Maternity Belts & Support Bands children: [] attributes: - - age_group - color + - fabric - pattern - - shoe_size - target_gender - - clothing_accessory_material -- id: aa-7-5 - name: Shoe Inserts - children: - - aa-7-5-1 - - aa-7-5-2 - - aa-7-5-3 - - aa-7-5-4 +- id: aa-2-22 + name: Neck Gaiters + children: [] attributes: + - accessory_size - age_group - color + - fabric - pattern - - shoe_size - target_gender - - clothing_accessory_material -- id: aa-7-5-1 - name: Anti Slip Steps +- id: aa-2-23 + name: Neckties children: [] attributes: + - accessory_size - age_group - color + - fabric - pattern - - shoe_size - target_gender - - clothing_accessory_material -- id: aa-7-5-2 - name: Arch Supports +- id: aa-2-24 + name: Pinback Buttons children: [] attributes: - - age_group - color + - jewelry_material - pattern - - shoe_size + - shape - target_gender - - clothing_accessory_material -- id: aa-7-5-3 - name: Gel Pads +- id: aa-2-25 + name: Sashes children: [] attributes: - age_group - color + - fabric - pattern - - shoe_size - target_gender - - clothing_accessory_material -- id: aa-7-5-4 - name: Heel Cushions +- id: aa-2-26 + name: Scarves & Shawls children: [] attributes: - age_group - color + - fabric - pattern - - shoe_size - target_gender - - clothing_accessory_material -- id: aa-8-1 - name: Athletic Shoes +- id: aa-2-27 + name: Sunglasses children: [] attributes: - age_group - - closure_type - - color - - pattern - - shoe_fit - - target_gender - - toe_style - - activity - - footwear_material -- id: aa-1-1-7 - name: Activewear Sweatshirts & Hoodies - children: - - aa-1-1-7-2 - - aa-1-1-7-3 - - aa-1-1-7-4 - - aa-1-1-7-5 - attributes: - - activity - color - - neckline + - lens_polarization + - fabric - pattern - target_gender - - fabric - - size -- id: aa-1-1-7-2 - name: Hoodies + - temple_color +- id: aa-2-28 + name: Suspenders children: [] attributes: - - activity - - neckline - - pattern - - sleeve_length_type - - target_gender + - closure_type - color - fabric - - size -- id: aa-1-1-7-3 - name: Sweaters + - pattern + - size + - suspender_style + - target_gender +- id: aa-2-29 + name: Tie Clips children: [] attributes: - - activity - color - - neckline + - jewelry_type + - fabric - pattern - - sleeve_length_type - target_gender - - fabric - - size -- id: aa-1-1-7-4 - name: Sweatshirts +- id: aa-2-30 + name: Wristbands children: [] attributes: - - activity + - age_group - color - - sleeve_length_type - - target_gender - - neckline + - material - pattern - - fabric - - size -- id: aa-1-1-7-5 - name: Track Jackets + - target_gender +- id: aa-2-31 + name: Traditional Clothing Accessories children: [] attributes: - - activity + - accessory_size + - age_group - color - - neckline - - target_gender - - pattern - - sleeve_length_type - fabric - - size -- id: aa-1-1-8 - name: Activewear Vests & Jackets + - pattern + - target_gender +- id: aa-3 + name: Costumes & Accessories children: - - aa-1-1-8-2 - - aa-1-1-8-1 + - aa-3-1 + - aa-3-2 + - aa-3-3 + - aa-3-4 attributes: - - activity - - color + - age_group - pattern - - sleeve_length_type - - target_gender - - fabric - - size -- id: aa-1-1-8-2 - name: Jackets +- id: aa-3-1 + name: Costume Accessories children: [] attributes: - - activity - - color + - accessory_size + - age_group - pattern - - sleeve_length_type - target_gender - - fabric - - size -- id: aa-1-1-8-1 - name: Vests +- id: aa-3-2 + name: Costume Shoes children: [] attributes: - - activity + - age_group - color + - footwear_material - pattern + - shoe_size - target_gender - - fabric - - size -- id: aa-1-2-4-17 - name: Baby & Toddler Coats & Jackets +- id: aa-3-3 + name: Costumes children: - - aa-1-2-4-17-1 - - aa-1-2-4-17-2 - - aa-1-2-4-17-3 - - aa-1-2-4-17-4 - - aa-1-2-4-17-5 - - aa-1-2-4-17-6 - - aa-1-2-4-17-7 - - aa-1-2-4-17-8 - - aa-1-2-4-17-9 - - aa-1-2-4-17-10 - - aa-1-2-4-17-11 - - aa-1-2-4-17-12 - - aa-1-2-4-17-13 - - aa-1-2-4-17-14 - - aa-1-2-4-17-15 - - aa-1-2-4-17-16 + - aa-3-3-1 + - aa-3-3-2 attributes: - - pattern - - sleeve_length_type - - target_gender + - age_group - color + - costume_theme - fabric + - pattern - size -- id: aa-1-2-4-17-1 - name: Bolero Jackets + - target_gender +- id: aa-3-3-1 + name: Costume Dresses children: [] attributes: + - age_group - color - - pattern - - sleeve_length_type - - target_gender + - costume_theme - fabric + - pattern - size -- id: aa-1-2-4-17-2 - name: Bomber Jackets + - target_gender +- id: aa-3-3-2 + name: Costume Sets children: [] attributes: + - age_group - color - - pattern - - sleeve_length_type - - target_gender + - costume_theme - fabric + - pattern - size -- id: aa-1-2-4-17-3 - name: Capes + - target_gender +- id: aa-3-4 + name: Masks children: [] attributes: + - age_group - color + - fabric - pattern - - sleeve_length_type - target_gender - - fabric - - size -- id: aa-1-2-4-17-4 - name: Motorcycle Outerwear - children: [] + - usage_type +- id: aa-4 + name: Handbag & Wallet Accessories + children: + - aa-4-1 + - aa-4-2 + - aa-4-3 attributes: - color - - pattern - - sleeve_length_type - target_gender - - fabric - - size -- id: aa-1-2-4-17-5 - name: Overcoats +- id: aa-4-1 + name: Keychains children: [] attributes: - color - - pattern - - sleeve_length_type - target_gender - - fabric - - size -- id: aa-1-2-4-17-6 - name: Parkas +- id: aa-4-2 + name: Lanyards children: [] attributes: - color - - pattern - - sleeve_length_type - target_gender - - fabric - - size -- id: aa-1-2-4-17-7 - name: Pea Coats +- id: aa-4-3 + name: Wallet Chains children: [] attributes: - color - - pattern - - sleeve_length_type - target_gender - - fabric - - size -- id: aa-1-2-4-17-8 - name: Ponchos +- id: aa-5 + name: Handbags, Wallets & Cases + children: + - aa-5-1 + - aa-5-2 + - aa-5-3 + - aa-5-4 + - aa-5-5 + attributes: + - color + - target_gender +- id: aa-5-1 + name: Badge & Pass Holders children: [] attributes: + - age_group + - attachment_options - color - pattern - - sleeve_length_type - target_gender - - fabric - - size -- id: aa-1-2-4-17-9 - name: Puffer Jackets +- id: aa-5-2 + name: Business Card Cases children: [] attributes: + - age_group - color - pattern - - sleeve_length_type - target_gender - - fabric - - size -- id: aa-1-2-4-17-10 - name: Rain Coats +- id: aa-5-3 + name: Checkbook Covers children: [] attributes: + - age_group - color - pattern - - sleeve_length_type - target_gender - - fabric - - size -- id: aa-1-2-4-17-11 - name: Sport Jackets - children: [] +- id: aa-5-4 + name: Handbags + children: + - aa-5-4-1 + - aa-5-4-2 + - aa-5-4-3 + - aa-5-4-4 + - aa-5-4-5 + - aa-5-4-6 + - aa-5-4-7 + - aa-5-4-8 + - aa-5-4-9 + - aa-5-4-10 + - aa-5-4-11 + - aa-5-4-12 + - aa-5-4-13 + - aa-5-4-14 + - aa-5-4-15 + - aa-5-4-16 + - aa-5-4-17 + - aa-5-4-18 + - aa-5-4-19 + - aa-5-4-20 attributes: + - age_group - color + - bag_case_material - pattern - - sleeve_length_type - target_gender - - fabric - - size -- id: aa-1-2-4-17-12 - name: Track Jackets +- id: aa-5-4-1 + name: Baguette Handbags children: [] attributes: + - age_group - color + - bag_case_material - pattern - - sleeve_length_type - target_gender - - fabric - - size -- id: aa-1-2-4-17-13 - name: Trench Coats +- id: aa-5-4-2 + name: Barrel Bags children: [] attributes: + - age_group - color + - bag_case_material - pattern - - sleeve_length_type - target_gender - - fabric - - size -- id: aa-1-2-4-17-14 - name: Trucker Jackets +- id: aa-5-4-3 + name: Beach Bags children: [] attributes: + - age_group - color + - bag_case_material - pattern - - sleeve_length_type - target_gender - - fabric - - size -- id: aa-1-2-4-17-15 - name: Windbreakers +- id: aa-5-4-4 + name: Bucket Bags children: [] attributes: + - age_group - color + - bag_case_material - pattern - - sleeve_length_type - target_gender - - fabric - - size -- id: aa-1-2-4-17-16 - name: Wrap Coats +- id: aa-5-4-5 + name: Clutch Bags children: [] attributes: + - age_group - color + - bag_case_material - pattern - - sleeve_length_type - target_gender - - fabric - - size -- id: aa-1-2-4-18 - name: Snow Pants & Suits +- id: aa-5-4-6 + name: Convertible Bags children: [] attributes: + - age_group - color + - bag_case_material - pattern - - sleeve_length_type - target_gender - - fabric - - size -- id: aa-1-2-8-22 - name: One-Piece Swimsuits +- id: aa-5-4-7 + name: Cross Body Bags children: [] attributes: + - age_group - color + - bag_case_material - pattern - - sleeve_length_type - target_gender - - fabric - - size -- id: aa-1-2-8-23 - name: Surf Tops +- id: aa-5-4-8 + name: Doctor Bags children: [] attributes: + - age_group - color + - bag_case_material - pattern - - sleeve_length_type - target_gender - - fabric - - size -- id: aa-1-2-8-24 - name: Swimwear Tops +- id: aa-5-4-9 + name: Envelope Clutches children: [] attributes: + - age_group - color + - bag_case_material - pattern - - sleeve_length_type - target_gender - - fabric - - size -- id: aa-1-3-1 - name: Boys' Long Johns +- id: aa-5-4-10 + name: Fold Over Clutches children: [] attributes: - age_group - color + - bag_case_material - pattern - - underwear_style - - fabric - - size -- id: aa-1-3-2 - name: Boys' Underpants - children: - - aa-1-3-2-1 - - aa-1-3-2-2 - - aa-1-3-2-3 - - aa-1-3-2-4 - - aa-1-3-2-5 + - target_gender +- id: aa-5-4-11 + name: Half-Moon Bags + children: [] attributes: - age_group - color + - bag_case_material - pattern - - underwear_style - - fabric - - size -- id: aa-1-3-2-1 - name: Boxer Briefs + - target_gender +- id: aa-5-4-12 + name: Hobo Bags children: [] attributes: - age_group - color + - bag_case_material - pattern - - underwear_style - - fabric - - size -- id: aa-1-3-2-2 - name: Boxer Shorts + - target_gender +- id: aa-5-4-13 + name: Minaudieres children: [] attributes: - age_group - color + - bag_case_material - pattern - - underwear_style - - fabric - - size -- id: aa-1-3-2-3 - name: Briefs + - target_gender +- id: aa-5-4-14 + name: Muff Clutches & Bags children: [] attributes: - age_group - color + - bag_case_material - pattern - - underwear_style - - fabric - - size -- id: aa-1-3-2-4 - name: Midway Briefs + - target_gender +- id: aa-5-4-15 + name: Saddle Bags children: [] attributes: - age_group - color + - bag_case_material - pattern - - underwear_style - - fabric - - size -- id: aa-1-3-2-5 - name: Trunks + - target_gender +- id: aa-5-4-16 + name: Satchel Bags children: [] attributes: - age_group - color + - bag_case_material - pattern - - underwear_style - - fabric - - size -- id: aa-1-3-3 - name: Boys' Undershirts + - target_gender +- id: aa-5-4-17 + name: School Bags children: [] attributes: - age_group - color + - bag_case_material - pattern - - underwear_style - - fabric - - size -- id: aa-1-13 - name: Clothing Tops - children: - - aa-1-13-1 - - aa-1-13-2 - - aa-1-13-3 - - aa-1-13-5 - - aa-1-13-6 - - aa-1-13-7 - - aa-1-13-8 - - aa-1-13-9 - - aa-1-13-11 + - target_gender +- id: aa-5-4-18 + name: Shopper Bags + children: [] attributes: - age_group - color - - neckline + - bag_case_material - pattern - - sleeve_length_type - - top_length_type - - fabric - - size -- id: aa-1-13-1 - name: Blouses + - target_gender +- id: aa-5-4-19 + name: Shoulder Bags children: [] attributes: - age_group - color + - bag_case_material - pattern - - sleeve_length_type - - neckline - target_gender - - top_length_type - - fabric - - size -- id: aa-1-13-2 - name: Bodysuits +- id: aa-5-4-20 + name: Trapezoid Bags children: [] attributes: + - age_group - color - - neckline + - bag_case_material - pattern - - sleeve_length_type - target_gender - - top_length_type - - age_group - - fabric - - size -- id: aa-1-13-3 - name: Cardigans - children: [] +- id: aa-5-5 + name: Wallets & Money Clips + children: + - aa-5-5-2 + - aa-5-5-3 + - aa-5-5-4 + - aa-5-5-5 + - aa-5-5-6 + - aa-5-5-7 + - aa-5-5-8 attributes: - age_group - color - - neckline + - clothing_accessory_material - pattern - - sleeve_length_type - target_gender - - top_length_type - - fabric - - size -- id: aa-1-13-5 - name: Overshirts +- id: aa-5-5-2 + name: Card Cases children: [] attributes: - - age_group - color - - neckline + - clothing_accessory_material - pattern - - sleeve_length_type - target_gender - - top_length_type - - fabric - - size -- id: aa-1-13-6 - name: Polos +- id: aa-5-5-3 + name: Coin Purses children: [] attributes: - - age_group - color - - neckline + - clothing_accessory_material - pattern - - sleeve_length_type - target_gender - - top_length_type - - fabric - - size -- id: aa-1-13-7 - name: Shirts +- id: aa-5-5-4 + name: Key Cases children: [] attributes: - - age_group - color - - neckline + - clothing_accessory_material - pattern - target_gender - - top_length_type - - fabric - - size -- id: aa-1-13-8 - name: T-Shirts +- id: aa-5-5-5 + name: Neck Pouches children: [] attributes: - - neckline - - pattern - - age_group - color - - sleeve_length_type + - clothing_accessory_material + - pattern - target_gender - - top_length_type - - fabric - - size -- id: aa-1-13-9 - name: Tank Tops +- id: aa-5-5-6 + name: Travel Wallets children: [] attributes: - color - - neckline + - clothing_accessory_material - pattern - - sleeve_length_type - target_gender - - top_length_type - - age_group - - fabric - - size -- id: aa-1-13-11 - name: Tunics +- id: aa-5-5-7 + name: Wallets children: [] attributes: - - age_group - color - - neckline + - clothing_accessory_material - pattern - - sleeve_length_type - target_gender - - top_length_type - - fabric - - size -- id: aa-1-5-1 - name: Girls' Long Johns +- id: aa-5-5-8 + name: Wrist Bags children: [] attributes: - - age_group - color + - clothing_accessory_material - pattern - - fabric - - size -- id: aa-1-5-2 - name: Girls' Underpants + - target_gender +- id: aa-6 + name: Jewelry children: - - aa-1-5-2-1 - - aa-1-5-2-2 - - aa-1-5-2-3 - - aa-1-5-2-4 - - aa-1-5-2-5 - - aa-1-5-2-6 - - aa-1-5-2-7 - - aa-1-5-2-8 + - aa-6-1 + - aa-6-2 + - aa-6-3 + - aa-6-4 + - aa-6-5 + - aa-6-6 + - aa-6-7 + - aa-6-8 + - aa-6-9 + - aa-6-10 + - aa-6-11 + - aa-6-12 attributes: - - age_group - color + - jewelry_type + - jewelry_material - pattern - - waist_rise - - fabric - - size -- id: aa-1-5-2-1 - name: Bikinis + - target_gender +- id: aa-6-1 + name: Anklets children: [] attributes: - age_group + - chain_link_type - color + - jewelry_type + - jewelry_material - pattern - - waist_rise - - fabric - - size -- id: aa-1-5-2-2 - name: Boxer Briefs + - target_gender +- id: aa-6-2 + name: Body Jewelry children: [] attributes: - age_group - color + - jewelry_material - pattern - - waist_rise - - fabric -- id: aa-1-5-2-3 - name: Boyshorts + - target_gender +- id: aa-6-3 + name: Bracelets children: [] attributes: - age_group - color + - jewelry_type + - jewelry_material - pattern - - waist_rise - - fabric - - size -- id: aa-1-5-2-4 - name: Briefs + - target_gender +- id: aa-6-4 + name: Brooches & Lapel Pins children: [] attributes: - age_group - color + - jewelry_type + - jewelry_material - pattern - - waist_rise - - fabric - - size -- id: aa-1-5-2-5 - name: Hipsters +- id: aa-6-5 + name: Charms & Pendants children: [] attributes: - age_group - color + - jewelry_type + - jewelry_material - pattern - - waist_rise - - fabric - - size -- id: aa-1-5-2-6 - name: Panties + - target_gender +- id: aa-6-6 + name: Earrings children: [] attributes: - age_group - color + - jewelry_type + - jewelry_material - pattern - - waist_rise - - fabric - - size -- id: aa-1-5-2-7 - name: Period Underwear + - target_gender +- id: aa-6-7 + name: Jewelry Sets children: [] attributes: - - absorbency_level - age_group + - color + - jewelry_type + - jewelry_material - pattern - - underwear_style - - waist_rise - - fabric - - size -- id: aa-1-5-2-8 - name: Thongs + - ring_size + - target_gender +- id: aa-6-8 + name: Necklaces children: [] attributes: - age_group + - color + - jewelry_type + - jewelry_material - pattern - - waist_rise - - fabric - - size -- id: aa-1-5-3 - name: Girls' Undershirts + - target_gender +- id: aa-6-9 + name: Rings children: [] attributes: - age_group - color + - jewelry_type + - jewelry_material - pattern - - fabric - - size -- id: aa-1-6-11 - name: Women's Underpants + - ring_size + - target_gender +- id: aa-6-10 + name: Watch Accessories children: - - aa-1-6-11-1 - - aa-1-6-11-2 - - aa-1-6-11-3 - - aa-1-6-11-4 - - aa-1-6-11-5 - - aa-1-6-11-6 + - aa-6-10-1 + - aa-6-10-2 + - aa-6-10-3 attributes: + - age_group - color + - material - pattern - - underwear_style - - waist_rise - - fabric - - size -- id: aa-1-6-11-1 - name: Bikinis + - target_gender + - watch_accessory_style +- id: aa-6-10-1 + name: Watch Bands children: [] attributes: + - age_group + - clasp_type - color + - band_material - pattern - - underwear_style - - waist_rise - - fabric - - size -- id: aa-1-6-11-2 - name: Boyshorts + - target_gender + - watch_accessory_style +- id: aa-6-10-2 + name: Watch Stickers & Decals children: [] attributes: + - age_group - color - pattern - - underwear_style - - waist_rise - - fabric - - size -- id: aa-1-6-11-3 - name: Briefs + - target_gender +- id: aa-6-10-3 + name: Watch Winders children: [] attributes: + - age_group - color + - connectivity_technology - pattern - - underwear_style - - waist_rise - - fabric - - size -- id: aa-1-6-11-4 - name: G-Strings + - target_gender +- id: aa-6-11 + name: Watches children: [] attributes: - - color + - age_group + - band_color + - watch_material + - case_color + - dial_color - pattern - - underwear_style - - waist_rise - - fabric - - size -- id: aa-1-6-11-5 - name: Period Underwear + - bag_case_material + - watch_display +- id: aa-6-12 + name: Smart Watches children: [] attributes: - - absorbency_level - - color + - age_group + - band_color + - watch_material + - case_color + - dial_color + - face_color - pattern - - underwear_style - - waist_rise - - fabric - - size -- id: aa-1-6-11-6 - name: Thongs + - bag_case_material + - watch_display +- id: aa-7 + name: Shoe Accessories + children: + - aa-7-1 + - aa-7-2 + - aa-7-3 + - aa-7-4 + - aa-7-5 + - aa-7-6 + - aa-7-7 + attributes: + - age_group + - color + - pattern + - target_gender +- id: aa-7-1 + name: Boot Liners children: [] attributes: + - age_group - color + - clothing_accessory_material - pattern - - underwear_style - - waist_rise - - fabric - - size -- id: aa-1-6-12 - name: Women's Undershirts + - shoe_size + - target_gender +- id: aa-7-2 + name: Gaiters children: [] attributes: + - age_group - color + - clothing_accessory_material - pattern - - fabric - - size -- id: aa-1-6-13 - name: Women's Underwear Slips + - shoe_size + - target_gender +- id: aa-7-3 + name: Shoe Covers children: [] attributes: + - age_group - color - - pattern - fabric - - size -- id: aa-1-7-7-20 - name: One-Piece Swimsuits + - pattern + - shoe_size + - target_gender +- id: aa-7-4 + name: Shoe Grips children: [] attributes: + - age_group - color + - clothing_accessory_material - pattern - - sleeve_length_type - - fabric - - size -- id: aa-1-7-7-2 - name: Swim Boxers - children: [] + - shoe_size + - target_gender +- id: aa-7-5 + name: Shoe Inserts + children: + - aa-7-5-1 + - aa-7-5-2 + - aa-7-5-3 + - aa-7-5-4 attributes: + - age_group - color + - clothing_accessory_material - pattern - - fabric - - size -- id: aa-1-7-7-21 - name: Swimwear Tops + - shoe_size + - target_gender +- id: aa-7-5-1 + name: Anti Slip Steps children: [] attributes: + - age_group - color + - clothing_accessory_material - pattern - - sleeve_length_type - - fabric - - size -- id: aa-1-7-1 - name: Nursing Bras + - shoe_size + - target_gender +- id: aa-7-5-2 + name: Arch Supports children: [] attributes: - - bra_closure_type - - bra_coverage - - bra_strap_type + - age_group - color - - cup_size + - clothing_accessory_material - pattern - - fabric -- id: aa-1-8-1 - name: Men's Long Johns + - shoe_size + - target_gender +- id: aa-7-5-3 + name: Gel Pads children: [] attributes: + - age_group - color + - clothing_accessory_material - pattern - - fabric - - size -- id: aa-1-14-4 - name: Short Trousers + - shoe_size + - target_gender +- id: aa-7-5-4 + name: Heel Cushions children: [] attributes: - age_group - color - - fit + - clothing_accessory_material - pattern - - waist_rise + - shoe_size - target_gender - - fabric - - size -- id: aa-1-20-22 - name: One-Piece Swimsuits +- id: aa-7-6 + name: Shoelaces children: [] attributes: - age_group - color + - clothing_accessory_material - pattern - - sleeve_length_type - target_gender - - fabric - - size -- id: aa-1-20-23 - name: Surf Tops +- id: aa-7-7 + name: Spurs children: [] attributes: - age_group - color + - clothing_accessory_material - pattern - - sleeve_length_type - target_gender - - fabric - - size -- id: aa-1-20-3 - name: Swim Boxers - children: [] +- id: aa-8 + name: Shoes + children: + - aa-8-1 + - aa-8-2 + - aa-8-3 + - aa-8-6 + - aa-8-7 + - aa-8-8 attributes: - age_group + - closure_type - color + - footwear_material + - occasion_style - pattern + - shoe_fit + - shoe_size - target_gender - - fabric - - size -- id: aa-1-20-4 - name: Swim Briefs + - toe_style +- id: aa-8-1 + name: Athletic Shoes children: [] attributes: + - activity - age_group + - closure_type - color + - footwear_material - pattern + - shoe_fit - target_gender - - fabric - - size -- id: aa-1-20-24 - name: Swimwear Tops + - toe_style +- id: aa-8-2 + name: Baby & Toddler Shoes + children: + - aa-8-2-1 + - aa-8-2-2 + - aa-8-2-4 + - aa-8-2-5 + - aa-8-2-6 + attributes: + - closure_type + - color + - footwear_material + - pattern + - shoe_fit + - shoe_size + - target_gender + - toe_style +- id: aa-8-2-1 + name: Baby & Toddler Boots children: [] attributes: - - age_group + - boot_style + - closure_type - color + - footwear_material + - occasion_style - pattern - - sleeve_length_type + - shoe_fit + - shoe_size - target_gender - - fabric - - size -- id: aa-6-12 - name: Smart Watches + - toe_style +- id: aa-8-2-2 + name: Baby & Toddler Sandals children: [] attributes: - - age_group - - band_color - - case_color - - dial_color - - face_color + - closure_type + - color + - footwear_material + - occasion_style - pattern - - watch_display - - watch_material - - bag_case_material + - shoe_fit + - shoe_size + - target_gender + - toe_style - id: aa-8-2-4 name: Baby & Toddler Athletic Shoes children: [] attributes: + - activity - closure_type - color + - footwear_material - pattern - shoe_fit - shoe_size - - activity - target_gender - toe_style - - footwear_material - id: aa-8-2-5 name: Baby & Toddler Sneakers children: [] attributes: - closure_type - color + - footwear_material - occasion_style - pattern - shoe_fit - shoe_size - target_gender - toe_style - - footwear_material - id: aa-8-2-6 name: First Steps & Crawlers children: [] attributes: - closure_type - color + - footwear_material + - pattern + - shoe_fit + - shoe_size + - target_gender + - toe_style +- id: aa-8-3 + name: Boots + children: [] + attributes: + - age_group + - closure_type + - color + - heel_height_type + - footwear_material + - occasion_style + - pattern + - shoe_fit + - shoe_size + - target_gender + - toe_style +- id: aa-8-6 + name: Sandals + children: [] + attributes: + - age_group + - closure_type + - color + - heel_height_type + - footwear_material + - occasion_style - pattern - shoe_fit - shoe_size - target_gender - toe_style +- id: aa-8-7 + name: Slippers + children: [] + attributes: + - closure_type + - color + - heel_height_type - footwear_material + - pattern + - shoe_fit + - shoe_size + - target_gender + - toe_style - id: aa-8-8 name: Sneakers children: [] attributes: - activity - - color - closure_type + - color - heel_height_type + - footwear_material - occasion_style - pattern - shoe_fit - shoe_size - toe_style - - footwear_material diff --git a/data/categories/ae_arts_entertainment.yml b/data/categories/ae_arts_entertainment.yml index 9d136044..0d08fa91 100644 --- a/data/categories/ae_arts_entertainment.yml +++ b/data/categories/ae_arts_entertainment.yml @@ -113,6 +113,16 @@ - ae-2-1-1-9-2 attributes: - age_group +- id: ae-2-1-1-9-1 + name: Doll Making Kits + children: [] + attributes: + - age_group +- id: ae-2-1-1-9-2 + name: Wooden Toy Craft Kits + children: [] + attributes: + - age_group - id: ae-2-1-2 name: Art & Crafting Materials children: @@ -238,15 +248,33 @@ - accessory_size - button_snap_closure_type - color + - fastener_material + - pattern +- id: ae-2-1-2-2-1-1 + name: Buttons + children: [] + attributes: + - accessory_size + - button_snap_closure_type + - color + - fastener_material - pattern +- id: ae-2-1-2-2-1-2 + name: Snaps + children: [] + attributes: + - accessory_size + - button_snap_closure_type + - color - fastener_material + - pattern - id: ae-2-1-2-2-2 name: Clasps & Hooks children: [] attributes: - color - - pattern - fastener_material + - pattern - id: ae-2-1-2-2-3 name: Eyelets & Grommets children: @@ -256,8 +284,32 @@ attributes: - accessory_size - color + - fastener_material + - pattern +- id: ae-2-1-2-2-3-1 + name: Eyelets + children: [] + attributes: + - accessory_size + - color + - fastener_material + - pattern +- id: ae-2-1-2-2-3-2 + name: Grommets + children: [] + attributes: + - accessory_size + - color + - fastener_material - pattern +- id: ae-2-1-2-2-3-3 + name: Hooks & Eyes + children: [] + attributes: + - accessory_size + - color - fastener_material + - pattern - id: ae-2-1-2-2-4 name: Hook and Loop Fasteners children: @@ -267,17 +319,45 @@ - ae-2-1-2-2-4-4 attributes: - color + - fastener_material + - pattern +- id: ae-2-1-2-2-4-1 + name: Adhesive-Backed Hook & Loop Fasteners + children: [] + attributes: + - color + - fastener_material + - pattern +- id: ae-2-1-2-2-4-2 + name: Iron-On Hook & Loop Fasteners + children: [] + attributes: + - color + - fastener_material + - pattern +- id: ae-2-1-2-2-4-3 + name: Self-Adhesive Hook & Loop Fasteners + children: [] + attributes: + - color + - fastener_material - pattern +- id: ae-2-1-2-2-4-4 + name: Sew-On Hook & Loop Fasteners + children: [] + attributes: + - color - fastener_material + - pattern - id: ae-2-1-2-2-5 name: Zipper Pulls children: [] attributes: - color + - fastener_material - pattern - shape - zipper_pull_style - - fastener_material - id: ae-2-1-2-2-6 name: Zippers children: @@ -288,6 +368,30 @@ attributes: - color - fastener_material +- id: ae-2-1-2-2-6-1 + name: Closed-End Zippers + children: [] + attributes: + - color + - fastener_material +- id: ae-2-1-2-2-6-2 + name: Open-End Zippers + children: [] + attributes: + - color + - fastener_material +- id: ae-2-1-2-2-6-3 + name: Reversible Zippers + children: [] + attributes: + - color + - fastener_material +- id: ae-2-1-2-2-6-4 + name: Two-Way Zippers + children: [] + attributes: + - color + - fastener_material - id: ae-2-1-2-3 name: Craft Paint, Ink & Glaze children: @@ -328,6 +432,48 @@ attributes: - color - ink_form +- id: ae-2-1-2-3-3-1 + name: Acrylic Ink + children: [] + attributes: + - color + - ink_form +- id: ae-2-1-2-3-3-2 + name: Alcohol Ink + children: [] + attributes: + - color + - ink_form +- id: ae-2-1-2-3-3-3 + name: Calligraphy Ink + children: [] + attributes: + - color + - ink_form +- id: ae-2-1-2-3-3-4 + name: Drawing Ink + children: [] + attributes: + - color + - ink_form +- id: ae-2-1-2-3-3-5 + name: India Ink + children: [] + attributes: + - color + - ink_form +- id: ae-2-1-2-3-3-6 + name: Sumi Ink + children: [] + attributes: + - color + - ink_form +- id: ae-2-1-2-3-3-7 + name: Watercolor Ink + children: [] + attributes: + - color + - ink_form - id: ae-2-1-2-3-4 name: Ceramic & Pottery Glazes children: [] @@ -379,6 +525,41 @@ - ae-2-1-2-4-2-7 attributes: - lumber_wood_type +- id: ae-2-1-2-4-2-1 + name: Craft Wood Blocks + children: [] + attributes: + - lumber_wood_type +- id: ae-2-1-2-4-2-2 + name: Craft Wood Cutouts + children: [] + attributes: + - lumber_wood_type +- id: ae-2-1-2-4-2-3 + name: Craft Wood Dowels + children: [] + attributes: + - lumber_wood_type +- id: ae-2-1-2-4-2-4 + name: Craft Wood Shapes + children: [] + attributes: + - lumber_wood_type +- id: ae-2-1-2-4-2-5 + name: Craft Wood Sheets + children: [] + attributes: + - lumber_wood_type +- id: ae-2-1-2-4-2-6 + name: Craft Wood Slices + children: [] + attributes: + - lumber_wood_type +- id: ae-2-1-2-4-2-7 + name: Craft Wood Sticks + children: [] + attributes: + - lumber_wood_type - id: ae-2-1-2-4-3 name: Papier Mache Shapes children: [] @@ -411,25 +592,68 @@ - ae-2-1-2-5-1-7 attributes: - suitable_for_crafting_material +- id: ae-2-1-2-5-1-1 + name: Clear Glue + children: [] + attributes: + - suitable_for_crafting_material +- id: ae-2-1-2-5-1-2 + name: Craft Glue + children: [] + attributes: + - suitable_for_crafting_material +- id: ae-2-1-2-5-1-3 + name: Fabric Glue + children: [] + attributes: + - suitable_for_crafting_material +- id: ae-2-1-2-5-1-4 + name: Glue Stick + children: [] + attributes: + - suitable_for_crafting_material +- id: ae-2-1-2-5-1-5 + name: Liquid Glue + children: [] + attributes: + - suitable_for_crafting_material +- id: ae-2-1-2-5-1-6 + name: School Glue + children: [] + attributes: + - suitable_for_crafting_material +- id: ae-2-1-2-5-1-7 + name: White Glue + children: [] + attributes: + - fiber_art_project_type - id: ae-2-1-2-5-2 name: Craft Magnets children: [] attributes: - - shape - magnet_type + - shape - id: ae-2-1-2-5-3 name: Decorative Tape children: [] attributes: - color - - pattern - decoration_material + - pattern - id: ae-2-1-2-5-4 name: Floral Tape children: - ae-2-1-2-5-4-1 - ae-2-1-2-5-4-2 attributes: [] +- id: ae-2-1-2-5-4-1 + name: Corsage Tape + children: [] + attributes: [] +- id: ae-2-1-2-5-4-2 + name: Stem Tape + children: [] + attributes: [] - id: ae-2-1-2-5-5 name: Fusible Tape children: @@ -438,6 +662,22 @@ - ae-2-1-2-5-5-3 - ae-2-1-2-5-5-4 attributes: [] +- id: ae-2-1-2-5-5-1 + name: Fusible Bonding Tape + children: [] + attributes: [] +- id: ae-2-1-2-5-5-2 + name: Fusible Hem Tape + children: [] + attributes: [] +- id: ae-2-1-2-5-5-3 + name: Fusible Seam Tape + children: [] + attributes: [] +- id: ae-2-1-2-5-5-4 + name: Fusible Web Tape + children: [] + attributes: [] - id: ae-2-1-2-6 name: Crafting Fibers children: @@ -454,18 +694,63 @@ - ae-2-1-2-6-1-2 attributes: - material -- id: ae-2-1-2-6-2 - name: Thread & Floss - children: - - ae-2-1-2-6-2-1 - - ae-2-1-2-6-2-2 - - ae-2-1-2-6-2-4 - - ae-2-1-2-6-2-6 - - ae-2-1-2-6-2-7 +- id: ae-2-1-2-6-1-1 + name: Beading Thread + children: [] + attributes: + - material +- id: ae-2-1-2-6-1-2 + name: Chain Rolls + children: [] + attributes: + - material +- id: ae-2-1-2-6-2 + name: Thread & Floss + children: + - ae-2-1-2-6-2-1 + - ae-2-1-2-6-2-2 + - ae-2-1-2-6-2-4 + - ae-2-1-2-6-2-6 + - ae-2-1-2-6-2-7 + attributes: + - color + - fabric + - pattern +- id: ae-2-1-2-6-2-1 + name: Crochet Thread + children: [] + attributes: + - color + - fabric + - pattern +- id: ae-2-1-2-6-2-2 + name: Cross-Stitch Thread + children: [] attributes: - color + - fabric + - pattern +- id: ae-2-1-2-6-2-4 + name: Quilting Thread + children: [] + attributes: + - color + - fabric - pattern +- id: ae-2-1-2-6-2-6 + name: Sewing Thread + children: [] + attributes: + - color + - fabric + - pattern +- id: ae-2-1-2-6-2-7 + name: Upholstery Thread + children: [] + attributes: + - color - fabric + - pattern - id: ae-2-1-2-6-3 name: Unspun Fiber children: @@ -478,17 +763,66 @@ - ae-2-1-2-6-3-7 attributes: - color + - fabric + - pattern +- id: ae-2-1-2-6-3-1 + name: Batt Fiber + children: [] + attributes: + - color + - fabric + - pattern +- id: ae-2-1-2-6-3-2 + name: Cloud Fiber + children: [] + attributes: + - color + - fabric + - pattern +- id: ae-2-1-2-6-3-3 + name: Fleece Fiber + children: [] + attributes: + - color + - fabric + - pattern +- id: ae-2-1-2-6-3-4 + name: Roving Fiber + children: [] + attributes: + - color + - fabric + - pattern +- id: ae-2-1-2-6-3-5 + name: Sliver Fiber + children: [] + attributes: + - color + - fabric + - pattern +- id: ae-2-1-2-6-3-6 + name: Staple Fiber + children: [] + attributes: + - color + - fabric - pattern +- id: ae-2-1-2-6-3-7 + name: Top Fiber + children: [] + attributes: + - color - fabric + - pattern - id: ae-2-1-2-6-4 name: Yarn children: [] attributes: - color - knitting_project_type + - fabric - pattern - yarn_weight_category - - fabric - id: ae-2-1-2-7 name: Crafting Wire children: @@ -509,8 +843,8 @@ children: [] attributes: - color - - pattern - wire_rope_material + - pattern - id: ae-2-1-2-7-3 name: Jewelry & Beading Wire children: @@ -524,8 +858,64 @@ attributes: - color - jewelry_project_type + - wire_rope_material + - pattern +- id: ae-2-1-2-7-3-1 + name: Accu-Flex Wire + children: [] + attributes: + - color + - jewelry_project_type + - wire_rope_material + - pattern +- id: ae-2-1-2-7-3-2 + name: Beading Wire + children: [] + attributes: + - color + - jewelry_project_type + - wire_rope_material + - pattern +- id: ae-2-1-2-7-3-3 + name: Craft Wire + children: [] + attributes: + - color + - jewelry_project_type + - wire_rope_material + - pattern +- id: ae-2-1-2-7-3-4 + name: French Wire + children: [] + attributes: + - color + - jewelry_project_type + - wire_rope_material + - pattern +- id: ae-2-1-2-7-3-5 + name: Memory Wire + children: [] + attributes: + - color + - jewelry_project_type + - wire_rope_material + - pattern +- id: ae-2-1-2-7-3-6 + name: Soft-Flex Wire + children: [] + attributes: + - color + - jewelry_project_type + - wire_rope_material - pattern +- id: ae-2-1-2-7-3-7 + name: Tiger Tail Wire + children: [] + attributes: + - color + - jewelry_project_type - wire_rope_material + - pattern - id: ae-2-1-2-8 name: Embellishments & Trims children: @@ -558,25 +948,105 @@ attributes: - applique_patch_shape - color + - embellishment_trim_material + - pattern + - textile_craft_project_type + - theme +- id: ae-2-1-2-8-1-1 + name: Beaded Patches + children: [] + attributes: + - color + - embellishment_trim_material + - patch_shape + - pattern + - textile_craft_project_type + - theme +- id: ae-2-1-2-8-1-2 + name: Embellished Patches + children: [] + attributes: + - color + - embellishment_trim_material + - patch_shape + - pattern + - textile_craft_project_type + - theme +- id: ae-2-1-2-8-1-3 + name: Embroidered Patches + children: [] + attributes: + - color + - embellishment_trim_material + - patch_shape + - pattern + - textile_craft_project_type + - theme +- id: ae-2-1-2-8-1-4 + name: Fabric Patches + children: [] + attributes: + - color + - embellishment_trim_material + - patch_shape + - pattern + - textile_craft_project_type + - theme +- id: ae-2-1-2-8-1-5 + name: Iron-On Appliques + children: [] + attributes: + - applique_shape + - color + - embellishment_trim_material + - pattern + - textile_craft_project_type + - theme +- id: ae-2-1-2-8-1-6 + name: Motif Patches + children: [] + attributes: + - color + - embellishment_trim_material + - patch_shape + - pattern + - textile_craft_project_type + - theme +- id: ae-2-1-2-8-1-7 + name: Sequin Patches + children: [] + attributes: + - color + - embellishment_trim_material + - patch_shape - pattern - textile_craft_project_type - theme +- id: ae-2-1-2-8-1-8 + name: Sew-On Appliques + children: [] + attributes: + - applique_shape + - color - embellishment_trim_material + - pattern + - textile_craft_project_type + - theme - id: ae-2-1-2-8-2 name: Beads children: [] attributes: - bead_shape - color - - pattern - embellishment_trim_material + - pattern - id: ae-2-1-2-8-3 name: Bows & Yo-Yos children: [] attributes: - color - - pattern - embellishment_trim_material + - pattern - id: ae-2-1-2-8-4 name: Decorative Stickers children: @@ -587,11 +1057,41 @@ - adhesive_type - celebration_type - color + - embellishment_trim_material - pattern - theme +- id: ae-2-1-2-8-4-1 + name: 3D Decorative Stickers + children: [] + attributes: + - adhesive_type + - celebration_type + - color - embellishment_trim_material -- id: ae-2-1-2-8-5 - name: Elastic + - pattern + - theme +- id: ae-2-1-2-8-4-2 + name: Embossed Decorative Stickers + children: [] + attributes: + - adhesive_type + - celebration_type + - color + - embellishment_trim_material + - pattern + - theme +- id: ae-2-1-2-8-4-4 + name: Puffy Decorative Stickers + children: [] + attributes: + - adhesive_type + - celebration_type + - color + - embellishment_trim_material + - pattern + - theme +- id: ae-2-1-2-8-5 + name: Elastic children: - ae-2-1-2-8-5-1 - ae-2-1-2-8-5-2 @@ -601,8 +1101,50 @@ - ae-2-1-2-8-5-6 attributes: - color + - embellishment_trim_material + - pattern +- id: ae-2-1-2-8-5-1 + name: Braided Embellishments + children: [] + attributes: + - color + - embellishment_trim_material + - pattern +- id: ae-2-1-2-8-5-2 + name: Buttonholes + children: [] + attributes: + - color + - embellishment_trim_material + - pattern +- id: ae-2-1-2-8-5-3 + name: Clear Embellishments + children: [] + attributes: + - color + - embellishment_trim_material + - pattern +- id: ae-2-1-2-8-5-4 + name: Fold-Over Embellishments + children: [] + attributes: + - color + - embellishment_trim_material + - pattern +- id: ae-2-1-2-8-5-5 + name: Knit Embellishments + children: [] + attributes: + - color + - embellishment_trim_material - pattern +- id: ae-2-1-2-8-5-6 + name: Woven Embellishments + children: [] + attributes: + - color - embellishment_trim_material + - pattern - id: ae-2-1-2-8-6 name: Feathers children: @@ -617,13 +1159,62 @@ - color - craft_project_type - pattern +- id: ae-2-1-2-8-6-1 + name: Goose Feathers + children: [] + attributes: + - color + - craft_project_type + - pattern +- id: ae-2-1-2-8-6-2 + name: Marabou Feathers + children: [] + attributes: + - color + - craft_project_type + - pattern +- id: ae-2-1-2-8-6-3 + name: Ostrich Feathers + children: [] + attributes: + - color + - craft_project_type + - pattern +- id: ae-2-1-2-8-6-4 + name: Peacock Feathers + children: [] + attributes: + - color + - craft_project_type + - pattern +- id: ae-2-1-2-8-6-5 + name: Rooster Feathers + children: [] + attributes: + - color + - craft_project_type + - pattern +- id: ae-2-1-2-8-6-6 + name: Synthetic Feathers + children: [] + attributes: + - color + - craft_project_type + - pattern +- id: ae-2-1-2-8-6-7 + name: Turkey Feathers + children: [] + attributes: + - color + - craft_project_type + - pattern - id: ae-2-1-2-8-7 name: Jewelry Findings children: [] attributes: - color - - pattern - jewelry_material + - pattern - id: ae-2-1-2-8-8 name: Loose Stones children: @@ -638,6 +1229,54 @@ - color - pattern - stone_shape +- id: ae-2-1-2-8-8-1 + name: Acrylic Stones + children: [] + attributes: + - color + - pattern + - stone_shape +- id: ae-2-1-2-8-8-2 + name: Cabochons + children: [] + attributes: + - color + - pattern + - stone_shape +- id: ae-2-1-2-8-8-3 + name: Crystals + children: [] + attributes: + - color + - pattern + - stone_shape +- id: ae-2-1-2-8-8-4 + name: Druzy Stones + children: [] + attributes: + - color + - pattern + - stone_shape +- id: ae-2-1-2-8-8-5 + name: Glass Stones + children: [] + attributes: + - color + - pattern + - stone_shape +- id: ae-2-1-2-8-8-6 + name: Natural Stones + children: [] + attributes: + - color + - pattern + - stone_shape +- id: ae-2-1-2-8-8-7 + name: Pearls + children: [] + attributes: + - color + - pattern - id: ae-2-1-2-8-9 name: Rhinestones & Flatbacks children: @@ -649,6 +1288,34 @@ - color - pattern - stone_shape +- id: ae-2-1-2-8-9-1 + name: Flatbacks + children: [] + attributes: + - color + - pattern + - stone_shape +- id: ae-2-1-2-8-9-2 + name: Hotfix Rhinestones + children: [] + attributes: + - color + - pattern + - stone_shape +- id: ae-2-1-2-8-9-3 + name: Self-Adhesive Rhinestones + children: [] + attributes: + - color + - pattern + - stone_shape +- id: ae-2-1-2-8-9-4 + name: Sew-On Rhinestones + children: [] + attributes: + - color + - pattern + - stone_shape - id: ae-2-1-2-8-10 name: Ribbons & Trim children: @@ -666,57 +1333,220 @@ attributes: - color - craft_project_type - - pattern - embellishment_trim_material -- id: ae-2-1-2-8-11 - name: Sequins & Glitter - children: - - ae-2-1-2-8-11-1 - - ae-2-1-2-8-11-2 - - ae-2-1-2-8-11-3 - - ae-2-1-2-8-11-4 - - ae-2-1-2-8-11-5 + - pattern +- id: ae-2-1-2-8-10-1 + name: Beaded Trim + children: [] attributes: - color - craft_project_type - - sequin_glitter_shape -- id: ae-2-1-2-8-12 - name: Sew-in Labels - children: - - ae-2-1-2-8-12-1 - - ae-2-1-2-8-12-2 - - ae-2-1-2-8-12-3 - - ae-2-1-2-8-12-4 - - ae-2-1-2-8-12-5 + - embellishment_trim_material + - pattern +- id: ae-2-1-2-8-10-2 + name: Fringe Trim + children: [] attributes: - color - - labelling_project_type - - pattern + - craft_project_type - embellishment_trim_material -- id: ae-2-1-2-9 - name: Embossing Powder + - pattern +- id: ae-2-1-2-8-10-3 + name: Grosgrain Ribbons children: [] attributes: - color - - embossing_project_type - - finish -- id: ae-2-1-2-10 - name: Filling & Padding Material - children: - - ae-2-1-2-10-1 - - ae-2-1-2-10-2 - - ae-2-1-2-10-3 - attributes: - - material -- id: ae-2-1-2-10-1 - name: Batting & Stuffing + - craft_project_type + - embellishment_trim_material + - pattern +- id: ae-2-1-2-8-10-4 + name: Lace Trim children: [] attributes: - - filling_padding_project_type - - material - - thickness_type -- id: ae-2-1-2-10-2 - name: Filling Pellets + - color + - craft_project_type + - embellishment_trim_material + - pattern +- id: ae-2-1-2-8-10-5 + name: Organza Ribbons + children: [] + attributes: + - color + - craft_project_type + - embellishment_trim_material + - pattern +- id: ae-2-1-2-8-10-6 + name: Pom-Pom Trim + children: [] + attributes: + - color + - craft_project_type + - embellishment_trim_material + - pattern +- id: ae-2-1-2-8-10-7 + name: Ric-Rac Trim + children: [] + attributes: + - color + - craft_project_type + - embellishment_trim_material + - pattern +- id: ae-2-1-2-8-10-8 + name: Satin Ribbons + children: [] + attributes: + - color + - craft_project_type + - embellishment_trim_material + - pattern +- id: ae-2-1-2-8-10-9 + name: Sequin Trim + children: [] + attributes: + - color + - craft_project_type + - embellishment_trim_material + - pattern +- id: ae-2-1-2-8-10-10 + name: Tassel Trim + children: [] + attributes: + - color + - craft_project_type + - embellishment_trim_material + - pattern +- id: ae-2-1-2-8-10-11 + name: Velvet Ribbons + children: [] + attributes: + - color + - craft_project_type + - embellishment_trim_material + - pattern +- id: ae-2-1-2-8-11 + name: Sequins & Glitter + children: + - ae-2-1-2-8-11-1 + - ae-2-1-2-8-11-2 + - ae-2-1-2-8-11-3 + - ae-2-1-2-8-11-4 + - ae-2-1-2-8-11-5 + attributes: + - color + - craft_project_type + - sequin_glitter_shape +- id: ae-2-1-2-8-11-1 + name: Glitter Flakes + children: [] + attributes: + - color + - craft_project_type + - glitter_shape +- id: ae-2-1-2-8-11-2 + name: Glitter Glue + children: [] + attributes: + - color + - craft_project_type + - glitter_shape +- id: ae-2-1-2-8-11-3 + name: Glitter Powder + children: [] + attributes: + - color + - craft_project_type + - glitter_shape +- id: ae-2-1-2-8-11-4 + name: Loose Glitter + children: [] + attributes: + - color + - craft_project_type + - glitter_shape +- id: ae-2-1-2-8-11-5 + name: Sequins + children: [] + attributes: + - color + - craft_project_type + - sequin_shape +- id: ae-2-1-2-8-12 + name: Sew-in Labels + children: + - ae-2-1-2-8-12-1 + - ae-2-1-2-8-12-2 + - ae-2-1-2-8-12-3 + - ae-2-1-2-8-12-4 + - ae-2-1-2-8-12-5 + attributes: + - color + - labelling_project_type + - embellishment_trim_material + - pattern +- id: ae-2-1-2-8-12-1 + name: Care Labels + children: [] + attributes: + - color + - labelling_project_type + - embellishment_trim_material + - pattern +- id: ae-2-1-2-8-12-2 + name: Custom Labels + children: [] + attributes: + - color + - labelling_project_type + - embellishment_trim_material + - pattern +- id: ae-2-1-2-8-12-3 + name: Logo Labels + children: [] + attributes: + - color + - labelling_project_type + - embellishment_trim_material + - pattern +- id: ae-2-1-2-8-12-4 + name: Name Labels + children: [] + attributes: + - color + - labelling_project_type + - embellishment_trim_material + - pattern +- id: ae-2-1-2-8-12-5 + name: Size Labels + children: [] + attributes: + - color + - labelling_project_type + - embellishment_trim_material + - pattern +- id: ae-2-1-2-9 + name: Embossing Powder + children: [] + attributes: + - color + - embossing_project_type + - finish +- id: ae-2-1-2-10 + name: Filling & Padding Material + children: + - ae-2-1-2-10-1 + - ae-2-1-2-10-2 + - ae-2-1-2-10-3 + attributes: + - material +- id: ae-2-1-2-10-1 + name: Batting & Stuffing + children: [] + attributes: + - filling_padding_project_type + - material + - thickness_type +- id: ae-2-1-2-10-2 + name: Filling Pellets children: [] attributes: - filling_padding_project_type @@ -764,6 +1594,36 @@ attributes: - clay_texture - color +- id: ae-2-1-2-12-1-1-1 + name: Air-Dry Clay + children: [] + attributes: + - clay_texture + - color +- id: ae-2-1-2-12-1-1-2 + name: Oven-Bake Clay + children: [] + attributes: + - clay_texture + - color +- id: ae-2-1-2-12-1-1-3 + name: Polymer Clay + children: [] + attributes: + - clay_texture + - color +- id: ae-2-1-2-12-1-1-4 + name: Sculpting Clay + children: [] + attributes: + - clay_texture + - color +- id: ae-2-1-2-12-1-1-5 + name: Self-Hardening Clay + children: [] + attributes: + - clay_texture + - color - id: ae-2-1-2-12-1-2 name: Modeling Dough children: [] @@ -786,6 +1646,20 @@ - color - pattern - pottery_sculpting_project_type +- id: ae-2-1-2-12-3-1 + name: Plaster Gauze Rolls + children: [] + attributes: + - color + - pattern + - pottery_sculpting_project_type +- id: ae-2-1-2-12-3-2 + name: Plaster Gauze Strips + children: [] + attributes: + - color + - pattern + - pottery_sculpting_project_type - id: ae-2-1-2-12-4 name: Pottery Slips children: [] @@ -804,6 +1678,36 @@ attributes: - color - scent +- id: ae-2-1-2-13-1 + name: Beeswax + children: [] + attributes: + - color + - scent +- id: ae-2-1-2-13-2 + name: Gel Wax + children: [] + attributes: + - color + - scent +- id: ae-2-1-2-13-3 + name: Palm Wax + children: [] + attributes: + - color + - scent +- id: ae-2-1-2-13-4 + name: Paraffin + children: [] + attributes: + - color + - scent +- id: ae-2-1-2-13-5 + name: Soy Wax + children: [] + attributes: + - color + - scent - id: ae-2-1-2-14 name: Textiles children: @@ -821,8 +1725,8 @@ - ae-2-1-2-14-1-2 - ae-2-1-2-14-1-3 attributes: - - paper_size - canvas_material + - paper_size - id: ae-2-1-2-14-1-1 name: Needlecraft Canvas children: @@ -834,8 +1738,29 @@ - material - paper_size - pattern -- id: ae-2-1-2-14-1-2 - name: Painting Canvas +- id: ae-2-1-2-14-1-1-1 + name: Aida Cloth + children: [] + attributes: + - color + - paper_size + - pattern +- id: ae-2-1-2-14-1-1-2 + name: Evenweave Fabric + children: [] + attributes: + - color + - paper_size + - pattern +- id: ae-2-1-2-14-1-1-3 + name: Linen Fabric + children: [] + attributes: + - color + - paper_size + - pattern +- id: ae-2-1-2-14-1-2 + name: Painting Canvas children: - ae-2-1-2-14-1-2-1 - ae-2-1-2-14-1-2-2 @@ -844,9 +1769,39 @@ - canvas_finish - canvas_texture - color + - painting_canvas_material + - paper_size + - pattern +- id: ae-2-1-2-14-1-2-1 + name: Canvas Panels + children: [] + attributes: + - canvas_finish + - canvas_texture + - color + - painting_canvas_material + - paper_size + - pattern +- id: ae-2-1-2-14-1-2-2 + name: Canvas Rolls + children: [] + attributes: + - canvas_finish + - canvas_texture + - color + - painting_canvas_material - paper_size - pattern +- id: ae-2-1-2-14-1-2-3 + name: Stretched Canvas + children: [] + attributes: + - canvas_finish + - canvas_texture + - color - painting_canvas_material + - paper_size + - pattern - id: ae-2-1-2-14-1-3 name: Plastic Canvas children: @@ -857,6 +1812,27 @@ - color - paper_size - pattern +- id: ae-2-1-2-14-1-3-1 + name: Plastic Canvas Rolls + children: [] + attributes: + - color + - paper_size + - pattern +- id: ae-2-1-2-14-1-3-2 + name: Plastic Canvas Shapes + children: [] + attributes: + - color + - paper_size + - pattern +- id: ae-2-1-2-14-1-3-3 + name: Plastic Canvas Sheets + children: [] + attributes: + - color + - paper_size + - pattern - id: ae-2-1-2-14-2 name: Fabric children: @@ -874,6 +1850,76 @@ - care_instructions - color - pattern +- id: ae-2-1-2-14-2-1 + name: Chiffon + children: [] + attributes: + - care_instructions + - color + - pattern +- id: ae-2-1-2-14-2-2 + name: Cotton + children: [] + attributes: + - care_instructions + - color + - pattern +- id: ae-2-1-2-14-2-3 + name: Denim + children: [] + attributes: + - care_instructions + - color + - pattern +- id: ae-2-1-2-14-2-4 + name: Flannel + children: [] + attributes: + - care_instructions + - color + - pattern +- id: ae-2-1-2-14-2-5 + name: Fleece + children: [] + attributes: + - care_instructions + - color + - pattern +- id: ae-2-1-2-14-2-6 + name: Linen + children: [] + attributes: + - care_instructions + - color + - pattern +- id: ae-2-1-2-14-2-7 + name: Organza + children: [] + attributes: + - care_instructions + - color + - pattern +- id: ae-2-1-2-14-2-8 + name: Satin + children: [] + attributes: + - care_instructions + - color + - pattern +- id: ae-2-1-2-14-2-9 + name: Silk + children: [] + attributes: + - care_instructions + - color + - pattern +- id: ae-2-1-2-14-2-10 + name: Velvet + children: [] + attributes: + - care_instructions + - color + - pattern - id: ae-2-1-2-14-3 name: Interfacing children: @@ -884,6 +1930,22 @@ - color - fabric_design - pattern +- id: ae-2-1-2-14-3-1 + name: Fusible Interfacing + children: [] + attributes: + - care_instructions + - color + - fabric_design + - pattern +- id: ae-2-1-2-14-3-2 + name: Sew-In Interfacing + children: [] + attributes: + - care_instructions + - color + - fabric_design + - pattern - id: ae-2-1-2-14-4 name: Printable Fabric children: @@ -897,6 +1959,42 @@ - compatible_printer - paper_size - pattern +- id: ae-2-1-2-14-4-1 + name: Printable Canvas + children: [] + attributes: + - care_instructions + - color + - compatible_printer + - paper_size + - pattern +- id: ae-2-1-2-14-4-2 + name: Printable Cotton + children: [] + attributes: + - care_instructions + - color + - compatible_printer + - paper_size + - pattern +- id: ae-2-1-2-14-4-3 + name: Printable Silk + children: [] + attributes: + - care_instructions + - color + - compatible_printer + - paper_size + - pattern +- id: ae-2-1-2-14-4-4 + name: Printable Transfers + children: [] + attributes: + - care_instructions + - color + - compatible_printer + - paper_size + - pattern - id: ae-2-1-2-15 name: Wick Tabs children: @@ -906,12 +2004,35 @@ attributes: - accessory_size - material +- id: ae-2-1-2-15-1 + name: Metal Wick Tabs + children: [] + attributes: + - accessory_size + - material +- id: ae-2-1-2-15-2 + name: Pre-Tabbed Wick Tabs + children: [] + attributes: + - accessory_size + - material +- id: ae-2-1-2-15-3 + name: Self-Adhesive Wick Tabs + children: [] + attributes: + - accessory_size + - material - id: ae-2-1-2-16 name: Wicks children: - ae-2-1-2-16-1 attributes: - material +- id: ae-2-1-2-16-1 + name: Pre-Waxed Wicks + children: [] + attributes: + - material - id: ae-2-1-3 name: Art & Crafting Tool Accessories children: @@ -976,44 +2097,151 @@ - ae-2-1-3-6-20 attributes: - material -- id: ae-2-1-3-7 - name: Stamp Blocks +- id: ae-2-1-3-6-1 + name: Bobbin Rests children: [] attributes: - - color - material - - pattern -- id: ae-2-1-4 - name: Art & Crafting Tools - children: - - ae-2-1-4-1 - - ae-2-1-4-2 - - ae-2-1-4-3 - - ae-2-1-4-4 - - ae-2-1-4-5 - - ae-2-1-4-6 - - ae-2-1-4-7 - - ae-2-1-4-8 - - ae-2-1-4-9 - - ae-2-1-4-10 - - ae-2-1-4-11 - - ae-2-1-4-12 - - ae-2-1-4-13 - - ae-2-1-4-14 - - ae-2-1-4-15 - - ae-2-1-4-16 - - ae-2-1-4-17 - - ae-2-1-4-18 - attributes: [] -- id: ae-2-1-4-1 - name: Blocking Mats - children: - - ae-2-1-4-1-1 - - ae-2-1-4-1-2 +- id: ae-2-1-3-6-2 + name: Bobbin Winders + children: [] attributes: - - accessory_size + - material +- id: ae-2-1-3-6-3 + name: Bobbins + children: [] + attributes: + - material +- id: ae-2-1-3-6-4 + name: Brake Bands + children: [] + attributes: + - material +- id: ae-2-1-3-6-5 + name: Drive Bands + children: [] + attributes: + - material +- id: ae-2-1-3-6-6 + name: Drive Wheels + children: [] + attributes: [] +- id: ae-2-1-3-6-7 + name: Flyer Hooks + children: [] + attributes: + - material +- id: ae-2-1-3-6-8 + name: Flyer Kits + children: [] + attributes: + - material +- id: ae-2-1-3-6-9 + name: Lazy Kates + children: [] + attributes: + - material +- id: ae-2-1-3-6-11 + name: Niddy Noddies + children: [] + attributes: + - material +- id: ae-2-1-3-6-12 + name: Orifice Hooks + children: [] + attributes: + - material +- id: ae-2-1-3-6-13 + name: Ratios + children: [] + attributes: + - material +- id: ae-2-1-3-6-14 + name: Skein Winders + children: [] + attributes: + - material +- id: ae-2-1-3-6-15 + name: Spinner Control Cards + children: [] + attributes: + - material +- id: ae-2-1-3-6-16 + name: Spinning Oil + children: [] + attributes: [] +- id: ae-2-1-3-6-17 + name: Tension Knobs + children: [] + attributes: + - material +- id: ae-2-1-3-6-18 + name: Treadle Grippers + children: [] + attributes: + - material +- id: ae-2-1-3-6-19 + name: Whorls + children: [] + attributes: + - material +- id: ae-2-1-3-6-20 + name: Yarn Swifts + children: [] + attributes: + - material +- id: ae-2-1-3-7 + name: Stamp Blocks + children: [] + attributes: + - color + - material + - pattern +- id: ae-2-1-4 + name: Art & Crafting Tools + children: + - ae-2-1-4-1 + - ae-2-1-4-2 + - ae-2-1-4-3 + - ae-2-1-4-4 + - ae-2-1-4-5 + - ae-2-1-4-6 + - ae-2-1-4-7 + - ae-2-1-4-8 + - ae-2-1-4-9 + - ae-2-1-4-10 + - ae-2-1-4-11 + - ae-2-1-4-12 + - ae-2-1-4-13 + - ae-2-1-4-14 + - ae-2-1-4-15 + - ae-2-1-4-16 + - ae-2-1-4-17 + - ae-2-1-4-18 + attributes: [] +- id: ae-2-1-4-1 + name: Blocking Mats + children: + - ae-2-1-4-1-1 + - ae-2-1-4-1-2 + attributes: + - accessory_size + - art_crafting_tool_material + - shape +- id: ae-2-1-4-1-1 + name: Grid Blocking Mats + children: [] + attributes: + - accessory_size + - art_crafting_tool_material - shape +- id: ae-2-1-4-1-2 + name: Interlocking Blocking Mats + children: [] + attributes: + - accessory_size - art_crafting_tool_material + - shape - id: ae-2-1-4-2 name: Blocking Wires children: @@ -1024,8 +2252,44 @@ - ae-2-1-4-2-5 - ae-2-1-4-2-6 attributes: + - wire_rope_material + - wire_thickness +- id: ae-2-1-4-2-1 + name: Coil Blocking Wires + children: [] + attributes: + - wire_rope_material + - wire_thickness +- id: ae-2-1-4-2-2 + name: Curved Blocking Wires + children: [] + attributes: + - wire_rope_material + - wire_thickness +- id: ae-2-1-4-2-3 + name: Flexible Blocking Wires + children: [] + attributes: + - wire_rope_material + - wire_thickness +- id: ae-2-1-4-2-4 + name: Lace Blocking Wires + children: [] + attributes: + - wire_rope_material - wire_thickness +- id: ae-2-1-4-2-5 + name: Straight Blocking Wires + children: [] + attributes: - wire_rope_material + - wire_thickness +- id: ae-2-1-4-2-6 + name: T-Pins + children: [] + attributes: + - art_crafting_tool_material + - wire_thickness - id: ae-2-1-4-3 name: Color Mixing Tools children: @@ -1045,15 +2309,63 @@ - ae-2-1-4-3-1-7 - ae-2-1-4-3-1-8 attributes: + - art_crafting_tool_material + - palette_knife_shape +- id: ae-2-1-4-3-1-1 + name: Angular Palette Knives + children: [] + attributes: + - art_crafting_tool_material + - palette_knife_shape +- id: ae-2-1-4-3-1-2 + name: Diamond Palette Knives + children: [] + attributes: + - art_crafting_tool_material + - palette_knife_shape +- id: ae-2-1-4-3-1-3 + name: Offset Palette Knives + children: [] + attributes: + - art_crafting_tool_material + - palette_knife_shape +- id: ae-2-1-4-3-1-4 + name: Pointed Palette Knives + children: [] + attributes: + - art_crafting_tool_material + - palette_knife_shape +- id: ae-2-1-4-3-1-5 + name: Rounded Palette Knives + children: [] + attributes: + - art_crafting_tool_material + - palette_knife_shape +- id: ae-2-1-4-3-1-6 + name: Spatula Palette Knives + children: [] + attributes: + - art_crafting_tool_material + - palette_knife_shape +- id: ae-2-1-4-3-1-7 + name: Straight Palette Knives + children: [] + attributes: + - art_crafting_tool_material - palette_knife_shape +- id: ae-2-1-4-3-1-8 + name: Trowel Palette Knives + children: [] + attributes: - art_crafting_tool_material + - palette_knife_shape - id: ae-2-1-4-3-2 name: Palettes children: [] attributes: + - art_crafting_tool_material - palette_design - shape - - art_crafting_tool_material - id: ae-2-1-4-4 name: Craft Cutting & Embossing Tools children: @@ -1077,6 +2389,34 @@ - blade_material - handle_material - scissor_blade_type +- id: ae-2-1-4-4-1-1 + name: Fabric Scissors + children: [] + attributes: + - blade_material + - handle_material + - scissor_blade_type +- id: ae-2-1-4-4-1-2 + name: Left Handed Scissors + children: [] + attributes: + - blade_material + - handle_material + - scissor_blade_type +- id: ae-2-1-4-4-1-3 + name: Metal Scissors + children: [] + attributes: + - blade_material + - handle_material + - scissor_blade_type +- id: ae-2-1-4-4-1-4 + name: Paper Scissors + children: [] + attributes: + - blade_material + - handle_material + - scissor_blade_type - id: ae-2-1-4-4-2 name: Craft Cutters & Embossers children: [] @@ -1096,18 +2436,38 @@ - ae-2-1-4-4-4-2 attributes: - art_crafting_tool_material -- id: ae-2-1-4-4-5 - name: Embossing Heat Tools +- id: ae-2-1-4-4-4-1 + name: Craft Scoring Boards children: [] attributes: - art_crafting_tool_material -- id: ae-2-1-4-4-6 - name: Embossing Pens & Styluses - children: - - ae-2-1-4-4-6-1 +- id: ae-2-1-4-4-4-2 + name: Craft Scoring Wheels + children: [] + attributes: + - art_crafting_tool_material +- id: ae-2-1-4-4-5 + name: Embossing Heat Tools + children: [] + attributes: + - art_crafting_tool_material +- id: ae-2-1-4-4-6 + name: Embossing Pens & Styluses + children: + - ae-2-1-4-4-6-1 - ae-2-1-4-4-6-2 attributes: - art_crafting_tool_material +- id: ae-2-1-4-4-6-1 + name: Embossing Pens + children: [] + attributes: + - art_crafting_tool_material +- id: ae-2-1-4-4-6-2 + name: Embossing Styluses + children: [] + attributes: + - art_crafting_tool_material - id: ae-2-1-4-4-7 name: Seam Rippers children: [] @@ -1122,6 +2482,26 @@ - ae-2-1-4-4-8-4 attributes: - art_crafting_tool_material +- id: ae-2-1-4-4-8-1 + name: Pendant Cutters + children: [] + attributes: + - art_crafting_tool_material +- id: ae-2-1-4-4-8-2 + name: Snip Cutters + children: [] + attributes: + - art_crafting_tool_material +- id: ae-2-1-4-4-8-3 + name: Thread Cutters + children: [] + attributes: + - art_crafting_tool_material +- id: ae-2-1-4-4-8-4 + name: Yarn Cutters + children: [] + attributes: + - art_crafting_tool_material - id: ae-2-1-4-5 name: Craft Decoration Makers children: [] @@ -1169,6 +2549,16 @@ - ae-2-1-4-6-4-2 attributes: - art_crafting_tool_material +- id: ae-2-1-4-6-4-1 + name: Beam Drafting Compasses + children: [] + attributes: + - art_crafting_tool_material +- id: ae-2-1-4-6-4-2 + name: Precision Drafting Compasses + children: [] + attributes: + - art_crafting_tool_material - id: ae-2-1-4-6-5 name: Screen Printing Squeegees children: [] @@ -1182,13 +2572,21 @@ - ae-2-1-4-6-6-1 - ae-2-1-4-6-6-2 attributes: [] +- id: ae-2-1-4-6-6-1 + name: Electric Stencil Machines + children: [] + attributes: [] +- id: ae-2-1-4-6-6-2 + name: Manual Stencil Machines + children: [] + attributes: [] - id: ae-2-1-4-6-7 name: Stencils & Die Cuts children: [] attributes: + - art_crafting_tool_material - stencil_cut_shape - suitable_for_crafting_material - - art_crafting_tool_material - id: ae-2-1-4-6-8 name: Stitch Markers & Counters children: @@ -1197,6 +2595,21 @@ - ae-2-1-4-6-8-3 attributes: - art_crafting_tool_material +- id: ae-2-1-4-6-8-1 + name: Crochet Markers & Counters + children: [] + attributes: + - art_crafting_tool_material +- id: ae-2-1-4-6-8-2 + name: Knitting Markers & Counters + children: [] + attributes: + - art_crafting_tool_material +- id: ae-2-1-4-6-8-3 + name: Row Markers & Counters + children: [] + attributes: + - art_crafting_tool_material - id: ae-2-1-4-6-9 name: Textile Art Gauges & Rulers children: @@ -1205,6 +2618,21 @@ - ae-2-1-4-6-9-3 attributes: - art_crafting_tool_material +- id: ae-2-1-4-6-9-1 + name: Measuring Rulers + children: [] + attributes: + - art_crafting_tool_material +- id: ae-2-1-4-6-9-2 + name: Quilting Rulers + children: [] + attributes: + - art_crafting_tool_material +- id: ae-2-1-4-6-9-3 + name: Seam Gauges + children: [] + attributes: + - art_crafting_tool_material - id: ae-2-1-4-6-10 name: Wood Burning Tools children: [] @@ -1238,6 +2666,36 @@ attributes: - material - shape +- id: ae-2-1-4-10-1 + name: Canvas Stretchers + children: [] + attributes: + - material + - shape +- id: ae-2-1-4-10-2 + name: Cross-Stitch Frames + children: [] + attributes: + - material + - shape +- id: ae-2-1-4-10-3 + name: Embroidery Hoops + children: [] + attributes: + - material + - shape +- id: ae-2-1-4-10-4 + name: Needlepoint Frames + children: [] + attributes: + - material + - shape +- id: ae-2-1-4-10-5 + name: Quilting Frames + children: [] + attributes: + - material + - shape - id: ae-2-1-4-11 name: Glue Guns children: [] @@ -1279,6 +2737,42 @@ attributes: - needle_eye_type - needle_size +- id: ae-2-1-4-13-2-1 + name: Beading Needles + children: [] + attributes: + - needle_eye_type + - needle_size +- id: ae-2-1-4-13-2-2 + name: Darning Needles + children: [] + attributes: + - needle_eye_type + - needle_size +- id: ae-2-1-4-13-2-3 + name: Embroidery Needles + children: [] + attributes: + - needle_eye_type + - needle_size +- id: ae-2-1-4-13-2-4 + name: Quilting Needles + children: [] + attributes: + - needle_eye_type + - needle_size +- id: ae-2-1-4-13-2-5 + name: Sharps + children: [] + attributes: + - needle_eye_type + - needle_size +- id: ae-2-1-4-13-2-6 + name: Tapestry Needles + children: [] + attributes: + - needle_eye_type + - needle_size - id: ae-2-1-4-13-3 name: Knitting Needles children: @@ -1287,6 +2781,21 @@ - ae-2-1-4-13-3-3 attributes: - material +- id: ae-2-1-4-13-3-1 + name: Circular Knitting Needles + children: [] + attributes: + - material +- id: ae-2-1-4-13-3-2 + name: Double-Pointed Knitting Needles + children: [] + attributes: + - material +- id: ae-2-1-4-13-3-3 + name: Single-Pointed Knitting Needles + children: [] + attributes: + - material - id: ae-2-1-4-13-4 name: Latch & Locker Hooks children: [] @@ -1302,8 +2811,8 @@ name: Safety Pins children: [] attributes: - - pin_size - art_crafting_tool_material + - pin_size - id: ae-2-1-4-15 name: Straight Pins children: [] @@ -1332,6 +2841,30 @@ attributes: - accessory_size - material +- id: ae-2-1-4-16-2-1 + name: Frame Hand Looms + children: [] + attributes: + - accessory_size + - material +- id: ae-2-1-4-16-2-2 + name: Lap Hand Looms + children: [] + attributes: + - accessory_size + - material +- id: ae-2-1-4-16-2-3 + name: Rigid Heddle Hand Looms + children: [] + attributes: + - accessory_size + - material +- id: ae-2-1-4-16-2-4 + name: Tapestry Hand Looms + children: [] + attributes: + - accessory_size + - material - id: ae-2-1-4-16-3 name: Mechanical Looms children: @@ -1341,6 +2874,26 @@ - ae-2-1-4-16-3-4 attributes: - material +- id: ae-2-1-4-16-3-1 + name: Countermarch Mechanical Looms + children: [] + attributes: + - material +- id: ae-2-1-4-16-3-2 + name: Floor Mechanical Looms + children: [] + attributes: + - material +- id: ae-2-1-4-16-3-3 + name: Jack Mechanical Looms + children: [] + attributes: + - material +- id: ae-2-1-4-16-3-4 + name: Table Mechanical Looms + children: [] + attributes: + - material - id: ae-2-1-4-16-4 name: Sewing Machines children: @@ -1349,6 +2902,22 @@ - ae-2-1-4-16-4-3 - ae-2-1-4-16-4-4 attributes: [] +- id: ae-2-1-4-16-4-1 + name: Computerized Sewing Machines + children: [] + attributes: [] +- id: ae-2-1-4-16-4-2 + name: Embroidery Sewing Machines + children: [] + attributes: [] +- id: ae-2-1-4-16-4-3 + name: Mechanical Sewing Machines + children: [] + attributes: [] +- id: ae-2-1-4-16-4-4 + name: Serger Sewing Machines + children: [] + attributes: [] - id: ae-2-1-4-16-5 name: Spinning Wheels children: @@ -1358,24 +2927,44 @@ - ae-2-1-4-16-5-4 attributes: - material -- id: ae-2-1-4-17 - name: Thimbles & Sewing Palms - children: - - ae-2-1-4-17-1 - - ae-2-1-4-17-2 - attributes: - - art_crafting_tool_material -- id: ae-2-1-4-17-1 - name: Sewing Palms +- id: ae-2-1-4-16-5-1 + name: Double Drive Spinning Wheels children: [] attributes: - - accessory_size - - art_crafting_tool_material -- id: ae-2-1-4-17-2 - name: Thimbles + - material +- id: ae-2-1-4-16-5-2 + name: Electric Spinning Wheels children: [] attributes: - - accessory_size + - material +- id: ae-2-1-4-16-5-3 + name: Single Drive Spinning Wheels + children: [] + attributes: + - material +- id: ae-2-1-4-16-5-4 + name: Travel Spinning Wheels + children: [] + attributes: + - material +- id: ae-2-1-4-17 + name: Thimbles & Sewing Palms + children: + - ae-2-1-4-17-1 + - ae-2-1-4-17-2 + attributes: + - art_crafting_tool_material +- id: ae-2-1-4-17-1 + name: Sewing Palms + children: [] + attributes: + - accessory_size + - art_crafting_tool_material +- id: ae-2-1-4-17-2 + name: Thimbles + children: [] + attributes: + - accessory_size - art_crafting_tool_material - id: ae-2-1-4-18 name: Thread & Yarn Tools @@ -1400,6 +2989,31 @@ - ae-2-1-4-18-1-5 attributes: - brush_material +- id: ae-2-1-4-18-1-1 + name: Carding Brushes + children: [] + attributes: + - brush_material +- id: ae-2-1-4-18-1-2 + name: Drum Carders + children: [] + attributes: + - material +- id: ae-2-1-4-18-1-3 + name: Flick Carders + children: [] + attributes: + - material +- id: ae-2-1-4-18-1-4 + name: Hand Carders + children: [] + attributes: + - material +- id: ae-2-1-4-18-1-5 + name: Teasing Tools + children: [] + attributes: + - material - id: ae-2-1-4-18-2 name: Hand Spindles children: @@ -1409,6 +3023,24 @@ attributes: - accessory_size - material +- id: ae-2-1-4-18-2-1 + name: Drop Hand Spindles + children: [] + attributes: + - accessory_size + - material +- id: ae-2-1-4-18-2-2 + name: Support Hand Spindles + children: [] + attributes: + - accessory_size + - material +- id: ae-2-1-4-18-2-3 + name: Turkish Hand Spindles + children: [] + attributes: + - accessory_size + - material - id: ae-2-1-4-18-3 name: Needle Threaders children: @@ -1416,6 +3048,16 @@ - ae-2-1-4-18-3-2 attributes: - art_crafting_tool_material +- id: ae-2-1-4-18-3-1 + name: Automatic Needle Threaders + children: [] + attributes: + - art_crafting_tool_material +- id: ae-2-1-4-18-3-2 + name: Handheld Needle Threaders + children: [] + attributes: + - art_crafting_tool_material - id: ae-2-1-4-18-4 name: Thread & Yarn Guides children: @@ -1425,6 +3067,26 @@ - ae-2-1-4-18-4-4 attributes: - material +- id: ae-2-1-4-18-4-1 + name: Finger Guides + children: [] + attributes: + - material +- id: ae-2-1-4-18-4-2 + name: Thimble Guides + children: [] + attributes: + - material +- id: ae-2-1-4-18-4-3 + name: Wire Guides + children: [] + attributes: + - material +- id: ae-2-1-4-18-4-4 + name: Yarn Guides + children: [] + attributes: + - material - id: ae-2-1-4-18-5 name: Thread & Yarn Spools children: [] @@ -1438,6 +3100,16 @@ - ae-2-1-4-18-6-2 attributes: - material +- id: ae-2-1-4-18-6-1 + name: Electric Winders + children: [] + attributes: + - material +- id: ae-2-1-4-18-6-2 + name: Handheld Winders + children: [] + attributes: + - material - id: ae-2-1-4-18-7 name: Weaving Beaters children: @@ -1447,6 +3119,26 @@ - ae-2-1-4-18-7-4 attributes: - material +- id: ae-2-1-4-18-7-1 + name: Flat Weaving Beaters + children: [] + attributes: + - material +- id: ae-2-1-4-18-7-2 + name: Flexible Weaving Beaters + children: [] + attributes: + - material +- id: ae-2-1-4-18-7-3 + name: Reed Weaving Beaters + children: [] + attributes: + - material +- id: ae-2-1-4-18-7-4 + name: Rigid Weaving Beaters + children: [] + attributes: + - material - id: ae-2-1-4-18-8 name: Weaving Shuttles children: @@ -1456,6 +3148,26 @@ - ae-2-1-4-18-8-4 attributes: - material +- id: ae-2-1-4-18-8-1 + name: Boat Weaving Shuttles + children: [] + attributes: + - material +- id: ae-2-1-4-18-8-2 + name: End-Feed Weaving Shuttles + children: [] + attributes: + - material +- id: ae-2-1-4-18-8-3 + name: Rag Weaving Shuttles + children: [] + attributes: + - material +- id: ae-2-1-4-18-8-4 + name: Stick Weaving Shuttles + children: [] + attributes: + - material - id: ae-2-1-5 name: Craft Organization children: @@ -1474,6 +3186,30 @@ attributes: - accessory_size - material +- id: ae-2-1-5-1-1 + name: Hook Organizers + children: [] + attributes: + - accessory_size + - material +- id: ae-2-1-5-1-2 + name: Needle Cases + children: [] + attributes: + - accessory_size + - bag_case_material +- id: ae-2-1-5-1-3 + name: Needle Holders + children: [] + attributes: + - accessory_size + - material +- id: ae-2-1-5-1-4 + name: Pin Cushions + children: [] + attributes: + - accessory_size + - material - id: ae-2-1-5-2 name: Sewing Baskets & Kits children: @@ -1483,6 +3219,24 @@ attributes: - accessory_size - material +- id: ae-2-1-5-2-1 + name: Sewing Baskets + children: [] + attributes: + - accessory_size + - material +- id: ae-2-1-5-2-2 + name: Sewing Boxes + children: [] + attributes: + - accessory_size + - material +- id: ae-2-1-5-2-3 + name: Sewing Kits + children: [] + attributes: + - accessory_size + - material - id: ae-2-1-5-3 name: Thread & Yarn Organizers children: @@ -1494,6 +3248,36 @@ attributes: - accessory_size - material +- id: ae-2-1-5-3-1 + name: Thread Boxes + children: [] + attributes: + - accessory_size + - material +- id: ae-2-1-5-3-2 + name: Thread Racks + children: [] + attributes: + - accessory_size + - material +- id: ae-2-1-5-3-3 + name: Yarn Bags + children: [] + attributes: + - accessory_size + - bag_case_material +- id: ae-2-1-5-3-4 + name: Yarn Bowls + children: [] + attributes: + - accessory_size + - material +- id: ae-2-1-5-3-5 + name: Yarn Organizers + children: [] + attributes: + - accessory_size + - material - id: ae-2-1-6 name: Crafting Patterns & Molds children: @@ -1511,6 +3295,18 @@ attributes: - pattern_distribution_format - skill_level +- id: ae-2-1-6-1-1 + name: Beaded Accessories Patterns + children: [] + attributes: + - pattern_distribution_format + - skill_level +- id: ae-2-1-6-1-2 + name: Jewelry Beading Patterns + children: [] + attributes: + - pattern_distribution_format + - skill_level - id: ae-2-1-6-2 name: Craft Molds children: [] @@ -1524,6 +3320,16 @@ - ae-2-1-6-3-2 attributes: - mold_shape +- id: ae-2-1-6-3-1 + name: Needle Felting Molds + children: [] + attributes: + - mold_shape +- id: ae-2-1-6-3-2 + name: Wet Felting Molds + children: [] + attributes: + - mold_shape - id: ae-2-1-6-4 name: Needlecraft Patterns children: @@ -1533,16 +3339,52 @@ attributes: - pattern_distribution_format - skill_level -- id: ae-2-1-6-5 - name: Sewing Patterns - children: - - ae-2-1-6-5-1 - - ae-2-1-6-5-2 - - ae-2-1-6-5-3 +- id: ae-2-1-6-4-1 + name: Cross Stitch Patterns + children: [] attributes: - pattern_distribution_format - skill_level -- id: ae-2-2 +- id: ae-2-1-6-4-2 + name: Embroidery Patterns + children: [] + attributes: + - pattern_distribution_format + - skill_level +- id: ae-2-1-6-4-3 + name: Needlepoint Patterns + children: [] + attributes: + - pattern_distribution_format + - skill_level +- id: ae-2-1-6-5 + name: Sewing Patterns + children: + - ae-2-1-6-5-1 + - ae-2-1-6-5-2 + - ae-2-1-6-5-3 + attributes: + - pattern_distribution_format + - skill_level +- id: ae-2-1-6-5-1 + name: Accessory Sewing Patterns + children: [] + attributes: + - pattern_distribution_format + - skill_level +- id: ae-2-1-6-5-2 + name: Clothing Sewing Patterns + children: [] + attributes: + - pattern_distribution_format + - skill_level +- id: ae-2-1-6-5-3 + name: Home Decor Sewing Patterns + children: [] + attributes: + - pattern_distribution_format + - skill_level +- id: ae-2-2 name: Collectibles children: - ae-2-2-1 @@ -1591,6 +3433,30 @@ - country - denomination - coin_material +- id: ae-2-2-2-2-1 + name: Bullion Coins + children: [] + attributes: + - condition + - country + - denomination + - coin_material +- id: ae-2-2-2-2-2 + name: Commemorative Coins + children: [] + attributes: + - condition + - country + - denomination + - coin_material +- id: ae-2-2-2-2-3 + name: Rare Coins + children: [] + attributes: + - condition + - country + - denomination + - coin_material - id: ae-2-2-3 name: Collectible Trading Cards children: @@ -1604,6 +3470,45 @@ - grading - rarity - trading_card_packaging +- id: ae-2-2-3-1 + name: Entertainment Cards + children: [] + attributes: + - card_attributes + - condition + - grading + - rarity + - theme + - trading_card_packaging +- id: ae-2-2-3-2 + name: Gaming Cards + children: [] + attributes: + - card_attributes + - condition + - grading + - rarity + - trading_card_packaging +- id: ae-2-2-3-3 + name: Non-Sports Trading Cards + children: [] + attributes: + - card_attributes + - condition + - grading + - rarity + - theme + - trading_card_packaging +- id: ae-2-2-3-4 + name: Sports Trading Cards + children: [] + attributes: + - card_attributes + - condition + - grading + - rarity + - sports_theme + - trading_card_packaging - id: ae-2-2-4 name: Collectible Weapons children: @@ -1625,6 +3530,41 @@ - condition - era - material +- id: ae-2-2-4-1-1 + name: Antique Guns + children: [] + attributes: + - condition + - era + - material +- id: ae-2-2-4-1-2 + name: Handguns + children: [] + attributes: + - condition + - era + - material +- id: ae-2-2-4-1-3 + name: Replica Guns + children: [] + attributes: + - condition + - era + - material +- id: ae-2-2-4-1-4 + name: Rifles + children: [] + attributes: + - condition + - era + - material +- id: ae-2-2-4-1-5 + name: Shotguns + children: [] + attributes: + - condition + - era + - material - id: ae-2-2-4-2 name: Collectible Knives children: @@ -1638,6 +3578,48 @@ - blade_material - condition - handle_material +- id: ae-2-2-4-2-1 + name: Custom Collectible Knives + children: [] + attributes: + - blade_material + - condition + - handle_material +- id: ae-2-2-4-2-2 + name: Fixed Blade Collectible Knives + children: [] + attributes: + - blade_material + - condition + - handle_material +- id: ae-2-2-4-2-3 + name: Folding Collectible Knives + children: [] + attributes: + - blade_material + - condition + - handle_material +- id: ae-2-2-4-2-4 + name: Hunting Collectible Knives + children: [] + attributes: + - blade_material + - condition + - handle_material +- id: ae-2-2-4-2-5 + name: Pocket Collectible Knives + children: [] + attributes: + - blade_material + - condition + - handle_material +- id: ae-2-2-4-2-6 + name: Tactical Collectible Knives + children: [] + attributes: + - blade_material + - condition + - handle_material - id: ae-2-2-4-3 name: Collectible Swords children: @@ -1650,6 +3632,41 @@ - condition - handle_material - blade_material +- id: ae-2-2-4-3-1 + name: European Collectible Swords + children: [] + attributes: + - condition + - handle_material + - blade_material +- id: ae-2-2-4-3-2 + name: Fantasy Collectible Swords + children: [] + attributes: + - condition + - handle_material + - blade_material +- id: ae-2-2-4-3-3 + name: Historical Collectible Swords + children: [] + attributes: + - condition + - handle_material + - blade_material +- id: ae-2-2-4-3-4 + name: Movie Replica Collectible Swords + children: [] + attributes: + - condition + - handle_material + - blade_material +- id: ae-2-2-4-3-5 + name: Samurai Collectible Swords + children: [] + attributes: + - condition + - handle_material + - blade_material - id: ae-2-2-4-4 name: Sword Stands & Displays children: [] @@ -1672,44 +3689,146 @@ - printing_method - rarity - stamp_theme -- id: ae-2-2-6 - name: Rocks & Fossils - children: - - ae-2-2-6-1 - - ae-2-2-6-2 - - ae-2-2-6-3 - - ae-2-2-6-4 +- id: ae-2-2-5-1 + name: Commemorative Stamps + children: [] attributes: - - authenticity - condition - - crystal_system - - fossil_type - - geological_era - - mineral_class + - country + - denomination + - printing_method - rarity - - rock_composition - - rock_formation -- id: ae-2-2-7 - name: Scale Model Accessories + - stamp_theme +- id: ae-2-2-5-2 + name: Definitive Stamps children: [] attributes: - condition - - material - - scale_model_accessory_type - - scale_model_theme -- id: ae-2-2-8 - name: Scale Models - children: - - ae-2-2-8-1 - - ae-2-2-8-2 - - ae-2-2-8-3 - - ae-2-2-8-4 - - ae-2-2-8-5 - - ae-2-2-8-6 - - ae-2-2-8-7 - - ae-2-2-8-8 - - ae-2-2-8-9 - - ae-2-2-8-10 + - country + - denomination + - printing_method + - rarity + - stamp_theme +- id: ae-2-2-5-3 + name: First Day Covers + children: [] + attributes: + - condition + - country + - denomination + - printing_method + - rarity + - stamp_theme +- id: ae-2-2-5-4 + name: Single Stamps + children: [] + attributes: + - condition + - country + - denomination + - printing_method + - rarity + - stamp_theme +- id: ae-2-2-5-6 + name: Stamp Sheets + children: [] + attributes: + - condition + - country + - denomination + - printing_method + - rarity + - stamp_theme +- id: ae-2-2-6 + name: Rocks & Fossils + children: + - ae-2-2-6-1 + - ae-2-2-6-2 + - ae-2-2-6-3 + - ae-2-2-6-4 + attributes: + - authenticity + - condition + - crystal_system + - fossil_type + - geological_era + - mineral_class + - rarity + - rock_composition + - rock_formation +- id: ae-2-2-6-1 + name: Fossils + children: [] + attributes: + - authenticity + - condition + - crystal_system + - fossil_type + - geological_era + - mineral_class + - rarity + - rock_composition + - rock_formation +- id: ae-2-2-6-2 + name: Gemstones + children: [] + attributes: + - authenticity + - condition + - crystal_system + - fossil_type + - geological_era + - mineral_class + - rarity + - rock_composition + - rock_formation +- id: ae-2-2-6-3 + name: Minerals + children: [] + attributes: + - authenticity + - condition + - crystal_system + - fossil_type + - geological_era + - mineral_class + - rarity + - rock_composition + - rock_formation +- id: ae-2-2-6-4 + name: Rocks + children: [] + attributes: + - authenticity + - condition + - crystal_system + - fossil_type + - geological_era + - mineral_class + - rarity + - rock_composition + - rock_formation +- id: ae-2-2-7 + name: Scale Model Accessories + children: [] + attributes: + - condition + - material + - scale_model_accessory_type + - scale_model_theme +- id: ae-2-2-8 + name: Scale Models + children: + - ae-2-2-8-1 + - ae-2-2-8-2 + - ae-2-2-8-3 + - ae-2-2-8-4 + - ae-2-2-8-5 + - ae-2-2-8-6 + - ae-2-2-8-7 + - ae-2-2-8-8 + - ae-2-2-8-9 + - ae-2-2-8-10 - ae-2-2-8-11 - ae-2-2-8-12 - ae-2-2-8-13 @@ -1717,8 +3836,120 @@ attributes: - condition - kit_construction_type + - scale_model_material + - skill_level +- id: ae-2-2-8-1 + name: Aircraft + children: [] + attributes: + - condition + - kit_construction_type + - scale_model_material + - skill_level +- id: ae-2-2-8-2 + name: Buses + children: [] + attributes: + - condition + - kit_construction_type + - scale_model_material + - skill_level +- id: ae-2-2-8-3 + name: Cars + children: [] + attributes: + - condition + - kit_construction_type + - scale_model_material + - skill_level +- id: ae-2-2-8-4 + name: Dinosaurs + children: [] + attributes: + - condition + - kit_construction_type + - scale_model_material + - skill_level +- id: ae-2-2-8-5 + name: Express Locomotives + children: [] + attributes: + - condition + - kit_construction_type + - scale_model_material + - skill_level +- id: ae-2-2-8-6 + name: Helicopters + children: [] + attributes: + - condition + - kit_construction_type + - scale_model_material + - skill_level +- id: ae-2-2-8-7 + name: Horses + children: [] + attributes: + - condition + - kit_construction_type + - scale_model_material + - skill_level +- id: ae-2-2-8-8 + name: Motorcycles + children: [] + attributes: + - condition + - kit_construction_type + - scale_model_material + - skill_level +- id: ae-2-2-8-9 + name: Railroad Freight Car + children: [] + attributes: + - condition + - kit_construction_type + - scale_model_material + - skill_level +- id: ae-2-2-8-10 + name: Ships + children: [] + attributes: + - condition + - kit_construction_type + - scale_model_material + - skill_level +- id: ae-2-2-8-11 + name: Spacecraft + children: [] + attributes: + - condition + - kit_construction_type + - scale_model_material + - skill_level +- id: ae-2-2-8-12 + name: Tanks + children: [] + attributes: + - condition + - kit_construction_type + - scale_model_material + - skill_level +- id: ae-2-2-8-13 + name: Trains + children: [] + attributes: + - condition + - kit_construction_type + - scale_model_material - skill_level +- id: ae-2-2-8-14 + name: Trucks + children: [] + attributes: + - condition + - kit_construction_type - scale_model_material + - skill_level - id: ae-2-2-9 name: Seal Stamps children: [] @@ -1753,26 +3984,131 @@ - condition - logo - sport -- id: ae-2-2-11 - name: Vintage Advertisements +- id: ae-2-2-10-1-1 + name: Banners children: [] attributes: - - art_style - condition - - material -- id: ae-2-3 - name: Homebrewing & Winemaking Supplies - children: - - ae-2-3-1 - - ae-2-3-2 - - ae-2-3-3 - - ae-2-3-4 - attributes: [] -- id: ae-2-3-1 - name: Beer Brewing Grains & Malts - children: - - ae-2-3-1-1 - - ae-2-3-1-2 + - logo + - sport +- id: ae-2-2-10-1-2 + name: Caps + children: [] + attributes: + - condition + - logo + - sport +- id: ae-2-2-10-1-3 + name: Figurines + children: [] + attributes: + - condition + - logo + - sport +- id: ae-2-2-10-1-4 + name: Flags + children: [] + attributes: + - condition + - logo + - sport +- id: ae-2-2-10-1-5 + name: Gloves + children: [] + attributes: + - condition + - logo + - sport +- id: ae-2-2-10-1-6 + name: Hats + children: [] + attributes: + - condition + - logo + - sport +- id: ae-2-2-10-1-7 + name: Hoodies + children: [] + attributes: + - condition + - logo + - sport +- id: ae-2-2-10-1-8 + name: Jerseys + children: [] + attributes: + - condition + - logo + - sport +- id: ae-2-2-10-1-9 + name: Keychains + children: [] + attributes: + - condition + - logo + - sport +- id: ae-2-2-10-1-10 + name: Pins + children: [] + attributes: + - condition + - logo + - sport +- id: ae-2-2-10-1-11 + name: Posters + children: [] + attributes: + - condition + - logo + - sport +- id: ae-2-2-10-1-12 + name: Scarves + children: [] + attributes: + - condition + - logo + - sport +- id: ae-2-2-10-1-14 + name: Socks + children: [] + attributes: + - condition + - logo + - sport +- id: ae-2-2-10-1-15 + name: T-Shirts + children: [] + attributes: + - condition + - logo + - sport +- id: ae-2-2-10-1-16 + name: Wall Decals + children: [] + attributes: + - condition + - logo + - sport +- id: ae-2-2-11 + name: Vintage Advertisements + children: [] + attributes: + - art_style + - condition + - material +- id: ae-2-3 + name: Homebrewing & Winemaking Supplies + children: + - ae-2-3-1 + - ae-2-3-2 + - ae-2-3-3 + - ae-2-3-4 + attributes: [] +- id: ae-2-3-1 + name: Beer Brewing Grains & Malts + children: + - ae-2-3-1-1 + - ae-2-3-1-2 - ae-2-3-1-3 - ae-2-3-1-4 attributes: @@ -1781,6 +4117,42 @@ - flavor_profile - lovibond - potential_extract +- id: ae-2-3-1-1 + name: Adjunct Grain + children: [] + attributes: + - beer_style + - country_of_origin + - flavor_profile + - lovibond + - potential_extract +- id: ae-2-3-1-2 + name: Base Malt + children: [] + attributes: + - beer_style + - country_of_origin + - flavor_profile + - lovibond + - potential_extract +- id: ae-2-3-1-3 + name: Roasted Malt + children: [] + attributes: + - beer_style + - country_of_origin + - flavor_profile + - lovibond + - potential_extract +- id: ae-2-3-1-4 + name: Specialty Malt + children: [] + attributes: + - beer_style + - country_of_origin + - flavor_profile + - lovibond + - potential_extract - id: ae-2-3-2 name: Bottling Bottles children: [] @@ -1796,6 +4168,21 @@ - ae-2-3-3-3 attributes: - skill_level +- id: ae-2-3-3-1 + name: Beer Brewing Kits + children: [] + attributes: + - skill_level +- id: ae-2-3-3-2 + name: Mead Making Kits + children: [] + attributes: + - skill_level +- id: ae-2-3-3-3 + name: Wine Making Kits + children: [] + attributes: + - skill_level - id: ae-2-3-4 name: Wine Making children: @@ -1807,6 +4194,34 @@ - grape_variety - region - wine_sweetness +- id: ae-2-3-4-1 + name: Fruit Wine Making Supplies + children: [] + attributes: + - grape_variety + - region + - wine_sweetness +- id: ae-2-3-4-2 + name: Red Wine Making Supplies + children: [] + attributes: + - grape_variety + - region + - wine_sweetness +- id: ae-2-3-4-3 + name: Rosé Wine Making Supplies + children: [] + attributes: + - grape_variety + - region + - wine_sweetness +- id: ae-2-3-4-4 + name: White Wine Making Supplies + children: [] + attributes: + - grape_variety + - region + - wine_sweetness - id: ae-2-4 name: Juggling children: @@ -1823,55 +4238,172 @@ - material - pattern - weight_type -- id: ae-2-5 - name: Magic & Novelties +- id: ae-2-4-1 + name: Contact Juggling Balls children: [] attributes: - - skill_level -- id: ae-2-6 - name: Model Making - children: - - ae-2-6-1 - - ae-2-6-2 - - ae-2-6-3 - - ae-2-6-4 - attributes: - - skill_level -- id: ae-2-6-1 - name: Model Rocketry - children: - - ae-2-6-1-1 - - ae-2-6-1-2 - - ae-2-6-1-3 - - ae-2-6-1-4 - attributes: + - accessory_size + - color - material - - skill_level -- id: ae-2-6-2 - name: Model Train Accessories + - pattern + - weight_type +- id: ae-2-4-2 + name: Devil Sticks children: [] attributes: - - model_train_accessory_type - - model_train_them - - skill_level -- id: ae-2-6-3 - name: Model Trains & Train Sets - children: - - ae-2-6-3-1 - - ae-2-6-3-2 - - ae-2-6-3-3 - - ae-2-6-3-4 - - ae-2-6-3-5 - attributes: - - model_control_technology - - skill_level -- id: ae-2-6-4 - name: Scale Model Kits + - accessory_size + - color + - material + - pattern + - weight_type +- id: ae-2-4-3 + name: Diabolos children: [] attributes: - - skill_level - - scale_model_material -- id: ae-2-7 + - accessory_size + - color + - material + - pattern + - weight_type +- id: ae-2-4-4 + name: Juggling Balls + children: [] + attributes: + - accessory_size + - color + - material + - pattern + - weight_type +- id: ae-2-4-5 + name: Juggling Clubs + children: [] + attributes: + - accessory_size + - color + - material + - pattern + - weight_type +- id: ae-2-4-6 + name: Juggling Rings + children: [] + attributes: + - accessory_size + - color + - material + - pattern + - weight_type +- id: ae-2-4-7 + name: Poi + children: [] + attributes: + - accessory_size + - color + - material + - pattern + - weight_type +- id: ae-2-5 + name: Magic & Novelties + children: [] + attributes: + - skill_level +- id: ae-2-6 + name: Model Making + children: + - ae-2-6-1 + - ae-2-6-2 + - ae-2-6-3 + - ae-2-6-4 + attributes: + - skill_level +- id: ae-2-6-1 + name: Model Rocketry + children: + - ae-2-6-1-1 + - ae-2-6-1-2 + - ae-2-6-1-3 + - ae-2-6-1-4 + attributes: + - material + - skill_level +- id: ae-2-6-1-1 + name: High-Power Rockets + children: [] + attributes: + - material + - skill_level +- id: ae-2-6-1-2 + name: Multi-Stage Rockets + children: [] + attributes: + - material + - skill_level +- id: ae-2-6-1-3 + name: Single-Stage Rockets + children: [] + attributes: + - material + - skill_level +- id: ae-2-6-1-4 + name: Water Rockets + children: [] + attributes: + - material + - skill_level +- id: ae-2-6-2 + name: Model Train Accessories + children: [] + attributes: + - model_train_accessory_type + - model_train_them + - skill_level +- id: ae-2-6-3 + name: Model Trains & Train Sets + children: + - ae-2-6-3-1 + - ae-2-6-3-2 + - ae-2-6-3-3 + - ae-2-6-3-4 + - ae-2-6-3-5 + attributes: + - model_control_technology + - skill_level +- id: ae-2-6-3-1 + name: Diesel Locomotives + children: [] + attributes: + - model_control_technology + - skill_level +- id: ae-2-6-3-2 + name: Electric Locomotives + children: [] + attributes: + - model_control_technology + - skill_level +- id: ae-2-6-3-3 + name: Freight Trains + children: [] + attributes: + - model_control_technology + - skill_level +- id: ae-2-6-3-4 + name: Passenger Trains + children: [] + attributes: + - model_control_technology + - skill_level +- id: ae-2-6-3-5 + name: Steam Locomotives + children: [] + attributes: + - model_control_technology + - skill_level +- id: ae-2-6-4 + name: Scale Model Kits + children: [] + attributes: + - scale_model_material + - skill_level +- id: ae-2-7 name: Musical Instrument & Orchestra Accessories children: - ae-2-7-1 @@ -1922,6 +4454,26 @@ - ae-2-7-1-1-2-4 attributes: - compatible_brass_instrument +- id: ae-2-7-1-1-2-1 + name: Bore Cleaners + children: [] + attributes: + - compatible_brass_instrument +- id: ae-2-7-1-1-2-2 + name: Disinfectant Sprays + children: [] + attributes: + - compatible_brass_instrument +- id: ae-2-7-1-1-2-3 + name: Slide Cleaners + children: [] + attributes: + - compatible_brass_instrument +- id: ae-2-7-1-1-2-4 + name: Valve Cleaners + children: [] + attributes: + - compatible_brass_instrument - id: ae-2-7-1-1-3 name: Brass Instrument Cleaning Tools children: [] @@ -1936,6 +4488,26 @@ - ae-2-7-1-1-4-4 attributes: - instrument_accessory_material +- id: ae-2-7-1-1-4-1 + name: Bell Guards + children: [] + attributes: + - instrument_accessory_material +- id: ae-2-7-1-1-4-2 + name: Finger Button Guards + children: [] + attributes: + - instrument_accessory_material +- id: ae-2-7-1-1-4-3 + name: Slide Guards + children: [] + attributes: + - instrument_accessory_material +- id: ae-2-7-1-1-4-4 + name: Valve Guards + children: [] + attributes: + - instrument_accessory_material - id: ae-2-7-1-1-5 name: Brass Instrument Lubricants children: [] @@ -1948,15 +4520,15 @@ children: [] attributes: - color - - pattern - instrument_accessory_material + - pattern - id: ae-2-7-1-2 name: Brass Instrument Cases & Gigbags children: [] attributes: - color - - pattern - bag_case_material + - pattern - id: ae-2-7-1-3 name: Brass Instrument Mouthpieces children: [] @@ -1972,6 +4544,31 @@ - ae-2-7-1-4-5 attributes: - instrument_accessory_material +- id: ae-2-7-1-4-1 + name: Cup Mutes + children: [] + attributes: + - instrument_accessory_material +- id: ae-2-7-1-4-2 + name: Harmon Mutes + children: [] + attributes: + - instrument_accessory_material +- id: ae-2-7-1-4-3 + name: Plunger Mutes + children: [] + attributes: + - instrument_accessory_material +- id: ae-2-7-1-4-4 + name: Practice Mutes + children: [] + attributes: + - instrument_accessory_material +- id: ae-2-7-1-4-5 + name: Straight Mutes + children: [] + attributes: + - instrument_accessory_material - id: ae-2-7-1-5 name: Brass Instrument Replacement Parts children: [] @@ -1987,8 +4584,8 @@ children: [] attributes: - baton_grip_design - - tip_material - instrument_accessory_material + - tip_material - id: ae-2-7-3 name: Electronic Tuners children: [] @@ -2013,17 +4610,17 @@ - frame_material - height_adjustment - seat_cushioning - - seat_shape - upholstery_material + - seat_shape - id: ae-2-7-6 name: Music Lyres & Flip Folders children: [] attributes: - lyre_flip_folder_attachment_type + - instrument_accessory_material - orientation - page_size - compatible_instrument - - instrument_accessory_material - id: ae-2-7-7 name: Music Stand Accessories children: @@ -2052,6 +4649,30 @@ attributes: - accessory_size - instrument_accessory_material +- id: ae-2-7-7-3-1 + name: Clamp Sheet Music Clips + children: [] + attributes: + - accessory_size + - instrument_accessory_material +- id: ae-2-7-7-3-2 + name: Elastic Sheet Music Clips + children: [] + attributes: + - accessory_size + - instrument_accessory_material +- id: ae-2-7-7-3-3 + name: Magnetic Sheet Music Clips + children: [] + attributes: + - accessory_size + - instrument_accessory_material +- id: ae-2-7-7-3-4 + name: Spring-Loaded Sheet Music Clips + children: [] + attributes: + - accessory_size + - instrument_accessory_material - id: ae-2-7-8 name: Music Stands children: [] @@ -2072,8 +4693,8 @@ name: Musical Instrument Amplifier Cabinets children: [] attributes: - - speaker_configuration - instrument_accessory_material + - speaker_configuration - id: ae-2-7-9-2 name: Musical Instrument Amplifier Covers & Cases children: [] @@ -2100,8 +4721,8 @@ children: [] attributes: - color - - compatible_electric_acoustic_instrument - instrument_accessory_material + - compatible_electric_acoustic_instrument - id: ae-2-7-9-6 name: Musical Instrument Amplifier Tubes children: [] @@ -2119,12 +4740,36 @@ attributes: - input_output_ports - sound_controls -- id: ae-2-7-11 - name: Musical Keyboard Accessories - children: - - ae-2-7-11-1 - - ae-2-7-11-2 - - ae-2-7-11-3 +- id: ae-2-7-10-1 + name: Acoustic Amplifiers + children: [] + attributes: + - input_output_ports + - sound_controls +- id: ae-2-7-10-2 + name: Bass Amplifiers + children: [] + attributes: + - input_output_ports + - sound_controls +- id: ae-2-7-10-3 + name: Guitar Amplifiers + children: [] + attributes: + - input_output_ports + - sound_controls +- id: ae-2-7-10-4 + name: Keyboard Amplifiers + children: [] + attributes: + - input_output_ports + - sound_controls +- id: ae-2-7-11 + name: Musical Keyboard Accessories + children: + - ae-2-7-11-1 + - ae-2-7-11-2 + - ae-2-7-11-3 attributes: - instrument_accessory_material - id: ae-2-7-11-1 @@ -2137,6 +4782,30 @@ attributes: - compatible_keyboard_configuration - bag_case_material +- id: ae-2-7-11-1-1 + name: Musical Keyboard Gigbags + children: [] + attributes: + - compatible_keyboard_configuration + - bag_case_material +- id: ae-2-7-11-1-2 + name: Musical Keyboard Hard Cases + children: [] + attributes: + - compatible_keyboard_configuration + - bag_case_material +- id: ae-2-7-11-1-3 + name: Musical Keyboard Rolling Cases + children: [] + attributes: + - compatible_keyboard_configuration + - bag_case_material +- id: ae-2-7-11-1-4 + name: Musical Keyboard Soft Cases + children: [] + attributes: + - compatible_keyboard_configuration + - bag_case_material - id: ae-2-7-11-2 name: Musical Keyboard Stands children: @@ -2148,6 +4817,36 @@ attributes: - compatible_keyboard_configuration - instrument_accessory_material +- id: ae-2-7-11-2-1 + name: Column Stands + children: [] + attributes: + - compatible_keyboard_configuration + - instrument_accessory_material +- id: ae-2-7-11-2-2 + name: Double Braced Stands + children: [] + attributes: + - compatible_keyboard_configuration + - instrument_accessory_material +- id: ae-2-7-11-2-3 + name: Single Braced Stands + children: [] + attributes: + - compatible_keyboard_configuration + - instrument_accessory_material +- id: ae-2-7-11-2-4 + name: X-Style Stands + children: [] + attributes: + - compatible_keyboard_configuration + - instrument_accessory_material +- id: ae-2-7-11-2-5 + name: Z-Style Stands + children: [] + attributes: + - compatible_keyboard_configuration + - instrument_accessory_material - id: ae-2-7-11-3 name: Sustain Pedals children: @@ -2155,8 +4854,22 @@ - ae-2-7-11-3-2 attributes: - connection_method + - instrument_accessory_material + - pedal_polarity +- id: ae-2-7-11-3-1 + name: Damper + children: [] + attributes: + - connection_method + - instrument_accessory_material - pedal_polarity +- id: ae-2-7-11-3-2 + name: Sustain + children: [] + attributes: + - connection_method - instrument_accessory_material + - pedal_polarity - id: ae-2-7-12 name: Percussion Accessories children: @@ -2180,9 +4893,33 @@ - ae-2-7-12-1-3 attributes: - color + - bag_case_material + - pattern + - compatible_percussion_instrument +- id: ae-2-7-12-1-1 + name: Cymbal & Drum Set Cases + children: [] + attributes: + - color + - bag_case_material + - pattern + - compatible_percussion_instrument +- id: ae-2-7-12-1-2 + name: Flight Cymbal & Drum Cases + children: [] + attributes: + - color + - bag_case_material - pattern - compatible_percussion_instrument +- id: ae-2-7-12-1-3 + name: Single Cymbal & Drum Cases + children: [] + attributes: + - color - bag_case_material + - pattern + - compatible_percussion_instrument - id: ae-2-7-12-2 name: Cymbal & Drum Mutes children: @@ -2190,6 +4927,16 @@ - ae-2-7-12-2-2 attributes: - drum_hardware_material +- id: ae-2-7-12-2-1 + name: Cymbal Mutes + children: [] + attributes: + - drum_hardware_material +- id: ae-2-7-12-2-2 + name: Drum Mutes + children: [] + attributes: + - drum_hardware_material - id: ae-2-7-12-3 name: Drum Heads children: @@ -2198,14 +4945,40 @@ - ae-2-7-12-3-3 attributes: - color + - drum_hardware_material + - pattern +- id: ae-2-7-12-3-1 + name: Bass Drum Heads + children: [] + attributes: + - color + - drum_hardware_material + - pattern +- id: ae-2-7-12-3-2 + name: Snare Drum Heads + children: [] + attributes: + - color + - drum_hardware_material - pattern +- id: ae-2-7-12-3-3 + name: Tom Drum Heads + children: [] + attributes: + - color - drum_hardware_material + - pattern - id: ae-2-7-12-4 name: Drum Keys children: - ae-2-7-12-4-1 attributes: - compatible_percussion_instrument +- id: ae-2-7-12-4-1 + name: Tension Drum Keys + children: [] + attributes: + - compatible_percussion_instrument - id: ae-2-7-12-5 name: Drum Kit Hardware children: @@ -2230,6 +5003,31 @@ - ae-2-7-12-5-2-5 attributes: - drum_hardware_material +- id: ae-2-7-12-5-2-1 + name: Clamps + children: [] + attributes: + - drum_hardware_material +- id: ae-2-7-12-5-2-2 + name: Cymbal Arms + children: [] + attributes: + - drum_hardware_material +- id: ae-2-7-12-5-2-3 + name: Multi-Clamps + children: [] + attributes: + - drum_hardware_material +- id: ae-2-7-12-5-2-4 + name: Rack Systems + children: [] + attributes: + - drum_hardware_material +- id: ae-2-7-12-5-2-5 + name: Tom Mounts + children: [] + attributes: + - mount_material - id: ae-2-7-12-5-3 name: Drum Pedals children: @@ -2243,6 +5041,46 @@ - compatible_drum_configuration - footboard_type - drum_hardware_material +- id: ae-2-7-12-5-3-1 + name: Belt Drives + children: [] + attributes: + - adjustability + - compatible_drum_configuration + - footboard_type + - drum_hardware_material +- id: ae-2-7-12-5-3-2 + name: Chain Drives + children: [] + attributes: + - adjustability + - compatible_drum_configuration + - footboard_type + - drum_hardware_material +- id: ae-2-7-12-5-3-3 + name: Direct Drives + children: [] + attributes: + - adjustability + - compatible_drum_configuration + - footboard_type + - drum_hardware_material +- id: ae-2-7-12-5-3-4 + name: Double Drum Pedals + children: [] + attributes: + - adjustability + - compatible_drum_configuration + - footboard_type + - drum_hardware_material +- id: ae-2-7-12-5-3-5 + name: Single Drum Pedals + children: [] + attributes: + - adjustability + - compatible_drum_configuration + - footboard_type + - drum_hardware_material - id: ae-2-7-12-6 name: Drum Stick & Brush Accessories children: @@ -2262,8 +5100,22 @@ - ae-2-7-12-7-2 attributes: - grip_texture + - brush_material - percussion_tip_shape +- id: ae-2-7-12-7-1 + name: Brushes + children: [] + attributes: + - grip_texture - brush_material + - percussion_tip_shape +- id: ae-2-7-12-7-2 + name: Drum Sticks + children: [] + attributes: + - grip_texture + - drum_hardware_material + - percussion_tip_shape - id: ae-2-7-12-8 name: Electronic Drum Modules children: @@ -2274,6 +5126,27 @@ - input_output_ports - midi_connectivity - sound_effects +- id: ae-2-7-12-8-1 + name: Control Modules + children: [] + attributes: + - input_output_ports + - midi_connectivity + - sound_effects +- id: ae-2-7-12-8-2 + name: Sound Modules + children: [] + attributes: + - input_output_ports + - midi_connectivity + - sound_effects +- id: ae-2-7-12-8-3 + name: Trigger Modules + children: [] + attributes: + - input_output_ports + - midi_connectivity + - sound_effects - id: ae-2-7-12-9 name: Hand Percussion Accessories children: @@ -2296,5005 +5169,1031 @@ - ae-2-7-12-9-2-3 - ae-2-7-12-9-2-4 attributes: + - mount_material - orientation - compatible_percussion_instrument - - mount_material -- id: ae-2-7-12-10 - name: Percussion Mallets - children: [] - attributes: - - grip_texture - - handle_material - - percussion_tip_shape - - mallet_material -- id: ae-2-7-12-11 - name: Percussion Stands - children: - - ae-2-7-12-11-1 - attributes: - - percussion_stand_design - - compatible_percussion_instrument - - instrument_accessory_material -- id: ae-2-7-13 - name: String Instrument Accessories - children: - - ae-2-7-13-1 - - ae-2-7-13-2 - - ae-2-7-13-3 - attributes: [] -- id: ae-2-7-13-1 - name: Guitar Accessories - children: - - ae-2-7-13-1-1 - - ae-2-7-13-1-2 - - ae-2-7-13-1-3 - - ae-2-7-13-1-5 - - ae-2-7-13-1-6 - - ae-2-7-13-1-7 - - ae-2-7-13-1-8 - - ae-2-7-13-1-9 - - ae-2-7-13-1-10 - - ae-2-7-13-1-11 - - ae-2-7-13-1-12 - - ae-2-7-13-1-13 - - ae-2-7-13-1-4 - attributes: [] -- id: ae-2-7-13-1-1 - name: Acoustic Guitar Pickups - children: [] - attributes: - - color - - compatible_string_instrument - - output_level - - pattern - - pickup_mounting_type - - pickup_type -- id: ae-2-7-13-1-2 - name: Capos - children: - - ae-2-7-13-1-2-1 - - ae-2-7-13-1-2-2 - - ae-2-7-13-1-2-3 - - ae-2-7-13-1-2-4 - attributes: - - color - - compatible_string_instrument - - pattern - - instrument_accessory_material -- id: ae-2-7-13-1-3 - name: Electric Guitar Pickups - children: [] - attributes: - - color - - compatible_string_instrument - - magnet_type - - output_level - - pattern - - pickup_mounting_type - - pickup_position - - pickup_type -- id: ae-2-7-13-1-5 - name: Guitar Fittings & Parts - children: [] - attributes: - - compatible_string_instrument - - instrument_part_material -- id: ae-2-7-13-1-6 - name: Guitar Humidifiers - children: - - ae-2-7-13-1-6-1 - - ae-2-7-13-1-6-2 - - ae-2-7-13-1-6-3 - attributes: - - compatible_string_instrument - - instrument_accessory_material -- id: ae-2-7-13-1-7 - name: Guitar Picks - children: - - ae-2-7-13-1-7-1 - - ae-2-7-13-1-7-2 - attributes: - - color - - grip_texture - - pattern - - pick_design - - thickness_type - - instrument_accessory_material -- id: ae-2-7-13-1-8 - name: Guitar Slides - children: [] - attributes: - - accessory_size - - color - - compatible_string_instrument - - pattern - - instrument_accessory_material -- id: ae-2-7-13-1-9 - name: Guitar Stands - children: [] - attributes: - - color - - compatible_string_instrument - - music_stand_design - - pattern - - instrument_accessory_material -- id: ae-2-7-13-1-10 - name: Guitar Straps - children: [] - attributes: - - color - - pattern - - strap_design - - instrument_accessory_material -- id: ae-2-7-13-1-11 - name: Guitar String Winders - children: - - ae-2-7-13-1-11-1 - - ae-2-7-13-1-11-2 - attributes: - - compatible_string_instrument -- id: ae-2-7-13-1-12 - name: Guitar Strings - children: - - ae-2-7-13-1-12-1 - - ae-2-7-13-1-12-2 - - ae-2-7-13-1-12-3 - - ae-2-7-13-1-12-4 - attributes: - - instrument_string_material -- id: ae-2-7-13-1-13 - name: Guitar Tuning Pegs - children: [] - attributes: - - compatible_string_instrument - - instrument_accessory_finish -- id: ae-2-7-13-2 - name: Orchestral String Instrument Accessories - children: - - ae-2-7-13-2-1 - - ae-2-7-13-2-2 - - ae-2-7-13-2-3 - - ae-2-7-13-2-4 - - ae-2-7-13-2-5 - - ae-2-7-13-2-6 - - ae-2-7-13-2-7 - - ae-2-7-13-2-8 - attributes: [] -- id: ae-2-7-13-2-1 - name: Orchestral String Instrument Bow Cases - children: - - ae-2-7-13-2-1-1 - - ae-2-7-13-2-1-2 - - ae-2-7-13-2-1-3 - attributes: - - closure_type - - compatible_orchestral_string_instrument - - bag_case_material -- id: ae-2-7-13-2-2 - name: Orchestral String Instrument Bows - children: [] - attributes: - - frog_material - - bow_hair_material - - instrument_accessory_material -- id: ae-2-7-13-2-3 - name: Orchestral String Instrument Cases - children: [] - attributes: - - closure_type - - color - - compatible_orchestral_string_instrument - - pattern - - bag_case_material -- id: ae-2-7-13-2-4 - name: Orchestral String Instrument Fittings & Parts - children: [] - attributes: - - compatible_orchestral_string_instrument - - instrument_accessory_finish - - instrument_part_material -- id: ae-2-7-13-2-5 - name: Orchestral String Instrument Mutes - children: [] - attributes: - - compatible_orchestral_string_instrument - - instrument_accessory_material -- id: ae-2-7-13-2-6 - name: Orchestral String Instrument Pickups - children: [] - attributes: - - color - - compatible_orchestral_string_instrument - - pattern -- id: ae-2-7-13-2-7 - name: Orchestral String Instrument Stands - children: [] - attributes: - - compatible_orchestral_string_instrument - - music_stand_design - - instrument_accessory_material -- id: ae-2-7-13-2-8 - name: Orchestral String Instrument Strings - children: [] - attributes: - - compatible_orchestral_string_instrument - - tension - - instrument_string_material -- id: ae-2-7-13-3 - name: String Instrument Care & Cleaning - children: - - ae-2-7-13-3-1 - - ae-2-7-13-3-2 - - ae-2-7-13-3-3 - attributes: [] -- id: ae-2-7-13-3-1 - name: Bow Rosin - children: [] - attributes: - - package_type - - rosin_form - - rosin_grade - - instrument_accessory_material -- id: ae-2-7-13-3-2 - name: String Instrument Cleaning Cloths - children: [] - attributes: - - accessory_size - - instrument_accessory_material -- id: ae-2-7-13-3-3 - name: String Instrument Polish - children: - - ae-2-7-13-3-3-1 - - ae-2-7-13-3-3-2 - - ae-2-7-13-3-3-3 - attributes: - - application_method - - ingredient_origin -- id: ae-2-7-14 - name: Woodwind Instrument Accessories - children: - - ae-2-7-14-1 - - ae-2-7-14-2 - - ae-2-7-14-3 - - ae-2-7-14-4 - - ae-2-7-14-5 - - ae-2-7-14-6 - - ae-2-7-14-7 - - ae-2-7-14-8 - - ae-2-7-14-9 - - ae-2-7-14-10 - - ae-2-7-14-11 - attributes: [] -- id: ae-2-7-14-1 - name: Bassoon Accessories - children: - - ae-2-7-14-1-1 - - ae-2-7-14-1-2 - - ae-2-7-14-1-3 - - ae-2-7-14-1-4 - - ae-2-7-14-1-5 - - ae-2-7-14-1-6 - attributes: [] -- id: ae-2-7-14-1-1 - name: Bassoon Care & Cleaning - children: - - ae-2-7-14-1-1-1 - attributes: - - instrument_accessory_material -- id: ae-2-7-14-1-1-1 - name: Bassoon Swabs - children: [] - attributes: - - swab_material -- id: ae-2-7-14-1-2 - name: Bassoon Cases & Gigbags - children: [] - attributes: - - color - - pattern - - bag_case_material -- id: ae-2-7-14-1-3 - name: Bassoon Parts - children: - - ae-2-7-14-1-3-1 - - ae-2-7-14-1-3-2 - attributes: - - instrument_part_material -- id: ae-2-7-14-1-3-1 - name: Bassoon Bocals - children: [] - attributes: - - instrument_accessory_material -- id: ae-2-7-14-1-3-2 - name: Bassoon Small Parts - children: [] - attributes: - - instrument_part_material -- id: ae-2-7-14-1-4 - name: Bassoon Reeds - children: - - ae-2-7-14-1-4-1 - - ae-2-7-14-1-4-2 - - ae-2-7-14-1-4-3 - - ae-2-7-14-1-4-4 - attributes: - - reed_strength - - instrument_accessory_material -- id: ae-2-7-14-1-5 - name: Bassoon Stands - children: [] - attributes: - - instrument_accessory_material -- id: ae-2-7-14-1-6 - name: Bassoon Straps & Supports - children: [] - attributes: - - color - - pattern - - instrument_accessory_material -- id: ae-2-7-14-2 - name: Clarinet Accessories - children: - - ae-2-7-14-2-1 - - ae-2-7-14-2-2 - - ae-2-7-14-2-3 - - ae-2-7-14-2-4 - - ae-2-7-14-2-5 - - ae-2-7-14-2-6 - - ae-2-7-14-2-7 - attributes: [] -- id: ae-2-7-14-2-1 - name: Clarinet Care & Cleaning - children: - - ae-2-7-14-2-1-1 - - ae-2-7-14-2-1-2 - - ae-2-7-14-2-1-3 - attributes: [] -- id: ae-2-7-14-2-1-1 - name: Clarinet Care Kits - children: [] - attributes: - - woodwind_care_items_included -- id: ae-2-7-14-2-1-2 - name: Clarinet Pad Savers - children: [] - attributes: - - color - - pattern - - instrument_accessory_material -- id: ae-2-7-14-2-1-3 - name: Clarinet Swabs - children: [] - attributes: - - swab_material -- id: ae-2-7-14-2-2 - name: Clarinet Cases & Gigbags - children: [] - attributes: - - color - - pattern - - bag_case_material -- id: ae-2-7-14-2-3 - name: Clarinet Ligatures & Caps - children: - - ae-2-7-14-2-3-1 - - ae-2-7-14-2-3-2 - - ae-2-7-14-2-3-3 - attributes: - - compatible_clarinet_type - - instrument_accessory_material -- id: ae-2-7-14-2-4 - name: Clarinet Parts - children: - - ae-2-7-14-2-4-1 - - ae-2-7-14-2-4-2 - - ae-2-7-14-2-4-3 - - ae-2-7-14-2-4-4 - attributes: - - compatible_clarinet_type - - instrument_part_material -- id: ae-2-7-14-2-4-1 - name: Clarinet Barrels - children: [] - attributes: - - compatible_clarinet_type - - instrument_accessory_material -- id: ae-2-7-14-2-4-2 - name: Clarinet Bells - children: - - ae-2-7-14-2-4-2-1 - - ae-2-7-14-2-4-2-2 - attributes: - - compatible_clarinet_type - - instrument_accessory_finish - - instrument_accessory_material -- id: ae-2-7-14-2-4-3 - name: Clarinet Mouthpieces - children: [] - attributes: - - color - - compatible_clarinet_type - - facing - - pattern - - instrument_accessory_material -- id: ae-2-7-14-2-4-4 - name: Clarinet Small Parts - children: [] - attributes: - - compatible_clarinet_type - - instrument_part_material -- id: ae-2-7-14-2-5 - name: Clarinet Pegs & Stands - children: [] - attributes: - - compatible_clarinet_type - - instrument_accessory_material -- id: ae-2-7-14-2-6 - name: Clarinet Reeds - children: [] - attributes: - - reed_strength - - instrument_accessory_material -- id: ae-2-7-14-2-7 - name: Clarinet Straps & Supports - children: [] - attributes: - - compatible_clarinet_type - - instrument_accessory_material -- id: ae-2-7-14-3 - name: Flute Accessories - children: - - ae-2-7-14-3-1 - - ae-2-7-14-3-2 - - ae-2-7-14-3-3 - - ae-2-7-14-3-4 - attributes: [] -- id: ae-2-7-14-3-1 - name: Flute Care & Cleaning - children: - - ae-2-7-14-3-1-1 - - ae-2-7-14-3-1-2 - - ae-2-7-14-3-1-3 - attributes: [] -- id: ae-2-7-14-3-1-1 - name: Flute Care Kits - children: [] - attributes: - - woodwind_care_items_included -- id: ae-2-7-14-3-1-2 - name: Flute Cleaning Rods - children: [] - attributes: - - instrument_accessory_material -- id: ae-2-7-14-3-1-3 - name: Flute Swabs - children: [] - attributes: - - swab_material -- id: ae-2-7-14-3-2 - name: Flute Cases & Gigbags - children: [] - attributes: - - bag_case_material -- id: ae-2-7-14-3-3 - name: Flute Parts - children: - - ae-2-7-14-3-3-1 - - ae-2-7-14-3-3-2 - attributes: - - instrument_part_material -- id: ae-2-7-14-3-3-1 - name: Flute Headjoints - children: - - ae-2-7-14-3-3-1-1 - - ae-2-7-14-3-3-1-2 - attributes: - - embouchure_hole_shape - - lip_plate_material - - instrument_accessory_material -- id: ae-2-7-14-3-3-2 - name: Flute Small Parts - children: [] - attributes: - - compatible_flute_type - - instrument_part_material -- id: ae-2-7-14-3-4 - name: Flute Pegs & Stands - children: [] - attributes: - - compatible_flute_type - - instrument_accessory_material -- id: ae-2-7-14-4 - name: Harmonica Accessories - children: - - ae-2-7-14-4-1 - - ae-2-7-14-4-2 - attributes: - - instrument_accessory_material -- id: ae-2-7-14-4-1 - name: Harmonica Cases - children: [] - attributes: - - bag_case_material -- id: ae-2-7-14-4-2 - name: Harmonica Holders - children: - - ae-2-7-14-4-2-1 - - ae-2-7-14-4-2-2 - attributes: - - compatible_harmonica_type - - instrument_accessory_material -- id: ae-2-7-14-5 - name: Oboe & English Horn Accessories - children: - - ae-2-7-14-5-1 - - ae-2-7-14-5-2 - - ae-2-7-14-5-3 - - ae-2-7-14-5-4 - - ae-2-7-14-5-5 - - ae-2-7-14-5-6 - attributes: [] -- id: ae-2-7-14-5-1 - name: Oboe Care & Cleaning - children: - - ae-2-7-14-5-1-1 - - ae-2-7-14-5-1-2 - attributes: [] -- id: ae-2-7-14-5-1-1 - name: Oboe Care Kits - children: [] - attributes: - - woodwind_care_items_included -- id: ae-2-7-14-5-1-2 - name: Oboe Swabs - children: [] - attributes: - - swab_material -- id: ae-2-7-14-5-2 - name: Oboe Cases & Gigbags - children: [] - attributes: - - bag_case_material -- id: ae-2-7-14-5-3 - name: Oboe Parts - children: - - ae-2-7-14-5-3-1 - attributes: [] -- id: ae-2-7-14-5-3-1 - name: Oboe Small Parts - children: [] - attributes: - - compatible_oboe_type - - instrument_part_material -- id: ae-2-7-14-5-4 - name: Oboe Pegs & Stands - children: [] - attributes: - - compatible_oboe_type - - instrument_accessory_material -- id: ae-2-7-14-5-5 - name: Oboe Reeds - children: [] - attributes: - - reed_strength - - instrument_accessory_material -- id: ae-2-7-14-5-6 - name: Oboe Straps & Supports - children: [] - attributes: - - compatible_oboe_type - - instrument_accessory_material -- id: ae-2-7-14-6 - name: Recorder Accessories - children: - - ae-2-7-14-6-1 - - ae-2-7-14-6-2 - - ae-2-7-14-6-3 - attributes: [] -- id: ae-2-7-14-6-1 - name: Recorder Care & Cleaning - children: [] - attributes: - - cleaning_solution -- id: ae-2-7-14-6-2 - name: Recorder Cases - children: [] - attributes: - - bag_case_material -- id: ae-2-7-14-6-3 - name: Recorder Parts - children: [] - attributes: - - instrument_part_material -- id: ae-2-7-14-7 - name: Saxophone Accessories - children: - - ae-2-7-14-7-1 - - ae-2-7-14-7-2 - - ae-2-7-14-7-3 - - ae-2-7-14-7-4 - - ae-2-7-14-7-5 - - ae-2-7-14-7-6 - - ae-2-7-14-7-7 - attributes: [] -- id: ae-2-7-14-7-1 - name: Saxophone Care & Cleaning - children: - - ae-2-7-14-7-1-1 - - ae-2-7-14-7-1-2 - - ae-2-7-14-7-1-3 - attributes: [] -- id: ae-2-7-14-7-1-1 - name: Saxophone Care Kits - children: [] - attributes: - - woodwind_care_items_included -- id: ae-2-7-14-7-1-2 - name: Saxophone Pad Savers - children: [] - attributes: - - instrument_accessory_material -- id: ae-2-7-14-7-1-3 - name: Saxophone Swabs - children: [] - attributes: - - swab_material -- id: ae-2-7-14-7-2 - name: Saxophone Cases & Gigbags - children: [] - attributes: - - bag_case_material -- id: ae-2-7-14-7-3 - name: Saxophone Ligatures & Caps - children: [] - attributes: - - instrument_accessory_finish -- id: ae-2-7-14-7-4 - name: Saxophone Parts - children: - - ae-2-7-14-7-4-1 - - ae-2-7-14-7-4-2 - - ae-2-7-14-7-4-3 - attributes: [] -- id: ae-2-7-14-7-4-1 - name: Saxophone Mouthpieces - children: - - ae-2-7-14-7-4-1-1 - - ae-2-7-14-7-4-1-2 - - ae-2-7-14-7-4-1-3 - - ae-2-7-14-7-4-1-4 - attributes: - - tip_opening - - instrument_accessory_material -- id: ae-2-7-14-7-4-2 - name: Saxophone Necks - children: [] - attributes: - - instrument_accessory_material -- id: ae-2-7-14-7-4-3 - name: Saxophone Small Parts - children: [] - attributes: - - instrument_part_material -- id: ae-2-7-14-7-5 - name: Saxophone Pegs & Stands - children: [] - attributes: - - instrument_accessory_material -- id: ae-2-7-14-7-6 - name: Saxophone Reeds - children: [] - attributes: - - reed_strength - - instrument_accessory_material -- id: ae-2-7-14-7-7 - name: Saxophone Straps & Supports - children: [] - attributes: - - instrument_accessory_material -- id: ae-2-7-14-8 - name: Woodwind Cork Grease - children: [] - attributes: [] -- id: ae-2-7-14-9 - name: Woodwind Polishing Cloths - children: [] - attributes: - - instrument_accessory_material -- id: ae-2-7-14-10 - name: Woodwind Reed Cases - children: [] - attributes: - - bag_case_material -- id: ae-2-7-14-11 - name: Woodwind Reed Knives - children: [] - attributes: - - blade_material - - handle_material -- id: ae-2-8 - name: Musical Instruments - children: - - ae-2-8-1 - - ae-2-8-2 - - ae-2-8-3 - - ae-2-8-4 - - ae-2-8-5 - - ae-2-8-6 - - ae-2-8-7 - - ae-2-8-8 - attributes: - - instrument_material -- id: ae-2-8-1 - name: Accordions & Concertinas - children: - - ae-2-8-1-1 - - ae-2-8-1-2 - attributes: - - instrument_material -- id: ae-2-8-2 - name: Bagpipes - children: - - ae-2-8-2-1 - - ae-2-8-2-2 - - ae-2-8-2-3 - - ae-2-8-2-4 - - ae-2-8-2-5 - attributes: - - instrument_material -- id: ae-2-8-3 - name: Brass Instruments - children: - - ae-2-8-3-1 - - ae-2-8-3-2 - - ae-2-8-3-3 - - ae-2-8-3-4 - - ae-2-8-3-5 - - ae-2-8-3-6 - attributes: - - instrument_material -- id: ae-2-8-3-1 - name: Alto & Baritone Horns - children: - - ae-2-8-3-1-1 - - ae-2-8-3-1-2 - - ae-2-8-3-1-3 - attributes: - - bell_size - - tuning_pitch - - instrument_material -- id: ae-2-8-3-2 - name: Euphoniums - children: [] - attributes: - - bell_size - - tuning_pitch - - instrument_material -- id: ae-2-8-3-3 - name: French Horns - children: - - ae-2-8-3-3-1 - - ae-2-8-3-3-2 - attributes: - - bell_size - - tuning_pitch - - instrument_material -- id: ae-2-8-3-4 - name: Trombones - children: - - ae-2-8-3-4-1 - - ae-2-8-3-4-2 - attributes: - - bell_size - - tuning_pitch - - instrument_material -- id: ae-2-8-3-5 - name: Trumpets & Cornets - children: - - ae-2-8-3-5-1 - - ae-2-8-3-5-2 - - ae-2-8-3-5-3 - attributes: - - bell_size - - tuning_pitch - - instrument_material -- id: ae-2-8-3-6 - name: Tubas - children: - - ae-2-8-3-6-1 - attributes: - - bell_size - - tuning_pitch - - instrument_material -- id: ae-2-8-4 - name: Electronic Musical Instruments - children: - - ae-2-8-4-1 - - ae-2-8-4-2 - - ae-2-8-4-3 - - ae-2-8-4-4 - attributes: - - instrument_material -- id: ae-2-8-4-1 - name: Audio Samplers - children: - - ae-2-8-4-1-1 - - ae-2-8-4-1-2 - attributes: - - instrument_material -- id: ae-2-8-4-2 - name: MIDI Controllers - children: - - ae-2-8-4-2-1 - - ae-2-8-4-2-2 - attributes: - - interface_type - - instrument_material -- id: ae-2-8-4-3 - name: Musical Keyboards - children: - - ae-2-8-4-3-1 - - ae-2-8-4-3-3 - - ae-2-8-4-3-4 - attributes: - - interface_type - - key_type - - instrument_material -- id: ae-2-8-4-4 - name: Sound Synthesizers - children: - - ae-2-8-4-4-1 - - ae-2-8-4-4-2 - - ae-2-8-4-4-3 - - ae-2-8-4-4-4 - attributes: - - polyphony - - synthesis_method - - instrument_material -- id: ae-2-8-5 - name: Percussion - children: - - ae-2-8-5-1 - - ae-2-8-5-2 - - ae-2-8-5-3 - - ae-2-8-5-4 - - ae-2-8-5-5 - - ae-2-8-5-6 - - ae-2-8-5-7 - - ae-2-8-5-8 - - ae-2-8-5-9 - - ae-2-8-5-10 - - ae-2-8-5-11 - attributes: - - instrument_material -- id: ae-2-8-5-1 - name: Bass Drums - children: - - ae-2-8-5-1-1 - - ae-2-8-5-1-2 - attributes: - - instrument_material -- id: ae-2-8-5-2 - name: Cymbals - children: - - ae-2-8-5-2-1 - - ae-2-8-5-2-2 - - ae-2-8-5-2-3 - - ae-2-8-5-2-4 - - ae-2-8-5-2-5 - - ae-2-8-5-2-6 - attributes: - - instrument_material -- id: ae-2-8-5-3 - name: Drum Kits - children: - - ae-2-8-5-3-1 - - ae-2-8-5-3-2 - - ae-2-8-5-3-3 - - ae-2-8-5-3-4 - - ae-2-8-5-3-5 - - ae-2-8-5-3-6 - - ae-2-8-5-3-7 - - ae-2-8-5-3-8 - - ae-2-8-5-3-9 - attributes: - - drum_configuration - - instrument_material -- id: ae-2-8-5-4 - name: Electronic Drums - children: - - ae-2-8-5-4-1 - - ae-2-8-5-4-2 - - ae-2-8-5-4-3 - attributes: - - instrument_components - - interface_type - - instrument_material -- id: ae-2-8-5-5 - name: Glockenspiels & Xylophones - children: - - ae-2-8-5-5-1 - - ae-2-8-5-5-2 - - ae-2-8-5-5-3 - - ae-2-8-5-5-4 - attributes: - - instrument_material -- id: ae-2-8-5-6 - name: Gongs - children: - - ae-2-8-5-6-1 - - ae-2-8-5-6-2 - - ae-2-8-5-6-3 - attributes: - - instrument_material -- id: ae-2-8-5-7 - name: Hand Percussion - children: - - ae-2-8-5-7-1 - - ae-2-8-5-7-2 - - ae-2-8-5-7-3 - - ae-2-8-5-7-4 - - ae-2-8-5-7-5 - - ae-2-8-5-7-6 - - ae-2-8-5-7-7 - - ae-2-8-5-7-8 - - ae-2-8-5-7-9 - - ae-2-8-5-7-10 - - ae-2-8-5-7-11 - attributes: - - instrument_material -- id: ae-2-8-5-7-1 - name: Claves & Castanets - children: - - ae-2-8-5-7-1-1 - - ae-2-8-5-7-1-2 - - ae-2-8-5-7-1-3 - attributes: - - instrument_material -- id: ae-2-8-5-7-2 - name: Finger & Hand Cymbals - children: - - ae-2-8-5-7-2-1 - - ae-2-8-5-7-2-2 - - ae-2-8-5-7-2-3 - attributes: - - instrument_material -- id: ae-2-8-5-7-3 - name: Hand Bells & Chimes - children: - - ae-2-8-5-7-3-1 - - ae-2-8-5-7-3-2 - - ae-2-8-5-7-3-3 - - ae-2-8-5-7-3-4 - attributes: - - instrument_material -- id: ae-2-8-5-7-4 - name: Hand Drums - children: - - ae-2-8-5-7-4-1 - - ae-2-8-5-7-4-2 - - ae-2-8-5-7-4-3 - - ae-2-8-5-7-4-4 - - ae-2-8-5-7-4-5 - - ae-2-8-5-7-4-6 - - ae-2-8-5-7-4-7 - attributes: - - instrument_material -- id: ae-2-8-5-7-4-1 - name: Bongos - children: - - ae-2-8-5-7-4-1-1 - attributes: - - instrument_material -- id: ae-2-8-5-7-4-2 - name: Cajons - children: - - ae-2-8-5-7-4-2-1 - - ae-2-8-5-7-4-2-2 - - ae-2-8-5-7-4-2-3 - attributes: - - accessory_size - - instrument_material -- id: ae-2-8-5-7-4-3 - name: Congas - children: - - ae-2-8-5-7-4-3-1 - - ae-2-8-5-7-4-3-2 - - ae-2-8-5-7-4-3-3 - attributes: - - instrument_material -- id: ae-2-8-5-7-4-4 - name: Frame Drums - children: - - ae-2-8-5-7-4-4-1 - - ae-2-8-5-7-4-4-2 - - ae-2-8-5-7-4-4-3 - attributes: - - instrument_material -- id: ae-2-8-5-7-4-5 - name: Goblet Drums - children: - - ae-2-8-5-7-4-5-1 - - ae-2-8-5-7-4-5-2 - - ae-2-8-5-7-4-5-3 - attributes: - - instrument_material -- id: ae-2-8-5-7-4-6 - name: Tablas - children: - - ae-2-8-5-7-4-6-1 - - ae-2-8-5-7-4-6-2 - - ae-2-8-5-7-4-6-3 - attributes: - - instrument_material -- id: ae-2-8-5-7-4-7 - name: Talking Drums - children: - - ae-2-8-5-7-4-7-1 - - ae-2-8-5-7-4-7-2 - - ae-2-8-5-7-4-7-3 - attributes: - - accessory_size - - instrument_material -- id: ae-2-8-5-7-5 - name: Musical Blocks - children: [] - attributes: - - accessory_size - - instrument_material -- id: ae-2-8-5-7-6 - name: Musical Cowbells - children: - - ae-2-8-5-7-6-1 - - ae-2-8-5-7-6-2 - - ae-2-8-5-7-6-3 - attributes: - - accessory_size - - instrument_material -- id: ae-2-8-5-7-7 - name: Musical Scrapers & Ratchets - children: - - ae-2-8-5-7-7-3 - - ae-2-8-5-7-7-4 - - ae-2-8-5-7-7-5 - attributes: - - instrument_material -- id: ae-2-8-5-7-8 - name: Musical Shakers - children: - - ae-2-8-5-7-8-1 - - ae-2-8-5-7-8-2 - - ae-2-8-5-7-8-3 - - ae-2-8-5-7-8-4 - attributes: - - accessory_size - - instrument_material -- id: ae-2-8-5-7-9 - name: Musical Triangles - children: [] - attributes: - - instrument_material -- id: ae-2-8-5-7-10 - name: Tambourines - children: - - ae-2-8-5-7-10-1 - - ae-2-8-5-7-10-2 - - ae-2-8-5-7-10-3 - attributes: - - instrument_material -- id: ae-2-8-5-7-11 - name: Vibraslaps - children: - - ae-2-8-5-7-11-1 - - ae-2-8-5-7-11-2 - attributes: - - instrument_material -- id: ae-2-8-5-8 - name: Hi-Hats - children: [] - attributes: - - instrument_material -- id: ae-2-8-5-9 - name: Practice Pads - children: [] - attributes: - - instrument_material -- id: ae-2-8-5-10 - name: Snare Drums - children: - - ae-2-8-5-10-1 - - ae-2-8-5-10-2 - - ae-2-8-5-10-3 - attributes: - - instrument_material -- id: ae-2-8-5-11 - name: Tom-Toms - children: - - ae-2-8-5-11-1 - - ae-2-8-5-11-2 - attributes: - - tom_tom_design - - instrument_material -- id: ae-2-8-6 - name: Pianos - children: - - ae-2-8-6-1 - - ae-2-8-6-2 - - ae-2-8-6-3 - - ae-2-8-6-4 - attributes: - - interface_type - - keyboard_action - - piano_pedals - - piano_size - - instrument_material -- id: ae-2-8-7 - name: String Instruments - children: - - ae-2-8-7-1 - - ae-2-8-7-2 - - ae-2-8-7-3 - - ae-2-8-7-4 - - ae-2-8-7-5 - - ae-2-8-7-6 - attributes: - - instrument_material -- id: ae-2-8-7-1 - name: Cellos - children: - - ae-2-8-7-1-1 - - ae-2-8-7-1-2 - attributes: - - string_instrument_size - - instrument_bow_material - - instrument_material -- id: ae-2-8-7-2 - name: Guitars - children: - - ae-2-8-7-2-1 - - ae-2-8-7-2-2 - - ae-2-8-7-2-3 - - ae-2-8-7-2-4 - attributes: - - color - - fingerboard_material - - guitar_size - - neck_material - - instrument_material - - instrument_string_material -- id: ae-2-8-7-3 - name: Harps - children: - - ae-2-8-7-3-1 - - ae-2-8-7-3-2 - - ae-2-8-7-3-3 - - ae-2-8-7-3-4 - attributes: - - harp_size - - instrument_material -- id: ae-2-8-7-4 - name: Upright Basses - children: - - ae-2-8-7-4-1 - - ae-2-8-7-4-2 - attributes: - - string_instrument_size - - instrument_bow_material - - instrument_material -- id: ae-2-8-7-5 - name: Violas - children: [] - attributes: - - instrument_bow_material - - instrument_material -- id: ae-2-8-7-6 - name: Violins - children: [] - attributes: - - string_instrument_size - - instrument_bow_material - - instrument_material -- id: ae-2-8-8 - name: Woodwinds - children: - - ae-2-8-8-1 - - ae-2-8-8-2 - - ae-2-8-8-3 - - ae-2-8-8-4 - - ae-2-8-8-5 - - ae-2-8-8-6 - - ae-2-8-8-7 - - ae-2-8-8-8 - - ae-2-8-8-9 - - ae-2-8-8-10 - - ae-2-8-8-11 - - ae-2-8-8-12 - - ae-2-8-8-13 - - ae-2-8-8-14 - attributes: - - instrument_material -- id: ae-2-8-8-1 - name: Bassoons - children: - - ae-2-8-8-1-1 - - ae-2-8-8-1-2 - - ae-2-8-8-1-3 - attributes: - - instrument_accessory_finish - - instrument_material -- id: ae-2-8-8-2 - name: Clarinets - children: - - ae-2-8-8-2-1 - - ae-2-8-8-2-2 - - ae-2-8-8-2-3 - - ae-2-8-8-2-4 - - ae-2-8-8-2-5 - - ae-2-8-8-2-6 - - ae-2-8-8-2-7 - attributes: - - clarinet_key_system - - mouthpiece - - instrument_accessory_finish - - instrument_material -- id: ae-2-8-8-3 - name: Flutes - children: - - ae-2-8-8-3-1 - - ae-2-8-8-3-2 - - ae-2-8-8-3-3 - - ae-2-8-8-3-4 - attributes: - - flute_configuration - - headjoint_cut - - instrument_accessory_finish - - instrument_material -- id: ae-2-8-8-4 - name: Flutophones - children: - - ae-2-8-8-4-1 - - ae-2-8-8-4-2 - - ae-2-8-8-4-3 - - ae-2-8-8-4-4 - attributes: - - color - - pattern - - instrument_material -- id: ae-2-8-8-5 - name: Harmonicas - children: - - ae-2-8-8-5-1 - - ae-2-8-8-5-2 - - ae-2-8-8-5-3 - - ae-2-8-8-5-4 - - ae-2-8-8-5-5 - - ae-2-8-8-5-6 - - ae-2-8-8-5-7 - attributes: - - instrument_material -- id: ae-2-8-8-6 - name: Jew's Harps - children: - - ae-2-8-8-6-1 - - ae-2-8-8-6-2 - attributes: - - accessory_size - - tuning - - instrument_material -- id: ae-2-8-8-7 - name: Melodicas - children: - - ae-2-8-8-7-1 - - ae-2-8-8-7-2 - attributes: - - color - - melodica_style - - pattern - - instrument_material -- id: ae-2-8-8-8 - name: Musical Pipes - children: - - ae-2-8-8-8-1 - - ae-2-8-8-8-2 - - ae-2-8-8-8-3 - attributes: - - musical_key - - instrument_material -- id: ae-2-8-8-9 - name: Oboes & English Horns - children: - - ae-2-8-8-9-1 - - ae-2-8-8-9-2 - attributes: - - oboe_key_system - - instrument_material -- id: ae-2-8-8-10 - name: Ocarinas - children: - - ae-2-8-8-10-1 - - ae-2-8-8-10-2 - - ae-2-8-8-10-3 - attributes: - - ocarina_style - - instrument_material -- id: ae-2-8-8-11 - name: Recorders - children: - - ae-2-8-8-11-1 - - ae-2-8-8-11-2 - - ae-2-8-8-11-3 - - ae-2-8-8-11-4 - - ae-2-8-8-11-5 - - ae-2-8-8-11-6 - - ae-2-8-8-11-7 - attributes: - - recorder_fingering_system - - instrument_material -- id: ae-2-8-8-12 - name: Saxophones - children: - - ae-2-8-8-12-1 - - ae-2-8-8-12-2 - - ae-2-8-8-12-3 - - ae-2-8-8-12-4 - - ae-2-8-8-12-5 - attributes: - - extended_saxophone_range - - tuning_pitch - - instrument_accessory_finish - - instrument_material -- id: ae-2-8-8-13 - name: Tin Whistles - children: - - ae-2-8-8-13-1 - - ae-2-8-8-13-2 - - ae-2-8-8-13-3 - - ae-2-8-8-13-4 - - ae-2-8-8-13-5 - attributes: - - color - - pattern - - instrument_material -- id: ae-2-8-8-14 - name: Train Whistles - children: - - ae-2-8-8-14-1 - - ae-2-8-8-14-2 - attributes: - - accessory_size - - musical_key - - instrument_material -- id: ae-3 - name: Party & Celebration - children: - - ae-3-1 - - ae-3-2 - - ae-3-3 - - ae-3-4 - attributes: [] -- id: ae-3-1 - name: Gift Giving - children: - - ae-3-1-1 - - ae-3-1-2 - - ae-3-1-3 - - ae-3-1-5 - - ae-3-1-6 - attributes: [] -- id: ae-3-1-1 - name: Corsage & Boutonnière Pins - children: [] - attributes: - - attachment_options - - color - - item_style - - material -- id: ae-3-1-2 - name: Corsages & Boutonnières - children: [] - attributes: - - color - - corsage_boutonni_re_design - - ribbon_color -- id: ae-3-1-3 - name: Fresh Cut Flowers - children: - - ae-3-1-3-1 - - ae-3-1-3-2 - - ae-3-1-3-3 - - ae-3-1-3-4 - - ae-3-1-3-5 - - ae-3-1-3-6 - attributes: - - arrangement - - color - - stem_length -- id: ae-3-1-5 - name: Gift Wrapping - children: - - ae-3-1-5-1 - - ae-3-1-5-2 - - ae-3-1-5-3 - - ae-3-1-5-4 - - ae-3-1-5-5 - attributes: - - material -- id: ae-3-1-5-1 - name: Gift Bags - children: [] - attributes: - - accessory_size - - color - - gift_bag_handle_design - - pattern - - bag_case_material -- id: ae-3-1-5-2 - name: Gift Boxes & Tins - children: [] - attributes: - - accessory_size - - color - - material - - pattern - - shape -- id: ae-3-1-5-3 - name: Gift Tags & Labels - children: [] - attributes: - - color - - material - - pattern - - shape -- id: ae-3-1-5-4 - name: Tissue Paper - children: [] - attributes: - - accessory_size - - color - - material - - pattern -- id: ae-3-1-5-5 - name: Wrapping Paper - children: [] - attributes: - - color - - material - - pattern -- id: ae-3-1-6 - name: Greeting & Note Cards - children: - - ae-3-1-6-2 - - ae-3-1-6-3 - - ae-3-1-6-4 - attributes: - - card_size - - celebration_type - - item_style - - personalization_design -- id: ae-3-2 - name: Party Supplies - children: - - ae-3-2-1 - - ae-3-2-2 - - ae-3-2-3 - - ae-3-2-4 - - ae-3-2-5 - - ae-3-2-6 - - ae-3-2-7 - - ae-3-2-8 - - ae-3-2-9 - - ae-3-2-10 - - ae-3-2-11 - - ae-3-2-12 - - ae-3-2-13 - - ae-3-2-14 - - ae-3-2-15 - - ae-3-2-16 - - ae-3-2-17 - - ae-3-2-18 - - ae-3-2-19 - - ae-3-2-20 - - ae-3-2-21 - - ae-3-2-22 - - ae-3-2-23 - - ae-3-2-24 - - ae-3-2-25 - - ae-3-2-26 - - ae-3-2-27 - - ae-3-2-28 - - ae-3-2-29 - attributes: [] -- id: ae-3-2-1 - name: Advice Cards - children: [] - attributes: - - card_size - - item_style -- id: ae-3-2-2 - name: Balloon Kits - children: [] - attributes: - - balloon_kit_items_included - - celebration_type - - color - - pattern -- id: ae-3-2-3 - name: Balloons - children: [] - attributes: - - accessory_size - - balloon_shape - - celebration_type - - color - - pattern -- id: ae-3-2-4 - name: Banners - children: [] - attributes: - - banner_design - - celebration_type -- id: ae-3-2-5 - name: Birthday Candles - children: [] - attributes: - - birthday_candle_design - - color - - pattern -- id: ae-3-2-6 - name: Chair Sashes - children: - - ae-3-2-6-1 - - ae-3-2-6-2 - - ae-3-2-6-3 - - ae-3-2-6-4 - attributes: - - color - - pattern - - fabric -- id: ae-3-2-7 - name: Cocktail Decorations - children: - - ae-3-2-7-1 - - ae-3-2-7-2 - - ae-3-2-7-3 - - ae-3-2-7-4 - - ae-3-2-7-5 - attributes: - - cocktail_decoration_design - - color - - pattern - - cocktail_decoration_material -- id: ae-3-2-8 - name: Confetti - children: [] - attributes: - - color - - pattern - - shape -- id: ae-3-2-9 - name: Decorative Pom-Poms - children: [] - attributes: - - accessory_size - - color - - pattern - - decoration_material -- id: ae-3-2-10 - name: Drinking Games - children: [] - attributes: - - game_components - - game_difficulty - - game_name -- id: ae-3-2-11 - name: Drinking Straws & Stirrers - children: [] - attributes: - - accessory_size - - color - - material - - pattern - - straw_stirrer_design -- id: ae-3-2-12 - name: Envelope Seals - children: [] - attributes: - - envelope_seal_design - - material - - shape -- id: ae-3-2-13 - name: Event Programs - children: [] - attributes: - - celebration_type - - item_style - - paper_size - - program_format -- id: ae-3-2-14 - name: Fireworks & Firecrackers - children: - - ae-3-2-14-1 - - ae-3-2-14-2 - - ae-3-2-14-3 - attributes: - - accessory_size - - noise_intensity -- id: ae-3-2-15 - name: Inflatable Party Decorations - children: [] - attributes: - - decoration_material -- id: ae-3-2-16 - name: Invitations - children: [] - attributes: - - card_format - - celebration_type - - invitation_personalization_design - - item_style -- id: ae-3-2-17 - name: Noisemakers & Party Blowers - children: - - ae-3-2-17-1 - - ae-3-2-17-2 - - ae-3-2-17-3 - - ae-3-2-17-4 - - ae-3-2-17-5 - attributes: - - color - - material - - pattern -- id: ae-3-2-18 - name: Party Favors - children: [] - attributes: - - celebration_type - - material - - theme -- id: ae-3-2-19 - name: Party Games - children: [] - attributes: - - age_group - - game_difficulty -- id: ae-3-2-20 - name: Party Hats - children: [] - attributes: - - age_group - - color - - pattern -- id: ae-3-2-21 - name: Party Streamers & Curtains - children: - - ae-3-2-21-1 - - ae-3-2-21-2 - - ae-3-2-21-3 - - ae-3-2-21-4 - - ae-3-2-21-5 - attributes: - - color - - pattern -- id: ae-3-2-22 - name: Party Supply Kits - children: [] - attributes: - - celebration_type -- id: ae-3-2-23 - name: Piñatas - children: [] - attributes: - - accessory_size - - celebration_type - - material - - pi_ata_design -- id: ae-3-2-24 - name: Place Card Holders - children: [] - attributes: - - card_holder_design - - celebration_type - - material -- id: ae-3-2-25 - name: Place Cards - children: [] - attributes: - - card_design - - celebration_type - - material -- id: ae-3-2-26 - name: Response Cards - children: [] - attributes: - - card_design - - celebration_type -- id: ae-3-2-27 - name: Sparklers - children: [] - attributes: - - accessory_size -- id: ae-3-2-28 - name: Special Occasion Card Boxes & Holders - children: [] - attributes: - - celebration_type - - item_style - - material -- id: ae-3-2-29 - name: Spray String - children: [] - attributes: - - accessory_size - - celebration_type - - color -- id: ae-3-3 - name: Special Effects - children: - - ae-3-3-1 - - ae-3-3-2 - - ae-3-3-3 - - ae-3-3-4 - - ae-3-3-5 - attributes: [] -- id: ae-3-3-1 - name: Disco Balls - children: [] - attributes: - - accessory_size - - light_source - - material - - mounting_type - - power_source -- id: ae-3-3-2 - name: Fog Machines - children: [] - attributes: - - fluid_type - - sfx_control_technology -- id: ae-3-3-3 - name: Special Effects Controllers - children: - - ae-3-3-3-1 - - ae-3-3-3-2 - - ae-3-3-3-3 - attributes: - - compatible_special_effects_device - - connection_method - - power_source -- id: ae-3-3-4 - name: Special Effects Light Stands - children: [] - attributes: - - compatible_special_effects_device - - load_capacity - - material - - mounting_type -- id: ae-3-3-5 - name: Special Effects Lighting - children: - - ae-3-3-5-1 - - ae-3-3-5-2 - - ae-3-3-5-3 - - ae-3-3-5-4 - - ae-3-3-5-5 - attributes: - - light_color - - mounting_type - - power_source - - sfx_control_technology -- id: ae-3-4 - name: Trophies & Awards - children: - - ae-3-4-1 - - ae-3-4-2 - - ae-3-4-3 - - ae-3-4-4 - - ae-3-4-5 - attributes: - - award_occasion -- id: ae-3-4-1 - name: Award Certificates - children: [] - attributes: - - award_design - - award_occasion -- id: ae-3-4-2 - name: Award Pins & Medals - children: - - ae-3-4-2-1 - - ae-3-4-2-2 - - ae-3-4-2-3 - - ae-3-4-2-4 - attributes: - - award_occasion - - material -- id: ae-3-4-3 - name: Award Plaques - children: [] - attributes: - - award_occasion - - material -- id: ae-3-4-4 - name: Award Ribbons - children: - - ae-3-4-4-1 - - ae-3-4-4-2 - attributes: - - accessory_size - - award_occasion - - color - - pattern -- id: ae-3-4-5 - name: Trophies - children: [] - attributes: - - accessory_size - - award_occasion - - engraving - - material - - trophy_design -- id: ae-2-1-1-9-1 - name: Doll Making Kits - children: [] - attributes: - - age_group -- id: ae-2-1-1-9-2 - name: Wooden Toy Craft Kits - children: [] - attributes: - - age_group -- id: ae-2-1-2-2-1-1 - name: Buttons - children: [] - attributes: - - accessory_size - - button_snap_closure_type - - color - - pattern - - fastener_material -- id: ae-2-1-2-2-1-2 - name: Snaps - children: [] - attributes: - - accessory_size - - button_snap_closure_type - - color - - pattern - - fastener_material -- id: ae-2-1-2-2-3-1 - name: Eyelets - children: [] - attributes: - - accessory_size - - color - - pattern - - fastener_material -- id: ae-2-1-2-2-3-2 - name: Grommets - children: [] - attributes: - - accessory_size - - color - - pattern - - fastener_material -- id: ae-2-1-2-2-3-3 - name: Hooks & Eyes - children: [] - attributes: - - accessory_size - - color - - pattern - - fastener_material -- id: ae-2-1-2-2-4-1 - name: Adhesive-Backed Hook & Loop Fasteners - children: [] - attributes: - - color - - pattern - - fastener_material -- id: ae-2-1-2-2-4-2 - name: Iron-On Hook & Loop Fasteners - children: [] - attributes: - - color - - pattern - - fastener_material -- id: ae-2-1-2-2-4-3 - name: Self-Adhesive Hook & Loop Fasteners - children: [] - attributes: - - color - - pattern - - fastener_material -- id: ae-2-1-2-2-4-4 - name: Sew-On Hook & Loop Fasteners - children: [] - attributes: - - color - - pattern - - fastener_material -- id: ae-2-1-2-2-6-1 - name: Closed-End Zippers - children: [] - attributes: - - color - - fastener_material -- id: ae-2-1-2-2-6-2 - name: Open-End Zippers - children: [] - attributes: - - color - - fastener_material -- id: ae-2-1-2-2-6-3 - name: Reversible Zippers - children: [] - attributes: - - color - - fastener_material -- id: ae-2-1-2-2-6-4 - name: Two-Way Zippers - children: [] - attributes: - - color - - fastener_material -- id: ae-2-1-2-3-3-1 - name: Acrylic Ink - children: [] - attributes: - - color - - ink_form -- id: ae-2-1-2-3-3-2 - name: Alcohol Ink - children: [] - attributes: - - color - - ink_form -- id: ae-2-1-2-3-3-3 - name: Calligraphy Ink - children: [] - attributes: - - color - - ink_form -- id: ae-2-1-2-3-3-4 - name: Drawing Ink - children: [] - attributes: - - color - - ink_form -- id: ae-2-1-2-3-3-5 - name: India Ink - children: [] - attributes: - - color - - ink_form -- id: ae-2-1-2-3-3-6 - name: Sumi Ink - children: [] - attributes: - - color - - ink_form -- id: ae-2-1-2-3-3-7 - name: Watercolor Ink - children: [] - attributes: - - color - - ink_form -- id: ae-2-1-2-4-2-1 - name: Craft Wood Blocks - children: [] - attributes: - - lumber_wood_type -- id: ae-2-1-2-4-2-2 - name: Craft Wood Cutouts - children: [] - attributes: - - lumber_wood_type -- id: ae-2-1-2-4-2-3 - name: Craft Wood Dowels - children: [] - attributes: - - lumber_wood_type -- id: ae-2-1-2-4-2-4 - name: Craft Wood Shapes - children: [] - attributes: - - lumber_wood_type -- id: ae-2-1-2-4-2-5 - name: Craft Wood Sheets - children: [] - attributes: - - lumber_wood_type -- id: ae-2-1-2-4-2-6 - name: Craft Wood Slices - children: [] - attributes: - - lumber_wood_type -- id: ae-2-1-2-4-2-7 - name: Craft Wood Sticks - children: [] - attributes: - - lumber_wood_type -- id: ae-2-1-2-5-1-1 - name: Clear Glue - children: [] - attributes: - - suitable_for_crafting_material -- id: ae-2-1-2-5-1-2 - name: Craft Glue - children: [] - attributes: - - suitable_for_crafting_material -- id: ae-2-1-2-5-1-3 - name: Fabric Glue - children: [] - attributes: - - suitable_for_crafting_material -- id: ae-2-1-2-5-1-4 - name: Glue Stick - children: [] - attributes: - - suitable_for_crafting_material -- id: ae-2-1-2-5-1-5 - name: Liquid Glue - children: [] - attributes: - - suitable_for_crafting_material -- id: ae-2-1-2-5-1-6 - name: School Glue - children: [] - attributes: - - suitable_for_crafting_material -- id: ae-2-1-2-5-1-7 - name: White Glue - children: [] - attributes: - - fiber_art_project_type -- id: ae-2-1-2-5-4-1 - name: Corsage Tape - children: [] - attributes: [] -- id: ae-2-1-2-5-4-2 - name: Stem Tape - children: [] - attributes: [] -- id: ae-2-1-2-5-5-1 - name: Fusible Bonding Tape - children: [] - attributes: [] -- id: ae-2-1-2-5-5-2 - name: Fusible Hem Tape - children: [] - attributes: [] -- id: ae-2-1-2-5-5-3 - name: Fusible Seam Tape - children: [] - attributes: [] -- id: ae-2-1-2-5-5-4 - name: Fusible Web Tape - children: [] - attributes: [] -- id: ae-2-1-2-6-1-1 - name: Beading Thread - children: [] - attributes: - - material -- id: ae-2-1-2-6-1-2 - name: Chain Rolls - children: [] - attributes: - - material -- id: ae-2-1-2-6-2-1 - name: Crochet Thread - children: [] - attributes: - - color - - pattern - - fabric -- id: ae-2-1-2-6-2-2 - name: Cross-Stitch Thread - children: [] - attributes: - - color - - pattern - - fabric -- id: ae-2-1-2-6-2-4 - name: Quilting Thread - children: [] - attributes: - - color - - pattern - - fabric -- id: ae-2-1-2-6-2-6 - name: Sewing Thread - children: [] - attributes: - - color - - pattern - - fabric -- id: ae-2-1-2-6-2-7 - name: Upholstery Thread - children: [] - attributes: - - color - - pattern - - fabric -- id: ae-2-1-2-6-3-1 - name: Batt Fiber - children: [] - attributes: - - color - - pattern - - fabric -- id: ae-2-1-2-6-3-2 - name: Cloud Fiber - children: [] - attributes: - - color - - pattern - - fabric -- id: ae-2-1-2-6-3-3 - name: Fleece Fiber - children: [] - attributes: - - color - - pattern - - fabric -- id: ae-2-1-2-6-3-4 - name: Roving Fiber - children: [] - attributes: - - color - - pattern - - fabric -- id: ae-2-1-2-6-3-5 - name: Sliver Fiber - children: [] - attributes: - - color - - pattern - - fabric -- id: ae-2-1-2-6-3-6 - name: Staple Fiber - children: [] - attributes: - - color - - pattern - - fabric -- id: ae-2-1-2-6-3-7 - name: Top Fiber - children: [] - attributes: - - color - - pattern - - fabric -- id: ae-2-1-2-7-3-1 - name: Accu-Flex Wire - children: [] - attributes: - - color - - jewelry_project_type - - pattern - - wire_rope_material -- id: ae-2-1-2-7-3-2 - name: Beading Wire - children: [] - attributes: - - color - - jewelry_project_type - - pattern - - wire_rope_material -- id: ae-2-1-2-7-3-3 - name: Craft Wire - children: [] - attributes: - - color - - jewelry_project_type - - pattern - - wire_rope_material -- id: ae-2-1-2-7-3-4 - name: French Wire - children: [] - attributes: - - color - - jewelry_project_type - - pattern - - wire_rope_material -- id: ae-2-1-2-7-3-5 - name: Memory Wire - children: [] - attributes: - - color - - jewelry_project_type - - pattern - - wire_rope_material -- id: ae-2-1-2-7-3-6 - name: Soft-Flex Wire - children: [] - attributes: - - color - - jewelry_project_type - - pattern - - wire_rope_material -- id: ae-2-1-2-7-3-7 - name: Tiger Tail Wire - children: [] - attributes: - - color - - jewelry_project_type - - pattern - - wire_rope_material -- id: ae-2-1-2-8-1-1 - name: Beaded Patches - children: [] - attributes: - - color - - patch_shape - - pattern - - textile_craft_project_type - - theme - - embellishment_trim_material -- id: ae-2-1-2-8-1-2 - name: Embellished Patches - children: [] - attributes: - - color - - patch_shape - - pattern - - textile_craft_project_type - - theme - - embellishment_trim_material -- id: ae-2-1-2-8-1-3 - name: Embroidered Patches - children: [] - attributes: - - color - - patch_shape - - pattern - - textile_craft_project_type - - theme - - embellishment_trim_material -- id: ae-2-1-2-8-1-4 - name: Fabric Patches - children: [] - attributes: - - color - - patch_shape - - pattern - - textile_craft_project_type - - theme - - embellishment_trim_material -- id: ae-2-1-2-8-1-5 - name: Iron-On Appliques - children: [] - attributes: - - applique_shape - - color - - pattern - - textile_craft_project_type - - theme - - embellishment_trim_material -- id: ae-2-1-2-8-1-6 - name: Motif Patches - children: [] - attributes: - - color - - patch_shape - - pattern - - textile_craft_project_type - - theme - - embellishment_trim_material -- id: ae-2-1-2-8-1-7 - name: Sequin Patches - children: [] - attributes: - - color - - patch_shape - - pattern - - textile_craft_project_type - - theme - - embellishment_trim_material -- id: ae-2-1-2-8-1-8 - name: Sew-On Appliques - children: [] - attributes: - - applique_shape - - color - - pattern - - textile_craft_project_type - - theme - - embellishment_trim_material -- id: ae-2-1-2-8-4-1 - name: 3D Decorative Stickers - children: [] - attributes: - - adhesive_type - - celebration_type - - color - - pattern - - theme - - embellishment_trim_material -- id: ae-2-1-2-8-4-2 - name: Embossed Decorative Stickers - children: [] - attributes: - - adhesive_type - - celebration_type - - color - - pattern - - theme - - embellishment_trim_material -- id: ae-2-1-2-8-4-4 - name: Puffy Decorative Stickers - children: [] - attributes: - - adhesive_type - - celebration_type - - color - - pattern - - theme - - embellishment_trim_material -- id: ae-2-1-2-8-5-1 - name: Braided Embellishments - children: [] - attributes: - - color - - pattern - - embellishment_trim_material -- id: ae-2-1-2-8-5-2 - name: Buttonholes - children: [] - attributes: - - color - - pattern - - embellishment_trim_material -- id: ae-2-1-2-8-5-3 - name: Clear Embellishments - children: [] - attributes: - - color - - pattern - - embellishment_trim_material -- id: ae-2-1-2-8-5-4 - name: Fold-Over Embellishments - children: [] - attributes: - - color - - pattern - - embellishment_trim_material -- id: ae-2-1-2-8-5-5 - name: Knit Embellishments - children: [] - attributes: - - color - - pattern - - embellishment_trim_material -- id: ae-2-1-2-8-5-6 - name: Woven Embellishments - children: [] - attributes: - - color - - pattern - - embellishment_trim_material -- id: ae-2-1-2-8-6-1 - name: Goose Feathers - children: [] - attributes: - - color - - craft_project_type - - pattern -- id: ae-2-1-2-8-6-2 - name: Marabou Feathers - children: [] - attributes: - - color - - craft_project_type - - pattern -- id: ae-2-1-2-8-6-3 - name: Ostrich Feathers - children: [] - attributes: - - color - - craft_project_type - - pattern -- id: ae-2-1-2-8-6-4 - name: Peacock Feathers - children: [] - attributes: - - color - - craft_project_type - - pattern -- id: ae-2-1-2-8-6-5 - name: Rooster Feathers - children: [] - attributes: - - color - - craft_project_type - - pattern -- id: ae-2-1-2-8-6-6 - name: Synthetic Feathers - children: [] - attributes: - - color - - craft_project_type - - pattern -- id: ae-2-1-2-8-6-7 - name: Turkey Feathers - children: [] - attributes: - - color - - craft_project_type - - pattern -- id: ae-2-1-2-8-8-1 - name: Acrylic Stones - children: [] - attributes: - - color - - pattern - - stone_shape -- id: ae-2-1-2-8-8-2 - name: Cabochons - children: [] - attributes: - - color - - pattern - - stone_shape -- id: ae-2-1-2-8-8-3 - name: Crystals - children: [] - attributes: - - color - - pattern - - stone_shape -- id: ae-2-1-2-8-8-4 - name: Druzy Stones - children: [] - attributes: - - color - - pattern - - stone_shape -- id: ae-2-1-2-8-8-5 - name: Glass Stones - children: [] - attributes: - - color - - pattern - - stone_shape -- id: ae-2-1-2-8-8-6 - name: Natural Stones - children: [] - attributes: - - color - - pattern - - stone_shape -- id: ae-2-1-2-8-8-7 - name: Pearls - children: [] - attributes: - - color - - pattern -- id: ae-2-1-2-8-9-1 - name: Flatbacks - children: [] - attributes: - - color - - pattern - - stone_shape -- id: ae-2-1-2-8-9-2 - name: Hotfix Rhinestones - children: [] - attributes: - - color - - pattern - - stone_shape -- id: ae-2-1-2-8-9-3 - name: Self-Adhesive Rhinestones - children: [] - attributes: - - color - - pattern - - stone_shape -- id: ae-2-1-2-8-9-4 - name: Sew-On Rhinestones - children: [] - attributes: - - color - - pattern - - stone_shape -- id: ae-2-1-2-8-10-1 - name: Beaded Trim - children: [] - attributes: - - color - - craft_project_type - - pattern - - embellishment_trim_material -- id: ae-2-1-2-8-10-2 - name: Fringe Trim - children: [] - attributes: - - color - - craft_project_type - - pattern - - embellishment_trim_material -- id: ae-2-1-2-8-10-3 - name: Grosgrain Ribbons - children: [] - attributes: - - color - - craft_project_type - - pattern - - embellishment_trim_material -- id: ae-2-1-2-8-10-4 - name: Lace Trim - children: [] - attributes: - - color - - craft_project_type - - pattern - - embellishment_trim_material -- id: ae-2-1-2-8-10-5 - name: Organza Ribbons - children: [] - attributes: - - color - - craft_project_type - - pattern - - embellishment_trim_material -- id: ae-2-1-2-8-10-6 - name: Pom-Pom Trim - children: [] - attributes: - - color - - craft_project_type - - pattern - - embellishment_trim_material -- id: ae-2-1-2-8-10-7 - name: Ric-Rac Trim - children: [] - attributes: - - color - - craft_project_type - - pattern - - embellishment_trim_material -- id: ae-2-1-2-8-10-8 - name: Satin Ribbons - children: [] - attributes: - - color - - craft_project_type - - pattern - - embellishment_trim_material -- id: ae-2-1-2-8-10-9 - name: Sequin Trim - children: [] - attributes: - - color - - craft_project_type - - pattern - - embellishment_trim_material -- id: ae-2-1-2-8-10-10 - name: Tassel Trim - children: [] - attributes: - - color - - craft_project_type - - pattern - - embellishment_trim_material -- id: ae-2-1-2-8-10-11 - name: Velvet Ribbons - children: [] - attributes: - - color - - craft_project_type - - pattern - - embellishment_trim_material -- id: ae-2-1-2-8-11-1 - name: Glitter Flakes - children: [] - attributes: - - color - - craft_project_type - - glitter_shape -- id: ae-2-1-2-8-11-2 - name: Glitter Glue - children: [] - attributes: - - color - - craft_project_type - - glitter_shape -- id: ae-2-1-2-8-11-3 - name: Glitter Powder - children: [] - attributes: - - color - - craft_project_type - - glitter_shape -- id: ae-2-1-2-8-11-4 - name: Loose Glitter - children: [] - attributes: - - color - - craft_project_type - - glitter_shape -- id: ae-2-1-2-8-11-5 - name: Sequins - children: [] - attributes: - - color - - craft_project_type - - sequin_shape -- id: ae-2-1-2-8-12-1 - name: Care Labels - children: [] - attributes: - - color - - labelling_project_type - - pattern - - embellishment_trim_material -- id: ae-2-1-2-8-12-2 - name: Custom Labels - children: [] - attributes: - - color - - labelling_project_type - - pattern - - embellishment_trim_material -- id: ae-2-1-2-8-12-3 - name: Logo Labels - children: [] - attributes: - - color - - labelling_project_type - - pattern - - embellishment_trim_material -- id: ae-2-1-2-8-12-4 - name: Name Labels - children: [] - attributes: - - color - - labelling_project_type - - pattern - - embellishment_trim_material -- id: ae-2-1-2-8-12-5 - name: Size Labels - children: [] - attributes: - - color - - labelling_project_type - - pattern - - embellishment_trim_material -- id: ae-2-1-2-12-1-1-1 - name: Air-Dry Clay - children: [] - attributes: - - clay_texture - - color -- id: ae-2-1-2-12-1-1-2 - name: Oven-Bake Clay - children: [] - attributes: - - clay_texture - - color -- id: ae-2-1-2-12-1-1-3 - name: Polymer Clay - children: [] - attributes: - - clay_texture - - color -- id: ae-2-1-2-12-1-1-4 - name: Sculpting Clay - children: [] - attributes: - - clay_texture - - color -- id: ae-2-1-2-12-1-1-5 - name: Self-Hardening Clay - children: [] - attributes: - - clay_texture - - color -- id: ae-2-1-2-12-3-1 - name: Plaster Gauze Rolls - children: [] - attributes: - - color - - pattern - - pottery_sculpting_project_type -- id: ae-2-1-2-12-3-2 - name: Plaster Gauze Strips - children: [] - attributes: - - color - - pattern - - pottery_sculpting_project_type -- id: ae-2-1-2-13-1 - name: Beeswax - children: [] - attributes: - - color - - scent -- id: ae-2-1-2-13-2 - name: Gel Wax - children: [] - attributes: - - color - - scent -- id: ae-2-1-2-13-3 - name: Palm Wax - children: [] - attributes: - - color - - scent -- id: ae-2-1-2-13-4 - name: Paraffin - children: [] - attributes: - - color - - scent -- id: ae-2-1-2-13-5 - name: Soy Wax - children: [] - attributes: - - color - - scent -- id: ae-2-1-2-14-1-1-1 - name: Aida Cloth - children: [] - attributes: - - color - - paper_size - - pattern -- id: ae-2-1-2-14-1-1-2 - name: Evenweave Fabric - children: [] - attributes: - - color - - paper_size - - pattern -- id: ae-2-1-2-14-1-1-3 - name: Linen Fabric - children: [] - attributes: - - color - - paper_size - - pattern -- id: ae-2-1-2-14-1-2-1 - name: Canvas Panels - children: [] - attributes: - - canvas_finish - - canvas_texture - - color - - paper_size - - pattern - - painting_canvas_material -- id: ae-2-1-2-14-1-2-2 - name: Canvas Rolls - children: [] - attributes: - - canvas_finish - - canvas_texture - - color - - paper_size - - pattern - - painting_canvas_material -- id: ae-2-1-2-14-1-2-3 - name: Stretched Canvas - children: [] - attributes: - - canvas_finish - - canvas_texture - - color - - paper_size - - pattern - - painting_canvas_material -- id: ae-2-1-2-14-1-3-1 - name: Plastic Canvas Rolls - children: [] - attributes: - - color - - paper_size - - pattern -- id: ae-2-1-2-14-1-3-2 - name: Plastic Canvas Shapes - children: [] - attributes: - - color - - paper_size - - pattern -- id: ae-2-1-2-14-1-3-3 - name: Plastic Canvas Sheets - children: [] - attributes: - - color - - paper_size - - pattern -- id: ae-2-1-2-14-2-1 - name: Chiffon - children: [] - attributes: - - care_instructions - - color - - pattern -- id: ae-2-1-2-14-2-2 - name: Cotton - children: [] - attributes: - - care_instructions - - color - - pattern -- id: ae-2-1-2-14-2-3 - name: Denim - children: [] - attributes: - - care_instructions - - color - - pattern -- id: ae-2-1-2-14-2-4 - name: Flannel - children: [] - attributes: - - care_instructions - - color - - pattern -- id: ae-2-1-2-14-2-5 - name: Fleece - children: [] - attributes: - - care_instructions - - color - - pattern -- id: ae-2-1-2-14-2-6 - name: Linen - children: [] - attributes: - - care_instructions - - color - - pattern -- id: ae-2-1-2-14-2-7 - name: Organza - children: [] - attributes: - - care_instructions - - color - - pattern -- id: ae-2-1-2-14-2-8 - name: Satin - children: [] - attributes: - - care_instructions - - color - - pattern -- id: ae-2-1-2-14-2-9 - name: Silk - children: [] - attributes: - - care_instructions - - color - - pattern -- id: ae-2-1-2-14-2-10 - name: Velvet - children: [] - attributes: - - care_instructions - - color - - pattern -- id: ae-2-1-2-14-3-1 - name: Fusible Interfacing - children: [] - attributes: - - care_instructions - - color - - fabric_design - - pattern -- id: ae-2-1-2-14-3-2 - name: Sew-In Interfacing - children: [] - attributes: - - care_instructions - - color - - fabric_design - - pattern -- id: ae-2-1-2-14-4-1 - name: Printable Canvas - children: [] - attributes: - - care_instructions - - color - - compatible_printer - - paper_size - - pattern -- id: ae-2-1-2-14-4-2 - name: Printable Cotton - children: [] - attributes: - - care_instructions - - color - - compatible_printer - - paper_size - - pattern -- id: ae-2-1-2-14-4-3 - name: Printable Silk - children: [] - attributes: - - care_instructions - - color - - compatible_printer - - paper_size - - pattern -- id: ae-2-1-2-14-4-4 - name: Printable Transfers - children: [] - attributes: - - care_instructions - - color - - compatible_printer - - paper_size - - pattern -- id: ae-2-1-2-15-1 - name: Metal Wick Tabs - children: [] - attributes: - - accessory_size - - material -- id: ae-2-1-2-15-2 - name: Pre-Tabbed Wick Tabs - children: [] - attributes: - - accessory_size - - material -- id: ae-2-1-2-15-3 - name: Self-Adhesive Wick Tabs - children: [] - attributes: - - accessory_size - - material -- id: ae-2-1-2-16-1 - name: Pre-Waxed Wicks - children: [] - attributes: - - material -- id: ae-2-1-3-6-1 - name: Bobbin Rests - children: [] - attributes: - - material -- id: ae-2-1-3-6-2 - name: Bobbin Winders - children: [] - attributes: - - material -- id: ae-2-1-3-6-3 - name: Bobbins - children: [] - attributes: - - material -- id: ae-2-1-3-6-4 - name: Brake Bands - children: [] - attributes: - - material -- id: ae-2-1-3-6-5 - name: Drive Bands - children: [] - attributes: - - material -- id: ae-2-1-3-6-6 - name: Drive Wheels - children: [] - attributes: [] -- id: ae-2-1-3-6-7 - name: Flyer Hooks - children: [] - attributes: - - material -- id: ae-2-1-3-6-8 - name: Flyer Kits - children: [] - attributes: - - material -- id: ae-2-1-3-6-9 - name: Lazy Kates - children: [] - attributes: - - material -- id: ae-2-1-3-6-11 - name: Niddy Noddies - children: [] - attributes: - - material -- id: ae-2-1-3-6-12 - name: Orifice Hooks - children: [] - attributes: - - material -- id: ae-2-1-3-6-13 - name: Ratios - children: [] - attributes: - - material -- id: ae-2-1-3-6-14 - name: Skein Winders - children: [] - attributes: - - material -- id: ae-2-1-3-6-15 - name: Spinner Control Cards - children: [] - attributes: - - material -- id: ae-2-1-3-6-16 - name: Spinning Oil - children: [] - attributes: [] -- id: ae-2-1-3-6-17 - name: Tension Knobs - children: [] - attributes: - - material -- id: ae-2-1-3-6-18 - name: Treadle Grippers - children: [] - attributes: - - material -- id: ae-2-1-3-6-19 - name: Whorls - children: [] - attributes: - - material -- id: ae-2-1-3-6-20 - name: Yarn Swifts - children: [] - attributes: - - material -- id: ae-2-1-4-1-1 - name: Grid Blocking Mats - children: [] - attributes: - - accessory_size - - shape - - art_crafting_tool_material -- id: ae-2-1-4-1-2 - name: Interlocking Blocking Mats - children: [] - attributes: - - accessory_size - - shape - - art_crafting_tool_material -- id: ae-2-1-4-2-1 - name: Coil Blocking Wires - children: [] - attributes: - - wire_thickness - - wire_rope_material -- id: ae-2-1-4-2-2 - name: Curved Blocking Wires - children: [] - attributes: - - wire_thickness - - wire_rope_material -- id: ae-2-1-4-2-3 - name: Flexible Blocking Wires - children: [] - attributes: - - wire_thickness - - wire_rope_material -- id: ae-2-1-4-2-4 - name: Lace Blocking Wires - children: [] - attributes: - - wire_thickness - - wire_rope_material -- id: ae-2-1-4-2-5 - name: Straight Blocking Wires - children: [] - attributes: - - wire_thickness - - wire_rope_material -- id: ae-2-1-4-2-6 - name: T-Pins - children: [] - attributes: - - wire_thickness - - art_crafting_tool_material -- id: ae-2-1-4-3-1-1 - name: Angular Palette Knives - children: [] - attributes: - - palette_knife_shape - - art_crafting_tool_material -- id: ae-2-1-4-3-1-2 - name: Diamond Palette Knives - children: [] - attributes: - - palette_knife_shape - - art_crafting_tool_material -- id: ae-2-1-4-3-1-3 - name: Offset Palette Knives - children: [] - attributes: - - palette_knife_shape - - art_crafting_tool_material -- id: ae-2-1-4-3-1-4 - name: Pointed Palette Knives - children: [] - attributes: - - palette_knife_shape - - art_crafting_tool_material -- id: ae-2-1-4-3-1-5 - name: Rounded Palette Knives - children: [] - attributes: - - palette_knife_shape - - art_crafting_tool_material -- id: ae-2-1-4-3-1-6 - name: Spatula Palette Knives - children: [] - attributes: - - palette_knife_shape - - art_crafting_tool_material -- id: ae-2-1-4-3-1-7 - name: Straight Palette Knives - children: [] - attributes: - - palette_knife_shape - - art_crafting_tool_material -- id: ae-2-1-4-3-1-8 - name: Trowel Palette Knives - children: [] - attributes: - - palette_knife_shape - - art_crafting_tool_material -- id: ae-2-1-4-4-1-1 - name: Fabric Scissors - children: [] - attributes: - - blade_material - - handle_material - - scissor_blade_type -- id: ae-2-1-4-4-1-2 - name: Left Handed Scissors - children: [] - attributes: - - blade_material - - handle_material - - scissor_blade_type -- id: ae-2-1-4-4-1-3 - name: Metal Scissors - children: [] - attributes: - - blade_material - - handle_material - - scissor_blade_type -- id: ae-2-1-4-4-1-4 - name: Paper Scissors - children: [] - attributes: - - blade_material - - handle_material - - scissor_blade_type -- id: ae-2-1-4-4-4-1 - name: Craft Scoring Boards - children: [] - attributes: - - art_crafting_tool_material -- id: ae-2-1-4-4-4-2 - name: Craft Scoring Wheels - children: [] - attributes: - - art_crafting_tool_material -- id: ae-2-1-4-4-6-1 - name: Embossing Pens - children: [] - attributes: - - art_crafting_tool_material -- id: ae-2-1-4-4-6-2 - name: Embossing Styluses - children: [] - attributes: - - art_crafting_tool_material -- id: ae-2-1-4-4-8-1 - name: Pendant Cutters - children: [] - attributes: - - art_crafting_tool_material -- id: ae-2-1-4-4-8-2 - name: Snip Cutters - children: [] - attributes: - - art_crafting_tool_material -- id: ae-2-1-4-4-8-3 - name: Thread Cutters - children: [] - attributes: - - art_crafting_tool_material -- id: ae-2-1-4-4-8-4 - name: Yarn Cutters - children: [] - attributes: - - art_crafting_tool_material -- id: ae-2-1-4-6-4-1 - name: Beam Drafting Compasses - children: [] - attributes: - - art_crafting_tool_material -- id: ae-2-1-4-6-4-2 - name: Precision Drafting Compasses - children: [] - attributes: - - art_crafting_tool_material -- id: ae-2-1-4-6-6-1 - name: Electric Stencil Machines - children: [] - attributes: [] -- id: ae-2-1-4-6-6-2 - name: Manual Stencil Machines - children: [] - attributes: [] -- id: ae-2-1-4-6-8-1 - name: Crochet Markers & Counters - children: [] - attributes: - - art_crafting_tool_material -- id: ae-2-1-4-6-8-2 - name: Knitting Markers & Counters - children: [] - attributes: - - art_crafting_tool_material -- id: ae-2-1-4-6-8-3 - name: Row Markers & Counters - children: [] - attributes: - - art_crafting_tool_material -- id: ae-2-1-4-6-9-1 - name: Measuring Rulers - children: [] - attributes: - - art_crafting_tool_material -- id: ae-2-1-4-6-9-2 - name: Quilting Rulers - children: [] - attributes: - - art_crafting_tool_material -- id: ae-2-1-4-6-9-3 - name: Seam Gauges - children: [] - attributes: - - art_crafting_tool_material -- id: ae-2-1-4-10-1 - name: Canvas Stretchers - children: [] - attributes: - - material - - shape -- id: ae-2-1-4-10-2 - name: Cross-Stitch Frames - children: [] - attributes: - - material - - shape -- id: ae-2-1-4-10-3 - name: Embroidery Hoops - children: [] - attributes: - - material - - shape -- id: ae-2-1-4-10-4 - name: Needlepoint Frames - children: [] - attributes: - - material - - shape -- id: ae-2-1-4-10-5 - name: Quilting Frames - children: [] - attributes: - - material - - shape -- id: ae-2-1-4-13-2-1 - name: Beading Needles - children: [] - attributes: - - needle_eye_type - - needle_size -- id: ae-2-1-4-13-2-2 - name: Darning Needles - children: [] - attributes: - - needle_eye_type - - needle_size -- id: ae-2-1-4-13-2-3 - name: Embroidery Needles - children: [] - attributes: - - needle_eye_type - - needle_size -- id: ae-2-1-4-13-2-4 - name: Quilting Needles - children: [] - attributes: - - needle_eye_type - - needle_size -- id: ae-2-1-4-13-2-5 - name: Sharps - children: [] - attributes: - - needle_eye_type - - needle_size -- id: ae-2-1-4-13-2-6 - name: Tapestry Needles - children: [] - attributes: - - needle_eye_type - - needle_size -- id: ae-2-1-4-13-3-1 - name: Circular Knitting Needles - children: [] - attributes: - - material -- id: ae-2-1-4-13-3-2 - name: Double-Pointed Knitting Needles - children: [] - attributes: - - material -- id: ae-2-1-4-13-3-3 - name: Single-Pointed Knitting Needles - children: [] - attributes: - - material -- id: ae-2-1-4-16-2-1 - name: Frame Hand Looms - children: [] - attributes: - - accessory_size - - material -- id: ae-2-1-4-16-2-2 - name: Lap Hand Looms - children: [] - attributes: - - accessory_size - - material -- id: ae-2-1-4-16-2-3 - name: Rigid Heddle Hand Looms - children: [] - attributes: - - accessory_size - - material -- id: ae-2-1-4-16-2-4 - name: Tapestry Hand Looms - children: [] - attributes: - - accessory_size - - material -- id: ae-2-1-4-16-3-1 - name: Countermarch Mechanical Looms - children: [] - attributes: - - material -- id: ae-2-1-4-16-3-2 - name: Floor Mechanical Looms - children: [] - attributes: - - material -- id: ae-2-1-4-16-3-3 - name: Jack Mechanical Looms - children: [] - attributes: - - material -- id: ae-2-1-4-16-3-4 - name: Table Mechanical Looms - children: [] - attributes: - - material -- id: ae-2-1-4-16-4-1 - name: Computerized Sewing Machines - children: [] - attributes: [] -- id: ae-2-1-4-16-4-2 - name: Embroidery Sewing Machines - children: [] - attributes: [] -- id: ae-2-1-4-16-4-3 - name: Mechanical Sewing Machines - children: [] - attributes: [] -- id: ae-2-1-4-16-4-4 - name: Serger Sewing Machines - children: [] - attributes: [] -- id: ae-2-1-4-16-5-1 - name: Double Drive Spinning Wheels - children: [] - attributes: - - material -- id: ae-2-1-4-16-5-2 - name: Electric Spinning Wheels - children: [] - attributes: - - material -- id: ae-2-1-4-16-5-3 - name: Single Drive Spinning Wheels - children: [] - attributes: - - material -- id: ae-2-1-4-16-5-4 - name: Travel Spinning Wheels - children: [] - attributes: - - material -- id: ae-2-1-4-18-1-1 - name: Carding Brushes - children: [] - attributes: - - brush_material -- id: ae-2-1-4-18-1-2 - name: Drum Carders - children: [] - attributes: - - material -- id: ae-2-1-4-18-1-3 - name: Flick Carders - children: [] - attributes: - - material -- id: ae-2-1-4-18-1-4 - name: Hand Carders - children: [] - attributes: - - material -- id: ae-2-1-4-18-1-5 - name: Teasing Tools - children: [] - attributes: - - material -- id: ae-2-1-4-18-2-1 - name: Drop Hand Spindles - children: [] - attributes: - - accessory_size - - material -- id: ae-2-1-4-18-2-2 - name: Support Hand Spindles - children: [] - attributes: - - accessory_size - - material -- id: ae-2-1-4-18-2-3 - name: Turkish Hand Spindles - children: [] - attributes: - - accessory_size - - material -- id: ae-2-1-4-18-3-1 - name: Automatic Needle Threaders - children: [] - attributes: - - art_crafting_tool_material -- id: ae-2-1-4-18-3-2 - name: Handheld Needle Threaders - children: [] - attributes: - - art_crafting_tool_material -- id: ae-2-1-4-18-4-1 - name: Finger Guides - children: [] - attributes: - - material -- id: ae-2-1-4-18-4-2 - name: Thimble Guides - children: [] - attributes: - - material -- id: ae-2-1-4-18-4-3 - name: Wire Guides - children: [] - attributes: - - material -- id: ae-2-1-4-18-4-4 - name: Yarn Guides - children: [] - attributes: - - material -- id: ae-2-1-4-18-6-1 - name: Electric Winders - children: [] - attributes: - - material -- id: ae-2-1-4-18-6-2 - name: Handheld Winders - children: [] - attributes: - - material -- id: ae-2-1-4-18-7-1 - name: Flat Weaving Beaters - children: [] - attributes: - - material -- id: ae-2-1-4-18-7-2 - name: Flexible Weaving Beaters - children: [] - attributes: - - material -- id: ae-2-1-4-18-7-3 - name: Reed Weaving Beaters - children: [] - attributes: - - material -- id: ae-2-1-4-18-7-4 - name: Rigid Weaving Beaters - children: [] - attributes: - - material -- id: ae-2-1-4-18-8-1 - name: Boat Weaving Shuttles - children: [] - attributes: - - material -- id: ae-2-1-4-18-8-2 - name: End-Feed Weaving Shuttles - children: [] - attributes: - - material -- id: ae-2-1-4-18-8-3 - name: Rag Weaving Shuttles - children: [] - attributes: - - material -- id: ae-2-1-4-18-8-4 - name: Stick Weaving Shuttles - children: [] - attributes: - - material -- id: ae-2-1-5-1-1 - name: Hook Organizers - children: [] - attributes: - - accessory_size - - material -- id: ae-2-1-5-1-2 - name: Needle Cases - children: [] - attributes: - - accessory_size - - bag_case_material -- id: ae-2-1-5-1-3 - name: Needle Holders - children: [] - attributes: - - accessory_size - - material -- id: ae-2-1-5-1-4 - name: Pin Cushions - children: [] - attributes: - - accessory_size - - material -- id: ae-2-1-5-2-1 - name: Sewing Baskets - children: [] - attributes: - - accessory_size - - material -- id: ae-2-1-5-2-2 - name: Sewing Boxes - children: [] - attributes: - - accessory_size - - material -- id: ae-2-1-5-2-3 - name: Sewing Kits - children: [] - attributes: - - accessory_size - - material -- id: ae-2-1-5-3-1 - name: Thread Boxes - children: [] - attributes: - - accessory_size - - material -- id: ae-2-1-5-3-2 - name: Thread Racks - children: [] - attributes: - - accessory_size - - material -- id: ae-2-1-5-3-3 - name: Yarn Bags - children: [] - attributes: - - accessory_size - - bag_case_material -- id: ae-2-1-5-3-4 - name: Yarn Bowls - children: [] - attributes: - - accessory_size - - material -- id: ae-2-1-5-3-5 - name: Yarn Organizers - children: [] - attributes: - - accessory_size - - material -- id: ae-2-1-6-1-1 - name: Beaded Accessories Patterns - children: [] - attributes: - - pattern_distribution_format - - skill_level -- id: ae-2-1-6-1-2 - name: Jewelry Beading Patterns - children: [] - attributes: - - pattern_distribution_format - - skill_level -- id: ae-2-1-6-3-1 - name: Needle Felting Molds - children: [] - attributes: - - mold_shape -- id: ae-2-1-6-3-2 - name: Wet Felting Molds - children: [] - attributes: - - mold_shape -- id: ae-2-1-6-4-1 - name: Cross Stitch Patterns - children: [] - attributes: - - pattern_distribution_format - - skill_level -- id: ae-2-1-6-4-2 - name: Embroidery Patterns - children: [] - attributes: - - pattern_distribution_format - - skill_level -- id: ae-2-1-6-4-3 - name: Needlepoint Patterns - children: [] - attributes: - - pattern_distribution_format - - skill_level -- id: ae-2-1-6-5-1 - name: Accessory Sewing Patterns - children: [] - attributes: - - pattern_distribution_format - - skill_level -- id: ae-2-1-6-5-2 - name: Clothing Sewing Patterns - children: [] - attributes: - - pattern_distribution_format - - skill_level -- id: ae-2-1-6-5-3 - name: Home Decor Sewing Patterns - children: [] - attributes: - - pattern_distribution_format - - skill_level -- id: ae-2-2-2-2-1 - name: Bullion Coins - children: [] - attributes: - - condition - - country - - denomination - - coin_material -- id: ae-2-2-2-2-2 - name: Commemorative Coins - children: [] - attributes: - - condition - - country - - denomination - - coin_material -- id: ae-2-2-2-2-3 - name: Rare Coins - children: [] - attributes: - - condition - - country - - denomination - - coin_material -- id: ae-2-2-3-1 - name: Entertainment Cards - children: [] - attributes: - - card_attributes - - condition - - grading - - rarity - - theme - - trading_card_packaging -- id: ae-2-2-3-2 - name: Gaming Cards - children: [] - attributes: - - card_attributes - - condition - - grading - - rarity - - trading_card_packaging -- id: ae-2-2-3-3 - name: Non-Sports Trading Cards - children: [] - attributes: - - card_attributes - - condition - - grading - - rarity - - theme - - trading_card_packaging -- id: ae-2-2-3-4 - name: Sports Trading Cards - children: [] - attributes: - - card_attributes - - condition - - grading - - rarity - - sports_theme - - trading_card_packaging -- id: ae-2-2-4-1-1 - name: Antique Guns - children: [] - attributes: - - condition - - era - - material -- id: ae-2-2-4-1-2 - name: Handguns - children: [] - attributes: - - condition - - era - - material -- id: ae-2-2-4-1-3 - name: Replica Guns - children: [] - attributes: - - condition - - era - - material -- id: ae-2-2-4-1-4 - name: Rifles - children: [] - attributes: - - condition - - era - - material -- id: ae-2-2-4-1-5 - name: Shotguns - children: [] - attributes: - - condition - - era - - material -- id: ae-2-2-4-2-1 - name: Custom Collectible Knives - children: [] - attributes: - - blade_material - - condition - - handle_material -- id: ae-2-2-4-2-2 - name: Fixed Blade Collectible Knives - children: [] - attributes: - - blade_material - - condition - - handle_material -- id: ae-2-2-4-2-3 - name: Folding Collectible Knives - children: [] - attributes: - - blade_material - - condition - - handle_material -- id: ae-2-2-4-2-4 - name: Hunting Collectible Knives - children: [] - attributes: - - blade_material - - condition - - handle_material -- id: ae-2-2-4-2-5 - name: Pocket Collectible Knives - children: [] - attributes: - - blade_material - - condition - - handle_material -- id: ae-2-2-4-2-6 - name: Tactical Collectible Knives - children: [] - attributes: - - blade_material - - condition - - handle_material -- id: ae-2-2-4-3-1 - name: European Collectible Swords - children: [] - attributes: - - condition - - handle_material - - blade_material -- id: ae-2-2-4-3-2 - name: Fantasy Collectible Swords - children: [] - attributes: - - condition - - handle_material - - blade_material -- id: ae-2-2-4-3-3 - name: Historical Collectible Swords - children: [] - attributes: - - condition - - handle_material - - blade_material -- id: ae-2-2-4-3-4 - name: Movie Replica Collectible Swords - children: [] - attributes: - - condition - - handle_material - - blade_material -- id: ae-2-2-4-3-5 - name: Samurai Collectible Swords - children: [] - attributes: - - condition - - handle_material - - blade_material -- id: ae-2-2-5-1 - name: Commemorative Stamps - children: [] - attributes: - - condition - - country - - denomination - - printing_method - - rarity - - stamp_theme -- id: ae-2-2-5-2 - name: Definitive Stamps - children: [] - attributes: - - condition - - country - - denomination - - printing_method - - rarity - - stamp_theme -- id: ae-2-2-5-3 - name: First Day Covers - children: [] - attributes: - - condition - - country - - denomination - - printing_method - - rarity - - stamp_theme -- id: ae-2-2-5-4 - name: Single Stamps - children: [] - attributes: - - condition - - country - - denomination - - printing_method - - rarity - - stamp_theme -- id: ae-2-2-5-6 - name: Stamp Sheets - children: [] - attributes: - - condition - - country - - denomination - - printing_method - - rarity - - stamp_theme -- id: ae-2-2-6-1 - name: Fossils - children: [] - attributes: - - authenticity - - condition - - crystal_system - - fossil_type - - geological_era - - mineral_class - - rarity - - rock_composition - - rock_formation -- id: ae-2-2-6-2 - name: Gemstones - children: [] - attributes: - - authenticity - - condition - - crystal_system - - fossil_type - - geological_era - - mineral_class - - rarity - - rock_composition - - rock_formation -- id: ae-2-2-6-3 - name: Minerals - children: [] - attributes: - - authenticity - - condition - - crystal_system - - fossil_type - - geological_era - - mineral_class - - rarity - - rock_composition - - rock_formation -- id: ae-2-2-6-4 - name: Rocks - children: [] - attributes: - - authenticity - - condition - - crystal_system - - fossil_type - - geological_era - - mineral_class - - rarity - - rock_composition - - rock_formation -- id: ae-2-2-8-1 - name: Aircraft - children: [] - attributes: - - condition - - kit_construction_type - - skill_level - - scale_model_material -- id: ae-2-2-8-2 - name: Buses - children: [] - attributes: - - condition - - kit_construction_type - - skill_level - - scale_model_material -- id: ae-2-2-8-3 - name: Cars - children: [] - attributes: - - condition - - kit_construction_type - - skill_level - - scale_model_material -- id: ae-2-2-8-4 - name: Dinosaurs - children: [] - attributes: - - condition - - kit_construction_type - - skill_level - - scale_model_material -- id: ae-2-2-8-5 - name: Express Locomotives - children: [] - attributes: - - condition - - kit_construction_type - - skill_level - - scale_model_material -- id: ae-2-2-8-6 - name: Helicopters - children: [] - attributes: - - condition - - kit_construction_type - - skill_level - - scale_model_material -- id: ae-2-2-8-7 - name: Horses - children: [] - attributes: - - condition - - kit_construction_type - - skill_level - - scale_model_material -- id: ae-2-2-8-8 - name: Motorcycles - children: [] - attributes: - - condition - - kit_construction_type - - skill_level - - scale_model_material -- id: ae-2-2-8-9 - name: Railroad Freight Car - children: [] - attributes: - - condition - - kit_construction_type - - skill_level - - scale_model_material -- id: ae-2-2-8-10 - name: Ships - children: [] - attributes: - - condition - - kit_construction_type - - skill_level - - scale_model_material -- id: ae-2-2-8-11 - name: Spacecraft - children: [] - attributes: - - condition - - kit_construction_type - - skill_level - - scale_model_material -- id: ae-2-2-8-12 - name: Tanks - children: [] - attributes: - - condition - - kit_construction_type - - skill_level - - scale_model_material -- id: ae-2-2-8-13 - name: Trains - children: [] - attributes: - - condition - - kit_construction_type - - skill_level - - scale_model_material -- id: ae-2-2-8-14 - name: Trucks - children: [] - attributes: - - condition - - kit_construction_type - - skill_level - - scale_model_material -- id: ae-2-2-10-1-1 - name: Banners - children: [] - attributes: - - condition - - logo - - sport -- id: ae-2-2-10-1-2 - name: Caps - children: [] - attributes: - - condition - - logo - - sport -- id: ae-2-2-10-1-3 - name: Figurines - children: [] - attributes: - - condition - - logo - - sport -- id: ae-2-2-10-1-4 - name: Flags - children: [] - attributes: - - condition - - logo - - sport -- id: ae-2-2-10-1-5 - name: Gloves - children: [] - attributes: - - condition - - logo - - sport -- id: ae-2-2-10-1-6 - name: Hats - children: [] - attributes: - - condition - - logo - - sport -- id: ae-2-2-10-1-7 - name: Hoodies - children: [] - attributes: - - condition - - logo - - sport -- id: ae-2-2-10-1-8 - name: Jerseys - children: [] - attributes: - - condition - - logo - - sport -- id: ae-2-2-10-1-9 - name: Keychains - children: [] - attributes: - - condition - - logo - - sport -- id: ae-2-2-10-1-10 - name: Pins - children: [] - attributes: - - condition - - logo - - sport -- id: ae-2-2-10-1-11 - name: Posters - children: [] - attributes: - - condition - - logo - - sport -- id: ae-2-2-10-1-12 - name: Scarves - children: [] - attributes: - - condition - - logo - - sport -- id: ae-2-2-10-1-14 - name: Socks - children: [] - attributes: - - condition - - logo - - sport -- id: ae-2-2-10-1-15 - name: T-Shirts - children: [] - attributes: - - condition - - logo - - sport -- id: ae-2-2-10-1-16 - name: Wall Decals - children: [] - attributes: - - condition - - logo - - sport -- id: ae-2-3-1-1 - name: Adjunct Grain - children: [] - attributes: - - beer_style - - country_of_origin - - flavor_profile - - lovibond - - potential_extract -- id: ae-2-3-1-2 - name: Base Malt - children: [] - attributes: - - beer_style - - country_of_origin - - flavor_profile - - lovibond - - potential_extract -- id: ae-2-3-1-3 - name: Roasted Malt - children: [] - attributes: - - beer_style - - country_of_origin - - flavor_profile - - lovibond - - potential_extract -- id: ae-2-3-1-4 - name: Specialty Malt +- id: ae-2-7-12-9-2-1 + name: Hand Percussion Mounts children: [] attributes: - - beer_style - - country_of_origin - - flavor_profile - - lovibond - - potential_extract -- id: ae-2-3-3-1 - name: Beer Brewing Kits + - mount_material + - orientation + - compatible_percussion_instrument +- id: ae-2-7-12-9-2-2 + name: Hand Percussion Racks children: [] attributes: - - skill_level -- id: ae-2-3-3-2 - name: Mead Making Kits + - instrument_accessory_material + - orientation + - compatible_percussion_instrument +- id: ae-2-7-12-9-2-3 + name: Hand Percussion Set Stands & Mounts children: [] attributes: - - skill_level -- id: ae-2-3-3-3 - name: Wine Making Kits + - mount_material + - orientation + - compatible_percussion_instrument +- id: ae-2-7-12-9-2-4 + name: Hand Percussion Stands children: [] attributes: - - skill_level -- id: ae-2-3-4-1 - name: Fruit Wine Making Supplies + - instrument_accessory_material + - orientation + - compatible_percussion_instrument +- id: ae-2-7-12-10 + name: Percussion Mallets children: [] attributes: - - grape_variety - - region - - wine_sweetness -- id: ae-2-3-4-2 - name: Red Wine Making Supplies + - grip_texture + - handle_material + - mallet_material + - percussion_tip_shape +- id: ae-2-7-12-11 + name: Percussion Stands + children: + - ae-2-7-12-11-1 + attributes: + - instrument_accessory_material + - percussion_stand_design + - compatible_percussion_instrument +- id: ae-2-7-12-11-1 + name: Percussion Stand Sets children: [] attributes: - - grape_variety - - region - - wine_sweetness -- id: ae-2-3-4-3 - name: Rosé Wine Making Supplies + - instrument_accessory_material + - compatible_percussion_instrument +- id: ae-2-7-13 + name: String Instrument Accessories + children: + - ae-2-7-13-1 + - ae-2-7-13-2 + - ae-2-7-13-3 + attributes: [] +- id: ae-2-7-13-1 + name: Guitar Accessories + children: + - ae-2-7-13-1-1 + - ae-2-7-13-1-2 + - ae-2-7-13-1-3 + - ae-2-7-13-1-4 + - ae-2-7-13-1-5 + - ae-2-7-13-1-6 + - ae-2-7-13-1-7 + - ae-2-7-13-1-8 + - ae-2-7-13-1-9 + - ae-2-7-13-1-10 + - ae-2-7-13-1-11 + - ae-2-7-13-1-12 + - ae-2-7-13-1-13 + attributes: [] +- id: ae-2-7-13-1-1 + name: Acoustic Guitar Pickups children: [] attributes: - - grape_variety - - region - - wine_sweetness -- id: ae-2-3-4-4 - name: White Wine Making Supplies + - color + - compatible_string_instrument + - output_level + - pattern + - pickup_mounting_type + - pickup_type +- id: ae-2-7-13-1-2 + name: Capos + children: + - ae-2-7-13-1-2-1 + - ae-2-7-13-1-2-2 + - ae-2-7-13-1-2-3 + - ae-2-7-13-1-2-4 + attributes: + - color + - compatible_string_instrument + - instrument_accessory_material + - pattern +- id: ae-2-7-13-1-2-1 + name: Clamp Capos children: [] attributes: - - grape_variety - - region - - wine_sweetness -- id: ae-2-4-1 - name: Contact Juggling Balls + - color + - compatible_string_instrument + - instrument_accessory_material + - pattern +- id: ae-2-7-13-1-2-2 + name: Partial Capos children: [] attributes: - - accessory_size - color - - material + - compatible_string_instrument + - instrument_accessory_material - pattern - - weight_type -- id: ae-2-4-2 - name: Devil Sticks +- id: ae-2-7-13-1-2-3 + name: Sliding Capos children: [] attributes: - - accessory_size - color - - material + - compatible_string_instrument + - instrument_accessory_material - pattern - - weight_type -- id: ae-2-4-3 - name: Diabolos +- id: ae-2-7-13-1-2-4 + name: Trigger Capos children: [] attributes: - - accessory_size - color - - material + - compatible_string_instrument + - instrument_accessory_material - pattern - - weight_type -- id: ae-2-4-4 - name: Juggling Balls +- id: ae-2-7-13-1-3 + name: Electric Guitar Pickups children: [] attributes: - - accessory_size - color - - material + - compatible_string_instrument + - magnet_type + - output_level - pattern - - weight_type -- id: ae-2-4-5 - name: Juggling Clubs + - pickup_mounting_type + - pickup_position + - pickup_type +- id: ae-2-7-13-1-4 + name: Guitar Cases & Gigbags children: [] attributes: - - accessory_size - color - - material + - compatible_string_instrument + - inner_color + - inner_pattern + - bag_case_material - pattern - - weight_type -- id: ae-2-4-6 - name: Juggling Rings +- id: ae-2-7-13-1-5 + name: Guitar Fittings & Parts children: [] attributes: - - accessory_size + - compatible_string_instrument + - instrument_part_material +- id: ae-2-7-13-1-6 + name: Guitar Humidifiers + children: + - ae-2-7-13-1-6-1 + - ae-2-7-13-1-6-2 + - ae-2-7-13-1-6-3 + attributes: + - compatible_string_instrument + - instrument_accessory_material +- id: ae-2-7-13-1-6-1 + name: Case Humidifiers + children: [] + attributes: + - compatible_string_instrument + - instrument_accessory_material +- id: ae-2-7-13-1-6-2 + name: Room Humidifiers + children: [] + attributes: + - compatible_string_instrument + - instrument_accessory_material +- id: ae-2-7-13-1-6-3 + name: Soundhole Humidifiers + children: [] + attributes: + - compatible_string_instrument + - instrument_accessory_material +- id: ae-2-7-13-1-7 + name: Guitar Picks + children: + - ae-2-7-13-1-7-1 + - ae-2-7-13-1-7-2 + attributes: - color - - material + - grip_texture + - instrument_accessory_material - pattern - - weight_type -- id: ae-2-4-7 - name: Poi + - pick_design + - thickness_type +- id: ae-2-7-13-1-7-1 + name: Finger Picks children: [] attributes: - - accessory_size - color - - material + - grip_texture + - instrument_accessory_material - pattern - - weight_type -- id: ae-2-6-1-1 - name: High-Power Rockets + - pick_design + - thickness_type +- id: ae-2-7-13-1-7-2 + name: Jazz Picks children: [] attributes: - - material - - skill_level -- id: ae-2-6-1-2 - name: Multi-Stage Rockets + - color + - grip_texture + - instrument_accessory_material + - pattern + - pick_design + - thickness_type +- id: ae-2-7-13-1-8 + name: Guitar Slides children: [] attributes: - - material - - skill_level -- id: ae-2-6-1-3 - name: Single-Stage Rockets + - accessory_size + - color + - compatible_string_instrument + - instrument_accessory_material + - pattern +- id: ae-2-7-13-1-9 + name: Guitar Stands children: [] attributes: - - material - - skill_level -- id: ae-2-6-1-4 - name: Water Rockets + - color + - compatible_string_instrument + - instrument_accessory_material + - music_stand_design + - pattern +- id: ae-2-7-13-1-10 + name: Guitar Straps children: [] attributes: - - material - - skill_level -- id: ae-2-6-3-1 - name: Diesel Locomotives - children: [] + - color + - instrument_accessory_material + - pattern + - strap_design +- id: ae-2-7-13-1-11 + name: Guitar String Winders + children: + - ae-2-7-13-1-11-1 + - ae-2-7-13-1-11-2 attributes: - - model_control_technology - - skill_level -- id: ae-2-6-3-2 - name: Electric Locomotives + - compatible_string_instrument +- id: ae-2-7-13-1-11-1 + name: Electric String Winders children: [] attributes: - - model_control_technology - - skill_level -- id: ae-2-6-3-3 - name: Freight Trains + - compatible_string_instrument +- id: ae-2-7-13-1-11-2 + name: Manual String Winders children: [] attributes: - - model_control_technology - - skill_level -- id: ae-2-6-3-4 - name: Passenger Trains - children: [] + - compatible_string_instrument +- id: ae-2-7-13-1-12 + name: Guitar Strings + children: + - ae-2-7-13-1-12-1 + - ae-2-7-13-1-12-2 + - ae-2-7-13-1-12-3 + - ae-2-7-13-1-12-4 attributes: - - model_control_technology - - skill_level -- id: ae-2-6-3-5 - name: Steam Locomotives + - instrument_string_material +- id: ae-2-7-13-1-12-1 + name: Acoustic Guitar Strings children: [] attributes: - - model_control_technology - - skill_level -- id: ae-2-7-1-1-2-1 - name: Bore Cleaners + - instrument_string_material +- id: ae-2-7-13-1-12-2 + name: Bass Guitar Strings children: [] attributes: - - compatible_brass_instrument -- id: ae-2-7-1-1-2-2 - name: Disinfectant Sprays + - instrument_string_material +- id: ae-2-7-13-1-12-3 + name: Classical Guitar Strings children: [] attributes: - - compatible_brass_instrument -- id: ae-2-7-1-1-2-3 - name: Slide Cleaners + - instrument_string_material +- id: ae-2-7-13-1-12-4 + name: Electric Guitar Strings children: [] attributes: - - compatible_brass_instrument -- id: ae-2-7-1-1-2-4 - name: Valve Cleaners + - instrument_string_material +- id: ae-2-7-13-1-13 + name: Guitar Tuning Pegs children: [] attributes: - - compatible_brass_instrument -- id: ae-2-7-1-1-4-1 - name: Bell Guards - children: [] + - compatible_string_instrument + - instrument_accessory_finish +- id: ae-2-7-13-2 + name: Orchestral String Instrument Accessories + children: + - ae-2-7-13-2-1 + - ae-2-7-13-2-2 + - ae-2-7-13-2-3 + - ae-2-7-13-2-4 + - ae-2-7-13-2-5 + - ae-2-7-13-2-6 + - ae-2-7-13-2-7 + - ae-2-7-13-2-8 + attributes: [] +- id: ae-2-7-13-2-1 + name: Orchestral String Instrument Bow Cases + children: + - ae-2-7-13-2-1-1 + - ae-2-7-13-2-1-2 + - ae-2-7-13-2-1-3 attributes: - - instrument_accessory_material -- id: ae-2-7-1-1-4-2 - name: Finger Button Guards + - closure_type + - compatible_orchestral_string_instrument + - bag_case_material +- id: ae-2-7-13-2-1-1 + name: Double Bow Cases children: [] attributes: - - instrument_accessory_material -- id: ae-2-7-1-1-4-3 - name: Slide Guards + - closure_type + - compatible_orchestral_string_instrument + - bag_case_material +- id: ae-2-7-13-2-1-2 + name: Multiple Bow Cases children: [] attributes: - - instrument_accessory_material -- id: ae-2-7-1-1-4-4 - name: Valve Guards + - closure_type + - compatible_orchestral_string_instrument + - bag_case_material +- id: ae-2-7-13-2-1-3 + name: Single Bow Cases children: [] attributes: - - instrument_accessory_material -- id: ae-2-7-1-4-1 - name: Cup Mutes + - closure_type + - compatible_orchestral_string_instrument + - bag_case_material +- id: ae-2-7-13-2-2 + name: Orchestral String Instrument Bows children: [] attributes: + - frog_material + - bow_hair_material - instrument_accessory_material -- id: ae-2-7-1-4-2 - name: Harmon Mutes +- id: ae-2-7-13-2-3 + name: Orchestral String Instrument Cases children: [] attributes: - - instrument_accessory_material -- id: ae-2-7-1-4-3 - name: Plunger Mutes + - closure_type + - color + - compatible_orchestral_string_instrument + - bag_case_material + - pattern +- id: ae-2-7-13-2-4 + name: Orchestral String Instrument Fittings & Parts children: [] attributes: - - instrument_accessory_material -- id: ae-2-7-1-4-4 - name: Practice Mutes + - compatible_orchestral_string_instrument + - instrument_accessory_finish + - instrument_part_material +- id: ae-2-7-13-2-5 + name: Orchestral String Instrument Mutes children: [] attributes: + - compatible_orchestral_string_instrument - instrument_accessory_material -- id: ae-2-7-1-4-5 - name: Straight Mutes +- id: ae-2-7-13-2-6 + name: Orchestral String Instrument Pickups children: [] attributes: - - instrument_accessory_material -- id: ae-2-7-7-3-1 - name: Clamp Sheet Music Clips + - color + - compatible_orchestral_string_instrument + - pattern +- id: ae-2-7-13-2-7 + name: Orchestral String Instrument Stands children: [] attributes: - - accessory_size + - compatible_orchestral_string_instrument - instrument_accessory_material -- id: ae-2-7-7-3-2 - name: Elastic Sheet Music Clips + - music_stand_design +- id: ae-2-7-13-2-8 + name: Orchestral String Instrument Strings children: [] attributes: - - accessory_size - - instrument_accessory_material -- id: ae-2-7-7-3-3 - name: Magnetic Sheet Music Clips + - compatible_orchestral_string_instrument + - instrument_string_material + - tension +- id: ae-2-7-13-3 + name: String Instrument Care & Cleaning + children: + - ae-2-7-13-3-1 + - ae-2-7-13-3-2 + - ae-2-7-13-3-3 + attributes: [] +- id: ae-2-7-13-3-1 + name: Bow Rosin children: [] attributes: - - accessory_size - instrument_accessory_material -- id: ae-2-7-7-3-4 - name: Spring-Loaded Sheet Music Clips + - package_type + - rosin_form + - rosin_grade +- id: ae-2-7-13-3-2 + name: String Instrument Cleaning Cloths children: [] attributes: - accessory_size - instrument_accessory_material -- id: ae-2-7-10-1 - name: Acoustic Amplifiers - children: [] +- id: ae-2-7-13-3-3 + name: String Instrument Polish + children: + - ae-2-7-13-3-3-1 + - ae-2-7-13-3-3-2 + - ae-2-7-13-3-3-3 attributes: - - input_output_ports - - sound_controls -- id: ae-2-7-10-2 - name: Bass Amplifiers + - application_method + - ingredient_origin +- id: ae-2-7-13-3-3-1 + name: Fingerboard Polish children: [] attributes: - - input_output_ports - - sound_controls -- id: ae-2-7-10-3 - name: Guitar Amplifiers + - application_method + - ingredient_origin +- id: ae-2-7-13-3-3-2 + name: Instrument Polish children: [] attributes: - - input_output_ports - - sound_controls -- id: ae-2-7-10-4 - name: Keyboard Amplifiers + - application_method + - ingredient_origin +- id: ae-2-7-13-3-3-3 + name: Varnish children: [] attributes: - - input_output_ports - - sound_controls -- id: ae-2-7-11-1-1 - name: Musical Keyboard Gigbags - children: [] + - application_method + - ingredient_origin +- id: ae-2-7-14 + name: Woodwind Instrument Accessories + children: + - ae-2-7-14-1 + - ae-2-7-14-2 + - ae-2-7-14-3 + - ae-2-7-14-4 + - ae-2-7-14-5 + - ae-2-7-14-6 + - ae-2-7-14-7 + - ae-2-7-14-8 + - ae-2-7-14-9 + - ae-2-7-14-10 + - ae-2-7-14-11 + attributes: [] +- id: ae-2-7-14-1 + name: Bassoon Accessories + children: + - ae-2-7-14-1-1 + - ae-2-7-14-1-2 + - ae-2-7-14-1-3 + - ae-2-7-14-1-4 + - ae-2-7-14-1-5 + - ae-2-7-14-1-6 + attributes: [] +- id: ae-2-7-14-1-1 + name: Bassoon Care & Cleaning + children: + - ae-2-7-14-1-1-1 attributes: - - compatible_keyboard_configuration - - bag_case_material -- id: ae-2-7-11-1-2 - name: Musical Keyboard Hard Cases + - instrument_accessory_material +- id: ae-2-7-14-1-1-1 + name: Bassoon Swabs children: [] attributes: - - compatible_keyboard_configuration - - bag_case_material -- id: ae-2-7-11-1-3 - name: Musical Keyboard Rolling Cases + - swab_material +- id: ae-2-7-14-1-2 + name: Bassoon Cases & Gigbags children: [] attributes: - - compatible_keyboard_configuration + - color - bag_case_material -- id: ae-2-7-11-1-4 - name: Musical Keyboard Soft Cases - children: [] + - pattern +- id: ae-2-7-14-1-3 + name: Bassoon Parts + children: + - ae-2-7-14-1-3-1 + - ae-2-7-14-1-3-2 attributes: - - compatible_keyboard_configuration - - bag_case_material -- id: ae-2-7-11-2-1 - name: Column Stands + - instrument_part_material +- id: ae-2-7-14-1-3-1 + name: Bassoon Bocals children: [] attributes: - - compatible_keyboard_configuration - instrument_accessory_material -- id: ae-2-7-11-2-2 - name: Double Braced Stands +- id: ae-2-7-14-1-3-2 + name: Bassoon Small Parts children: [] attributes: - - compatible_keyboard_configuration - - instrument_accessory_material -- id: ae-2-7-11-2-3 - name: Single Braced Stands - children: [] + - instrument_part_material +- id: ae-2-7-14-1-4 + name: Bassoon Reeds + children: + - ae-2-7-14-1-4-1 + - ae-2-7-14-1-4-2 + - ae-2-7-14-1-4-3 + - ae-2-7-14-1-4-4 attributes: - - compatible_keyboard_configuration - instrument_accessory_material -- id: ae-2-7-11-2-4 - name: X-Style Stands + - reed_strength +- id: ae-2-7-14-1-4-1 + name: Filed Reeds children: [] attributes: - - compatible_keyboard_configuration - instrument_accessory_material -- id: ae-2-7-11-2-5 - name: Z-Style Stands + - reed_strength +- id: ae-2-7-14-1-4-2 + name: Handmade Reeds children: [] attributes: - - compatible_keyboard_configuration - instrument_accessory_material -- id: ae-2-7-11-3-1 - name: Damper + - reed_strength +- id: ae-2-7-14-1-4-3 + name: Machine-Made Reeds children: [] attributes: - - connection_method - - pedal_polarity - instrument_accessory_material -- id: ae-2-7-11-3-2 - name: Sustain + - reed_strength +- id: ae-2-7-14-1-4-4 + name: Unfiled Reeds children: [] attributes: - - connection_method - - pedal_polarity - instrument_accessory_material -- id: ae-2-7-12-1-1 - name: Cymbal & Drum Set Cases - children: [] - attributes: - - color - - pattern - - compatible_percussion_instrument - - bag_case_material -- id: ae-2-7-12-1-2 - name: Flight Cymbal & Drum Cases + - reed_strength +- id: ae-2-7-14-1-5 + name: Bassoon Stands children: [] attributes: - - color - - pattern - - compatible_percussion_instrument - - bag_case_material -- id: ae-2-7-12-1-3 - name: Single Cymbal & Drum Cases + - instrument_accessory_material +- id: ae-2-7-14-1-6 + name: Bassoon Straps & Supports children: [] attributes: - color + - instrument_accessory_material - pattern - - compatible_percussion_instrument - - bag_case_material -- id: ae-2-7-12-2-1 - name: Cymbal Mutes - children: [] - attributes: - - drum_hardware_material -- id: ae-2-7-12-2-2 - name: Drum Mutes +- id: ae-2-7-14-2 + name: Clarinet Accessories + children: + - ae-2-7-14-2-1 + - ae-2-7-14-2-2 + - ae-2-7-14-2-3 + - ae-2-7-14-2-4 + - ae-2-7-14-2-5 + - ae-2-7-14-2-6 + - ae-2-7-14-2-7 + attributes: [] +- id: ae-2-7-14-2-1 + name: Clarinet Care & Cleaning + children: + - ae-2-7-14-2-1-1 + - ae-2-7-14-2-1-2 + - ae-2-7-14-2-1-3 + attributes: [] +- id: ae-2-7-14-2-1-1 + name: Clarinet Care Kits children: [] attributes: - - drum_hardware_material -- id: ae-2-7-12-3-1 - name: Bass Drum Heads + - woodwind_care_items_included +- id: ae-2-7-14-2-1-2 + name: Clarinet Pad Savers children: [] attributes: - color + - instrument_accessory_material - pattern - - drum_hardware_material -- id: ae-2-7-12-3-2 - name: Snare Drum Heads +- id: ae-2-7-14-2-1-3 + name: Clarinet Swabs children: [] attributes: - - color - - pattern - - drum_hardware_material -- id: ae-2-7-12-3-3 - name: Tom Drum Heads + - swab_material +- id: ae-2-7-14-2-2 + name: Clarinet Cases & Gigbags children: [] attributes: - color + - bag_case_material - pattern - - drum_hardware_material -- id: ae-2-7-12-4-1 - name: Tension Drum Keys - children: [] - attributes: - - compatible_percussion_instrument -- id: ae-2-7-12-5-2-1 - name: Clamps - children: [] - attributes: - - drum_hardware_material -- id: ae-2-7-12-5-2-2 - name: Cymbal Arms - children: [] - attributes: - - drum_hardware_material -- id: ae-2-7-12-5-2-3 - name: Multi-Clamps - children: [] - attributes: - - drum_hardware_material -- id: ae-2-7-12-5-2-4 - name: Rack Systems - children: [] +- id: ae-2-7-14-2-3 + name: Clarinet Ligatures & Caps + children: + - ae-2-7-14-2-3-1 + - ae-2-7-14-2-3-2 + - ae-2-7-14-2-3-3 attributes: - - drum_hardware_material -- id: ae-2-7-12-5-2-5 - name: Tom Mounts + - compatible_clarinet_type + - instrument_accessory_material +- id: ae-2-7-14-2-3-1 + name: Metal Ligatures & Caps children: [] attributes: - - mount_material -- id: ae-2-7-12-5-3-1 - name: Belt Drives + - compatible_clarinet_type + - instrument_accessory_material +- id: ae-2-7-14-2-3-2 + name: Rovner Ligatures & Caps children: [] attributes: - - adjustability - - compatible_drum_configuration - - footboard_type - - drum_hardware_material -- id: ae-2-7-12-5-3-2 - name: Chain Drives + - compatible_clarinet_type + - instrument_accessory_material +- id: ae-2-7-14-2-3-3 + name: Standard Ligatures & Caps children: [] attributes: - - adjustability - - compatible_drum_configuration - - footboard_type - - drum_hardware_material -- id: ae-2-7-12-5-3-3 - name: Direct Drives - children: [] + - compatible_clarinet_type + - instrument_accessory_material +- id: ae-2-7-14-2-4 + name: Clarinet Parts + children: + - ae-2-7-14-2-4-1 + - ae-2-7-14-2-4-2 + - ae-2-7-14-2-4-3 + - ae-2-7-14-2-4-4 attributes: - - adjustability - - compatible_drum_configuration - - footboard_type - - drum_hardware_material -- id: ae-2-7-12-5-3-4 - name: Double Drum Pedals + - compatible_clarinet_type + - instrument_part_material +- id: ae-2-7-14-2-4-1 + name: Clarinet Barrels children: [] attributes: - - adjustability - - compatible_drum_configuration - - footboard_type - - drum_hardware_material -- id: ae-2-7-12-5-3-5 - name: Single Drum Pedals - children: [] + - compatible_clarinet_type + - instrument_accessory_material +- id: ae-2-7-14-2-4-2 + name: Clarinet Bells + children: + - ae-2-7-14-2-4-2-1 + - ae-2-7-14-2-4-2-2 attributes: - - adjustability - - compatible_drum_configuration - - footboard_type - - drum_hardware_material -- id: ae-2-7-12-7-1 - name: Brushes + - compatible_clarinet_type + - instrument_accessory_finish + - instrument_accessory_material +- id: ae-2-7-14-2-4-2-1 + name: Adjustable Bells children: [] attributes: - - grip_texture - - percussion_tip_shape - - brush_material -- id: ae-2-7-12-7-2 - name: Drum Sticks + - compatible_clarinet_type + - instrument_accessory_finish + - instrument_accessory_material +- id: ae-2-7-14-2-4-2-2 + name: Standard Bells children: [] attributes: - - grip_texture - - percussion_tip_shape - - drum_hardware_material -- id: ae-2-7-12-8-1 - name: Control Modules + - compatible_clarinet_type + - instrument_accessory_finish + - instrument_accessory_material +- id: ae-2-7-14-2-4-3 + name: Clarinet Mouthpieces children: [] attributes: - - input_output_ports - - midi_connectivity - - sound_effects -- id: ae-2-7-12-8-2 - name: Sound Modules + - color + - compatible_clarinet_type + - facing + - instrument_accessory_material + - pattern +- id: ae-2-7-14-2-4-4 + name: Clarinet Small Parts children: [] attributes: - - input_output_ports - - midi_connectivity - - sound_effects -- id: ae-2-7-12-8-3 - name: Trigger Modules + - compatible_clarinet_type + - instrument_part_material +- id: ae-2-7-14-2-5 + name: Clarinet Pegs & Stands children: [] attributes: - - input_output_ports - - midi_connectivity - - sound_effects -- id: ae-2-7-12-9-2-1 - name: Hand Percussion Mounts + - compatible_clarinet_type + - instrument_accessory_material +- id: ae-2-7-14-2-6 + name: Clarinet Reeds children: [] attributes: - - orientation - - compatible_percussion_instrument - - mount_material -- id: ae-2-7-12-9-2-2 - name: Hand Percussion Racks + - instrument_accessory_material + - reed_strength +- id: ae-2-7-14-2-7 + name: Clarinet Straps & Supports children: [] attributes: - - orientation - - compatible_percussion_instrument + - compatible_clarinet_type - instrument_accessory_material -- id: ae-2-7-12-9-2-3 - name: Hand Percussion Set Stands & Mounts +- id: ae-2-7-14-3 + name: Flute Accessories + children: + - ae-2-7-14-3-1 + - ae-2-7-14-3-2 + - ae-2-7-14-3-3 + - ae-2-7-14-3-4 + attributes: [] +- id: ae-2-7-14-3-1 + name: Flute Care & Cleaning + children: + - ae-2-7-14-3-1-1 + - ae-2-7-14-3-1-2 + - ae-2-7-14-3-1-3 + attributes: [] +- id: ae-2-7-14-3-1-1 + name: Flute Care Kits children: [] attributes: - - orientation - - compatible_percussion_instrument - - mount_material -- id: ae-2-7-12-9-2-4 - name: Hand Percussion Stands + - woodwind_care_items_included +- id: ae-2-7-14-3-1-2 + name: Flute Cleaning Rods children: [] attributes: - - orientation - - compatible_percussion_instrument - instrument_accessory_material -- id: ae-2-7-12-11-1 - name: Percussion Stand Sets +- id: ae-2-7-14-3-1-3 + name: Flute Swabs children: [] attributes: - - compatible_percussion_instrument - - instrument_accessory_material -- id: ae-2-7-13-1-2-1 - name: Clamp Capos + - swab_material +- id: ae-2-7-14-3-2 + name: Flute Cases & Gigbags children: [] attributes: - - color - - compatible_string_instrument - - pattern - - instrument_accessory_material -- id: ae-2-7-13-1-2-2 - name: Partial Capos - children: [] + - bag_case_material +- id: ae-2-7-14-3-3 + name: Flute Parts + children: + - ae-2-7-14-3-3-1 + - ae-2-7-14-3-3-2 attributes: - - color - - compatible_string_instrument - - pattern + - instrument_part_material +- id: ae-2-7-14-3-3-1 + name: Flute Headjoints + children: + - ae-2-7-14-3-3-1-1 + - ae-2-7-14-3-3-1-2 + attributes: + - embouchure_hole_shape + - lip_plate_material - instrument_accessory_material -- id: ae-2-7-13-1-2-3 - name: Sliding Capos +- id: ae-2-7-14-3-3-1-1 + name: Curved Headjoints children: [] attributes: - - color - - compatible_string_instrument - - pattern + - embouchure_hole_shape + - lip_plate_material - instrument_accessory_material -- id: ae-2-7-13-1-2-4 - name: Trigger Capos +- id: ae-2-7-14-3-3-1-2 + name: Straight Headjoints children: [] attributes: - - color - - compatible_string_instrument - - pattern + - embouchure_hole_shape + - lip_plate_material - instrument_accessory_material -- id: ae-2-7-13-1-4 - name: Guitar Cases & Gigbags +- id: ae-2-7-14-3-3-2 + name: Flute Small Parts children: [] attributes: - - color - - compatible_string_instrument - - inner_color - - inner_pattern - - pattern - - bag_case_material -- id: ae-2-7-13-1-6-1 - name: Case Humidifiers + - compatible_flute_type + - instrument_part_material +- id: ae-2-7-14-3-4 + name: Flute Pegs & Stands children: [] attributes: - - compatible_string_instrument + - compatible_flute_type - instrument_accessory_material -- id: ae-2-7-13-1-6-2 - name: Room Humidifiers - children: [] +- id: ae-2-7-14-4 + name: Harmonica Accessories + children: + - ae-2-7-14-4-1 + - ae-2-7-14-4-2 attributes: - - compatible_string_instrument - instrument_accessory_material -- id: ae-2-7-13-1-6-3 - name: Soundhole Humidifiers +- id: ae-2-7-14-4-1 + name: Harmonica Cases children: [] attributes: - - compatible_string_instrument + - bag_case_material +- id: ae-2-7-14-4-2 + name: Harmonica Holders + children: + - ae-2-7-14-4-2-1 + - ae-2-7-14-4-2-2 + attributes: + - compatible_harmonica_type - instrument_accessory_material -- id: ae-2-7-13-1-7-1 - name: Finger Picks +- id: ae-2-7-14-4-2-1 + name: Neck Holders children: [] attributes: - - color - - grip_texture - - pattern - - pick_design - - thickness_type + - compatible_harmonica_type - instrument_accessory_material -- id: ae-2-7-13-1-7-2 - name: Jazz Picks +- id: ae-2-7-14-4-2-2 + name: Stand Holders children: [] attributes: - - color - - grip_texture - - pattern - - pick_design - - thickness_type + - compatible_harmonica_type - instrument_accessory_material -- id: ae-2-7-13-1-11-1 - name: Electric String Winders +- id: ae-2-7-14-5 + name: Oboe & English Horn Accessories + children: + - ae-2-7-14-5-1 + - ae-2-7-14-5-2 + - ae-2-7-14-5-3 + - ae-2-7-14-5-4 + - ae-2-7-14-5-5 + - ae-2-7-14-5-6 + attributes: [] +- id: ae-2-7-14-5-1 + name: Oboe Care & Cleaning + children: + - ae-2-7-14-5-1-1 + - ae-2-7-14-5-1-2 + attributes: [] +- id: ae-2-7-14-5-1-1 + name: Oboe Care Kits children: [] attributes: - - compatible_string_instrument -- id: ae-2-7-13-1-11-2 - name: Manual String Winders + - woodwind_care_items_included +- id: ae-2-7-14-5-1-2 + name: Oboe Swabs children: [] attributes: - - compatible_string_instrument -- id: ae-2-7-13-1-12-1 - name: Acoustic Guitar Strings + - swab_material +- id: ae-2-7-14-5-2 + name: Oboe Cases & Gigbags + children: [] + attributes: + - bag_case_material +- id: ae-2-7-14-5-3 + name: Oboe Parts + children: + - ae-2-7-14-5-3-1 + attributes: [] +- id: ae-2-7-14-5-3-1 + name: Oboe Small Parts children: [] attributes: - - instrument_string_material -- id: ae-2-7-13-1-12-2 - name: Bass Guitar Strings + - compatible_oboe_type + - instrument_part_material +- id: ae-2-7-14-5-4 + name: Oboe Pegs & Stands children: [] attributes: - - instrument_string_material -- id: ae-2-7-13-1-12-3 - name: Classical Guitar Strings + - compatible_oboe_type + - instrument_accessory_material +- id: ae-2-7-14-5-5 + name: Oboe Reeds children: [] attributes: - - instrument_string_material -- id: ae-2-7-13-1-12-4 - name: Electric Guitar Strings + - instrument_accessory_material + - reed_strength +- id: ae-2-7-14-5-6 + name: Oboe Straps & Supports children: [] attributes: - - instrument_string_material -- id: ae-2-7-13-2-1-1 - name: Double Bow Cases + - compatible_oboe_type + - instrument_accessory_material +- id: ae-2-7-14-6 + name: Recorder Accessories + children: + - ae-2-7-14-6-1 + - ae-2-7-14-6-2 + - ae-2-7-14-6-3 + attributes: [] +- id: ae-2-7-14-6-1 + name: Recorder Care & Cleaning children: [] attributes: - - closure_type - - compatible_orchestral_string_instrument - - bag_case_material -- id: ae-2-7-13-2-1-2 - name: Multiple Bow Cases + - cleaning_solution +- id: ae-2-7-14-6-2 + name: Recorder Cases children: [] attributes: - - closure_type - - compatible_orchestral_string_instrument - bag_case_material -- id: ae-2-7-13-2-1-3 - name: Single Bow Cases +- id: ae-2-7-14-6-3 + name: Recorder Parts children: [] attributes: - - closure_type - - compatible_orchestral_string_instrument - - bag_case_material -- id: ae-2-7-13-3-3-1 - name: Fingerboard Polish + - instrument_part_material +- id: ae-2-7-14-7 + name: Saxophone Accessories + children: + - ae-2-7-14-7-1 + - ae-2-7-14-7-2 + - ae-2-7-14-7-3 + - ae-2-7-14-7-4 + - ae-2-7-14-7-5 + - ae-2-7-14-7-6 + - ae-2-7-14-7-7 + attributes: [] +- id: ae-2-7-14-7-1 + name: Saxophone Care & Cleaning + children: + - ae-2-7-14-7-1-1 + - ae-2-7-14-7-1-2 + - ae-2-7-14-7-1-3 + attributes: [] +- id: ae-2-7-14-7-1-1 + name: Saxophone Care Kits children: [] attributes: - - application_method - - ingredient_origin -- id: ae-2-7-13-3-3-2 - name: Instrument Polish + - woodwind_care_items_included +- id: ae-2-7-14-7-1-2 + name: Saxophone Pad Savers children: [] attributes: - - application_method - - ingredient_origin -- id: ae-2-7-13-3-3-3 - name: Varnish + - instrument_accessory_material +- id: ae-2-7-14-7-1-3 + name: Saxophone Swabs children: [] attributes: - - application_method - - ingredient_origin -- id: ae-2-7-14-1-4-1 - name: Filed Reeds + - swab_material +- id: ae-2-7-14-7-2 + name: Saxophone Cases & Gigbags children: [] attributes: - - reed_strength - - instrument_accessory_material -- id: ae-2-7-14-1-4-2 - name: Handmade Reeds + - bag_case_material +- id: ae-2-7-14-7-3 + name: Saxophone Ligatures & Caps children: [] attributes: - - reed_strength - - instrument_accessory_material -- id: ae-2-7-14-1-4-3 - name: Machine-Made Reeds - children: [] + - instrument_accessory_finish +- id: ae-2-7-14-7-4 + name: Saxophone Parts + children: + - ae-2-7-14-7-4-1 + - ae-2-7-14-7-4-2 + - ae-2-7-14-7-4-3 + attributes: [] +- id: ae-2-7-14-7-4-1 + name: Saxophone Mouthpieces + children: + - ae-2-7-14-7-4-1-1 + - ae-2-7-14-7-4-1-2 + - ae-2-7-14-7-4-1-3 + - ae-2-7-14-7-4-1-4 attributes: - - reed_strength - instrument_accessory_material -- id: ae-2-7-14-1-4-4 - name: Unfiled Reeds + - tip_opening +- id: ae-2-7-14-7-4-1-1 + name: Alto Saxophone Mouthpieces children: [] attributes: - - reed_strength - instrument_accessory_material -- id: ae-2-7-14-2-3-1 - name: Metal Ligatures & Caps + - tip_opening +- id: ae-2-7-14-7-4-1-2 + name: Baritone Saxophone Mouthpieces children: [] attributes: - - compatible_clarinet_type - instrument_accessory_material -- id: ae-2-7-14-2-3-2 - name: Rovner Ligatures & Caps + - tip_opening +- id: ae-2-7-14-7-4-1-3 + name: Soprano Saxophone Mouthpieces children: [] attributes: - - compatible_clarinet_type - instrument_accessory_material -- id: ae-2-7-14-2-3-3 - name: Standard Ligatures & Caps + - tip_opening +- id: ae-2-7-14-7-4-1-4 + name: Tenor Saxophone Mouthpieces children: [] attributes: - - compatible_clarinet_type - instrument_accessory_material -- id: ae-2-7-14-2-4-2-1 - name: Adjustable Bells + - tip_opening +- id: ae-2-7-14-7-4-2 + name: Saxophone Necks children: [] attributes: - - compatible_clarinet_type - - instrument_accessory_finish - instrument_accessory_material -- id: ae-2-7-14-2-4-2-2 - name: Standard Bells +- id: ae-2-7-14-7-4-3 + name: Saxophone Small Parts children: [] attributes: - - compatible_clarinet_type - - instrument_accessory_finish - - instrument_accessory_material -- id: ae-2-7-14-3-3-1-1 - name: Curved Headjoints + - instrument_part_material +- id: ae-2-7-14-7-5 + name: Saxophone Pegs & Stands children: [] attributes: - - embouchure_hole_shape - - lip_plate_material - instrument_accessory_material -- id: ae-2-7-14-3-3-1-2 - name: Straight Headjoints +- id: ae-2-7-14-7-6 + name: Saxophone Reeds children: [] attributes: - - embouchure_hole_shape - - lip_plate_material - instrument_accessory_material -- id: ae-2-7-14-4-2-1 - name: Neck Holders + - reed_strength +- id: ae-2-7-14-7-7 + name: Saxophone Straps & Supports children: [] attributes: - - compatible_harmonica_type - instrument_accessory_material -- id: ae-2-7-14-4-2-2 - name: Stand Holders +- id: ae-2-7-14-8 + name: Woodwind Cork Grease children: [] - attributes: - - compatible_harmonica_type - - instrument_accessory_material -- id: ae-2-7-14-7-4-1-1 - name: Alto Saxophone Mouthpieces + attributes: [] +- id: ae-2-7-14-9 + name: Woodwind Polishing Cloths children: [] attributes: - - tip_opening - instrument_accessory_material -- id: ae-2-7-14-7-4-1-2 - name: Baritone Saxophone Mouthpieces +- id: ae-2-7-14-10 + name: Woodwind Reed Cases children: [] attributes: - - tip_opening - - instrument_accessory_material -- id: ae-2-7-14-7-4-1-3 - name: Soprano Saxophone Mouthpieces + - bag_case_material +- id: ae-2-7-14-11 + name: Woodwind Reed Knives children: [] attributes: - - tip_opening - - instrument_accessory_material -- id: ae-2-7-14-7-4-1-4 - name: Tenor Saxophone Mouthpieces - children: [] + - blade_material + - handle_material +- id: ae-2-8 + name: Musical Instruments + children: + - ae-2-8-1 + - ae-2-8-2 + - ae-2-8-3 + - ae-2-8-4 + - ae-2-8-5 + - ae-2-8-6 + - ae-2-8-7 + - ae-2-8-8 attributes: - - tip_opening - - instrument_accessory_material + - instrument_material +- id: ae-2-8-1 + name: Accordions & Concertinas + children: + - ae-2-8-1-1 + - ae-2-8-1-2 + attributes: + - instrument_material - id: ae-2-8-1-1 name: Accordions children: [] @@ -7308,6 +6207,16 @@ attributes: - concertina_button_configuration - instrument_material +- id: ae-2-8-2 + name: Bagpipes + children: + - ae-2-8-2-1 + - ae-2-8-2-2 + - ae-2-8-2-3 + - ae-2-8-2-4 + - ae-2-8-2-5 + attributes: + - instrument_material - id: ae-2-8-2-1 name: Great Highland Bagpipes children: [] @@ -7328,87 +6237,167 @@ children: [] attributes: - instrument_material -- id: ae-2-8-2-5 - name: Uilleann Pipes - children: [] +- id: ae-2-8-2-5 + name: Uilleann Pipes + children: [] + attributes: + - instrument_material +- id: ae-2-8-3 + name: Brass Instruments + children: + - ae-2-8-3-1 + - ae-2-8-3-2 + - ae-2-8-3-3 + - ae-2-8-3-4 + - ae-2-8-3-5 + - ae-2-8-3-6 + attributes: + - instrument_material +- id: ae-2-8-3-1 + name: Alto & Baritone Horns + children: + - ae-2-8-3-1-1 + - ae-2-8-3-1-2 + - ae-2-8-3-1-3 attributes: + - bell_size - instrument_material + - tuning_pitch - id: ae-2-8-3-1-1 name: Alto Horns children: [] attributes: - bell_size - - tuning_pitch - instrument_material + - tuning_pitch - id: ae-2-8-3-1-2 name: Baritone Horns children: [] attributes: - bell_size - - tuning_pitch - instrument_material + - tuning_pitch - id: ae-2-8-3-1-3 name: Mellophones children: [] attributes: - bell_size + - instrument_material + - tuning_pitch +- id: ae-2-8-3-2 + name: Euphoniums + children: [] + attributes: + - bell_size + - instrument_material - tuning_pitch +- id: ae-2-8-3-3 + name: French Horns + children: + - ae-2-8-3-3-1 + - ae-2-8-3-3-2 + attributes: + - bell_size - instrument_material + - tuning_pitch - id: ae-2-8-3-3-1 name: Double French Horns children: [] attributes: - bell_size - - tuning_pitch - instrument_material + - tuning_pitch - id: ae-2-8-3-3-2 name: Single French Horns children: [] attributes: - bell_size + - instrument_material - tuning_pitch +- id: ae-2-8-3-4 + name: Trombones + children: + - ae-2-8-3-4-1 + - ae-2-8-3-4-2 + attributes: + - bell_size - instrument_material + - tuning_pitch - id: ae-2-8-3-4-1 name: Bass Trombones children: [] attributes: - bell_size - - tuning_pitch - instrument_material + - tuning_pitch - id: ae-2-8-3-4-2 name: Tenor Trombones children: [] attributes: - bell_size + - instrument_material - tuning_pitch +- id: ae-2-8-3-5 + name: Trumpets & Cornets + children: + - ae-2-8-3-5-1 + - ae-2-8-3-5-2 + - ae-2-8-3-5-3 + attributes: + - bell_size - instrument_material + - tuning_pitch - id: ae-2-8-3-5-1 name: Cornets children: [] attributes: - bell_size - - tuning_pitch - instrument_material + - tuning_pitch - id: ae-2-8-3-5-2 name: Flugelhorns children: [] attributes: - bell_size - - tuning_pitch - instrument_material + - tuning_pitch - id: ae-2-8-3-5-3 name: Trumpets children: [] attributes: - bell_size + - instrument_material - tuning_pitch +- id: ae-2-8-3-6 + name: Tubas + children: + - ae-2-8-3-6-1 + attributes: + - bell_size - instrument_material + - tuning_pitch - id: ae-2-8-3-6-1 name: Sousaphones children: [] attributes: - bell_size + - instrument_material - tuning_pitch +- id: ae-2-8-4 + name: Electronic Musical Instruments + children: + - ae-2-8-4-1 + - ae-2-8-4-2 + - ae-2-8-4-3 + - ae-2-8-4-4 + attributes: + - instrument_material +- id: ae-2-8-4-1 + name: Audio Samplers + children: + - ae-2-8-4-1-1 + - ae-2-8-4-1-2 + attributes: - instrument_material - id: ae-2-8-4-1-1 name: Drum Samplers @@ -7420,6 +6409,14 @@ children: [] attributes: - instrument_material +- id: ae-2-8-4-2 + name: MIDI Controllers + children: + - ae-2-8-4-2-1 + - ae-2-8-4-2-2 + attributes: + - interface_type + - instrument_material - id: ae-2-8-4-2-1 name: Keyboard Controllers children: [] @@ -7432,6 +6429,16 @@ attributes: - interface_type - instrument_material +- id: ae-2-8-4-3 + name: Musical Keyboards + children: + - ae-2-8-4-3-1 + - ae-2-8-4-3-3 + - ae-2-8-4-3-4 + attributes: + - interface_type + - key_type + - instrument_material - id: ae-2-8-4-3-1 name: Digital Pianos children: [] @@ -7453,33 +6460,67 @@ - interface_type - key_type - instrument_material +- id: ae-2-8-4-4 + name: Sound Synthesizers + children: + - ae-2-8-4-4-1 + - ae-2-8-4-4-2 + - ae-2-8-4-4-3 + - ae-2-8-4-4-4 + attributes: + - instrument_material + - polyphony + - synthesis_method - id: ae-2-8-4-4-1 name: Analog Synthesizers children: [] attributes: + - instrument_material - polyphony - synthesis_method - - instrument_material - id: ae-2-8-4-4-2 name: Digital Synthesizers children: [] attributes: + - instrument_material - polyphony - synthesis_method - - instrument_material - id: ae-2-8-4-4-3 name: Modular Synthesizers children: [] attributes: + - instrument_material - polyphony - synthesis_method - - instrument_material - id: ae-2-8-4-4-4 name: Virtual Analog Synthesizers children: [] attributes: + - instrument_material - polyphony - synthesis_method +- id: ae-2-8-5 + name: Percussion + children: + - ae-2-8-5-1 + - ae-2-8-5-2 + - ae-2-8-5-3 + - ae-2-8-5-4 + - ae-2-8-5-5 + - ae-2-8-5-6 + - ae-2-8-5-7 + - ae-2-8-5-8 + - ae-2-8-5-9 + - ae-2-8-5-10 + - ae-2-8-5-11 + attributes: + - instrument_material +- id: ae-2-8-5-1 + name: Bass Drums + children: + - ae-2-8-5-1-1 + - ae-2-8-5-1-2 + attributes: - instrument_material - id: ae-2-8-5-1-1 name: Concert Bass Drums @@ -7491,6 +6532,17 @@ children: [] attributes: - instrument_material +- id: ae-2-8-5-2 + name: Cymbals + children: + - ae-2-8-5-2-1 + - ae-2-8-5-2-2 + - ae-2-8-5-2-3 + - ae-2-8-5-2-4 + - ae-2-8-5-2-5 + - ae-2-8-5-2-6 + attributes: + - instrument_material - id: ae-2-8-5-2-1 name: China Cymbals children: [] @@ -7521,6 +6573,21 @@ children: [] attributes: - instrument_material +- id: ae-2-8-5-3 + name: Drum Kits + children: + - ae-2-8-5-3-1 + - ae-2-8-5-3-2 + - ae-2-8-5-3-3 + - ae-2-8-5-3-4 + - ae-2-8-5-3-5 + - ae-2-8-5-3-6 + - ae-2-8-5-3-7 + - ae-2-8-5-3-8 + - ae-2-8-5-3-9 + attributes: + - drum_configuration + - instrument_material - id: ae-2-8-5-3-1 name: Acoustic Drum Kits children: [] @@ -7575,6 +6642,16 @@ attributes: - drum_configuration - instrument_material +- id: ae-2-8-5-4 + name: Electronic Drums + children: + - ae-2-8-5-4-1 + - ae-2-8-5-4-2 + - ae-2-8-5-4-3 + attributes: + - instrument_components + - interface_type + - instrument_material - id: ae-2-8-5-4-1 name: Electronic Cymbals children: [] @@ -7596,6 +6673,15 @@ - instrument_components - interface_type - instrument_material +- id: ae-2-8-5-5 + name: Glockenspiels & Xylophones + children: + - ae-2-8-5-5-1 + - ae-2-8-5-5-2 + - ae-2-8-5-5-3 + - ae-2-8-5-5-4 + attributes: + - instrument_material - id: ae-2-8-5-5-1 name: Glockenspiels children: [] @@ -7616,6 +6702,14 @@ children: [] attributes: - instrument_material +- id: ae-2-8-5-6 + name: Gongs + children: + - ae-2-8-5-6-1 + - ae-2-8-5-6-2 + - ae-2-8-5-6-3 + attributes: + - instrument_material - id: ae-2-8-5-6-1 name: Opera Gongs children: [] @@ -7631,6 +6725,30 @@ children: [] attributes: - instrument_material +- id: ae-2-8-5-7 + name: Hand Percussion + children: + - ae-2-8-5-7-1 + - ae-2-8-5-7-2 + - ae-2-8-5-7-3 + - ae-2-8-5-7-4 + - ae-2-8-5-7-5 + - ae-2-8-5-7-6 + - ae-2-8-5-7-7 + - ae-2-8-5-7-8 + - ae-2-8-5-7-9 + - ae-2-8-5-7-10 + - ae-2-8-5-7-11 + attributes: + - instrument_material +- id: ae-2-8-5-7-1 + name: Claves & Castanets + children: + - ae-2-8-5-7-1-1 + - ae-2-8-5-7-1-2 + - ae-2-8-5-7-1-3 + attributes: + - instrument_material - id: ae-2-8-5-7-1-1 name: Castanets children: [] @@ -7646,6 +6764,14 @@ children: [] attributes: - instrument_material +- id: ae-2-8-5-7-2 + name: Finger & Hand Cymbals + children: + - ae-2-8-5-7-2-1 + - ae-2-8-5-7-2-2 + - ae-2-8-5-7-2-3 + attributes: + - instrument_material - id: ae-2-8-5-7-2-1 name: Finger Cymbals children: [] @@ -7661,6 +6787,15 @@ children: [] attributes: - instrument_material +- id: ae-2-8-5-7-3 + name: Hand Bells & Chimes + children: + - ae-2-8-5-7-3-1 + - ae-2-8-5-7-3-2 + - ae-2-8-5-7-3-3 + - ae-2-8-5-7-3-4 + attributes: + - instrument_material - id: ae-2-8-5-7-3-1 name: Chimes children: [] @@ -7681,11 +6816,38 @@ children: [] attributes: - instrument_material +- id: ae-2-8-5-7-4 + name: Hand Drums + children: + - ae-2-8-5-7-4-1 + - ae-2-8-5-7-4-2 + - ae-2-8-5-7-4-3 + - ae-2-8-5-7-4-4 + - ae-2-8-5-7-4-5 + - ae-2-8-5-7-4-6 + - ae-2-8-5-7-4-7 + attributes: + - instrument_material +- id: ae-2-8-5-7-4-1 + name: Bongos + children: + - ae-2-8-5-7-4-1-1 + attributes: + - instrument_material - id: ae-2-8-5-7-4-1-1 name: Traditional Bongos children: [] attributes: - instrument_material +- id: ae-2-8-5-7-4-2 + name: Cajons + children: + - ae-2-8-5-7-4-2-1 + - ae-2-8-5-7-4-2-2 + - ae-2-8-5-7-4-2-3 + attributes: + - accessory_size + - instrument_material - id: ae-2-8-5-7-4-2-1 name: Bass Cajons children: [] @@ -7704,6 +6866,14 @@ attributes: - accessory_size - instrument_material +- id: ae-2-8-5-7-4-3 + name: Congas + children: + - ae-2-8-5-7-4-3-1 + - ae-2-8-5-7-4-3-2 + - ae-2-8-5-7-4-3-3 + attributes: + - instrument_material - id: ae-2-8-5-7-4-3-1 name: Conga Sets children: [] @@ -7719,6 +6889,14 @@ children: [] attributes: - instrument_material +- id: ae-2-8-5-7-4-4 + name: Frame Drums + children: + - ae-2-8-5-7-4-4-1 + - ae-2-8-5-7-4-4-2 + - ae-2-8-5-7-4-4-3 + attributes: + - instrument_material - id: ae-2-8-5-7-4-4-1 name: Bodhrans children: [] @@ -7734,6 +6912,14 @@ children: [] attributes: - instrument_material +- id: ae-2-8-5-7-4-5 + name: Goblet Drums + children: + - ae-2-8-5-7-4-5-1 + - ae-2-8-5-7-4-5-2 + - ae-2-8-5-7-4-5-3 + attributes: + - instrument_material - id: ae-2-8-5-7-4-5-1 name: Darbukas children: [] @@ -7749,6 +6935,14 @@ children: [] attributes: - instrument_material +- id: ae-2-8-5-7-4-6 + name: Tablas + children: + - ae-2-8-5-7-4-6-1 + - ae-2-8-5-7-4-6-2 + - ae-2-8-5-7-4-6-3 + attributes: + - instrument_material - id: ae-2-8-5-7-4-6-1 name: Bayans children: [] @@ -7764,6 +6958,15 @@ children: [] attributes: - instrument_material +- id: ae-2-8-5-7-4-7 + name: Talking Drums + children: + - ae-2-8-5-7-4-7-1 + - ae-2-8-5-7-4-7-2 + - ae-2-8-5-7-4-7-3 + attributes: + - accessory_size + - instrument_material - id: ae-2-8-5-7-4-7-1 name: Donnos children: [] @@ -7782,6 +6985,21 @@ attributes: - accessory_size - instrument_material +- id: ae-2-8-5-7-5 + name: Musical Blocks + children: [] + attributes: + - accessory_size + - instrument_material +- id: ae-2-8-5-7-6 + name: Musical Cowbells + children: + - ae-2-8-5-7-6-1 + - ae-2-8-5-7-6-2 + - ae-2-8-5-7-6-3 + attributes: + - accessory_size + - instrument_material - id: ae-2-8-5-7-6-1 name: Latin Percussion Cowbells children: [] @@ -7800,6 +7018,14 @@ attributes: - accessory_size - instrument_material +- id: ae-2-8-5-7-7 + name: Musical Scrapers & Ratchets + children: + - ae-2-8-5-7-7-3 + - ae-2-8-5-7-7-4 + - ae-2-8-5-7-7-5 + attributes: + - instrument_material - id: ae-2-8-5-7-7-3 name: Guiros children: [] @@ -7815,6 +7041,16 @@ children: [] attributes: - instrument_material +- id: ae-2-8-5-7-8 + name: Musical Shakers + children: + - ae-2-8-5-7-8-1 + - ae-2-8-5-7-8-2 + - ae-2-8-5-7-8-3 + - ae-2-8-5-7-8-4 + attributes: + - accessory_size + - instrument_material - id: ae-2-8-5-7-8-1 name: Cabasas children: [] @@ -7839,6 +7075,19 @@ attributes: - accessory_size - instrument_material +- id: ae-2-8-5-7-9 + name: Musical Triangles + children: [] + attributes: + - instrument_material +- id: ae-2-8-5-7-10 + name: Tambourines + children: + - ae-2-8-5-7-10-1 + - ae-2-8-5-7-10-2 + - ae-2-8-5-7-10-3 + attributes: + - instrument_material - id: ae-2-8-5-7-10-1 name: Handheld Tambourines children: [] @@ -7854,6 +7103,13 @@ children: [] attributes: - instrument_material +- id: ae-2-8-5-7-11 + name: Vibraslaps + children: + - ae-2-8-5-7-11-1 + - ae-2-8-5-7-11-2 + attributes: + - instrument_material - id: ae-2-8-5-7-11-1 name: Jawbones children: [] @@ -7864,6 +7120,24 @@ children: [] attributes: - instrument_material +- id: ae-2-8-5-8 + name: Hi-Hats + children: [] + attributes: + - instrument_material +- id: ae-2-8-5-9 + name: Practice Pads + children: [] + attributes: + - instrument_material +- id: ae-2-8-5-10 + name: Snare Drums + children: + - ae-2-8-5-10-1 + - ae-2-8-5-10-2 + - ae-2-8-5-10-3 + attributes: + - instrument_material - id: ae-2-8-5-10-1 name: Metal Snare Drums children: [] @@ -7879,6 +7153,14 @@ children: [] attributes: - instrument_material +- id: ae-2-8-5-11 + name: Tom-Toms + children: + - ae-2-8-5-11-1 + - ae-2-8-5-11-2 + attributes: + - instrument_material + - tom_tom_design - id: ae-2-8-5-11-1 name: Concert Tom-Toms children: [] @@ -7889,96 +7171,153 @@ children: [] attributes: - instrument_material +- id: ae-2-8-6 + name: Pianos + children: + - ae-2-8-6-1 + - ae-2-8-6-2 + - ae-2-8-6-3 + - ae-2-8-6-4 + attributes: + - interface_type + - keyboard_action + - instrument_material + - piano_pedals + - piano_size - id: ae-2-8-6-1 name: Acoustic Pianos children: [] attributes: - interface_type - keyboard_action + - instrument_material - piano_pedals - piano_size - - instrument_material - id: ae-2-8-6-2 name: Electric Pianos children: [] attributes: - interface_type - keyboard_action + - instrument_material - piano_pedals - piano_size - - instrument_material - id: ae-2-8-6-3 name: Grand Pianos children: [] attributes: - interface_type - keyboard_action + - instrument_material - piano_pedals - piano_size - - instrument_material - id: ae-2-8-6-4 name: Upright Pianos children: [] attributes: - interface_type - keyboard_action + - instrument_material - piano_pedals - piano_size +- id: ae-2-8-7 + name: String Instruments + children: + - ae-2-8-7-1 + - ae-2-8-7-2 + - ae-2-8-7-3 + - ae-2-8-7-4 + - ae-2-8-7-5 + - ae-2-8-7-6 + attributes: - instrument_material +- id: ae-2-8-7-1 + name: Cellos + children: + - ae-2-8-7-1-1 + - ae-2-8-7-1-2 + attributes: + - instrument_bow_material + - instrument_material + - string_instrument_size - id: ae-2-8-7-1-1 name: Acoustic Cellos children: [] attributes: - - string_instrument_size - instrument_bow_material - instrument_material + - string_instrument_size - id: ae-2-8-7-1-2 name: Electric Cellos children: [] attributes: - - string_instrument_size - instrument_bow_material - instrument_material + - string_instrument_size +- id: ae-2-8-7-2 + name: Guitars + children: + - ae-2-8-7-2-1 + - ae-2-8-7-2-2 + - ae-2-8-7-2-3 + - ae-2-8-7-2-4 + attributes: + - color + - fingerboard_material + - guitar_size + - instrument_material + - neck_material + - instrument_string_material - id: ae-2-8-7-2-1 name: Acoustic Guitars children: [] attributes: + - instrument_material - color - fingerboard_material - guitar_size - neck_material - - instrument_material - instrument_string_material - id: ae-2-8-7-2-2 name: Bass Guitars children: [] attributes: + - instrument_material - color - fingerboard_material - guitar_size - neck_material - - instrument_material - instrument_string_material - id: ae-2-8-7-2-3 name: Classical Guitars children: [] attributes: + - instrument_material - color - fingerboard_material - guitar_size - neck_material - - instrument_material - instrument_string_material - id: ae-2-8-7-2-4 name: Electric Guitars children: [] attributes: + - instrument_material - color - fingerboard_material - guitar_size - neck_material - - instrument_material - instrument_string_material +- id: ae-2-8-7-3 + name: Harps + children: + - ae-2-8-7-3-1 + - ae-2-8-7-3-2 + - ae-2-8-7-3-3 + - ae-2-8-7-3-4 + attributes: + - harp_size + - instrument_material - id: ae-2-8-7-3-1 name: Celtic Harps children: [] @@ -8003,20 +7342,70 @@ attributes: - harp_size - instrument_material +- id: ae-2-8-7-4 + name: Upright Basses + children: + - ae-2-8-7-4-1 + - ae-2-8-7-4-2 + attributes: + - instrument_bow_material + - instrument_material + - string_instrument_size - id: ae-2-8-7-4-1 name: Bass Violins children: [] attributes: - - string_instrument_size - instrument_bow_material - instrument_material + - string_instrument_size - id: ae-2-8-7-4-2 name: Double Basses children: [] attributes: + - instrument_bow_material + - instrument_material - string_instrument_size +- id: ae-2-8-7-5 + name: Violas + children: [] + attributes: + - instrument_bow_material + - instrument_material +- id: ae-2-8-7-6 + name: Violins + children: [] + attributes: - instrument_bow_material - instrument_material + - string_instrument_size +- id: ae-2-8-8 + name: Woodwinds + children: + - ae-2-8-8-1 + - ae-2-8-8-2 + - ae-2-8-8-3 + - ae-2-8-8-4 + - ae-2-8-8-5 + - ae-2-8-8-6 + - ae-2-8-8-7 + - ae-2-8-8-8 + - ae-2-8-8-9 + - ae-2-8-8-10 + - ae-2-8-8-11 + - ae-2-8-8-12 + - ae-2-8-8-13 + - ae-2-8-8-14 + attributes: + - instrument_material +- id: ae-2-8-8-1 + name: Bassoons + children: + - ae-2-8-8-1-1 + - ae-2-8-8-1-2 + - ae-2-8-8-1-3 + attributes: + - instrument_accessory_finish + - instrument_material - id: ae-2-8-8-1-1 name: Buffet Bassoons children: [] @@ -8035,121 +7424,171 @@ attributes: - instrument_accessory_finish - instrument_material +- id: ae-2-8-8-2 + name: Clarinets + children: + - ae-2-8-8-2-1 + - ae-2-8-8-2-2 + - ae-2-8-8-2-3 + - ae-2-8-8-2-4 + - ae-2-8-8-2-5 + - ae-2-8-8-2-6 + - ae-2-8-8-2-7 + attributes: + - clarinet_key_system + - instrument_accessory_finish + - instrument_material + - mouthpiece - id: ae-2-8-8-2-1 name: A Clarinets children: [] attributes: - clarinet_key_system - - mouthpiece - instrument_accessory_finish - instrument_material + - mouthpiece - id: ae-2-8-8-2-2 name: Alto Clarinets children: [] attributes: - clarinet_key_system - - mouthpiece - instrument_accessory_finish - instrument_material + - mouthpiece - id: ae-2-8-8-2-3 name: Bass Clarinets children: [] attributes: - clarinet_key_system - - mouthpiece - instrument_accessory_finish - instrument_material + - mouthpiece - id: ae-2-8-8-2-4 name: Bb Clarinets children: [] attributes: - clarinet_key_system - - mouthpiece - instrument_accessory_finish - instrument_material + - mouthpiece - id: ae-2-8-8-2-5 name: Contra-Alto Clarinets children: [] attributes: - clarinet_key_system - - mouthpiece - instrument_accessory_finish - instrument_material + - mouthpiece - id: ae-2-8-8-2-6 name: Contra-Bass Clarinets children: [] attributes: - clarinet_key_system - - mouthpiece - instrument_accessory_finish - instrument_material + - mouthpiece - id: ae-2-8-8-2-7 name: Eb Clarinets children: [] attributes: - clarinet_key_system + - instrument_accessory_finish + - instrument_material - mouthpiece +- id: ae-2-8-8-3 + name: Flutes + children: + - ae-2-8-8-3-1 + - ae-2-8-8-3-2 + - ae-2-8-8-3-3 + - ae-2-8-8-3-4 + attributes: - instrument_accessory_finish + - flute_configuration + - headjoint_cut - instrument_material - id: ae-2-8-8-3-1 name: Alto Flutes children: [] attributes: + - instrument_accessory_finish - flute_configuration - headjoint_cut - - instrument_accessory_finish - instrument_material - id: ae-2-8-8-3-2 name: Bass Flutes children: [] attributes: + - instrument_accessory_finish - flute_configuration - headjoint_cut - - instrument_accessory_finish - instrument_material - id: ae-2-8-8-3-3 name: Concert Flutes children: [] attributes: + - instrument_accessory_finish - flute_configuration - headjoint_cut - - instrument_accessory_finish - instrument_material - id: ae-2-8-8-3-4 name: Piccolo Flutes children: [] attributes: + - instrument_accessory_finish - flute_configuration - headjoint_cut - - instrument_accessory_finish - instrument_material +- id: ae-2-8-8-4 + name: Flutophones + children: + - ae-2-8-8-4-1 + - ae-2-8-8-4-2 + - ae-2-8-8-4-3 + - ae-2-8-8-4-4 + attributes: + - color + - instrument_material + - pattern - id: ae-2-8-8-4-1 name: Alto Flutophones children: [] attributes: - color - - pattern - instrument_material + - pattern - id: ae-2-8-8-4-2 name: Bass Flutophones children: [] attributes: - color - - pattern - instrument_material + - pattern - id: ae-2-8-8-4-3 name: Soprano Flutophones children: [] attributes: - color - - pattern - instrument_material + - pattern - id: ae-2-8-8-4-4 name: Tenor Flutophones children: [] attributes: - color + - instrument_material - pattern +- id: ae-2-8-8-5 + name: Harmonicas + children: + - ae-2-8-8-5-1 + - ae-2-8-8-5-2 + - ae-2-8-8-5-3 + - ae-2-8-8-5-4 + - ae-2-8-8-5-5 + - ae-2-8-8-5-6 + - ae-2-8-8-5-7 + attributes: - instrument_material - id: ae-2-8-8-5-1 name: Bass Harmonicas @@ -8186,215 +7625,352 @@ children: [] attributes: - instrument_material +- id: ae-2-8-8-6 + name: Jew's Harps + children: + - ae-2-8-8-6-1 + - ae-2-8-8-6-2 + attributes: + - accessory_size + - instrument_material + - tuning - id: ae-2-8-8-6-1 name: Contemporary Jew's Harps children: [] attributes: - accessory_size - - tuning - instrument_material + - tuning - id: ae-2-8-8-6-2 name: Traditional Jew's Harps children: [] attributes: - accessory_size + - instrument_material - tuning +- id: ae-2-8-8-7 + name: Melodicas + children: + - ae-2-8-8-7-1 + - ae-2-8-8-7-2 + attributes: + - color - instrument_material + - melodica_style + - pattern - id: ae-2-8-8-7-1 name: Keyboard-Style Melodicas children: [] attributes: - color + - instrument_material - melodica_style - pattern - - instrument_material - id: ae-2-8-8-7-2 name: Piano-Style Melodicas children: [] attributes: - color + - instrument_material - melodica_style - pattern +- id: ae-2-8-8-8 + name: Musical Pipes + children: + - ae-2-8-8-8-1 + - ae-2-8-8-8-2 + - ae-2-8-8-8-3 + attributes: - instrument_material + - musical_key - id: ae-2-8-8-8-1 name: Organs children: [] attributes: - - musical_key - instrument_material + - musical_key - id: ae-2-8-8-8-2 name: Pan Flutes children: [] attributes: - - musical_key - instrument_material + - musical_key - id: ae-2-8-8-8-3 name: Reed Pipes children: [] attributes: + - instrument_material - musical_key +- id: ae-2-8-8-9 + name: Oboes & English Horns + children: + - ae-2-8-8-9-1 + - ae-2-8-8-9-2 + attributes: - instrument_material + - oboe_key_system - id: ae-2-8-8-9-1 name: English Horns children: [] attributes: - - oboe_key_system - instrument_material + - oboe_key_system - id: ae-2-8-8-9-2 name: Oboes children: [] attributes: + - instrument_material - oboe_key_system +- id: ae-2-8-8-10 + name: Ocarinas + children: + - ae-2-8-8-10-1 + - ae-2-8-8-10-2 + - ae-2-8-8-10-3 + attributes: - instrument_material + - ocarina_style - id: ae-2-8-8-10-1 name: Inline Ocarinas children: [] attributes: - - ocarina_style - instrument_material + - ocarina_style - id: ae-2-8-8-10-2 name: Pendant Ocarinas children: [] attributes: - - ocarina_style - instrument_material + - ocarina_style - id: ae-2-8-8-10-3 name: Transverse Ocarinas children: [] attributes: + - instrument_material - ocarina_style +- id: ae-2-8-8-11 + name: Recorders + children: + - ae-2-8-8-11-1 + - ae-2-8-8-11-2 + - ae-2-8-8-11-3 + - ae-2-8-8-11-4 + - ae-2-8-8-11-5 + - ae-2-8-8-11-6 + - ae-2-8-8-11-7 + attributes: - instrument_material + - recorder_fingering_system - id: ae-2-8-8-11-1 name: Alto Recorders children: [] attributes: - - recorder_fingering_system - instrument_material + - recorder_fingering_system - id: ae-2-8-8-11-2 name: Bass Recorders children: [] attributes: - - recorder_fingering_system - instrument_material + - recorder_fingering_system - id: ae-2-8-8-11-3 name: Contrabass Recorders children: [] attributes: - - recorder_fingering_system - instrument_material + - recorder_fingering_system - id: ae-2-8-8-11-4 name: Great Bass Recorders children: [] attributes: - - recorder_fingering_system - instrument_material + - recorder_fingering_system - id: ae-2-8-8-11-5 name: Sopranino Recorders children: [] attributes: - - recorder_fingering_system - instrument_material + - recorder_fingering_system - id: ae-2-8-8-11-6 name: Soprano Recorders children: [] attributes: - - recorder_fingering_system - instrument_material + - recorder_fingering_system - id: ae-2-8-8-11-7 name: Tenor Recorders children: [] attributes: + - instrument_material - recorder_fingering_system +- id: ae-2-8-8-12 + name: Saxophones + children: + - ae-2-8-8-12-1 + - ae-2-8-8-12-2 + - ae-2-8-8-12-3 + - ae-2-8-8-12-4 + - ae-2-8-8-12-5 + attributes: + - extended_saxophone_range + - instrument_accessory_finish - instrument_material + - tuning_pitch - id: ae-2-8-8-12-1 name: Alto Saxophones children: [] attributes: - extended_saxophone_range - - tuning_pitch - instrument_accessory_finish - instrument_material + - tuning_pitch - id: ae-2-8-8-12-2 name: Baritone Saxophones children: [] attributes: - extended_saxophone_range - - tuning_pitch - instrument_accessory_finish - instrument_material + - tuning_pitch - id: ae-2-8-8-12-3 name: Bass Saxophones children: [] attributes: - extended_saxophone_range - - tuning_pitch - instrument_accessory_finish - instrument_material + - tuning_pitch - id: ae-2-8-8-12-4 name: Soprano Saxophones children: [] attributes: - extended_saxophone_range - - tuning_pitch - instrument_accessory_finish - instrument_material + - tuning_pitch - id: ae-2-8-8-12-5 name: Tenor Saxophones children: [] attributes: - extended_saxophone_range - - tuning_pitch - instrument_accessory_finish - instrument_material + - tuning_pitch +- id: ae-2-8-8-13 + name: Tin Whistles + children: + - ae-2-8-8-13-1 + - ae-2-8-8-13-2 + - ae-2-8-8-13-3 + - ae-2-8-8-13-4 + - ae-2-8-8-13-5 + attributes: + - color + - instrument_material + - pattern - id: ae-2-8-8-13-1 name: Bb Tin Whistles children: [] attributes: - color - - pattern - instrument_material + - pattern - id: ae-2-8-8-13-2 name: C Tin Whistles children: [] attributes: - color - - pattern - instrument_material + - pattern - id: ae-2-8-8-13-3 name: D Tin Whistles children: [] attributes: - color - - pattern - instrument_material + - pattern - id: ae-2-8-8-13-4 name: Low D Tin Whistles children: [] attributes: - color - - pattern - - instrument_material -- id: ae-2-8-8-13-5 - name: Low F Tin Whistles + - instrument_material + - pattern +- id: ae-2-8-8-13-5 + name: Low F Tin Whistles + children: [] + attributes: + - color + - instrument_material + - pattern +- id: ae-2-8-8-14 + name: Train Whistles + children: + - ae-2-8-8-14-1 + - ae-2-8-8-14-2 + attributes: + - accessory_size + - instrument_material + - musical_key +- id: ae-2-8-8-14-1 + name: Multiple-Chamber Train Whistles + children: [] + attributes: + - accessory_size + - instrument_material + - musical_key +- id: ae-2-8-8-14-2 + name: Single-Chamber Train Whistles + children: [] + attributes: + - accessory_size + - instrument_material + - musical_key +- id: ae-3 + name: Party & Celebration + children: + - ae-3-1 + - ae-3-2 + - ae-3-3 + - ae-3-4 + attributes: [] +- id: ae-3-1 + name: Gift Giving + children: + - ae-3-1-1 + - ae-3-1-2 + - ae-3-1-3 + - ae-3-1-5 + - ae-3-1-6 + attributes: [] +- id: ae-3-1-1 + name: Corsage & Boutonnière Pins + children: [] + attributes: + - attachment_options + - color + - item_style + - material +- id: ae-3-1-2 + name: Corsages & Boutonnières children: [] attributes: - color - - pattern - - instrument_material -- id: ae-2-8-8-14-1 - name: Multiple-Chamber Train Whistles - children: [] - attributes: - - accessory_size - - musical_key - - instrument_material -- id: ae-2-8-8-14-2 - name: Single-Chamber Train Whistles - children: [] + - corsage_boutonnire_design + - ribbon_color +- id: ae-3-1-3 + name: Fresh Cut Flowers + children: + - ae-3-1-3-1 + - ae-3-1-3-2 + - ae-3-1-3-3 + - ae-3-1-3-4 + - ae-3-1-3-5 + - ae-3-1-3-6 attributes: - - accessory_size - - musical_key - - instrument_material + - arrangement + - color + - stem_length - id: ae-3-1-3-1 name: Daisies children: [] @@ -8437,6 +8013,68 @@ - arrangement - color - stem_length +- id: ae-3-1-5 + name: Gift Wrapping + children: + - ae-3-1-5-1 + - ae-3-1-5-2 + - ae-3-1-5-3 + - ae-3-1-5-4 + - ae-3-1-5-5 + attributes: + - material +- id: ae-3-1-5-1 + name: Gift Bags + children: [] + attributes: + - accessory_size + - color + - gift_bag_handle_design + - bag_case_material + - pattern +- id: ae-3-1-5-2 + name: Gift Boxes & Tins + children: [] + attributes: + - accessory_size + - color + - material + - pattern + - shape +- id: ae-3-1-5-3 + name: Gift Tags & Labels + children: [] + attributes: + - color + - material + - pattern + - shape +- id: ae-3-1-5-4 + name: Tissue Paper + children: [] + attributes: + - accessory_size + - color + - material + - pattern +- id: ae-3-1-5-5 + name: Wrapping Paper + children: [] + attributes: + - color + - material + - pattern +- id: ae-3-1-6 + name: Greeting & Note Cards + children: + - ae-3-1-6-2 + - ae-3-1-6-3 + - ae-3-1-6-4 + attributes: + - card_size + - celebration_type + - item_style + - personalization_design - id: ae-3-1-6-2 name: Greeting Cards children: [] @@ -8461,74 +8099,222 @@ - celebration_type - item_style - personalization_design +- id: ae-3-2 + name: Party Supplies + children: + - ae-3-2-1 + - ae-3-2-2 + - ae-3-2-3 + - ae-3-2-4 + - ae-3-2-5 + - ae-3-2-6 + - ae-3-2-7 + - ae-3-2-8 + - ae-3-2-9 + - ae-3-2-10 + - ae-3-2-11 + - ae-3-2-12 + - ae-3-2-13 + - ae-3-2-14 + - ae-3-2-15 + - ae-3-2-16 + - ae-3-2-17 + - ae-3-2-18 + - ae-3-2-19 + - ae-3-2-20 + - ae-3-2-21 + - ae-3-2-22 + - ae-3-2-23 + - ae-3-2-24 + - ae-3-2-25 + - ae-3-2-26 + - ae-3-2-27 + - ae-3-2-28 + - ae-3-2-29 + attributes: [] +- id: ae-3-2-1 + name: Advice Cards + children: [] + attributes: + - card_size + - item_style +- id: ae-3-2-2 + name: Balloon Kits + children: [] + attributes: + - balloon_kit_items_included + - celebration_type + - color + - pattern +- id: ae-3-2-3 + name: Balloons + children: [] + attributes: + - accessory_size + - balloon_shape + - celebration_type + - color + - pattern +- id: ae-3-2-4 + name: Banners + children: [] + attributes: + - banner_design + - celebration_type +- id: ae-3-2-5 + name: Birthday Candles + children: [] + attributes: + - birthday_candle_design + - color + - pattern +- id: ae-3-2-6 + name: Chair Sashes + children: + - ae-3-2-6-1 + - ae-3-2-6-2 + - ae-3-2-6-3 + - ae-3-2-6-4 + attributes: + - color + - fabric + - pattern - id: ae-3-2-6-1 name: Bow-Tie Sashes children: [] attributes: - color - - pattern - fabric + - pattern - id: ae-3-2-6-2 name: Chair Bands children: [] attributes: - color - - pattern - fabric + - pattern - id: ae-3-2-6-3 name: Ruffled Sashes children: [] attributes: - color - - pattern - fabric + - pattern - id: ae-3-2-6-4 name: Sashes with Buckle children: [] attributes: - color - - pattern - fabric + - pattern +- id: ae-3-2-7 + name: Cocktail Decorations + children: + - ae-3-2-7-1 + - ae-3-2-7-2 + - ae-3-2-7-3 + - ae-3-2-7-4 + - ae-3-2-7-5 + attributes: + - cocktail_decoration_design + - color + - cocktail_decoration_material + - pattern - id: ae-3-2-7-1 name: Cocktail Garnishes children: [] attributes: - cocktail_decoration_design - color - - pattern - cocktail_decoration_material + - pattern - id: ae-3-2-7-2 name: Cocktail Napkins children: [] attributes: - - cocktail_decoration_design + - cocktail_decoration_design + - color + - cocktail_decoration_material + - pattern +- id: ae-3-2-7-3 + name: Cocktail Picks + children: [] + attributes: + - cocktail_decoration_design + - color + - cocktail_decoration_material + - pattern +- id: ae-3-2-7-4 + name: Cocktail Skewers + children: [] + attributes: + - cocktail_decoration_design + - color + - cocktail_decoration_material + - pattern +- id: ae-3-2-7-5 + name: Cocktail Umbrellas + children: [] + attributes: + - cocktail_decoration_design + - color + - cocktail_decoration_material + - pattern +- id: ae-3-2-8 + name: Confetti + children: [] + attributes: + - color + - pattern + - shape +- id: ae-3-2-9 + name: Decorative Pom-Poms + children: [] + attributes: + - accessory_size + - color + - decoration_material + - pattern +- id: ae-3-2-10 + name: Drinking Games + children: [] + attributes: + - game_components + - game_difficulty + - game_name +- id: ae-3-2-11 + name: Drinking Straws & Stirrers + children: [] + attributes: + - accessory_size - color + - material - pattern - - cocktail_decoration_material -- id: ae-3-2-7-3 - name: Cocktail Picks + - straw_stirrer_design +- id: ae-3-2-12 + name: Envelope Seals children: [] attributes: - - cocktail_decoration_design - - color - - pattern - - cocktail_decoration_material -- id: ae-3-2-7-4 - name: Cocktail Skewers + - envelope_seal_design + - material + - shape +- id: ae-3-2-13 + name: Event Programs children: [] attributes: - - cocktail_decoration_design - - color - - pattern - - cocktail_decoration_material -- id: ae-3-2-7-5 - name: Cocktail Umbrellas - children: [] + - celebration_type + - item_style + - paper_size + - program_format +- id: ae-3-2-14 + name: Fireworks & Firecrackers + children: + - ae-3-2-14-1 + - ae-3-2-14-2 + - ae-3-2-14-3 attributes: - - cocktail_decoration_design - - color - - pattern - - cocktail_decoration_material + - accessory_size + - noise_intensity - id: ae-3-2-14-1 name: Firecrackers children: [] @@ -8547,6 +8333,31 @@ attributes: - accessory_size - noise_intensity +- id: ae-3-2-15 + name: Inflatable Party Decorations + children: [] + attributes: + - decoration_material +- id: ae-3-2-16 + name: Invitations + children: [] + attributes: + - card_format + - celebration_type + - invitation_personalization_design + - item_style +- id: ae-3-2-17 + name: Noisemakers & Party Blowers + children: + - ae-3-2-17-1 + - ae-3-2-17-2 + - ae-3-2-17-3 + - ae-3-2-17-4 + - ae-3-2-17-5 + attributes: + - color + - material + - pattern - id: ae-3-2-17-1 name: Blowouts children: [] @@ -8582,6 +8393,37 @@ - color - material - pattern +- id: ae-3-2-18 + name: Party Favors + children: [] + attributes: + - celebration_type + - material + - theme +- id: ae-3-2-19 + name: Party Games + children: [] + attributes: + - age_group + - game_difficulty +- id: ae-3-2-20 + name: Party Hats + children: [] + attributes: + - age_group + - color + - pattern +- id: ae-3-2-21 + name: Party Streamers & Curtains + children: + - ae-3-2-21-1 + - ae-3-2-21-2 + - ae-3-2-21-3 + - ae-3-2-21-4 + - ae-3-2-21-5 + attributes: + - color + - pattern - id: ae-3-2-21-1 name: Crepe Paper Streamers children: [] @@ -8612,6 +8454,92 @@ attributes: - color - pattern +- id: ae-3-2-22 + name: Party Supply Kits + children: [] + attributes: + - celebration_type +- id: ae-3-2-23 + name: Piñatas + children: [] + attributes: + - accessory_size + - celebration_type + - material + - piata_design +- id: ae-3-2-24 + name: Place Card Holders + children: [] + attributes: + - card_holder_design + - celebration_type + - material +- id: ae-3-2-25 + name: Place Cards + children: [] + attributes: + - card_design + - celebration_type + - material +- id: ae-3-2-26 + name: Response Cards + children: [] + attributes: + - card_design + - celebration_type +- id: ae-3-2-27 + name: Sparklers + children: [] + attributes: + - accessory_size +- id: ae-3-2-28 + name: Special Occasion Card Boxes & Holders + children: [] + attributes: + - celebration_type + - item_style + - material +- id: ae-3-2-29 + name: Spray String + children: [] + attributes: + - accessory_size + - celebration_type + - color +- id: ae-3-3 + name: Special Effects + children: + - ae-3-3-1 + - ae-3-3-2 + - ae-3-3-3 + - ae-3-3-4 + - ae-3-3-5 + attributes: [] +- id: ae-3-3-1 + name: Disco Balls + children: [] + attributes: + - accessory_size + - light_source + - material + - mounting_type + - power_source +- id: ae-3-3-2 + name: Fog Machines + children: [] + attributes: + - fluid_type + - sfx_control_technology +- id: ae-3-3-3 + name: Special Effects Controllers + children: + - ae-3-3-3-1 + - ae-3-3-3-2 + - ae-3-3-3-3 + attributes: + - compatible_special_effects_device + - connection_method + - power_source - id: ae-3-3-3-1 name: DMX Controllers children: [] @@ -8633,6 +8561,27 @@ - compatible_special_effects_device - connection_method - power_source +- id: ae-3-3-4 + name: Special Effects Light Stands + children: [] + attributes: + - compatible_special_effects_device + - load_capacity + - material + - mounting_type +- id: ae-3-3-5 + name: Special Effects Lighting + children: + - ae-3-3-5-1 + - ae-3-3-5-2 + - ae-3-3-5-3 + - ae-3-3-5-4 + - ae-3-3-5-5 + attributes: + - light_color + - mounting_type + - power_source + - sfx_control_technology - id: ae-3-3-5-1 name: Gobo Projectors children: [] @@ -8673,6 +8622,32 @@ - mounting_type - power_source - sfx_control_technology +- id: ae-3-4 + name: Trophies & Awards + children: + - ae-3-4-1 + - ae-3-4-2 + - ae-3-4-3 + - ae-3-4-4 + - ae-3-4-5 + attributes: + - award_occasion +- id: ae-3-4-1 + name: Award Certificates + children: [] + attributes: + - award_design + - award_occasion +- id: ae-3-4-2 + name: Award Pins & Medals + children: + - ae-3-4-2-1 + - ae-3-4-2-2 + - ae-3-4-2-3 + - ae-3-4-2-4 + attributes: + - award_occasion + - material - id: ae-3-4-2-1 name: Award Pins children: [] @@ -8697,6 +8672,22 @@ attributes: - award_occasion - material +- id: ae-3-4-3 + name: Award Plaques + children: [] + attributes: + - award_occasion + - material +- id: ae-3-4-4 + name: Award Ribbons + children: + - ae-3-4-4-1 + - ae-3-4-4-2 + attributes: + - accessory_size + - award_occasion + - color + - pattern - id: ae-3-4-4-1 name: Flat Ribbons children: [] @@ -8713,3 +8704,12 @@ - award_occasion - color - pattern +- id: ae-3-4-5 + name: Trophies + children: [] + attributes: + - accessory_size + - award_occasion + - engraving + - material + - trophy_design diff --git a/data/categories/ap_animals_pet_supplies.yml b/data/categories/ap_animals_pet_supplies.yml index 06eec2fc..2c46fd20 100644 --- a/data/categories/ap_animals_pet_supplies.yml +++ b/data/categories/ap_animals_pet_supplies.yml @@ -15,9 +15,12 @@ - ap-2-1 - ap-2-2 - ap-2-3 + - ap-2-4 - ap-2-5 + - ap-2-6 - ap-2-7 - ap-2-8 + - ap-2-9 - ap-2-10 - ap-2-11 - ap-2-12 @@ -45,7 +48,6 @@ - ap-2-34 - ap-2-35 - ap-2-36 - - ap-2-49 - ap-2-39 - ap-2-40 - ap-2-41 @@ -56,859 +58,41 @@ - ap-2-46 - ap-2-47 - ap-2-48 - - ap-2-4 - - ap-2-6 - - ap-2-9 + - ap-2-49 attributes: [] - id: ap-2-1 name: Bird Supplies children: - - ap-2-1-1 - - ap-2-1-2 - - ap-2-1-3 - - ap-2-1-4 - - ap-2-1-5 - - ap-2-1-6 - - ap-2-1-7 - attributes: [] -- id: ap-2-1-1 - name: Bird Cage Accessories - children: - - ap-2-1-1-1 - - ap-2-1-1-2 - attributes: - - color - - material -- id: ap-2-1-1-1 - name: Bird Cage Bird Baths - children: [] - attributes: - - color - - material -- id: ap-2-1-1-2 - name: Bird Cage Food & Water Dishes - children: - - ap-2-1-1-2-1 - - ap-2-1-1-2-2 - - ap-2-1-1-2-3 - attributes: - - color -- id: ap-2-1-2 - name: Bird Cages & Stands - children: [] - attributes: - - accessory_size - - color - - material -- id: ap-2-1-3 - name: Bird Food - children: - - ap-2-1-3-1 - - ap-2-1-3-2 - - ap-2-1-3-3 - attributes: - - suitable_for_bird_type -- id: ap-2-1-4 - name: Bird Gyms & Playstands - children: [] - attributes: - - suitable_for_bird_type -- id: ap-2-1-5 - name: Bird Ladders & Perches - children: - - ap-2-1-5-1 - - ap-2-1-5-2 - attributes: - - suitable_for_bird_type -- id: ap-2-1-6 - name: Bird Toys - children: - - ap-2-1-6-1 - - ap-2-1-6-2 - - ap-2-1-6-3 - - ap-2-1-6-4 - - ap-2-1-6-5 - - ap-2-1-6-7 - - ap-2-1-6-8 - - ap-2-1-6-9 - attributes: - - toy_game_material -- id: ap-2-1-7 - name: Bird Treats - children: - - ap-2-1-7-1 - - ap-2-1-7-2 - - ap-2-1-7-3 - - ap-2-1-7-4 - - ap-2-1-7-5 - - ap-2-1-7-6 - - ap-2-1-7-7 - - ap-2-1-7-8 - - ap-2-1-7-9 - attributes: - - package_type - - pet_supply_product_form - - suitable_for_bird_type -- id: ap-2-2 - name: Cat Supplies - children: - - ap-2-2-1 - - ap-2-2-2 - - ap-2-2-3 - - ap-2-2-4 - - ap-2-2-5 - - ap-2-2-6 - attributes: [] -- id: ap-2-2-1 - name: Cat Food - children: - - ap-2-2-1-1 - - ap-2-2-1-2 - attributes: - - cat_age_group - - pet_dietary_requirements - - pet_food_flavor - - package_type -- id: ap-2-2-1-1 - name: Non-Prescription Cat Food - children: [] - attributes: - - cat_age_group - - pet_dietary_requirements - - pet_food_flavor - - package_type -- id: ap-2-2-1-2 - name: Prescription Cat Food - children: [] - attributes: - - cat_age_group - - pet_dietary_requirements - - pet_food_flavor - - package_type -- id: ap-2-2-2 - name: Cat Furniture - children: - - ap-2-2-2-1 - - ap-2-2-2-2 - - ap-2-2-2-3 - - ap-2-2-2-4 - - ap-2-2-2-5 - - ap-2-2-2-6 - - ap-2-2-2-7 - attributes: - - color - - pattern - - furniture_fixture_material -- id: ap-2-2-3 - name: Cat Furniture Accessories - children: [] - attributes: [] -- id: ap-2-2-4 - name: Cat Litter - children: - - ap-2-2-4-1 - - ap-2-2-4-2 - - ap-2-2-4-3 - attributes: - - cat_litter_formula -- id: ap-2-2-5 - name: Cat Toys - children: - - ap-2-2-5-1 - - ap-2-2-5-2 - - ap-2-2-5-3 - - ap-2-2-5-4 - - ap-2-2-5-5 - - ap-2-2-5-6 - - ap-2-2-5-7 - - ap-2-2-5-9 - - ap-2-2-5-10 - - ap-2-2-5-11 - - ap-2-2-5-12 - attributes: - - toy_game_material -- id: ap-2-2-6 - name: Cat Treats - children: - - ap-2-2-6-1 - - ap-2-2-6-3 - - ap-2-2-6-4 - - ap-2-2-6-5 - attributes: - - cat_age_group - - pet_food_flavor - - package_type - - pet_supply_product_form -- id: ap-2-3 - name: Dog Supplies - children: - - ap-2-3-1 - - ap-2-3-2 - - ap-2-3-3 - - ap-2-3-4 - - ap-2-3-5 - - ap-2-3-6 - - ap-2-3-7 - - ap-2-3-8 - - ap-2-3-9 - attributes: [] -- id: ap-2-3-1 - name: Dog Diaper Pads & Liners - children: [] - attributes: - - accessory_size - - material -- id: ap-2-3-2 - name: Dog Diapers - children: [] - attributes: - - accessory_size - - color - - material - - pattern -- id: ap-2-3-3 - name: Dog Food - children: - - ap-2-3-3-1 - - ap-2-3-3-2 - attributes: - - pet_dietary_requirements - - dog_age_group - - pet_food_flavor - - package_type -- id: ap-2-3-3-1 - name: Non-Prescription Dog Food - children: [] - attributes: - - pet_dietary_requirements - - dog_age_group - - pet_food_flavor - - package_type -- id: ap-2-3-3-2 - name: Prescription Dog Food - children: [] - attributes: - - pet_dietary_requirements - - dog_age_group - - pet_food_flavor - - package_type -- id: ap-2-3-4 - name: Dog Houses - children: [] - attributes: - - color - - material -- id: ap-2-3-5 - name: Dog Kennel & Run Accessories - children: [] - attributes: - - material -- id: ap-2-3-6 - name: Dog Kennels & Runs - children: - - ap-2-3-6-1 - - ap-2-3-6-2 - - ap-2-3-6-3 - - ap-2-3-6-4 - - ap-2-3-6-5 - attributes: - - color - - material -- id: ap-2-3-7 - name: Dog Toys - children: [] - attributes: - - toy_game_material -- id: ap-2-3-8 - name: Dog Treadmills - children: [] - attributes: [] -- id: ap-2-3-9 - name: Dog Treats - children: - - ap-2-3-9-1 - - ap-2-3-9-2 - - ap-2-3-9-3 - - ap-2-3-9-4 - - ap-2-3-9-5 - attributes: - - pet_dietary_requirements - - dog_age_group - - pet_food_flavor - - package_type - - pet_treat_texture -- id: ap-2-5 - name: Pet Agility Equipment - children: - - ap-2-5-1 - - ap-2-5-2 - - ap-2-5-3 - - ap-2-5-4 - - ap-2-5-5 - - ap-2-5-6 - - ap-2-5-7 - - ap-2-5-8 - attributes: - - animal_type - - color - - material -- id: ap-2-7 - name: Pet Apparel Hangers - children: [] - attributes: - - material -- id: ap-2-8 - name: Pet Bed Accessories - children: [] - attributes: - - shape - - suitable_space -- id: ap-2-10 - name: Pet Bells & Charms - children: - - ap-2-10-1 - - ap-2-10-2 - - ap-2-10-3 - attributes: - - material -- id: ap-2-11 - name: Pet Biometric Monitors - children: - - ap-2-11-1 - - ap-2-11-2 - - ap-2-11-3 - attributes: - - connectivity_technology -- id: ap-2-11-1 - name: Pet Glucose Meters - children: [] - attributes: - - connectivity_technology - - pet_monitor_items_included -- id: ap-2-11-2 - name: Pet Pedometers - children: [] - attributes: - - connectivity_technology -- id: ap-2-11-3 - name: Pet Thermometers - children: [] - attributes: - - connectivity_technology -- id: ap-2-12 - name: Pet Bowl Mats - children: [] - attributes: - - material -- id: ap-2-13 - name: Pet Bowl Stands - children: [] - attributes: - - material -- id: ap-2-14 - name: Pet Bowls, Feeders & Waterers - children: - - ap-2-14-1 - - ap-2-14-2 - - ap-2-14-3 - - ap-2-14-4 - - ap-2-14-5 - - ap-2-14-6 - - ap-2-14-7 - - ap-2-14-8 - attributes: - - animal_type - - color - - material -- id: ap-2-15 - name: Pet Carrier & Crate Accessories - children: [] - attributes: - - material -- id: ap-2-16 - name: Pet Carriers & Crates - children: - - ap-2-16-1 - - ap-2-16-2 - - ap-2-16-3 - - ap-2-16-4 - - ap-2-16-5 - - ap-2-16-8 - - ap-2-16-9 - - ap-2-16-10 - - ap-2-16-11 - - ap-2-16-12 - attributes: - - animal_type - - material -- id: ap-2-17 - name: Pet Collars & Harnesses - children: - - ap-2-17-1 - - ap-2-17-2 - - ap-2-17-3 - - ap-2-17-4 - - ap-2-17-5 - - ap-2-17-6 - - ap-2-17-7 - - ap-2-17-8 - - ap-2-17-9 - - ap-2-17-10 - attributes: - - accessory_size - - animal_type - - color - - material - - pattern -- id: ap-2-18 - name: Pet Containment Systems - children: - - ap-2-18-1 - - ap-2-18-2 - - ap-2-18-3 - - ap-2-18-4 - - ap-2-18-5 - - ap-2-18-6 - attributes: - - animal_type - - color - - material -- id: ap-2-19 - name: Pet Door Accessories - children: [] - attributes: - - material -- id: ap-2-20 - name: Pet Doors - children: - - ap-2-20-1 - - ap-2-20-2 - - ap-2-20-3 - - ap-2-20-4 - - ap-2-20-5 - attributes: - - accessory_size - - animal_type - - color - - door_material -- id: ap-2-21 - name: Pet Eye Drops & Lubricants - children: - - ap-2-21-1 - - ap-2-21-2 - - ap-2-21-3 - - ap-2-21-4 - - ap-2-21-5 - - ap-2-21-6 - attributes: - - animal_type - - pet_supply_product_form -- id: ap-2-22 - name: Pet First Aid & Emergency Kits - children: - - ap-2-22-1 - - ap-2-22-2 - - ap-2-22-3 - attributes: - - accessory_size - - first_aid_kit_components -- id: ap-2-23 - name: Pet Flea & Tick Control - children: - - ap-2-23-1 - - ap-2-23-2 - - ap-2-23-3 - - ap-2-23-4 - - ap-2-23-5 - - ap-2-23-6 - - ap-2-23-7 - attributes: - - animal_type - - pet_supply_product_form -- id: ap-2-24 - name: Pet Food Containers - children: - - ap-2-24-1 - - ap-2-24-2 - - ap-2-24-3 - attributes: - - material -- id: ap-2-25 - name: Pet Food Scoops - children: [] - attributes: - - material -- id: ap-2-26 - name: Pet Grooming Supplies - children: - - ap-2-26-1 - - ap-2-26-2 - - ap-2-26-3 - - ap-2-26-4 - - ap-2-26-5 - - ap-2-26-6 - - ap-2-26-7 - - ap-2-26-8 - attributes: - - material -- id: ap-2-26-1 - name: Pet Combs & Brushes - children: - - ap-2-26-1-1 - - ap-2-26-1-2 - - ap-2-26-1-3 - - ap-2-26-1-4 - - ap-2-26-1-5 - - ap-2-26-1-6 - attributes: - - animal_type -- id: ap-2-26-2 - name: Pet Fragrances & Deodorizing Sprays - children: - - ap-2-26-2-1 - - ap-2-26-2-2 - - ap-2-26-2-3 - - ap-2-26-2-4 - attributes: [] -- id: ap-2-26-3 - name: Pet Hair Clippers & Trimmers - children: - - ap-2-26-3-1 - - ap-2-26-3-2 - - ap-2-26-3-3 - - ap-2-26-3-4 - - ap-2-26-3-5 - attributes: - - color -- id: ap-2-26-4 - name: Pet Hair Dryers - children: [] - attributes: - - color - - material -- id: ap-2-26-5 - name: Pet Nail Polish - children: [] - attributes: - - color -- id: ap-2-26-6 - name: Pet Nail Tools - children: [] - attributes: - - animal_type - - color -- id: ap-2-26-7 - name: Pet Shampoo & Conditioner - children: [] - attributes: - - animal_type -- id: ap-2-26-8 - name: Pet Wipes - children: - - ap-2-26-8-1 - - ap-2-26-8-2 - - ap-2-26-8-3 - - ap-2-26-8-4 - - ap-2-26-8-5 - - ap-2-26-8-6 - - ap-2-26-8-7 - - ap-2-26-8-8 - attributes: [] -- id: ap-2-27 - name: Pet Heating Pad Accessories - children: [] - attributes: - - material -- id: ap-2-28 - name: Pet Heating Pads - children: [] - attributes: - - accessory_size - - color - - power_source -- id: ap-2-29 - name: Pet ID Tags - children: - - ap-2-29-1 - - ap-2-29-2 - - ap-2-29-3 - - ap-2-29-4 - attributes: - - accessory_size - - animal_type - - material -- id: ap-2-30 - name: Pet Leash Extensions - children: [] - attributes: - - material -- id: ap-2-31 - name: Pet Leashes - children: - - ap-2-31-1 - - ap-2-31-2 - - ap-2-31-3 - - ap-2-31-4 - - ap-2-31-5 - - ap-2-31-6 - attributes: - - animal_type - - color - - material - - pattern -- id: ap-2-32 - name: Pet Medical Collars - children: [] - attributes: - - accessory_size - - animal_type -- id: ap-2-33 - name: Pet Medical Tape & Bandages - children: [] - attributes: - - medical_tape_material -- id: ap-2-34 - name: Pet Medicine - children: - - ap-2-34-1 - - ap-2-34-2 - - ap-2-34-3 - - ap-2-34-4 - - ap-2-34-5 - - ap-2-34-6 - - ap-2-34-7 - attributes: - - pet_food_flavor - - pet_supply_product_form -- id: ap-2-35 - name: Pet Muzzles - children: [] - attributes: - - color - - material -- id: ap-2-36 - name: Pet Oral Care Supplies - children: - - ap-2-36-1 - - ap-2-36-2 - - ap-2-36-3 - - ap-2-36-5 - - ap-2-36-6 - - ap-2-36-7 - - ap-2-36-8 - - ap-2-36-9 - attributes: - - animal_type - - pet_food_flavor -- id: ap-2-49 - name: Pet Steps & Ramps - children: [] - attributes: - - color - - material -- id: ap-2-39 - name: Pet Strollers - children: - - ap-2-39-1 - - ap-2-39-2 - - ap-2-39-3 - - ap-2-39-4 - - ap-2-39-5 - attributes: - - accessory_size - - color - - material -- id: ap-2-40 - name: Pet Sunscreen - children: [] - attributes: - - pet_supply_product_form - - spf_level -- id: ap-2-41 - name: Pet Training Aids - children: - - ap-2-41-1 - - ap-2-41-2 - - ap-2-41-3 - - ap-2-41-4 - attributes: - - animal_type - - color - - material -- id: ap-2-41-1 - name: Pet Training Clickers & Treat Dispensers - children: [] - attributes: - - animal_type - - color - - material -- id: ap-2-41-2 - name: Pet Training Pad Holders - children: - - ap-2-41-2-1 - - ap-2-41-2-2 - - ap-2-41-2-3 - attributes: - - animal_type - - color - - material -- id: ap-2-41-3 - name: Pet Training Pads - children: [] - attributes: - - animal_type - - color - - material -- id: ap-2-41-4 - name: Pet Training Sprays & Solutions - children: [] - attributes: - - animal_type - - color - - material - - pet_supply_product_form -- id: ap-2-42 - name: Pet Vitamins & Supplements - children: - - ap-2-42-2 - - ap-2-42-3 - - ap-2-42-4 - - ap-2-42-5 - - ap-2-42-6 - - ap-2-42-7 - - ap-2-42-8 - - ap-2-42-9 - - ap-2-42-10 - attributes: - - pet_food_flavor - - pet_supply_product_form -- id: ap-2-43 - name: Pet Waste Bag Dispensers & Holders - children: - - ap-2-43-1 - - ap-2-43-2 - - ap-2-43-3 - attributes: - - material -- id: ap-2-44 - name: Pet Waste Bags - children: [] - attributes: - - accessory_size -- id: ap-2-45 - name: Pet Waste Disposal Systems & Tools - children: - - ap-2-45-1 - - ap-2-45-2 - - ap-2-45-3 - - ap-2-45-4 - attributes: - - color - - material -- id: ap-2-46 - name: Reptile & Amphibian Supplies - children: - - ap-2-46-1 - - ap-2-46-2 - - ap-2-46-3 - - ap-2-46-4 - - ap-2-46-5 + - ap-2-1-1 + - ap-2-1-2 + - ap-2-1-3 + - ap-2-1-4 + - ap-2-1-5 + - ap-2-1-6 + - ap-2-1-7 attributes: [] -- id: ap-2-46-1 - name: Reptile & Amphibian Food - children: [] - attributes: - - animal_type - - pet_supply_product_form -- id: ap-2-46-2 - name: Reptile & Amphibian Habitat Accessories - children: [] - attributes: - - accessory_size - - animal_type - - material -- id: ap-2-46-3 - name: Reptile & Amphibian Habitat Heating & Lighting - children: [] - attributes: - - animal_type - - light_color - - material -- id: ap-2-46-4 - name: Reptile & Amphibian Habitats +- id: ap-2-1-1 + name: Bird Cage Accessories children: - - ap-2-46-4-1 - - ap-2-46-4-2 - - ap-2-46-4-3 - - ap-2-46-4-4 - attributes: - - accessory_size - - animal_type - - habitat_material -- id: ap-2-46-5 - name: Reptile & Amphibian Substrates - children: [] + - ap-2-1-1-1 + - ap-2-1-1-2 attributes: - color - material -- id: ap-2-47 - name: Small Animal Supplies - children: - - ap-2-47-1 - - ap-2-47-2 - - ap-2-47-3 - - ap-2-47-4 - - ap-2-47-5 - attributes: [] -- id: ap-2-47-1 - name: Small Animal Bedding +- id: ap-2-1-1-1 + name: Bird Cage Bird Baths children: [] attributes: - - animal_type - color -- id: ap-2-47-2 - name: Small Animal Food - children: [] - attributes: - - animal_type - - pet_food_flavor - - package_type -- id: ap-2-47-3 - name: Small Animal Habitat Accessories - children: [] - attributes: - - animal_type - - material -- id: ap-2-47-4 - name: Small Animal Habitats & Cages - children: [] - attributes: - - animal_type - material -- id: ap-2-47-5 - name: Small Animal Treats - children: - - ap-2-47-5-1 - - ap-2-47-5-2 - - ap-2-47-5-3 - - ap-2-47-5-4 - - ap-2-47-5-5 - - ap-2-47-5-6 - attributes: - - animal_type - - pet_food_flavor -- id: ap-2-48 - name: Vehicle Pet Barriers +- id: ap-2-1-1-2 + name: Bird Cage Food & Water Dishes children: - - ap-2-48-1 - - ap-2-48-2 - - ap-2-48-3 - - ap-2-48-4 - - ap-2-48-5 + - ap-2-1-1-2-1 + - ap-2-1-1-2-2 + - ap-2-1-1-2-3 attributes: - color - - compatible_vehicle - - material - id: ap-2-1-1-2-1 name: Bird Cage Food Dishes children: [] @@ -924,6 +108,21 @@ children: [] attributes: - color +- id: ap-2-1-2 + name: Bird Cages & Stands + children: [] + attributes: + - accessory_size + - color + - material +- id: ap-2-1-3 + name: Bird Food + children: + - ap-2-1-3-1 + - ap-2-1-3-2 + - ap-2-1-3-3 + attributes: + - suitable_for_bird_type - id: ap-2-1-3-1 name: Compound Feed & Granules children: [] @@ -939,6 +138,18 @@ children: [] attributes: - suitable_for_bird_type +- id: ap-2-1-4 + name: Bird Gyms & Playstands + children: [] + attributes: + - suitable_for_bird_type +- id: ap-2-1-5 + name: Bird Ladders & Perches + children: + - ap-2-1-5-1 + - ap-2-1-5-2 + attributes: + - suitable_for_bird_type - id: ap-2-1-5-1 name: Ladders & Steps children: [] @@ -949,6 +160,19 @@ children: [] attributes: - material +- id: ap-2-1-6 + name: Bird Toys + children: + - ap-2-1-6-1 + - ap-2-1-6-2 + - ap-2-1-6-3 + - ap-2-1-6-4 + - ap-2-1-6-5 + - ap-2-1-6-7 + - ap-2-1-6-8 + - ap-2-1-6-9 + attributes: + - toy_game_material - id: ap-2-1-6-1 name: Balls & Fetch Toys children: [] @@ -989,6 +213,22 @@ children: [] attributes: - toy_game_material +- id: ap-2-1-7 + name: Bird Treats + children: + - ap-2-1-7-1 + - ap-2-1-7-2 + - ap-2-1-7-3 + - ap-2-1-7-4 + - ap-2-1-7-5 + - ap-2-1-7-6 + - ap-2-1-7-7 + - ap-2-1-7-8 + - ap-2-1-7-9 + attributes: + - package_type + - pet_supply_product_form + - suitable_for_bird_type - id: ap-2-1-7-1 name: Biscuits & Bakery children: [] @@ -1052,55 +292,117 @@ - package_type - pet_supply_product_form - suitable_for_bird_type +- id: ap-2-2 + name: Cat Supplies + children: + - ap-2-2-1 + - ap-2-2-2 + - ap-2-2-3 + - ap-2-2-4 + - ap-2-2-5 + - ap-2-2-6 + attributes: [] +- id: ap-2-2-1 + name: Cat Food + children: + - ap-2-2-1-1 + - ap-2-2-1-2 + attributes: + - cat_age_group + - pet_dietary_requirements + - pet_food_flavor + - package_type +- id: ap-2-2-1-1 + name: Non-Prescription Cat Food + children: [] + attributes: + - cat_age_group + - pet_dietary_requirements + - pet_food_flavor + - package_type +- id: ap-2-2-1-2 + name: Prescription Cat Food + children: [] + attributes: + - cat_age_group + - pet_dietary_requirements + - pet_food_flavor + - package_type +- id: ap-2-2-2 + name: Cat Furniture + children: + - ap-2-2-2-1 + - ap-2-2-2-2 + - ap-2-2-2-3 + - ap-2-2-2-4 + - ap-2-2-2-5 + - ap-2-2-2-6 + - ap-2-2-2-7 + attributes: + - color + - furniture_fixture_material + - pattern - id: ap-2-2-2-1 name: Cat Condos & Houses children: [] attributes: - color - - pattern - furniture_fixture_material + - pattern - id: ap-2-2-2-2 name: Cat Perches & Shelves children: [] attributes: - color - - pattern - furniture_fixture_material + - pattern - id: ap-2-2-2-3 name: Cat Scratchers & Scratching Posts children: [] attributes: - color - - pattern - furniture_fixture_material + - pattern - id: ap-2-2-2-4 name: Cat Steps & Ramps children: [] attributes: - color - - pattern - furniture_fixture_material + - pattern - id: ap-2-2-2-5 name: Cat Trees & Towers children: [] attributes: - color - - pattern - furniture_fixture_material + - pattern - id: ap-2-2-2-6 name: Cat Window Beds & Perches children: [] attributes: - color - - pattern - furniture_fixture_material + - pattern - id: ap-2-2-2-7 name: Outdoor Cat Houses children: [] attributes: - color - - pattern - furniture_fixture_material + - pattern +- id: ap-2-2-3 + name: Cat Furniture Accessories + children: [] + attributes: [] +- id: ap-2-2-4 + name: Cat Litter + children: + - ap-2-2-4-1 + - ap-2-2-4-2 + - ap-2-2-4-3 + attributes: + - cat_litter_formula - id: ap-2-2-4-1 name: Cat Litter Box Liners children: [] @@ -1118,6 +420,22 @@ attributes: - color - material +- id: ap-2-2-5 + name: Cat Toys + children: + - ap-2-2-5-1 + - ap-2-2-5-2 + - ap-2-2-5-3 + - ap-2-2-5-4 + - ap-2-2-5-5 + - ap-2-2-5-6 + - ap-2-2-5-7 + - ap-2-2-5-9 + - ap-2-2-5-10 + - ap-2-2-5-11 + - ap-2-2-5-12 + attributes: + - toy_game_material - id: ap-2-2-5-1 name: Balls & Chasers children: [] @@ -1172,7 +490,19 @@ name: Wands children: [] attributes: - - toy_game_material + - toy_game_material +- id: ap-2-2-6 + name: Cat Treats + children: + - ap-2-2-6-1 + - ap-2-2-6-3 + - ap-2-2-6-4 + - ap-2-2-6-5 + attributes: + - cat_age_group + - pet_food_flavor + - package_type + - pet_supply_product_form - id: ap-2-2-6-1 name: Catnip Treats children: [] @@ -1205,6 +535,81 @@ - pet_food_flavor - package_type - pet_supply_product_form +- id: ap-2-3 + name: Dog Supplies + children: + - ap-2-3-1 + - ap-2-3-2 + - ap-2-3-3 + - ap-2-3-4 + - ap-2-3-5 + - ap-2-3-6 + - ap-2-3-7 + - ap-2-3-8 + - ap-2-3-9 + attributes: [] +- id: ap-2-3-1 + name: Dog Diaper Pads & Liners + children: [] + attributes: + - accessory_size + - material +- id: ap-2-3-2 + name: Dog Diapers + children: [] + attributes: + - accessory_size + - color + - material + - pattern +- id: ap-2-3-3 + name: Dog Food + children: + - ap-2-3-3-1 + - ap-2-3-3-2 + attributes: + - pet_dietary_requirements + - dog_age_group + - pet_food_flavor + - package_type +- id: ap-2-3-3-1 + name: Non-Prescription Dog Food + children: [] + attributes: + - pet_dietary_requirements + - dog_age_group + - pet_food_flavor + - package_type +- id: ap-2-3-3-2 + name: Prescription Dog Food + children: [] + attributes: + - pet_dietary_requirements + - dog_age_group + - pet_food_flavor + - package_type +- id: ap-2-3-4 + name: Dog Houses + children: [] + attributes: + - color + - material +- id: ap-2-3-5 + name: Dog Kennel & Run Accessories + children: [] + attributes: + - material +- id: ap-2-3-6 + name: Dog Kennels & Runs + children: + - ap-2-3-6-1 + - ap-2-3-6-2 + - ap-2-3-6-3 + - ap-2-3-6-4 + - ap-2-3-6-5 + attributes: + - color + - material - id: ap-2-3-6-1 name: Dog Pens children: [] @@ -1235,6 +640,29 @@ attributes: - color - material +- id: ap-2-3-7 + name: Dog Toys + children: [] + attributes: + - toy_game_material +- id: ap-2-3-8 + name: Dog Treadmills + children: [] + attributes: [] +- id: ap-2-3-9 + name: Dog Treats + children: + - ap-2-3-9-1 + - ap-2-3-9-2 + - ap-2-3-9-3 + - ap-2-3-9-4 + - ap-2-3-9-5 + attributes: + - pet_dietary_requirements + - dog_age_group + - pet_food_flavor + - package_type + - pet_treat_texture - id: ap-2-3-9-1 name: Biscuits & Cookies children: [] @@ -1290,10 +718,10 @@ - ap-2-4-10 - ap-2-4-11 - ap-2-4-12 - - ap-2-4-14 - - ap-2-4-16 - ap-2-4-13 + - ap-2-4-14 - ap-2-4-15 + - ap-2-4-16 attributes: [] - id: ap-2-4-1 name: Aquarium & Pond Tubings @@ -1749,6 +1177,10 @@ children: [] attributes: - suitable_for_water_type +- id: ap-2-4-13 + name: Aquariums + children: [] + attributes: [] - id: ap-2-4-14 name: Aquatic Plant Fertilizers children: @@ -1778,6 +1210,10 @@ children: [] attributes: - suitable_for_water_type +- id: ap-2-4-15 + name: Fish Feeders + children: [] + attributes: [] - id: ap-2-4-16 name: Fish Food children: @@ -1868,6 +1304,21 @@ - pet_food_flavor - package_type - suitable_for_fish_type +- id: ap-2-5 + name: Pet Agility Equipment + children: + - ap-2-5-1 + - ap-2-5-2 + - ap-2-5-3 + - ap-2-5-4 + - ap-2-5-5 + - ap-2-5-6 + - ap-2-5-7 + - ap-2-5-8 + attributes: + - animal_type + - color + - material - id: ap-2-5-1 name: A-Frames children: [] @@ -1948,8 +1399,8 @@ - accessory_size - animal_type - color - - pattern - fabric + - pattern - id: ap-2-6-1 name: Pet Bandanas children: [] @@ -1957,8 +1408,8 @@ - accessory_size - animal_type - color - - pattern - fabric + - pattern - id: ap-2-6-2 name: Pet Bows & Ribbons children: [] @@ -1966,8 +1417,8 @@ - accessory_size - animal_type - color - - pattern - fabric + - pattern - id: ap-2-6-3 name: Pet Coats children: [] @@ -1975,8 +1426,8 @@ - accessory_size - animal_type - color - - pattern - fabric + - pattern - id: ap-2-6-4 name: Pet Collars & Ties children: [] @@ -1984,8 +1435,8 @@ - accessory_size - animal_type - color - - pattern - fabric + - pattern - id: ap-2-6-5 name: Pet Costumes children: [] @@ -1993,8 +1444,8 @@ - accessory_size - animal_type - color - - pattern - fabric + - pattern - id: ap-2-6-6 name: Pet Dresses children: [] @@ -2002,8 +1453,8 @@ - accessory_size - animal_type - color - - pattern - fabric + - pattern - id: ap-2-6-7 name: Pet Hats children: [] @@ -2011,8 +1462,8 @@ - accessory_size - animal_type - color - - pattern - fabric + - pattern - id: ap-2-6-8 name: Pet Hoodies children: [] @@ -2020,8 +1471,8 @@ - accessory_size - animal_type - color - - pattern - fabric + - pattern - id: ap-2-6-9 name: Pet Jackets children: [] @@ -2029,8 +1480,8 @@ - accessory_size - animal_type - color - - pattern - fabric + - pattern - id: ap-2-6-10 name: Pet Rain Coats children: [] @@ -2038,8 +1489,8 @@ - accessory_size - animal_type - color - - pattern - fabric + - pattern - id: ap-2-6-11 name: Pet Safety Vests children: [] @@ -2047,8 +1498,8 @@ - accessory_size - animal_type - color - - pattern - fabric + - pattern - id: ap-2-6-12 name: Pet Scarves children: [] @@ -2056,8 +1507,8 @@ - accessory_size - animal_type - color - - pattern - fabric + - pattern - id: ap-2-6-13 name: Pet Shirts children: [] @@ -2065,8 +1516,8 @@ - accessory_size - animal_type - color - - pattern - fabric + - pattern - id: ap-2-6-14 name: Pet Shoes children: [] @@ -2074,8 +1525,8 @@ - accessory_size - animal_type - color - - pattern - footwear_material + - pattern - id: ap-2-6-15 name: Pet Socks children: [] @@ -2083,8 +1534,8 @@ - accessory_size - animal_type - color - - pattern - fabric + - pattern - id: ap-2-6-16 name: Pet Sunglasses children: [] @@ -2101,8 +1552,19 @@ - accessory_size - animal_type - color - - pattern - fabric + - pattern +- id: ap-2-7 + name: Pet Apparel Hangers + children: [] + attributes: + - material +- id: ap-2-8 + name: Pet Bed Accessories + children: [] + attributes: + - shape + - suitable_space - id: ap-2-9 name: Pet Beds children: @@ -2134,10 +1596,10 @@ - accessory_size - animal_type - color + - basket_material - pattern - shape - suitable_space - - basket_material - id: ap-2-9-2 name: Bolster Beds children: [] @@ -2222,10 +1684,10 @@ - accessory_size - animal_type - color + - upholstery_material - pattern - shape - suitable_space - - upholstery_material - id: ap-2-9-10 name: Pet Cots children: [] @@ -2270,6 +1732,14 @@ - pattern - shape - suitable_space +- id: ap-2-10 + name: Pet Bells & Charms + children: + - ap-2-10-1 + - ap-2-10-2 + - ap-2-10-3 + attributes: + - material - id: ap-2-10-1 name: Collar Bells children: [] @@ -2285,6 +1755,55 @@ children: [] attributes: - material +- id: ap-2-11 + name: Pet Biometric Monitors + children: + - ap-2-11-1 + - ap-2-11-2 + - ap-2-11-3 + attributes: + - connectivity_technology +- id: ap-2-11-1 + name: Pet Glucose Meters + children: [] + attributes: + - connectivity_technology + - pet_monitor_items_included +- id: ap-2-11-2 + name: Pet Pedometers + children: [] + attributes: + - connectivity_technology +- id: ap-2-11-3 + name: Pet Thermometers + children: [] + attributes: + - connectivity_technology +- id: ap-2-12 + name: Pet Bowl Mats + children: [] + attributes: + - material +- id: ap-2-13 + name: Pet Bowl Stands + children: [] + attributes: + - material +- id: ap-2-14 + name: Pet Bowls, Feeders & Waterers + children: + - ap-2-14-1 + - ap-2-14-2 + - ap-2-14-3 + - ap-2-14-4 + - ap-2-14-5 + - ap-2-14-6 + - ap-2-14-7 + - ap-2-14-8 + attributes: + - animal_type + - color + - material - id: ap-2-14-1 name: Automatic Feeders children: [] @@ -2339,7 +1858,28 @@ children: [] attributes: - animal_type - - color + - color + - material +- id: ap-2-15 + name: Pet Carrier & Crate Accessories + children: [] + attributes: + - material +- id: ap-2-16 + name: Pet Carriers & Crates + children: + - ap-2-16-1 + - ap-2-16-2 + - ap-2-16-3 + - ap-2-16-4 + - ap-2-16-5 + - ap-2-16-8 + - ap-2-16-9 + - ap-2-16-10 + - ap-2-16-11 + - ap-2-16-12 + attributes: + - animal_type - material - id: ap-2-16-1 name: Air Travel Approved Carriers @@ -2401,6 +1941,25 @@ attributes: - animal_type - material +- id: ap-2-17 + name: Pet Collars & Harnesses + children: + - ap-2-17-1 + - ap-2-17-2 + - ap-2-17-3 + - ap-2-17-4 + - ap-2-17-5 + - ap-2-17-6 + - ap-2-17-7 + - ap-2-17-8 + - ap-2-17-9 + - ap-2-17-10 + attributes: + - accessory_size + - animal_type + - color + - material + - pattern - id: ap-2-17-1 name: Breakaway & Safety Collars children: [] @@ -2491,6 +2050,19 @@ - color - material - pattern +- id: ap-2-18 + name: Pet Containment Systems + children: + - ap-2-18-1 + - ap-2-18-2 + - ap-2-18-3 + - ap-2-18-4 + - ap-2-18-5 + - ap-2-18-6 + attributes: + - animal_type + - color + - material - id: ap-2-18-1 name: Electronic Invisible Fences children: [] @@ -2533,6 +2105,24 @@ - animal_type - color - material +- id: ap-2-19 + name: Pet Door Accessories + children: [] + attributes: + - material +- id: ap-2-20 + name: Pet Doors + children: + - ap-2-20-1 + - ap-2-20-2 + - ap-2-20-3 + - ap-2-20-4 + - ap-2-20-5 + attributes: + - accessory_size + - animal_type + - color + - door_material - id: ap-2-20-1 name: Door-Mounted Doors children: [] @@ -2573,6 +2163,18 @@ - animal_type - color - door_material +- id: ap-2-21 + name: Pet Eye Drops & Lubricants + children: + - ap-2-21-1 + - ap-2-21-2 + - ap-2-21-3 + - ap-2-21-4 + - ap-2-21-5 + - ap-2-21-6 + attributes: + - animal_type + - pet_supply_product_form - id: ap-2-21-1 name: Conjunctivitis Treatments children: [] @@ -2609,6 +2211,15 @@ attributes: - animal_type - pet_supply_product_form +- id: ap-2-22 + name: Pet First Aid & Emergency Kits + children: + - ap-2-22-1 + - ap-2-22-2 + - ap-2-22-3 + attributes: + - accessory_size + - first_aid_kit_components - id: ap-2-22-1 name: General First Aid Kits children: [] @@ -2627,6 +2238,19 @@ attributes: - accessory_size - first_aid_kit_components +- id: ap-2-23 + name: Pet Flea & Tick Control + children: + - ap-2-23-1 + - ap-2-23-2 + - ap-2-23-3 + - ap-2-23-4 + - ap-2-23-5 + - ap-2-23-6 + - ap-2-23-7 + attributes: + - animal_type + - pet_supply_product_form - id: ap-2-23-1 name: Flea & Tick Collars children: [] @@ -2669,6 +2293,14 @@ attributes: - animal_type - pet_supply_product_form +- id: ap-2-24 + name: Pet Food Containers + children: + - ap-2-24-1 + - ap-2-24-2 + - ap-2-24-3 + attributes: + - material - id: ap-2-24-1 name: Can Covers children: [] @@ -2684,6 +2316,35 @@ children: [] attributes: - material +- id: ap-2-25 + name: Pet Food Scoops + children: [] + attributes: + - material +- id: ap-2-26 + name: Pet Grooming Supplies + children: + - ap-2-26-1 + - ap-2-26-2 + - ap-2-26-3 + - ap-2-26-4 + - ap-2-26-5 + - ap-2-26-6 + - ap-2-26-7 + - ap-2-26-8 + attributes: + - material +- id: ap-2-26-1 + name: Pet Combs & Brushes + children: + - ap-2-26-1-1 + - ap-2-26-1-2 + - ap-2-26-1-3 + - ap-2-26-1-4 + - ap-2-26-1-5 + - ap-2-26-1-6 + attributes: + - animal_type - id: ap-2-26-1-1 name: Brushes children: [] @@ -2714,6 +2375,40 @@ children: [] attributes: - animal_type +- id: ap-2-26-2 + name: Pet Fragrances & Deodorizing Sprays + children: + - ap-2-26-2-1 + - ap-2-26-2-2 + - ap-2-26-2-3 + - ap-2-26-2-4 + attributes: [] +- id: ap-2-26-2-1 + name: Colognes + children: [] + attributes: [] +- id: ap-2-26-2-2 + name: Deodorizer Sprays + children: [] + attributes: [] +- id: ap-2-26-2-3 + name: Odor Neutralizers + children: [] + attributes: [] +- id: ap-2-26-2-4 + name: Perfumes + children: [] + attributes: [] +- id: ap-2-26-3 + name: Pet Hair Clippers & Trimmers + children: + - ap-2-26-3-1 + - ap-2-26-3-2 + - ap-2-26-3-3 + - ap-2-26-3-4 + - ap-2-26-3-5 + attributes: + - color - id: ap-2-26-3-1 name: Blade Sharpeners children: [] @@ -2739,6 +2434,40 @@ children: [] attributes: - color +- id: ap-2-26-4 + name: Pet Hair Dryers + children: [] + attributes: + - color + - material +- id: ap-2-26-5 + name: Pet Nail Polish + children: [] + attributes: + - color +- id: ap-2-26-6 + name: Pet Nail Tools + children: [] + attributes: + - animal_type + - color +- id: ap-2-26-7 + name: Pet Shampoo & Conditioner + children: [] + attributes: + - animal_type +- id: ap-2-26-8 + name: Pet Wipes + children: + - ap-2-26-8-1 + - ap-2-26-8-2 + - ap-2-26-8-3 + - ap-2-26-8-4 + - ap-2-26-8-5 + - ap-2-26-8-6 + - ap-2-26-8-7 + - ap-2-26-8-8 + attributes: [] - id: ap-2-26-8-1 name: Deodorizing Wipes children: [] @@ -2779,6 +2508,29 @@ children: [] attributes: - animal_type +- id: ap-2-27 + name: Pet Heating Pad Accessories + children: [] + attributes: + - material +- id: ap-2-28 + name: Pet Heating Pads + children: [] + attributes: + - accessory_size + - color + - power_source +- id: ap-2-29 + name: Pet ID Tags + children: + - ap-2-29-1 + - ap-2-29-2 + - ap-2-29-3 + - ap-2-29-4 + attributes: + - accessory_size + - animal_type + - material - id: ap-2-29-1 name: Digital QR Code Tags children: [] @@ -2807,6 +2559,25 @@ - accessory_size - animal_type - material +- id: ap-2-30 + name: Pet Leash Extensions + children: [] + attributes: + - material +- id: ap-2-31 + name: Pet Leashes + children: + - ap-2-31-1 + - ap-2-31-2 + - ap-2-31-3 + - ap-2-31-4 + - ap-2-31-5 + - ap-2-31-6 + attributes: + - animal_type + - color + - material + - pattern - id: ap-2-31-1 name: Double Pet Leashes children: [] @@ -2855,6 +2626,30 @@ - color - material - pattern +- id: ap-2-32 + name: Pet Medical Collars + children: [] + attributes: + - accessory_size + - animal_type +- id: ap-2-33 + name: Pet Medical Tape & Bandages + children: [] + attributes: + - medical_tape_material +- id: ap-2-34 + name: Pet Medicine + children: + - ap-2-34-1 + - ap-2-34-2 + - ap-2-34-3 + - ap-2-34-4 + - ap-2-34-5 + - ap-2-34-6 + - ap-2-34-7 + attributes: + - pet_food_flavor + - pet_supply_product_form - id: ap-2-34-1 name: Allergy Relief children: [] @@ -2897,6 +2692,26 @@ attributes: - pet_food_flavor - pet_supply_product_form +- id: ap-2-35 + name: Pet Muzzles + children: [] + attributes: + - color + - material +- id: ap-2-36 + name: Pet Oral Care Supplies + children: + - ap-2-36-1 + - ap-2-36-2 + - ap-2-36-3 + - ap-2-36-5 + - ap-2-36-6 + - ap-2-36-7 + - ap-2-36-8 + - ap-2-36-9 + attributes: + - animal_type + - pet_food_flavor - id: ap-2-36-1 name: Dental Chews children: [] @@ -2945,6 +2760,18 @@ attributes: - animal_type - pet_food_flavor +- id: ap-2-39 + name: Pet Strollers + children: + - ap-2-39-1 + - ap-2-39-2 + - ap-2-39-3 + - ap-2-39-4 + - ap-2-39-5 + attributes: + - accessory_size + - color + - material - id: ap-2-39-1 name: Detachable Carrier Pet Strollers children: [] @@ -2980,6 +2807,40 @@ - accessory_size - color - material +- id: ap-2-40 + name: Pet Sunscreen + children: [] + attributes: + - pet_supply_product_form + - spf_level +- id: ap-2-41 + name: Pet Training Aids + children: + - ap-2-41-1 + - ap-2-41-2 + - ap-2-41-3 + - ap-2-41-4 + attributes: + - animal_type + - color + - material +- id: ap-2-41-1 + name: Pet Training Clickers & Treat Dispensers + children: [] + attributes: + - animal_type + - color + - material +- id: ap-2-41-2 + name: Pet Training Pad Holders + children: + - ap-2-41-2-1 + - ap-2-41-2-2 + - ap-2-41-2-3 + attributes: + - animal_type + - color + - material - id: ap-2-41-2-1 name: Grid-Top Pad Holders children: [] @@ -3001,6 +2862,36 @@ - animal_type - color - material +- id: ap-2-41-3 + name: Pet Training Pads + children: [] + attributes: + - animal_type + - color + - material +- id: ap-2-41-4 + name: Pet Training Sprays & Solutions + children: [] + attributes: + - animal_type + - color + - material + - pet_supply_product_form +- id: ap-2-42 + name: Pet Vitamins & Supplements + children: + - ap-2-42-2 + - ap-2-42-3 + - ap-2-42-4 + - ap-2-42-5 + - ap-2-42-6 + - ap-2-42-7 + - ap-2-42-8 + - ap-2-42-9 + - ap-2-42-10 + attributes: + - pet_food_flavor + - pet_supply_product_form - id: ap-2-42-2 name: Calcium children: [] @@ -3055,6 +2946,14 @@ attributes: - pet_food_flavor - pet_supply_product_form +- id: ap-2-43 + name: Pet Waste Bag Dispensers & Holders + children: + - ap-2-43-1 + - ap-2-43-2 + - ap-2-43-3 + attributes: + - material - id: ap-2-43-1 name: Flashlight Dispensers children: [] @@ -3070,6 +2969,21 @@ children: [] attributes: - material +- id: ap-2-44 + name: Pet Waste Bags + children: [] + attributes: + - accessory_size +- id: ap-2-45 + name: Pet Waste Disposal Systems & Tools + children: + - ap-2-45-1 + - ap-2-45-2 + - ap-2-45-3 + - ap-2-45-4 + attributes: + - color + - material - id: ap-2-45-1 name: Doggy Bags children: [] @@ -3094,6 +3008,46 @@ attributes: - color - material +- id: ap-2-46 + name: Reptile & Amphibian Supplies + children: + - ap-2-46-1 + - ap-2-46-2 + - ap-2-46-3 + - ap-2-46-4 + - ap-2-46-5 + attributes: [] +- id: ap-2-46-1 + name: Reptile & Amphibian Food + children: [] + attributes: + - animal_type + - pet_supply_product_form +- id: ap-2-46-2 + name: Reptile & Amphibian Habitat Accessories + children: [] + attributes: + - accessory_size + - animal_type + - material +- id: ap-2-46-3 + name: Reptile & Amphibian Habitat Heating & Lighting + children: [] + attributes: + - animal_type + - light_color + - material +- id: ap-2-46-4 + name: Reptile & Amphibian Habitats + children: + - ap-2-46-4-1 + - ap-2-46-4-2 + - ap-2-46-4-3 + - ap-2-46-4-4 + attributes: + - accessory_size + - animal_type + - habitat_material - id: ap-2-46-4-1 name: Aquariums children: [] @@ -3122,6 +3076,58 @@ - accessory_size - animal_type - habitat_material +- id: ap-2-46-5 + name: Reptile & Amphibian Substrates + children: [] + attributes: + - color + - material +- id: ap-2-47 + name: Small Animal Supplies + children: + - ap-2-47-1 + - ap-2-47-2 + - ap-2-47-3 + - ap-2-47-4 + - ap-2-47-5 + attributes: [] +- id: ap-2-47-1 + name: Small Animal Bedding + children: [] + attributes: + - animal_type + - color +- id: ap-2-47-2 + name: Small Animal Food + children: [] + attributes: + - animal_type + - pet_food_flavor + - package_type +- id: ap-2-47-3 + name: Small Animal Habitat Accessories + children: [] + attributes: + - animal_type + - material +- id: ap-2-47-4 + name: Small Animal Habitats & Cages + children: [] + attributes: + - animal_type + - material +- id: ap-2-47-5 + name: Small Animal Treats + children: + - ap-2-47-5-1 + - ap-2-47-5-2 + - ap-2-47-5-3 + - ap-2-47-5-4 + - ap-2-47-5-5 + - ap-2-47-5-6 + attributes: + - animal_type + - pet_food_flavor - id: ap-2-47-5-1 name: Biscuits & Bakery children: [] @@ -3158,6 +3164,18 @@ attributes: - animal_type - pet_food_flavor +- id: ap-2-48 + name: Vehicle Pet Barriers + children: + - ap-2-48-1 + - ap-2-48-2 + - ap-2-48-3 + - ap-2-48-4 + - ap-2-48-5 + attributes: + - color + - compatible_vehicle + - material - id: ap-2-48-1 name: Backseat Barriers children: [] @@ -3193,27 +3211,9 @@ - color - compatible_vehicle - material -- id: ap-2-4-13 - name: Aquariums - children: [] - attributes: [] -- id: ap-2-4-15 - name: Fish Feeders - children: [] - attributes: [] -- id: ap-2-26-2-1 - name: Colognes - children: [] - attributes: [] -- id: ap-2-26-2-2 - name: Deodorizer Sprays - children: [] - attributes: [] -- id: ap-2-26-2-3 - name: Odor Neutralizers - children: [] - attributes: [] -- id: ap-2-26-2-4 - name: Perfumes +- id: ap-2-49 + name: Pet Steps & Ramps children: [] - attributes: [] + attributes: + - color + - material diff --git a/data/categories/bi_business_industrial.yml b/data/categories/bi_business_industrial.yml index 9fbea25b..f0f0ee4b 100644 --- a/data/categories/bi_business_industrial.yml +++ b/data/categories/bi_business_industrial.yml @@ -60,6 +60,34 @@ - color - material - pattern +- id: bi-1-2-1 + name: Lockable Counters + children: [] + attributes: + - color + - material + - pattern +- id: bi-1-2-2 + name: Modular Counters + children: [] + attributes: + - color + - material + - pattern +- id: bi-1-2-3 + name: Pop-Up Counters + children: [] + attributes: + - color + - material + - pattern +- id: bi-1-2-4 + name: Portable Counters + children: [] + attributes: + - color + - material + - pattern - id: bi-1-3 name: Trade Show Displays children: @@ -85,6 +113,147 @@ - operating_system - pattern - suitable_space +- id: bi-1-3-1 + name: Backlit Displays + children: [] + attributes: + - color + - connectivity_technology + - display_recommended_use + - display_resolution + - display_technology + - operating_system + - pattern + - suitable_space +- id: bi-1-3-2 + name: Banner Stands + children: [] + attributes: + - color + - display_recommended_use + - pattern + - suitable_space +- id: bi-1-3-3 + name: Digital A-Boards + children: [] + attributes: + - color + - connectivity_technology + - display_recommended_use + - display_resolution + - display_technology + - operating_system + - pattern + - suitable_space +- id: bi-1-3-4 + name: Digital Signage Flat Panels + children: [] + attributes: + - color + - connectivity_technology + - display_recommended_use + - display_resolution + - display_technology + - operating_system + - pattern + - suitable_space +- id: bi-1-3-6 + name: Interactive Flat Panels + children: [] + attributes: + - color + - connectivity_technology + - display_recommended_use + - display_resolution + - display_technology + - operating_system + - pattern + - suitable_space +- id: bi-1-3-7 + name: Interactive Kids' Tables + children: [] + attributes: + - color + - connectivity_technology + - display_recommended_use + - display_resolution + - display_technology + - operating_system + - pattern + - suitable_space +- id: bi-1-3-8 + name: Kiosks + children: [] + attributes: + - color + - connectivity_technology + - display_recommended_use + - display_resolution + - display_technology + - operating_system + - pattern + - suitable_space +- id: bi-1-3-9 + name: Modular Displays + children: [] + attributes: + - color + - connectivity_technology + - display_recommended_use + - display_resolution + - display_technology + - operating_system + - pattern + - suitable_space +- id: bi-1-3-10 + name: Panoramas + children: [] + attributes: + - color + - connectivity_technology + - display_recommended_use + - display_resolution + - display_technology + - operating_system + - pattern + - suitable_space +- id: bi-1-3-11 + name: Pop-Up Displays + children: [] + attributes: + - color + - display_recommended_use + - pattern + - suitable_space +- id: bi-1-3-12 + name: Tabletop Displays + children: [] + attributes: + - color + - display_recommended_use + - pattern + - suitable_space +- id: bi-1-3-13 + name: Totems + children: [] + attributes: + - color + - connectivity_technology + - display_recommended_use + - display_resolution + - display_technology + - operating_system + - pattern + - suitable_space + - totem_design +- id: bi-1-3-14 + name: Transparent Box Displays + children: [] + attributes: + - color + - display_recommended_use + - pattern + - suitable_space - id: bi-2 name: Agriculture children: @@ -179,6 +348,22 @@ - color - material - pattern +- id: bi-2-1-3-1 + name: Livestock Feeders + children: [] + attributes: + - animal_type + - color + - material + - pattern +- id: bi-2-1-3-2 + name: Livestock Waterers + children: [] + attributes: + - animal_type + - color + - material + - pattern - id: bi-2-1-4 name: Livestock Halters children: [] @@ -203,13 +388,59 @@ - bi-3-1-2 - bi-3-1-4 - bi-3-1-5 - - bi-3-1-9 - bi-3-1-7 + - bi-3-1-9 + attributes: + - color + - communication_protocols + - controller_design + - pattern + - power_source +- id: bi-3-1-2 + name: Automation Control Modules + children: [] + attributes: + - color + - communication_protocols + - controller_design + - pattern + - power_source +- id: bi-3-1-4 + name: Building Management System (BMS) Controllers + children: [] + attributes: + - color + - communication_protocols + - controller_design + - pattern + - power_source +- id: bi-3-1-5 + name: Digital Addressable Lighting Interface (DALI) Controllers + children: [] + attributes: + - color + - communication_protocols + - controller_design + - pattern + - power_source +- id: bi-3-1-7 + name: Motor Starters + children: [] + attributes: + - color + - communication_protocols + - controller_design + - pattern + - power_source +- id: bi-3-1-9 + name: Motor Controllers + children: [] attributes: - color - communication_protocols - controller_design - pattern + - phase_type - power_source - id: bi-3-2 name: Variable Frequency & Adjustable Speed Drives @@ -237,6 +468,27 @@ - color - connectivity_technology - pattern +- id: bi-4-1-1 + name: Automatic Levels + children: [] + attributes: + - color + - connectivity_technology + - pattern +- id: bi-4-1-2 + name: GPS & GNSS Systems + children: [] + attributes: + - color + - connectivity_technology + - pattern +- id: bi-4-1-4 + name: Total Stations + children: [] + attributes: + - color + - connectivity_technology + - pattern - id: bi-4-2 name: Traffic Cones & Barrels children: @@ -246,8 +498,22 @@ - color - material - pattern -- id: bi-5 - name: Dentistry +- id: bi-4-2-1 + name: Traffic Barrels + children: [] + attributes: + - color + - material + - pattern +- id: bi-4-2-2 + name: Traffic Cones + children: [] + attributes: + - color + - material + - pattern +- id: bi-5 + name: Dentistry children: - bi-5-1 - bi-5-2 @@ -265,6 +531,30 @@ attributes: - color - pattern +- id: bi-5-1-1 + name: Filling Dental Cement + children: [] + attributes: + - color + - pattern +- id: bi-5-1-2 + name: Lining Dental Cement + children: [] + attributes: + - color + - pattern +- id: bi-5-1-3 + name: Luting Dental Cement + children: [] + attributes: + - color + - pattern +- id: bi-5-1-5 + name: Temporary Dental Cement + children: [] + attributes: + - color + - pattern - id: bi-5-2 name: Dental Tools children: @@ -338,6 +628,59 @@ - color - material - pattern +- id: bi-6-1 + name: Film & Television Costumes + children: [] + attributes: + - accessory_size + - color + - costume_theme + - fabric + - pattern +- id: bi-6-2 + name: Film & Television Props + children: [] + attributes: + - color + - material + - pattern + - prop_theme + - suitable_space +- id: bi-6-3 + name: Film & Television Set Pieces + children: + - bi-6-3-1 + - bi-6-3-2 + - bi-6-3-3 + attributes: + - color + - material + - pattern + - suitable_space +- id: bi-6-3-1 + name: Backdrop Set Pieces + children: [] + attributes: + - color + - material + - pattern + - suitable_space +- id: bi-6-3-2 + name: Furniture Set Pieces + children: [] + attributes: + - color + - furniture_fixture_material + - pattern + - suitable_space +- id: bi-6-3-3 + name: Set Decoration + children: [] + attributes: + - color + - material + - pattern + - suitable_space - id: bi-7 name: Finance & Insurance children: @@ -436,23 +779,23 @@ - bi-8-7-4 attributes: - color - - pattern - disposable_tableware_material + - pattern - id: bi-8-7-1 name: Disposable Bowls children: [] attributes: - color + - disposable_tableware_material - pattern - shape - - disposable_tableware_material - id: bi-8-7-2 name: Disposable Cups children: [] attributes: - color - - pattern - disposable_tableware_material + - pattern - id: bi-8-7-3 name: Disposable Cutlery children: @@ -461,33 +804,54 @@ - bi-8-7-3-3 attributes: - color + - disposable_tableware_material + - pattern +- id: bi-8-7-3-1 + name: Disposable Forks + children: [] + attributes: + - color + - disposable_tableware_material + - pattern +- id: bi-8-7-3-2 + name: Disposable Knives + children: [] + attributes: + - color + - disposable_tableware_material - pattern +- id: bi-8-7-3-3 + name: Disposable Spoons + children: [] + attributes: + - color - disposable_tableware_material + - pattern - id: bi-8-7-4 name: Disposable Plates children: [] attributes: - color + - disposable_tableware_material - pattern - shape - - disposable_tableware_material - id: bi-8-8 name: Food Service Baskets children: [] attributes: - color + - basket_material - pattern - shape - - basket_material - id: bi-8-9 name: Food Service Carts children: [] attributes: - color + - furniture_fixture_material - pattern - shape - shelf_material - - furniture_fixture_material - id: bi-8-10 name: Food Washers & Dryers children: [] @@ -549,3902 +913,3397 @@ - color - pattern - power_source -- id: bi-9 - name: Forestry & Logging - children: - - bi-9-1 - - bi-9-2 - - bi-9-3 - attributes: - - color - - pattern -- id: bi-10 - name: Hairdressing & Cosmetology - children: - - bi-10-1 - - bi-10-2 - - bi-10-3 +- id: bi-8-17-1 + name: Combo Vending Machines + children: [] attributes: - color - pattern -- id: bi-10-1 - name: Hairdressing Capes & Neck Covers + - power_source +- id: bi-8-17-2 + name: Drink Vending Machines children: [] attributes: - - age_group - color - pattern - - fabric -- id: bi-10-2 - name: Pedicure Chairs + - power_source +- id: bi-8-17-3 + name: Snack Vending Machines children: [] attributes: - color - pattern - - upholstery_material -- id: bi-10-3 - name: Salon Chairs + - power_source +- id: bi-9 + name: Forestry & Logging children: - - bi-10-3-1 - - bi-10-3-2 - - bi-10-3-3 - - bi-10-3-4 + - bi-9-1 + - bi-9-2 + - bi-9-3 attributes: - color - pattern - - upholstery_material -- id: bi-11 - name: Heavy Machinery +- id: bi-9-1 + name: Arborist Accessories children: - - bi-11-3 - - bi-11-1 - - bi-11-2 - - bi-11-4 - - bi-11-5 - - bi-11-6 - - bi-11-7 - - bi-11-8 - - bi-11-9 - - bi-11-10 - - bi-11-11 - - bi-11-12 - - bi-11-13 - - bi-11-14 - - bi-11-15 - - bi-11-16 + - bi-9-1-1 attributes: - color + - material - pattern -- id: bi-11-3 - name: Chippers +- id: bi-9-1-1 + name: Throw Weights children: [] attributes: - - chipper_technology - color + - material - pattern - - power_source -- id: bi-12 - name: Hotel & Hospitality +- id: bi-9-2 + name: Forestry & Logging Protective Gear children: - - bi-12-1 - - bi-12-2 - - bi-12-3 + - bi-9-2-1 + - bi-9-2-2 + - bi-9-2-3 + - bi-9-2-4 + - bi-9-2-5 attributes: - color + - gear_material - pattern -- id: bi-13 - name: Industrial Storage - children: - - bi-13-1 - - bi-13-2 - - bi-13-3 - - bi-13-4 +- id: bi-9-2-1 + name: Forestry & Logging Boots + children: [] attributes: - color + - gear_material - pattern -- id: bi-13-1 - name: Industrial Cabinets + - shoe_size + - target_gender +- id: bi-9-2-2 + name: Forestry & Logging Chaps children: [] attributes: + - accessory_size - color - - lock_type - - material + - gear_material - pattern -- id: bi-13-2 - name: Industrial Shelving +- id: bi-9-2-3 + name: Forestry & Logging Eyewear children: [] attributes: + - accessory_size - color - - frame_material + - gear_material - pattern - - shelf_material -- id: bi-13-3 - name: Shipping Containers +- id: bi-9-2-4 + name: Forestry & Logging Gloves children: [] attributes: + - accessory_size - color - - material + - handwear_material - pattern -- id: bi-13-4 - name: Wire Partitions, Enclosures & Doors +- id: bi-9-2-5 + name: Forestry & Logging Helmets children: [] attributes: + - accessory_size - color - - lock_type - - material + - gear_material - pattern -- id: bi-14 - name: Industrial Storage Accessories - children: - - bi-14-1 - - bi-14-2 - - bi-14-3 - attributes: - - color - - material - - pattern -- id: bi-15 - name: Janitorial Carts & Caddies - children: - - bi-15-1 - - bi-15-2 - - bi-15-4 - attributes: - - color - - material - - pattern -- id: bi-16 - name: Law Enforcement - children: - - bi-16-1 - - bi-16-2 - attributes: - - color - - pattern -- id: bi-16-1 - name: Cuffs - children: - - bi-16-1-1 - - bi-16-1-2 - - bi-16-1-3 - - bi-16-1-4 - - bi-16-1-5 - attributes: - - color - - handcuff_lock_type - - material - - pattern -- id: bi-16-2 - name: Metal Detectors - children: - - bi-16-2-1 - - bi-16-2-2 - - bi-16-2-3 - attributes: - - color - - detector_sensitivity - - pattern - - power_source -- id: bi-17 - name: Manufacturing - children: - - bi-17-1 - attributes: - - color - - pattern -- id: bi-18 - name: Material Handling - children: - - bi-18-1 - - bi-18-2 - - bi-18-3 - attributes: - - color - - pattern -- id: bi-18-1 - name: Conveyors - children: - - bi-18-1-1 - - bi-18-1-2 - - bi-18-1-4 - - bi-18-1-5 - - bi-18-1-3 - attributes: - - color - - pattern -- id: bi-18-2 - name: Lifts & Hoists - children: - - bi-18-2-1 - - bi-18-2-2 - - bi-18-2-3 - - bi-18-2-4 - - bi-18-2-5 - attributes: - - color - - pattern - - power_source -- id: bi-18-2-1 - name: Hoists, Cranes & Trolleys - children: - - bi-18-2-1-1 - - bi-18-2-1-2 - - bi-18-2-1-3 - - bi-18-2-1-4 - - bi-18-2-1-5 - attributes: - - color - - pattern - - power_source -- id: bi-18-2-2 - name: Jacks & Lift Trucks - children: - - bi-18-2-2-1 - - bi-18-2-2-2 - - bi-18-2-2-3 - - bi-18-2-2-4 - attributes: - - color - - pattern - - power_source -- id: bi-18-2-3 - name: Personnel Lifts - children: - - bi-18-2-3-1 - - bi-18-2-3-2 - - bi-18-2-3-3 - - bi-18-2-3-4 - - bi-18-2-3-5 - - bi-18-2-3-6 - attributes: - - color - - material - - pattern - - power_source - - suitable_for_vehicle_type -- id: bi-18-2-4 - name: Pulleys, Blocks & Sheaves - children: - - bi-18-2-4-2 - - bi-18-2-4-3 - - bi-18-2-4-4 - - bi-18-2-4-5 - attributes: - - color - - pattern -- id: bi-18-2-5 - name: Winches - children: [] - attributes: - - color - - pattern - - power_source -- id: bi-18-3 - name: Pallets & Loading Platforms - children: - - bi-18-3-1 - - bi-18-3-2 - - bi-18-3-3 - - bi-18-3-4 - attributes: - - color - - material - - pattern -- id: bi-19 - name: Medical - children: - - bi-19-1 - - bi-19-2 - - bi-19-3 - - bi-19-4 - - bi-19-5 - - bi-19-6 - - bi-19-7 - - bi-19-8 - - bi-19-9 - - bi-19-10 - - bi-19-11 - attributes: - - color - - pattern -- id: bi-19-1 - name: Hospital Curtains - children: [] - attributes: - - color - - material - - pattern -- id: bi-19-2 - name: Hospital Gowns - children: - - bi-19-2-1 - - bi-19-2-2 - attributes: - - color - - material - - pattern -- id: bi-19-3 - name: Medical Bedding - children: [] - attributes: - - bedding_size - - color - - material - - pattern -- id: bi-19-4 - name: Medical Equipment - children: - - bi-19-4-1 - - bi-19-4-2 - - bi-19-4-3 - - bi-19-4-4 - - bi-19-4-5 - - bi-19-4-6 - - bi-19-4-7 - - bi-19-4-8 - - bi-19-4-9 - attributes: - - color - - pattern -- id: bi-19-4-1 - name: Automated External Defibrillators - children: [] - attributes: - - color - - operating_mode - - pattern -- id: bi-19-4-2 - name: Gait Belts - children: [] - attributes: - - color - - pattern - - fabric -- id: bi-19-4-3 - name: Medical Reflex Hammers & Tuning Forks - children: - - bi-19-4-3-1 - - bi-19-4-3-2 - - bi-19-4-3-5 - - bi-19-4-3-3 - attributes: - - color - - pattern -- id: bi-19-4-4 - name: Medical Stretchers & Gurneys - children: - - bi-19-4-4-2 - - bi-19-4-4-4 - attributes: - - color - - material - - pattern -- id: bi-19-4-5 - name: Otoscopes & Ophthalmoscopes - children: [] - attributes: - - color - - mounting_type - - pattern - - power_source -- id: bi-19-4-6 - name: Patient Lifts - children: - - bi-19-4-6-2 - - bi-19-4-6-3 - - bi-19-4-6-4 - attributes: - - color - - pattern - - power_source -- id: bi-19-4-7 - name: Stethoscopes - children: - - bi-19-4-7-1 - attributes: - - color - - pattern - - stethoscope_design - - stethoscope_technology - - tube_color -- id: bi-19-4-8 - name: Vital Signs Monitor Accessories - children: - - bi-19-4-8-1 - - bi-19-4-8-2 - - bi-19-4-8-3 - - bi-19-4-8-4 - attributes: - - color - - pattern -- id: bi-19-4-9 - name: Vital Signs Monitors - children: - - bi-19-4-9-1 - - bi-19-4-9-2 - - bi-19-4-9-3 - attributes: - - color - - pattern - - power_source -- id: bi-19-5 - name: Medical Furniture - children: - - bi-19-5-1 - - bi-19-5-2 - - bi-19-5-3 - - bi-19-5-4 - - bi-19-5-5 - - bi-19-5-6 - attributes: - - color - - pattern -- id: bi-19-5-1 - name: Chiropractic Tables - children: - - bi-19-5-1-3 - - bi-19-5-1-4 - attributes: - - color - - pattern - - furniture_fixture_material -- id: bi-19-5-2 - name: Examination Chairs & Tables - children: - - bi-19-5-2-1 - - bi-19-5-2-2 - attributes: - - color - - compatible_patient_profile - - pattern - - furniture_fixture_material -- id: bi-19-5-3 - name: Homecare & Hospital Beds - children: - - bi-19-5-3-2 - - bi-19-5-3-3 - - bi-19-5-3-4 - attributes: - - bedding_size - - color - - pattern -- id: bi-19-5-4 - name: Medical Cabinets - children: - - bi-19-5-4-1 - - bi-19-5-4-2 - attributes: - - color - - mounting_type - - pattern - - furniture_fixture_material -- id: bi-19-5-5 - name: Medical Carts - children: - - bi-19-5-5-1 - - bi-19-5-5-2 - attributes: - - color - - pattern - - furniture_fixture_material -- id: bi-19-5-5-1 - name: Crash Carts - children: - - bi-19-5-5-1-1 - - bi-19-5-5-1-2 - - bi-19-5-5-1-3 - - bi-19-5-5-1-4 - attributes: - - color - - pattern - - furniture_fixture_material -- id: bi-19-5-5-2 - name: IV Poles & Carts - children: [] - attributes: - - cart_design - - color - - pattern - - furniture_fixture_material -- id: bi-19-5-6 - name: Surgical Tables - children: - - bi-19-5-6-2 - - bi-19-5-6-3 - attributes: - - color - - compatible_patient_profile - - pattern - - power_source -- id: bi-19-6 - name: Medical Instruments - children: - - bi-19-6-1 - - bi-19-6-2 - - bi-19-6-3 - - bi-19-6-4 - attributes: - - color - - pattern -- id: bi-19-6-1 - name: Medical Forceps - children: - - bi-19-6-1-1 - - bi-19-6-1-2 - - bi-19-6-1-3 - - bi-19-6-1-4 - attributes: - - color - - material - - pattern -- id: bi-19-6-2 - name: Scalpel Blades - children: [] - attributes: - - blade_material - - blade_shape - - color - - pattern - - product_sterility - - scalpel_blade_number - - usage_type -- id: bi-19-6-3 - name: Scalpels - children: [] - attributes: - - blade_material - - blade_shape - - color - - pattern - - product_sterility - - scalpel_blade_number - - scalpel_handle_number - - usage_type -- id: bi-19-6-4 - name: Surgical Needles & Sutures - children: - - bi-19-6-4-1 - - bi-19-6-4-2 - attributes: - - color - - pattern -- id: bi-19-7 - name: Medical Supplies - children: - - bi-19-7-1 - - bi-19-7-2 - - bi-19-7-3 - - bi-19-7-4 - - bi-19-7-5 - attributes: - - color - - pattern -- id: bi-19-7-1 - name: Disposable Gloves - children: [] - attributes: - - accessory_size - - color - - pattern - - handwear_material -- id: bi-19-7-2 - name: Finger Cots - children: [] - attributes: - - accessory_size - - color - - material - - pattern -- id: bi-19-7-3 - name: Medical Needles & Syringes - children: - - bi-19-7-3-1 - - bi-19-7-3-2 - - bi-19-7-3-3 - attributes: - - color - - medical_syringe_purpose - - needle_gauge - - pattern - - tip_design - - usage_type - - needle_housing_material -- id: bi-19-7-3-1 - name: Medical Needle & Syringe Sets - children: [] - attributes: - - color - - medical_syringe_purpose - - needle_gauge - - pattern - - tip_design - - usage_type - - needle_housing_material -- id: bi-19-7-3-2 - name: Medical Needles - children: [] - attributes: - - color - - medical_syringe_purpose - - needle_gauge - - pattern - - tip_design - - usage_type - - needle_housing_material -- id: bi-19-7-3-3 - name: Medical Syringes - children: [] - attributes: - - color - - medical_syringe_purpose - - needle_gauge - - pattern - - tip_design - - usage_type - - needle_housing_material -- id: bi-19-7-4 - name: Ostomy Supplies - children: - - bi-19-7-4-1 - - bi-19-7-4-2 - - bi-19-7-4-3 - - bi-19-7-4-4 - attributes: - - accessory_size - - color - - pattern -- id: bi-19-7-5 - name: Tongue Depressors - children: [] - attributes: - - age_group - - color - - material - - pattern -- id: bi-19-8 - name: Medical Teaching Equipment - children: - - bi-19-8-1 - attributes: - - color - - pattern -- id: bi-19-8-1 - name: Medical & Emergency Response Training Mannequins - children: - - bi-19-8-1-1 - - bi-19-8-1-2 - - bi-19-8-1-3 - - bi-19-8-1-4 - attributes: - - age_group - - color - - pattern -- id: bi-19-9 - name: Scrub Caps - children: [] - attributes: - - color - - material - - pattern -- id: bi-19-10 - name: Scrubs - children: [] - attributes: - - accessory_size - - color - - material - - pattern -- id: bi-19-11 - name: Surgical Gowns - children: [] - attributes: - - accessory_size - - color - - material - - pattern - - product_sterility -- id: bi-20 - name: Mining & Quarrying - children: - - bi-20-1 - - bi-20-2 - attributes: - - color - - pattern -- id: bi-21 - name: Piercing & Tattooing - children: - - bi-21-1 - - bi-21-2 - attributes: - - color - - pattern -- id: bi-21-1 - name: Piercing Supplies - children: - - bi-21-1-1 - attributes: - - color - - material - - pattern -- id: bi-21-1-1 - name: Piercing Needles - children: - - bi-21-1-1-1 - - bi-21-1-1-2 - attributes: - - color - - needle_gauge - - pattern - - needle_material -- id: bi-21-2 - name: Tattooing Supplies - children: - - bi-21-2-1 - - bi-21-2-2 - - bi-21-2-3 - - bi-21-2-4 - attributes: - - color - - pattern -- id: bi-21-2-1 - name: Tattoo Cover-Ups - children: [] - attributes: - - color - - material - - pattern -- id: bi-21-2-2 - name: Tattooing Inks - children: [] - attributes: - - color - - pattern -- id: bi-21-2-3 - name: Tattooing Machines - children: - - bi-21-2-3-1 - - bi-21-2-3-2 - - bi-21-2-3-3 - attributes: - - color - - material - - pattern - - power_source -- id: bi-21-2-4 - name: Tattooing Needles - children: - - bi-21-2-4-1 - - bi-21-2-4-2 - - bi-21-2-4-3 - - bi-21-2-4-4 - attributes: - - color - - needle_gauge - - pattern - - needle_material -- id: bi-22 - name: Retail - children: - - bi-22-1 - - bi-22-2 - - bi-22-3 - - bi-22-4 - - bi-22-5 - - bi-22-6 - - bi-22-7 - - bi-22-8 - attributes: - - color - - pattern -- id: bi-22-1 - name: Clothing Display Racks - children: - - bi-22-1-1 - - bi-22-1-2 - - bi-22-1-3 - - bi-22-1-4 - attributes: - - color - - material - - pattern -- id: bi-22-2 - name: Display Mannequins - children: - - bi-22-2-1 - - bi-22-2-2 - - bi-22-2-3 - - bi-22-2-4 - attributes: - - color - - material - - pattern - - target_gender -- id: bi-22-3 - name: Mannequin Parts +- id: bi-9-3 + name: Forestry & Logging Tools children: - - bi-22-3-1 - - bi-22-3-2 - - bi-22-3-3 - - bi-22-3-4 + - bi-9-3-1 + - bi-9-3-2 + - bi-9-3-3 attributes: - color - - material + - handle_material - pattern -- id: bi-22-4 - name: Money Handling - children: - - bi-22-4-1 - - bi-22-4-2 - - bi-22-4-3 - - bi-22-4-4 - - bi-22-4-5 - - bi-22-4-6 - - bi-22-4-7 +- id: bi-9-3-1 + name: Log Hooks + children: [] attributes: + - blade_material - color + - handle_material - pattern -- id: bi-22-4-1 - name: Banknote Verifiers +- id: bi-9-3-2 + name: Log Tongs children: [] attributes: - color - - currencies_supported + - handle_material + - jaw_material - pattern - - power_source - - verification_technology -- id: bi-22-4-2 - name: Cash Register & POS Terminal Accessories - children: - - bi-22-4-2-1 - - bi-22-4-2-2 - - bi-22-4-2-3 +- id: bi-9-3-3 + name: Tree Calipers + children: [] attributes: - color + - handle_material - pattern -- id: bi-22-4-2-1 - name: Cash Drawers & Trays + - scale_material +- id: bi-10 + name: Hairdressing & Cosmetology children: - - bi-22-4-2-1-2 - - bi-22-4-2-1-3 + - bi-10-1 + - bi-10-2 + - bi-10-3 attributes: - color - - material - pattern -- id: bi-22-4-2-2 - name: Credit Card Terminals +- id: bi-10-1 + name: Hairdressing Capes & Neck Covers children: [] attributes: + - age_group - color - - connectivity_technology - - mounting_type + - fabric - pattern -- id: bi-22-4-2-3 - name: Signature Capture Pads +- id: bi-10-2 + name: Pedicure Chairs children: [] attributes: - color - - connectivity_technology - - display_resolution - - display_technology - - pad_display_profile + - upholstery_material - pattern -- id: bi-22-4-3 - name: Cash Registers & POS Terminals +- id: bi-10-3 + name: Salon Chairs children: - - bi-22-4-3-1 - - bi-22-4-3-2 + - bi-10-3-1 + - bi-10-3-2 + - bi-10-3-3 + - bi-10-3-4 attributes: - color + - upholstery_material - pattern -- id: bi-22-4-3-1 - name: Cash Registers +- id: bi-10-3-1 + name: All-Purpose Chairs children: [] attributes: - color - - connectivity_technology + - upholstery_material - pattern - - terminal_operation -- id: bi-22-4-3-2 - name: POS Terminals +- id: bi-10-3-2 + name: Barber Chairs children: [] attributes: - color - - mounting_type - - operating_system + - upholstery_material - pattern -- id: bi-22-4-4 - name: Coin & Bill Counters +- id: bi-10-3-3 + name: Shampoo Chairs children: [] attributes: - color - - currency_type + - upholstery_material - pattern - - power_source -- id: bi-22-4-5 - name: Money Changers +- id: bi-10-3-4 + name: Styling Chairs children: [] attributes: - color - - currency_type - - display_technology - - housing_material - - mounting_type + - upholstery_material - pattern -- id: bi-22-4-6 - name: Money Deposit Bags - children: [] +- id: bi-11 + name: Heavy Machinery + children: + - bi-11-1 + - bi-11-2 + - bi-11-3 + - bi-11-4 + - bi-11-5 + - bi-11-6 + - bi-11-7 + - bi-11-8 + - bi-11-9 + - bi-11-10 + - bi-11-11 + - bi-11-12 + - bi-11-13 + - bi-11-14 + - bi-11-15 + - bi-11-16 attributes: - color - pattern - - usage_type - - bag_case_material -- id: bi-22-4-7 - name: Paper Coin Wrappers & Bill Straps +- id: bi-11-1 + name: Backhoes children: [] attributes: - color - - currency_type - pattern -- id: bi-22-5 - name: Paper & Plastic Shopping Bags - children: - - bi-22-5-1 - - bi-22-5-2 - - bi-22-5-3 - - bi-22-5-4 +- id: bi-11-2 + name: Bulldozers + children: [] attributes: - - accessory_size + - bulldozer_blade_type - color - pattern - - shopping_bag_material -- id: bi-22-6 - name: Pricing Guns +- id: bi-11-3 + name: Chippers children: [] attributes: + - chipper_technology - color - pattern -- id: bi-22-7 - name: Retail Display Cases + - power_source +- id: bi-11-4 + name: Crawler Loaders children: [] attributes: - color - - mounting_type - pattern - - bag_case_material -- id: bi-22-8 - name: Retail Display Props & Models +- id: bi-11-5 + name: Dump Trucks children: [] attributes: - color - - material + - discharge_type - pattern -- id: bi-23 - name: Science & Laboratory +- id: bi-11-6 + name: Excavators children: - - bi-23-1 - - bi-23-2 - - bi-23-3 - - bi-23-4 - - bi-23-5 - - bi-23-6 + - bi-11-6-1 + - bi-11-6-2 + - bi-11-6-3 + - bi-11-6-4 attributes: - color - pattern -- id: bi-23-1 - name: Biochemicals - children: - - bi-23-1-1 - - bi-23-1-2 - - bi-23-1-3 +- id: bi-11-6-1 + name: Compact Excavators + children: [] attributes: - - chemical_grade - - chemical_purity - color - pattern -- id: bi-23-2 - name: Dissection Kits - children: - - bi-23-2-1 - - bi-23-2-2 +- id: bi-11-6-2 + name: Dragline Excavators + children: [] attributes: - color - pattern -- id: bi-23-3 - name: Laboratory Chemicals - children: - - bi-23-3-1 - - bi-23-3-2 - - bi-23-3-3 - - bi-23-3-4 +- id: bi-11-6-3 + name: Long Reach Excavators + children: [] attributes: - - chemical_grade - - chemical_purity - color - pattern -- id: bi-23-4 - name: Laboratory Equipment +- id: bi-11-6-4 + name: Wheeled Excavators + children: [] + attributes: + - color + - pattern +- id: bi-11-7 + name: Harvesters children: - - bi-23-4-1 - - bi-23-4-2 - - bi-23-4-3 - - bi-23-4-4 - - bi-23-4-5 - - bi-23-4-6 - - bi-23-4-7 - - bi-23-4-8 - - bi-23-4-9 - - bi-23-4-10 - - bi-23-4-11 - - bi-23-4-12 - - bi-23-4-13 - - bi-23-4-14 + - bi-11-7-1 + - bi-11-7-2 + - bi-11-7-3 + - bi-11-7-4 + - bi-11-7-5 + attributes: + - color + - drive_type + - pattern +- id: bi-11-7-1 + name: Combine Harvesters + children: [] attributes: - color + - drive_type - pattern -- id: bi-23-4-1 - name: Autoclaves +- id: bi-11-7-2 + name: Cotton Harvesters children: [] attributes: - - autoclave_sterilization_method - color + - drive_type - pattern -- id: bi-23-4-2 - name: Centrifuges +- id: bi-11-7-3 + name: Forage Harvesters children: [] attributes: - color - - mounting_type + - drive_type - pattern -- id: bi-23-4-3 - name: Dry Ice Makers +- id: bi-11-7-4 + name: Potato Harvesters children: [] attributes: - color - - mounting_type + - drive_type - pattern -- id: bi-23-4-4 - name: Freeze-Drying Machines +- id: bi-11-7-5 + name: Sugar Beet Harvesters children: [] attributes: - color - - mounting_type + - drive_type - pattern -- id: bi-23-4-5 - name: Laboratory Blenders +- id: bi-11-8 + name: Motor Graders children: [] attributes: - - blending_type - color - pattern -- id: bi-23-4-6 - name: Laboratory Freezers +- id: bi-11-9 + name: Pavers + children: + - bi-11-9-1 + - bi-11-9-2 + attributes: + - color + - pattern +- id: bi-11-9-1 + name: Asphalt Pavers children: [] attributes: - color - - laboratory_freezer_design - pattern -- id: bi-23-4-7 - name: Laboratory Funnels +- id: bi-11-9-2 + name: Concrete Pavers + children: [] + attributes: + - color + - pattern +- id: bi-11-10 + name: Scrapers children: - - bi-23-4-7-1 - - bi-23-4-7-2 - - bi-23-4-7-3 - - bi-23-4-7-4 + - bi-11-10-1 + - bi-11-10-2 + - bi-11-10-3 attributes: - color - - material - pattern -- id: bi-23-4-8 - name: Laboratory Hot Plates +- id: bi-11-10-1 + name: Elevating Scrapers children: [] attributes: - color - - material - pattern -- id: bi-23-4-9 - name: Laboratory Ovens - children: - - bi-23-4-9-1 - - bi-23-4-9-2 - - bi-23-4-9-3 +- id: bi-11-10-2 + name: Open Bowl Scrapers + children: [] attributes: - color - pattern -- id: bi-23-4-10 - name: Microscope Accessories - children: - - bi-23-4-10-1 - - bi-23-4-10-2 - - bi-23-4-10-3 - - bi-23-4-10-4 - - bi-23-4-10-5 +- id: bi-11-10-3 + name: Pull Scrapers + children: [] attributes: - color - pattern -- id: bi-23-4-10-1 - name: Microscope Cameras +- id: bi-11-11 + name: Skid-Steer Loaders children: [] attributes: - - camera_sensor_type - color - pattern -- id: bi-23-4-10-2 - name: Microscope Eyepieces & Adapters +- id: bi-11-12 + name: Tractors children: - - bi-23-4-10-2-1 - - bi-23-4-10-2-2 - - bi-23-4-10-2-3 - - bi-23-4-10-2-4 + - bi-11-12-1 + - bi-11-12-2 + - bi-11-12-3 + - bi-11-12-4 attributes: - color - - magnification + - drive_type - pattern - - eyepiece_adapter_material -- id: bi-23-4-10-3 - name: Microscope Objective Lenses - children: - - bi-23-4-10-3-1 - - bi-23-4-10-3-2 - - bi-23-4-10-3-3 +- id: bi-11-12-1 + name: Articulated 4WD Tractors + children: [] attributes: - color - - magnification - - maximum_magnification - - minimum_magnification - pattern -- id: bi-23-4-10-4 - name: Microscope Replacement Bulbs +- id: bi-11-12-2 + name: Compact Tractors + children: [] + attributes: + - color + - drive_type + - pattern +- id: bi-11-12-3 + name: Row Crop Tractors children: [] attributes: - - bulb_type - color + - drive_type - pattern -- id: bi-23-4-10-5 - name: Microscope Slides - children: - - bi-23-4-10-5-1 - - bi-23-4-10-5-2 - - bi-23-4-10-5-3 - - bi-23-4-10-5-4 +- id: bi-11-12-4 + name: Utility Tractors + children: [] attributes: - color + - drive_type - pattern - - microscope_slide_material -- id: bi-23-4-11 - name: Microscopes +- id: bi-11-13 + name: Trenchers children: - - bi-23-4-11-2 - - bi-23-4-11-3 - - bi-23-4-11-4 + - bi-11-13-1 + - bi-11-13-2 attributes: - color - - illumination_technique - - magnification - - maximum_magnification - pattern -- id: bi-23-4-12 - name: Microtomes - children: - - bi-23-4-12-1 - - bi-23-4-12-2 - - bi-23-4-12-3 +- id: bi-11-13-1 + name: Ride-On Trenchers + children: [] attributes: - color - pattern -- id: bi-23-4-13 - name: Spectrometer Accessories - children: - - bi-23-4-13-1 - - bi-23-4-13-2 +- id: bi-11-13-2 + name: Walk-Behind Trenchers + children: [] attributes: - color - pattern -- id: bi-23-4-14 - name: Spectrometers +- id: bi-11-14 + name: Wheel Loaders + children: [] + attributes: + - color + - pattern +- id: bi-11-15 + name: Wheel Tractor Scrapers children: - - bi-23-4-14-1 - - bi-23-4-14-2 - - bi-23-4-14-3 - - bi-23-4-14-4 + - bi-11-15-1 + - bi-11-15-2 + - bi-11-15-3 attributes: - color - pattern -- id: bi-23-5 - name: Laboratory Specimens +- id: bi-11-15-1 + name: Elevating Wheel Tractor Scrapers children: [] attributes: - color - pattern - - preservation_type -- id: bi-23-6 - name: Laboratory Supplies - children: - - bi-23-6-1 - - bi-23-6-2 - - bi-23-6-3 - - bi-23-6-4 - - bi-23-6-5 - - bi-23-6-6 - - bi-23-6-7 - - bi-23-6-8 +- id: bi-11-15-2 + name: Open Bowl Wheel Tractor Scrapers + children: [] attributes: - color - - material - pattern -- id: bi-23-6-1 - name: Beakers +- id: bi-11-15-3 + name: Pull Wheel Tractor Scrapers children: [] attributes: - color - - material - pattern -- id: bi-23-6-2 - name: Graduated Cylinders +- id: bi-11-16 + name: Yard Scrapers children: [] attributes: - color - - material - pattern -- id: bi-23-6-3 - name: Laboratory Flasks + - propulsion_type +- id: bi-12 + name: Hotel & Hospitality children: - - bi-23-6-3-1 - - bi-23-6-3-2 - - bi-23-6-3-3 - - bi-23-6-3-4 + - bi-12-1 + - bi-12-2 + - bi-12-3 + attributes: + - color + - pattern +- id: bi-12-1 + name: Hospitality Supplies + children: + - bi-12-1-1 + - bi-12-1-2 attributes: - color - material - pattern -- id: bi-23-6-4 - name: Petri Dishes +- id: bi-12-1-1 + name: Bar Counters children: [] attributes: - color + - counter_shape - material - pattern -- id: bi-23-6-5 - name: Pipettes +- id: bi-12-1-2 + name: Underbar Equipment children: - - bi-23-6-5-1 - - bi-23-6-5-2 - - bi-23-6-5-3 + - bi-12-1-2-1 + - bi-12-1-2-2 + - bi-12-1-2-3 + - bi-12-1-2-4 + - bi-12-1-2-5 attributes: - color - material - pattern -- id: bi-23-6-6 - name: Test Tube Racks +- id: bi-12-1-2-1 + name: Bar & Cocktail Stations children: [] attributes: - color - - housing_material + - material - pattern -- id: bi-23-6-7 - name: Test Tubes +- id: bi-12-1-2-2 + name: Glass Racks children: [] attributes: - color - - material - pattern -- id: bi-23-6-8 - name: Wash Bottles + - rack_design +- id: bi-12-1-2-3 + name: Menu Covers & Check Presenters children: [] attributes: - color - material - pattern -- id: bi-24 - name: Signage - children: - - bi-24-1 - - bi-24-2 - - bi-24-3 - - bi-24-4 - - bi-24-5 - - bi-24-6 - - bi-24-7 - - bi-24-8 - - bi-24-9 - - bi-24-10 - - bi-24-11 - - bi-24-12 - - bi-24-13 - attributes: - - color - - pattern -- id: bi-24-1 - name: Business Hour Signs +- id: bi-12-1-2-4 + name: Menu Displays & Boards children: [] attributes: - - accessory_size - color - - display_technology - material - mounting_type - pattern - - suitable_space -- id: bi-24-2 - name: Digital Signs +- id: bi-12-1-2-5 + name: Speed Rails children: [] attributes: - color - - connectivity_technology - - display_resolution - - display_technology + - material - pattern - - suitable_space -- id: bi-24-3 - name: Electric Signs +- id: bi-12-2 + name: Hotel & Hospitality Accessories children: - - bi-24-3-1 - - bi-24-3-2 + - bi-12-2-1 attributes: - color - - display_sign_design - - display_technology - pattern - - power_source - - suitable_space -- id: bi-24-3-1 - name: LED Signs +- id: bi-12-2-1 + name: Desk Bells children: [] attributes: + - bell_design + - bell_sound - color - - display_sign_design - - display_technology + - hardware_material - pattern - - power_source - - suitable_space -- id: bi-24-3-2 - name: Neon Signs - children: [] +- id: bi-12-3 + name: Hotel Supplies + children: + - bi-12-3-1 attributes: - color - - display_sign_design - - display_technology + - material - pattern - - power_source - - suitable_space -- id: bi-24-4 - name: Emergency & Exit Signs +- id: bi-12-3-1 + name: Reception Desks & Counters children: [] attributes: - color - - display_technology - - emergency_safety_sign_design - - light_features + - counter_shape + - material - pattern - - power_source - - suitable_space -- id: bi-24-5 - name: Facility Identification Signs - children: [] +- id: bi-13 + name: Industrial Storage + children: + - bi-13-1 + - bi-13-2 + - bi-13-3 + - bi-13-4 attributes: - color - - display_technology - - facility_sign_design - - material - - mounting_type - pattern - - suitable_space -- id: bi-24-6 - name: Open & Closed Signs +- id: bi-13-1 + name: Industrial Cabinets children: [] attributes: - color - - display_technology + - lock_type - material - - mounting_type - - open_closed_sign_design - pattern - - suitable_space -- id: bi-24-7 - name: Parking Signs & Permits +- id: bi-13-2 + name: Industrial Shelving children: [] attributes: - color - - material - - mounting_type - - parking_sign_design + - frame_material - pattern - - suitable_space -- id: bi-24-8 - name: Policy Signs + - shelf_material +- id: bi-13-3 + name: Shipping Containers children: [] attributes: - color - material - - mounting_type - pattern - - policy_sign_design - - suitable_space -- id: bi-24-9 - name: Retail & Sale Signs +- id: bi-13-4 + name: Wire Partitions, Enclosures & Doors children: [] attributes: - color - - display_technology + - lock_type - material - - mounting_type - pattern - - retail_sale_sign_design - - suitable_space -- id: bi-24-10 - name: Road & Traffic Signs - children: [] +- id: bi-14 + name: Industrial Storage Accessories + children: + - bi-14-1 + - bi-14-2 + - bi-14-3 attributes: - color - material - - mounting_type - pattern - - road_sign_design - - suitable_space -- id: bi-24-11 - name: Safety & Warning Signs +- id: bi-14-1 + name: Individual Industrial Shelves children: [] attributes: - color - - emergency_safety_sign_design - material - - mounting_type - pattern - - warning_category -- id: bi-24-12 - name: Security Signs +- id: bi-14-2 + name: Industrial Shelf Dividers children: [] attributes: - color - - emergency_safety_sign_design - material - - mounting_type - pattern - - warning_category -- id: bi-24-13 - name: Sidewalk & Yard Signs +- id: bi-14-3 + name: Locking Clips & Pins children: [] attributes: - color - material - - mounting_type - pattern - - retail_sale_sign_design - - suitable_space -- id: bi-25 - name: Work Safety Protective Gear +- id: bi-15 + name: Janitorial Carts & Caddies children: - - bi-25-1 - - bi-25-2 - - bi-25-3 - - bi-25-4 - - bi-25-5 - - bi-25-6 - - bi-25-7 - - bi-25-8 - - bi-25-9 - - bi-25-10 - - bi-25-11 - - bi-25-12 + - bi-15-1 + - bi-15-2 + - bi-15-4 attributes: - color + - material - pattern -- id: bi-25-1 - name: Bullet Proof Vests +- id: bi-15-1 + name: Cleaning Carts children: [] attributes: - - accessory_size - - bullet_protection_level - - color - - pattern - - gear_material -- id: bi-25-2 - name: Gas Mask & Respirator Accessories - children: - - bi-25-2-1 - - bi-25-2-2 - - bi-25-2-3 - attributes: - color - - filtration_class + - material - pattern -- id: bi-25-3 - name: Hardhats +- id: bi-15-2 + name: Laundry Carts children: [] attributes: - color - - hardhat_class + - material - pattern - - protection_type - - gear_material -- id: bi-25-4 - name: Hazardous Material Suits +- id: bi-15-4 + name: Waste Collection Carts children: [] attributes: - - accessory_size - color - - hazmat_suit_design + - material - pattern - - gear_material -- id: bi-25-5 - name: Protective Aprons +- id: bi-16 + name: Law Enforcement children: - - bi-25-5-1 - - bi-25-5-2 - - bi-25-5-3 + - bi-16-1 + - bi-16-2 attributes: - - accessory_size - color - pattern - - gear_material -- id: bi-25-6 - name: Protective Eyewear +- id: bi-16-1 + name: Cuffs children: - - bi-25-6-1 - - bi-25-6-2 - - bi-25-6-3 + - bi-16-1-1 + - bi-16-1-2 + - bi-16-1-3 + - bi-16-1-4 + - bi-16-1-5 attributes: - color - - lens_color + - handcuff_lock_type + - material - pattern -- id: bi-25-7 - name: Protective Masks - children: - - bi-25-7-1 - - bi-25-7-2 - - bi-25-7-3 - - bi-25-7-4 +- id: bi-16-1-1 + name: Chain Link Cuffs + children: [] attributes: - - accessory_size - color + - handcuff_lock_type + - material - pattern - - usage_type - - gear_material -- id: bi-25-7-1 - name: Dust Masks +- id: bi-16-1-2 + name: Disposable Cuffs children: [] attributes: - - accessory_size - color - - dust_mask_type - - filtration_class + - handcuff_lock_type + - material - pattern - - usage_type - - gear_material -- id: bi-25-7-2 - name: Fireman's Masks +- id: bi-16-1-3 + name: Hinged Cuffs children: [] attributes: - - accessory_size - color + - handcuff_lock_type - material - pattern - - usage_type -- id: bi-25-7-3 - name: Gas Masks & Respirators +- id: bi-16-1-4 + name: Leg Irons Cuffs children: [] attributes: - - accessory_size - color + - handcuff_lock_type + - material - pattern - - usage_type - - gear_material -- id: bi-25-7-4 - name: Medical Masks +- id: bi-16-1-5 + name: Rigid Cuffs children: [] attributes: - - accessory_size - color + - handcuff_lock_type + - material - pattern - - usage_type - - gear_material -- id: bi-25-8 - name: Safety Gloves +- id: bi-16-2 + name: Metal Detectors children: - - bi-25-8-1 - - bi-25-8-2 - - bi-25-8-3 - - bi-25-8-4 + - bi-16-2-1 + - bi-16-2-2 + - bi-16-2-3 attributes: - - accessory_size - color + - detector_sensitivity - pattern - - handwear_material -- id: bi-25-9 - name: Safety Knee Pads + - power_source +- id: bi-16-2-1 + name: Ground Search Metal Detectors children: [] attributes: - - accessory_size - - attachment_type - color + - detector_sensitivity - pattern - - gear_material -- id: bi-25-10 - name: Welding Helmets + - power_source +- id: bi-16-2-2 + name: Handheld Metal Detectors children: [] attributes: - color - - helmet_shade_design + - detector_sensitivity - pattern - - viewing_area_height - - viewing_area_width -- id: bi-25-11 - name: Work Safety Harnesses + - power_source +- id: bi-16-2-3 + name: Walk-Through Metal Detectors + children: [] + attributes: + - color + - detector_sensitivity + - pattern + - power_source +- id: bi-17 + name: Manufacturing children: - - bi-25-11-1 - - bi-25-11-2 - - bi-25-11-3 + - bi-17-1 attributes: - - accessory_size - color - pattern - - gear_material -- id: bi-25-12 - name: Work Safety Tethers +- id: bi-17-1 + name: Packaging Machines children: - - bi-25-12-1 - - bi-25-12-2 - - bi-25-12-3 + - bi-17-1-1 + - bi-17-1-2 + - bi-17-1-3 + - bi-17-1-4 + - bi-17-1-5 attributes: + - automation - color - pattern - - gear_material -- id: bi-1-2-1 - name: Lockable Counters +- id: bi-17-1-1 + name: Filling Machines children: [] attributes: + - automation - color - - material - pattern -- id: bi-1-2-2 - name: Modular Counters +- id: bi-17-1-2 + name: Labeling Machines children: [] attributes: + - automation - color - - material - pattern -- id: bi-1-2-3 - name: Pop-Up Counters +- id: bi-17-1-3 + name: Sealing Machines children: [] attributes: + - automation - color - - material - pattern -- id: bi-1-2-4 - name: Portable Counters +- id: bi-17-1-4 + name: Strapping Machines children: [] attributes: + - automation - color - - material - pattern -- id: bi-1-3-1 - name: Backlit Displays +- id: bi-17-1-5 + name: Wrapping Machines children: [] attributes: + - automation - color - - connectivity_technology - - display_recommended_use - - display_resolution - - display_technology - - operating_system - pattern - - suitable_space -- id: bi-1-3-2 - name: Banner Stands - children: [] +- id: bi-18 + name: Material Handling + children: + - bi-18-1 + - bi-18-2 + - bi-18-3 attributes: - color - - display_recommended_use - pattern - - suitable_space -- id: bi-1-3-3 - name: Digital A-Boards - children: [] +- id: bi-18-1 + name: Conveyors + children: + - bi-18-1-1 + - bi-18-1-2 + - bi-18-1-3 + - bi-18-1-4 + - bi-18-1-5 attributes: - color - - connectivity_technology - - display_recommended_use - - display_resolution - - display_technology - - operating_system - pattern - - suitable_space -- id: bi-1-3-4 - name: Digital Signage Flat Panels +- id: bi-18-1-1 + name: Belt Conveyors children: [] attributes: - color - - connectivity_technology - - display_recommended_use - - display_resolution - - display_technology - - operating_system + - conveyor_operation - pattern - - suitable_space -- id: bi-1-3-6 - name: Interactive Flat Panels +- id: bi-18-1-2 + name: Flexible Conveyors children: [] attributes: - color - - connectivity_technology - - display_recommended_use - - display_resolution - - display_technology - - operating_system + - conveyor_operation - pattern - - suitable_space -- id: bi-1-3-7 - name: Interactive Kids' Tables +- id: bi-18-1-3 + name: Vertical & Overhead Conveyors children: [] attributes: - color - - connectivity_technology - - display_recommended_use - - display_resolution - - display_technology - - operating_system - pattern - - suitable_space -- id: bi-1-3-8 - name: Kiosks +- id: bi-18-1-4 + name: Pneumatic Conveyors children: [] attributes: - color - - connectivity_technology - - display_recommended_use - - display_resolution - - display_technology - - operating_system - pattern - - suitable_space -- id: bi-1-3-9 - name: Modular Displays + - pneumatic_conveyor_operation +- id: bi-18-1-5 + name: Roller Conveyors children: [] attributes: - color - - connectivity_technology - - display_recommended_use - - display_resolution - - display_technology - - operating_system + - conveyor_operation + - pattern +- id: bi-18-2 + name: Lifts & Hoists + children: + - bi-18-2-1 + - bi-18-2-2 + - bi-18-2-3 + - bi-18-2-4 + - bi-18-2-5 + attributes: + - color + - pattern + - power_source +- id: bi-18-2-1 + name: Hoists, Cranes & Trolleys + children: + - bi-18-2-1-1 + - bi-18-2-1-2 + - bi-18-2-1-3 + - bi-18-2-1-4 + - bi-18-2-1-5 + attributes: + - color - pattern - - suitable_space -- id: bi-1-3-10 - name: Panoramas + - power_source +- id: bi-18-2-1-1 + name: Chain Hoists children: [] attributes: - color - - connectivity_technology - - display_recommended_use - - display_resolution - - display_technology - - operating_system - pattern - - suitable_space -- id: bi-1-3-11 - name: Pop-Up Displays + - power_source +- id: bi-18-2-1-2 + name: Gantry Cranes children: [] attributes: - color - - display_recommended_use - pattern - - suitable_space -- id: bi-1-3-12 - name: Tabletop Displays + - power_source +- id: bi-18-2-1-3 + name: Jib Cranes children: [] attributes: - color - - display_recommended_use - pattern - - suitable_space -- id: bi-1-3-13 - name: Totems + - power_source +- id: bi-18-2-1-4 + name: Trolleys children: [] attributes: - color - - connectivity_technology - - display_recommended_use - - display_resolution - - display_technology - - operating_system - pattern - - suitable_space - - totem_design -- id: bi-1-3-14 - name: Transparent Box Displays + - power_source +- id: bi-18-2-1-5 + name: Wire Rope Hoists children: [] attributes: - color - - display_recommended_use - pattern - - suitable_space -- id: bi-2-1-3-1 - name: Livestock Feeders - children: [] + - power_source +- id: bi-18-2-2 + name: Jacks & Lift Trucks + children: + - bi-18-2-2-1 + - bi-18-2-2-2 + - bi-18-2-2-3 + - bi-18-2-2-4 attributes: - - animal_type - color - - material - pattern -- id: bi-2-1-3-2 - name: Livestock Waterers + - power_source +- id: bi-18-2-2-1 + name: Bottle Jacks children: [] attributes: - - animal_type - color - - material - pattern -- id: bi-3-1-2 - name: Automation Control Modules + - power_source +- id: bi-18-2-2-2 + name: Floor Jacks children: [] attributes: - color - - communication_protocols - - controller_design - pattern - power_source -- id: bi-3-1-4 - name: Building Management System (BMS) Controllers +- id: bi-18-2-2-3 + name: Pallet Jacks children: [] attributes: - color - - communication_protocols - - controller_design - pattern - power_source -- id: bi-3-1-5 - name: Digital Addressable Lighting Interface (DALI) Controllers +- id: bi-18-2-2-4 + name: Scissor Jacks children: [] attributes: - color - - communication_protocols - - controller_design - pattern - power_source -- id: bi-3-1-9 - name: Motor Controllers - children: [] +- id: bi-18-2-3 + name: Personnel Lifts + children: + - bi-18-2-3-1 + - bi-18-2-3-2 + - bi-18-2-3-3 + - bi-18-2-3-4 + - bi-18-2-3-5 + - bi-18-2-3-6 attributes: - color - - communication_protocols - - controller_design + - material - pattern - - phase_type - power_source -- id: bi-3-1-7 - name: Motor Starters + - suitable_for_vehicle_type +- id: bi-18-2-3-1 + name: Boom Lifts children: [] attributes: - color - - communication_protocols - - controller_design + - material - pattern - power_source -- id: bi-4-1-1 - name: Automatic Levels + - suitable_for_vehicle_type +- id: bi-18-2-3-2 + name: Drive-On Parallelograms children: [] attributes: - color - - connectivity_technology + - material - pattern -- id: bi-4-1-2 - name: GPS & GNSS Systems + - power_source + - suitable_for_vehicle_type +- id: bi-18-2-3-3 + name: Multi-Post Runways children: [] attributes: - color - - connectivity_technology + - material - pattern -- id: bi-4-1-4 - name: Total Stations + - power_source + - suitable_for_vehicle_type +- id: bi-18-2-3-4 + name: Scissor Lifts children: [] attributes: - color - - connectivity_technology + - material - pattern -- id: bi-4-2-1 - name: Traffic Barrels + - power_source + - suitable_for_vehicle_type +- id: bi-18-2-3-5 + name: Two-Post Surface Mounted Lifts children: [] attributes: - color - material - pattern -- id: bi-4-2-2 - name: Traffic Cones + - power_source + - suitable_for_vehicle_type +- id: bi-18-2-3-6 + name: Vertical Mast Lifts children: [] attributes: - color - material - pattern -- id: bi-5-1-1 - name: Filling Dental Cement + - power_source + - suitable_for_vehicle_type +- id: bi-18-2-4 + name: Pulleys, Blocks & Sheaves + children: + - bi-18-2-4-2 + - bi-18-2-4-3 + - bi-18-2-4-4 + - bi-18-2-4-5 + attributes: + - color + - pattern +- id: bi-18-2-4-2 + name: Double Pulleys children: [] attributes: - color - pattern -- id: bi-5-1-2 - name: Lining Dental Cement +- id: bi-18-2-4-3 + name: Sheaves children: [] attributes: - color - pattern -- id: bi-5-1-3 - name: Luting Dental Cement +- id: bi-18-2-4-4 + name: Single Pulleys children: [] attributes: - color - pattern -- id: bi-5-1-5 - name: Temporary Dental Cement +- id: bi-18-2-4-5 + name: Triple Pulleys children: [] attributes: - color - pattern -- id: bi-6-1 - name: Film & Television Costumes +- id: bi-18-2-5 + name: Winches children: [] attributes: - - accessory_size - color - - costume_theme - pattern - - fabric -- id: bi-6-2 - name: Film & Television Props + - power_source +- id: bi-18-3 + name: Pallets & Loading Platforms + children: + - bi-18-3-1 + - bi-18-3-2 + - bi-18-3-3 + - bi-18-3-4 + attributes: + - color + - material + - pattern +- id: bi-18-3-1 + name: Block Pallets children: [] attributes: - color - material - pattern - - prop_theme - - suitable_space -- id: bi-6-3 - name: Film & Television Set Pieces - children: - - bi-6-3-1 - - bi-6-3-2 - - bi-6-3-3 +- id: bi-18-3-2 + name: Double-Face Pallets + children: [] attributes: - color - material - pattern - - suitable_space -- id: bi-6-3-1 - name: Backdrop Set Pieces +- id: bi-18-3-3 + name: Solid Deck Pallets children: [] attributes: - color - material - pattern - - suitable_space -- id: bi-6-3-2 - name: Furniture Set Pieces +- id: bi-18-3-4 + name: Stringer Pallets children: [] attributes: - color + - material - pattern - - suitable_space - - furniture_fixture_material -- id: bi-6-3-3 - name: Set Decoration +- id: bi-19 + name: Medical + children: + - bi-19-1 + - bi-19-2 + - bi-19-3 + - bi-19-4 + - bi-19-5 + - bi-19-6 + - bi-19-7 + - bi-19-8 + - bi-19-9 + - bi-19-10 + - bi-19-11 + attributes: + - color + - pattern +- id: bi-19-1 + name: Hospital Curtains children: [] attributes: - color - material - pattern - - suitable_space -- id: bi-8-7-3-1 - name: Disposable Forks +- id: bi-19-2 + name: Hospital Gowns + children: + - bi-19-2-1 + - bi-19-2-2 + attributes: + - color + - material + - pattern +- id: bi-19-2-1 + name: Isolation Gowns children: [] attributes: - color + - material - pattern - - disposable_tableware_material -- id: bi-8-7-3-2 - name: Disposable Knives +- id: bi-19-2-2 + name: Patient Gowns children: [] attributes: - color + - material - pattern - - disposable_tableware_material -- id: bi-8-7-3-3 - name: Disposable Spoons +- id: bi-19-3 + name: Medical Bedding children: [] attributes: + - bedding_size - color + - material - pattern - - disposable_tableware_material -- id: bi-8-17-1 - name: Combo Vending Machines - children: [] +- id: bi-19-4 + name: Medical Equipment + children: + - bi-19-4-1 + - bi-19-4-2 + - bi-19-4-3 + - bi-19-4-4 + - bi-19-4-5 + - bi-19-4-6 + - bi-19-4-7 + - bi-19-4-8 + - bi-19-4-9 attributes: - color - pattern - - power_source -- id: bi-8-17-2 - name: Drink Vending Machines +- id: bi-19-4-1 + name: Automated External Defibrillators children: [] attributes: - color + - operating_mode - pattern - - power_source -- id: bi-8-17-3 - name: Snack Vending Machines +- id: bi-19-4-2 + name: Gait Belts children: [] attributes: - color + - fabric - pattern - - power_source -- id: bi-9-1 - name: Arborist Accessories +- id: bi-19-4-3 + name: Medical Reflex Hammers & Tuning Forks children: - - bi-9-1-1 + - bi-19-4-3-1 + - bi-19-4-3-2 + - bi-19-4-3-3 + - bi-19-4-3-5 attributes: - color - - material - pattern -- id: bi-9-1-1 - name: Throw Weights +- id: bi-19-4-3-1 + name: Babinski Hammers children: [] attributes: - color - - material - pattern -- id: bi-9-2 - name: Forestry & Logging Protective Gear - children: - - bi-9-2-1 - - bi-9-2-2 - - bi-9-2-3 - - bi-9-2-4 - - bi-9-2-5 +- id: bi-19-4-3-2 + name: Buck Hammers + children: [] attributes: - color - pattern - - gear_material -- id: bi-9-2-1 - name: Forestry & Logging Boots +- id: bi-19-4-3-3 + name: Tuning Forks children: [] attributes: - color - pattern - - shoe_size - - target_gender - - gear_material -- id: bi-9-2-2 - name: Forestry & Logging Chaps + - tuning_fork_design + - tuning_fork_frequency +- id: bi-19-4-3-5 + name: Taylor Hammers children: [] attributes: - - accessory_size - color - pattern - - gear_material -- id: bi-9-2-3 - name: Forestry & Logging Eyewear - children: [] +- id: bi-19-4-4 + name: Medical Stretchers & Gurneys + children: + - bi-19-4-4-2 + - bi-19-4-4-4 attributes: - - accessory_size - color + - material - pattern - - gear_material -- id: bi-9-2-4 - name: Forestry & Logging Gloves +- id: bi-19-4-4-2 + name: Manual Stretchers & Gurneys children: [] attributes: - - accessory_size - color + - compatible_patient_profile + - material - pattern - - handwear_material -- id: bi-9-2-5 - name: Forestry & Logging Helmets + - stretcher_gurney_intended_use +- id: bi-19-4-4-4 + name: Powered Stretchers & Gurneys children: [] attributes: - - accessory_size - color + - compatible_patient_profile + - material - pattern - - gear_material -- id: bi-9-3 - name: Forestry & Logging Tools - children: - - bi-9-3-1 - - bi-9-3-2 - - bi-9-3-3 + - stretcher_gurney_intended_use +- id: bi-19-4-5 + name: Otoscopes & Ophthalmoscopes + children: [] attributes: - color - - handle_material + - mounting_type - pattern -- id: bi-9-3-1 - name: Log Hooks - children: [] + - power_source +- id: bi-19-4-6 + name: Patient Lifts + children: + - bi-19-4-6-2 + - bi-19-4-6-3 + - bi-19-4-6-4 attributes: - - blade_material - color - - handle_material - pattern -- id: bi-9-3-2 - name: Log Tongs + - power_source +- id: bi-19-4-6-2 + name: Bath Lifts children: [] attributes: - color - - handle_material - - jaw_material + - compatible_patient_profile + - equipment_operation - pattern -- id: bi-9-3-3 - name: Tree Calipers + - power_source +- id: bi-19-4-6-3 + name: Mobile Lifts children: [] attributes: - color - - handle_material + - compatible_patient_profile + - equipment_operation - pattern - - scale_material -- id: bi-10-3-1 - name: All-Purpose Chairs + - power_source +- id: bi-19-4-6-4 + name: Stand-Up Patient Lifts children: [] attributes: - color + - compatible_patient_profile + - equipment_operation - pattern - - upholstery_material -- id: bi-10-3-2 - name: Barber Chairs - children: [] + - power_source +- id: bi-19-4-7 + name: Stethoscopes + children: + - bi-19-4-7-1 attributes: - color - pattern - - upholstery_material -- id: bi-10-3-3 - name: Shampoo Chairs + - stethoscope_design + - stethoscope_technology + - tube_color +- id: bi-19-4-7-1 + name: Training Stethoscopes children: [] attributes: - color - pattern - - upholstery_material -- id: bi-10-3-4 - name: Styling Chairs - children: [] + - stethoscope_design + - stethoscope_technology + - tube_color +- id: bi-19-4-8 + name: Vital Signs Monitor Accessories + children: + - bi-19-4-8-1 + - bi-19-4-8-2 + - bi-19-4-8-3 + - bi-19-4-8-4 attributes: - color - pattern - - upholstery_material -- id: bi-11-1 - name: Backhoes +- id: bi-19-4-8-1 + name: Vital Signs Monitor Cuffs children: [] attributes: - color - pattern -- id: bi-11-2 - name: Bulldozers +- id: bi-19-4-8-2 + name: Vital Signs Monitor Mounts children: [] attributes: - - bulldozer_blade_type - color - pattern -- id: bi-11-4 - name: Crawler Loaders +- id: bi-19-4-8-3 + name: Vital Signs Monitor Power Cords children: [] attributes: - color - pattern -- id: bi-11-5 - name: Dump Trucks +- id: bi-19-4-8-4 + name: Vital Signs Monitor Sensors children: [] attributes: - color - - discharge_type - pattern -- id: bi-11-6 - name: Excavators +- id: bi-19-4-9 + name: Vital Signs Monitors children: - - bi-11-6-1 - - bi-11-6-2 - - bi-11-6-3 - - bi-11-6-4 + - bi-19-4-9-1 + - bi-19-4-9-2 + - bi-19-4-9-3 attributes: - color - pattern -- id: bi-11-6-1 - name: Compact Excavators + - power_source +- id: bi-19-4-9-1 + name: ECG Monitors children: [] attributes: - color - pattern -- id: bi-11-6-2 - name: Dragline Excavators + - power_source +- id: bi-19-4-9-2 + name: Multi-Parameter Monitors children: [] attributes: - color - pattern -- id: bi-11-6-3 - name: Long Reach Excavators + - power_source +- id: bi-19-4-9-3 + name: Pulse Oximeter Monitors children: [] attributes: - color - pattern -- id: bi-11-6-4 - name: Wheeled Excavators - children: [] + - power_source +- id: bi-19-5 + name: Medical Furniture + children: + - bi-19-5-1 + - bi-19-5-2 + - bi-19-5-3 + - bi-19-5-4 + - bi-19-5-5 + - bi-19-5-6 attributes: - color - pattern -- id: bi-11-7 - name: Harvesters +- id: bi-19-5-1 + name: Chiropractic Tables children: - - bi-11-7-1 - - bi-11-7-2 - - bi-11-7-3 - - bi-11-7-4 - - bi-11-7-5 + - bi-19-5-1-3 + - bi-19-5-1-4 attributes: - color - - drive_type + - furniture_fixture_material - pattern -- id: bi-11-7-1 - name: Combine Harvesters +- id: bi-19-5-1-3 + name: Portable Chiropractic Tables children: [] attributes: + - chiropractic_table_design - color - - drive_type + - furniture_fixture_material - pattern -- id: bi-11-7-2 - name: Cotton Harvesters +- id: bi-19-5-1-4 + name: Stationary Chiropractic Tables children: [] attributes: + - chiropractic_table_design - color - - drive_type + - furniture_fixture_material - pattern -- id: bi-11-7-3 - name: Forage Harvesters - children: [] +- id: bi-19-5-2 + name: Examination Chairs & Tables + children: + - bi-19-5-2-1 + - bi-19-5-2-2 attributes: - color - - drive_type + - compatible_patient_profile + - furniture_fixture_material - pattern -- id: bi-11-7-4 - name: Potato Harvesters - children: [] +- id: bi-19-5-2-1 + name: Examination Chairs + children: + - bi-19-5-2-1-2 + - bi-19-5-2-1-4 attributes: - color - - drive_type + - compatible_patient_profile + - furniture_fixture_material - pattern -- id: bi-11-7-5 - name: Sugar Beet Harvesters +- id: bi-19-5-2-1-2 + name: Manual Examination Chairs children: [] attributes: - color - - drive_type + - compatible_patient_profile + - furniture_fixture_material - pattern -- id: bi-11-8 - name: Motor Graders +- id: bi-19-5-2-1-4 + name: Powered Examination Chairs children: [] attributes: - color + - compatible_patient_profile + - furniture_fixture_material - pattern -- id: bi-11-9 - name: Pavers +- id: bi-19-5-2-2 + name: Examination Tables children: - - bi-11-9-1 - - bi-11-9-2 + - bi-19-5-2-2-1 + - bi-19-5-2-2-2 attributes: - color + - compatible_patient_profile + - furniture_fixture_material - pattern -- id: bi-11-9-1 - name: Asphalt Pavers +- id: bi-19-5-2-2-1 + name: Manual Examination Tables children: [] attributes: - color + - compatible_patient_profile + - furniture_fixture_material - pattern -- id: bi-11-9-2 - name: Concrete Pavers +- id: bi-19-5-2-2-2 + name: Powered Examination Tables children: [] attributes: - color + - compatible_patient_profile + - furniture_fixture_material - pattern -- id: bi-11-10 - name: Scrapers +- id: bi-19-5-3 + name: Homecare & Hospital Beds children: - - bi-11-10-1 - - bi-11-10-2 - - bi-11-10-3 - attributes: - - color - - pattern -- id: bi-11-10-1 - name: Elevating Scrapers - children: [] + - bi-19-5-3-2 + - bi-19-5-3-3 + - bi-19-5-3-4 attributes: + - bedding_size - color - pattern -- id: bi-11-10-2 - name: Open Bowl Scrapers +- id: bi-19-5-3-2 + name: Full-Electric Beds children: [] attributes: + - bedding_size - color + - compatible_patient_profile - pattern -- id: bi-11-10-3 - name: Pull Scrapers +- id: bi-19-5-3-3 + name: Manual Beds children: [] attributes: + - bedding_size - color + - compatible_patient_profile - pattern -- id: bi-11-11 - name: Skid-Steer Loaders +- id: bi-19-5-3-4 + name: Semi-Electric Beds children: [] attributes: + - bedding_size - color - pattern -- id: bi-11-12 - name: Tractors +- id: bi-19-5-4 + name: Medical Cabinets children: - - bi-11-12-1 - - bi-11-12-2 - - bi-11-12-3 - - bi-11-12-4 - attributes: - - color - - drive_type - - pattern -- id: bi-11-12-1 - name: Articulated 4WD Tractors - children: [] + - bi-19-5-4-1 + - bi-19-5-4-2 attributes: - color + - furniture_fixture_material + - mounting_type - pattern -- id: bi-11-12-2 - name: Compact Tractors +- id: bi-19-5-4-1 + name: Bedside Cabinets children: [] attributes: - color - - drive_type + - furniture_fixture_material + - mounting_type - pattern -- id: bi-11-12-3 - name: Row Crop Tractors +- id: bi-19-5-4-2 + name: Exam Room Cabinets children: [] attributes: - color - - drive_type + - furniture_fixture_material + - mounting_type - pattern -- id: bi-11-12-4 - name: Utility Tractors - children: [] +- id: bi-19-5-5 + name: Medical Carts + children: + - bi-19-5-5-1 + - bi-19-5-5-2 attributes: - color - - drive_type + - furniture_fixture_material - pattern -- id: bi-11-13 - name: Trenchers +- id: bi-19-5-5-1 + name: Crash Carts children: - - bi-11-13-1 - - bi-11-13-2 + - bi-19-5-5-1-1 + - bi-19-5-5-1-2 + - bi-19-5-5-1-3 + - bi-19-5-5-1-4 attributes: - color + - furniture_fixture_material - pattern -- id: bi-11-13-1 - name: Ride-On Trenchers +- id: bi-19-5-5-1-1 + name: Anesthesia Crash Carts children: [] attributes: - color + - furniture_fixture_material - pattern -- id: bi-11-13-2 - name: Walk-Behind Trenchers +- id: bi-19-5-5-1-2 + name: Emergency Crash Carts children: [] attributes: - color + - furniture_fixture_material - pattern -- id: bi-11-14 - name: Wheel Loaders +- id: bi-19-5-5-1-3 + name: Isolation Crash Carts children: [] attributes: - color + - furniture_fixture_material - pattern -- id: bi-11-15 - name: Wheel Tractor Scrapers - children: - - bi-11-15-1 - - bi-11-15-2 - - bi-11-15-3 +- id: bi-19-5-5-1-4 + name: Pediatric Crash Carts + children: [] attributes: - color + - furniture_fixture_material - pattern -- id: bi-11-15-1 - name: Elevating Wheel Tractor Scrapers +- id: bi-19-5-5-2 + name: IV Poles & Carts children: [] attributes: + - cart_design - color + - furniture_fixture_material - pattern -- id: bi-11-15-2 - name: Open Bowl Wheel Tractor Scrapers - children: [] +- id: bi-19-5-6 + name: Surgical Tables + children: + - bi-19-5-6-2 + - bi-19-5-6-3 attributes: - color + - compatible_patient_profile - pattern -- id: bi-11-15-3 - name: Pull Wheel Tractor Scrapers + - power_source +- id: bi-19-5-6-2 + name: General Surgery Surgical Tables children: [] attributes: - color + - compatible_patient_profile - pattern -- id: bi-11-16 - name: Yard Scrapers + - power_source +- id: bi-19-5-6-3 + name: Orthopedic Surgical Tables children: [] attributes: - color + - compatible_patient_profile - pattern - - propulsion_type -- id: bi-12-1 - name: Hospitality Supplies + - power_source +- id: bi-19-6 + name: Medical Instruments children: - - bi-12-1-1 - - bi-12-1-2 + - bi-19-6-1 + - bi-19-6-2 + - bi-19-6-3 + - bi-19-6-4 attributes: - color - - material - pattern -- id: bi-12-1-1 - name: Bar Counters - children: [] +- id: bi-19-6-1 + name: Medical Forceps + children: + - bi-19-6-1-1 + - bi-19-6-1-2 + - bi-19-6-1-3 + - bi-19-6-1-4 attributes: - color - - counter_shape - material - pattern -- id: bi-12-1-2 - name: Underbar Equipment - children: - - bi-12-1-2-1 - - bi-12-1-2-2 - - bi-12-1-2-3 - - bi-12-1-2-4 - - bi-12-1-2-5 +- id: bi-19-6-1-1 + name: Dressing Forceps + children: [] attributes: - color - material - pattern -- id: bi-12-1-2-1 - name: Bar & Cocktail Stations +- id: bi-19-6-1-2 + name: Hemostatic Forceps children: [] attributes: - color - material - pattern -- id: bi-12-1-2-2 - name: Glass Racks +- id: bi-19-6-1-3 + name: Splinter Forceps children: [] attributes: - color + - material - pattern - - rack_design -- id: bi-12-1-2-3 - name: Menu Covers & Check Presenters +- id: bi-19-6-1-4 + name: Tissue Forceps children: [] attributes: - color - material - pattern -- id: bi-12-1-2-4 - name: Menu Displays & Boards +- id: bi-19-6-2 + name: Scalpel Blades children: [] attributes: + - blade_material + - blade_shape - color - - material - - mounting_type - pattern -- id: bi-12-1-2-5 - name: Speed Rails + - product_sterility + - scalpel_blade_number + - usage_type +- id: bi-19-6-3 + name: Scalpels children: [] attributes: + - blade_material + - blade_shape - color - - material - pattern -- id: bi-12-2 - name: Hotel & Hospitality Accessories + - product_sterility + - scalpel_blade_number + - scalpel_handle_number + - usage_type +- id: bi-19-6-4 + name: Surgical Needles & Sutures children: - - bi-12-2-1 + - bi-19-6-4-1 + - bi-19-6-4-2 attributes: - color - pattern -- id: bi-12-2-1 - name: Desk Bells - children: [] +- id: bi-19-6-4-1 + name: Surgical Needles + children: + - bi-19-6-4-1-1 + - bi-19-6-4-1-2 + - bi-19-6-4-1-3 attributes: - - bell_design - - bell_sound - color - pattern - - hardware_material -- id: bi-12-3 - name: Hotel Supplies - children: - - bi-12-3-1 +- id: bi-19-6-4-1-1 + name: Cutting Surgical Needles + children: [] attributes: - color - - material - pattern -- id: bi-12-3-1 - name: Reception Desks & Counters +- id: bi-19-6-4-1-2 + name: Reverse Cutting Surgical Needles children: [] attributes: - color - - counter_shape - - material - pattern -- id: bi-14-1 - name: Individual Industrial Shelves +- id: bi-19-6-4-1-3 + name: Taper Surgical Needles children: [] attributes: - color - - material - pattern -- id: bi-14-2 - name: Industrial Shelf Dividers - children: [] +- id: bi-19-6-4-2 + name: Surgical Sutures + children: + - bi-19-6-4-2-1 + - bi-19-6-4-2-2 attributes: - color - - material - pattern -- id: bi-14-3 - name: Locking Clips & Pins +- id: bi-19-6-4-2-1 + name: Absorbable Surgical Sutures children: [] attributes: - color - - material - pattern -- id: bi-15-1 - name: Cleaning Carts +- id: bi-19-6-4-2-2 + name: Non-Absorbable Surgical Sutures children: [] attributes: - color - - material - pattern -- id: bi-15-2 - name: Laundry Carts - children: [] +- id: bi-19-7 + name: Medical Supplies + children: + - bi-19-7-1 + - bi-19-7-2 + - bi-19-7-3 + - bi-19-7-4 + - bi-19-7-5 attributes: - color - - material - pattern -- id: bi-15-4 - name: Waste Collection Carts +- id: bi-19-7-1 + name: Disposable Gloves children: [] attributes: + - accessory_size - color - - material + - handwear_material - pattern -- id: bi-16-1-1 - name: Chain Link Cuffs +- id: bi-19-7-2 + name: Finger Cots children: [] attributes: + - accessory_size - color - - handcuff_lock_type - material - pattern -- id: bi-16-1-2 - name: Disposable Cuffs - children: [] +- id: bi-19-7-3 + name: Medical Needles & Syringes + children: + - bi-19-7-3-1 + - bi-19-7-3-2 + - bi-19-7-3-3 attributes: - color - - handcuff_lock_type - - material + - needle_housing_material + - medical_syringe_purpose + - needle_gauge - pattern -- id: bi-16-1-3 - name: Hinged Cuffs + - tip_design + - usage_type +- id: bi-19-7-3-1 + name: Medical Needle & Syringe Sets children: [] attributes: - color - - handcuff_lock_type - - material + - needle_housing_material + - medical_syringe_purpose + - needle_gauge - pattern -- id: bi-16-1-4 - name: Leg Irons Cuffs + - tip_design + - usage_type +- id: bi-19-7-3-2 + name: Medical Needles children: [] attributes: - color - - handcuff_lock_type - - material + - needle_housing_material + - medical_syringe_purpose + - needle_gauge - pattern -- id: bi-16-1-5 - name: Rigid Cuffs + - tip_design + - usage_type +- id: bi-19-7-3-3 + name: Medical Syringes children: [] attributes: - color - - handcuff_lock_type - - material + - needle_housing_material + - medical_syringe_purpose + - needle_gauge - pattern -- id: bi-16-2-1 - name: Ground Search Metal Detectors - children: [] + - tip_design + - usage_type +- id: bi-19-7-4 + name: Ostomy Supplies + children: + - bi-19-7-4-1 + - bi-19-7-4-2 + - bi-19-7-4-3 + - bi-19-7-4-4 attributes: + - accessory_size - color - - detector_sensitivity - pattern - - power_source -- id: bi-16-2-2 - name: Handheld Metal Detectors +- id: bi-19-7-4-1 + name: Adhesive Removers children: [] attributes: + - accessory_size - color - - detector_sensitivity - pattern - - power_source -- id: bi-16-2-3 - name: Walk-Through Metal Detectors +- id: bi-19-7-4-2 + name: Ostomy Bags children: [] attributes: + - accessory_size - color - - detector_sensitivity - pattern - - power_source -- id: bi-17-1 - name: Packaging Machines - children: - - bi-17-1-1 - - bi-17-1-2 - - bi-17-1-3 - - bi-17-1-4 - - bi-17-1-5 +- id: bi-19-7-4-3 + name: Ostomy Belts + children: [] attributes: - - automation + - accessory_size - color - pattern -- id: bi-17-1-1 - name: Filling Machines +- id: bi-19-7-4-4 + name: Skin Barriers children: [] attributes: - - automation + - accessory_size - color - pattern -- id: bi-17-1-2 - name: Labeling Machines +- id: bi-19-7-5 + name: Tongue Depressors children: [] attributes: - - automation + - age_group - color + - material - pattern -- id: bi-17-1-3 - name: Sealing Machines - children: [] +- id: bi-19-8 + name: Medical Teaching Equipment + children: + - bi-19-8-1 attributes: - - automation - color - pattern -- id: bi-17-1-4 - name: Strapping Machines - children: [] +- id: bi-19-8-1 + name: Medical & Emergency Response Training Mannequins + children: + - bi-19-8-1-1 + - bi-19-8-1-2 + - bi-19-8-1-3 + - bi-19-8-1-4 attributes: - - automation + - age_group - color - pattern -- id: bi-17-1-5 - name: Wrapping Machines +- id: bi-19-8-1-1 + name: Childbirth Training Mannequins children: [] attributes: - - automation + - age_group - color - pattern -- id: bi-18-1-1 - name: Belt Conveyors +- id: bi-19-8-1-2 + name: Choking Training Mannequins children: [] attributes: + - age_group - color - - conveyor_operation - pattern -- id: bi-18-1-2 - name: Flexible Conveyors +- id: bi-19-8-1-3 + name: CPR Training Mannequins children: [] attributes: + - age_group - color - - conveyor_operation - pattern -- id: bi-18-1-4 - name: Pneumatic Conveyors +- id: bi-19-8-1-4 + name: Trauma Training Mannequins children: [] attributes: + - age_group - color - pattern - - pneumatic_conveyor_operation -- id: bi-18-1-5 - name: Roller Conveyors +- id: bi-19-9 + name: Scrub Caps children: [] attributes: - color - - conveyor_operation + - material - pattern -- id: bi-18-1-3 - name: Vertical & Overhead Conveyors +- id: bi-19-10 + name: Scrubs children: [] attributes: + - accessory_size - color + - material - pattern -- id: bi-18-2-1-1 - name: Chain Hoists +- id: bi-19-11 + name: Surgical Gowns children: [] attributes: + - accessory_size - color + - material - pattern - - power_source -- id: bi-18-2-1-2 - name: Gantry Cranes - children: [] + - product_sterility +- id: bi-20 + name: Mining & Quarrying + children: + - bi-20-1 + - bi-20-2 attributes: - color - pattern - - power_source -- id: bi-18-2-1-3 - name: Jib Cranes - children: [] +- id: bi-20-1 + name: Mining & Quarrying Machinery + children: + - bi-20-1-1 + - bi-20-1-2 attributes: - color - pattern - power_source -- id: bi-18-2-1-4 - name: Trolleys - children: [] +- id: bi-20-1-1 + name: Crushers + children: + - bi-20-1-1-1 + - bi-20-1-1-2 + - bi-20-1-1-3 + - bi-20-1-1-4 attributes: - color - pattern - power_source -- id: bi-18-2-1-5 - name: Wire Rope Hoists +- id: bi-20-1-1-1 + name: Cone Crushers children: [] attributes: - color - pattern - power_source -- id: bi-18-2-2-1 - name: Bottle Jacks +- id: bi-20-1-1-2 + name: Gyratory Crushers children: [] attributes: - color - pattern - power_source -- id: bi-18-2-2-2 - name: Floor Jacks +- id: bi-20-1-1-3 + name: Impact Crushers children: [] attributes: - color - pattern - power_source -- id: bi-18-2-2-3 - name: Pallet Jacks +- id: bi-20-1-1-4 + name: Jaw Crushers children: [] attributes: - color - pattern - power_source -- id: bi-18-2-2-4 - name: Scissor Jacks +- id: bi-20-1-2 + name: Drilling Rigs children: [] attributes: - color + - drilling_method + - drilling_rig_orientation - pattern - power_source -- id: bi-18-2-3-1 - name: Boom Lifts +- id: bi-20-2 + name: Mining & Quarrying Supplies children: [] attributes: - color - material - pattern - - power_source - - suitable_for_vehicle_type -- id: bi-18-2-3-2 - name: Drive-On Parallelograms - children: [] +- id: bi-21 + name: Piercing & Tattooing + children: + - bi-21-1 + - bi-21-2 attributes: - color - - material - pattern - - power_source - - suitable_for_vehicle_type -- id: bi-18-2-3-3 - name: Multi-Post Runways - children: [] +- id: bi-21-1 + name: Piercing Supplies + children: + - bi-21-1-1 attributes: - color - material - pattern - - power_source - - suitable_for_vehicle_type -- id: bi-18-2-3-4 - name: Scissor Lifts - children: [] +- id: bi-21-1-1 + name: Piercing Needles + children: + - bi-21-1-1-1 + - bi-21-1-1-2 attributes: - color - - material + - needle_material + - needle_gauge - pattern - - power_source - - suitable_for_vehicle_type -- id: bi-18-2-3-5 - name: Two-Post Surface Mounted Lifts +- id: bi-21-1-1-1 + name: Cannula Needles children: [] attributes: - color - - material + - needle_material + - needle_gauge - pattern - - power_source - - suitable_for_vehicle_type -- id: bi-18-2-3-6 - name: Vertical Mast Lifts +- id: bi-21-1-1-2 + name: Dermal Punches children: [] attributes: - color - material + - needle_gauge - pattern - - power_source - - suitable_for_vehicle_type -- id: bi-18-2-4-2 - name: Double Pulleys - children: [] +- id: bi-21-2 + name: Tattooing Supplies + children: + - bi-21-2-1 + - bi-21-2-2 + - bi-21-2-3 + - bi-21-2-4 attributes: - color - pattern -- id: bi-18-2-4-3 - name: Sheaves +- id: bi-21-2-1 + name: Tattoo Cover-Ups children: [] attributes: - color + - material - pattern -- id: bi-18-2-4-4 - name: Single Pulleys +- id: bi-21-2-2 + name: Tattooing Inks children: [] attributes: - color - pattern -- id: bi-18-2-4-5 - name: Triple Pulleys - children: [] +- id: bi-21-2-3 + name: Tattooing Machines + children: + - bi-21-2-3-1 + - bi-21-2-3-2 + - bi-21-2-3-3 attributes: - color + - material - pattern -- id: bi-18-3-1 - name: Block Pallets + - power_source +- id: bi-21-2-3-1 + name: Coil Tattooing Machines children: [] attributes: - color - material - pattern -- id: bi-18-3-2 - name: Double-Face Pallets + - power_source +- id: bi-21-2-3-2 + name: Pen Tattooing Machines children: [] attributes: - color - material - pattern -- id: bi-18-3-3 - name: Solid Deck Pallets + - power_source +- id: bi-21-2-3-3 + name: Rotary Tattooing Machines children: [] attributes: - color - material - pattern -- id: bi-18-3-4 - name: Stringer Pallets - children: [] + - power_source +- id: bi-21-2-4 + name: Tattooing Needles + children: + - bi-21-2-4-1 + - bi-21-2-4-2 + - bi-21-2-4-3 + - bi-21-2-4-4 attributes: - color - - material + - needle_material + - needle_gauge - pattern -- id: bi-19-2-1 - name: Isolation Gowns +- id: bi-21-2-4-1 + name: Curved Magnum Tattooing Needles children: [] attributes: - color - - material + - needle_material + - needle_gauge - pattern -- id: bi-19-2-2 - name: Patient Gowns +- id: bi-21-2-4-2 + name: Magnum Tattooing Needles children: [] attributes: - color - - material + - needle_material + - needle_gauge - pattern -- id: bi-19-4-3-1 - name: Babinski Hammers +- id: bi-21-2-4-3 + name: Round Liner Tattooing Needles children: [] attributes: - color + - needle_material + - needle_gauge - pattern -- id: bi-19-4-3-2 - name: Buck Hammers +- id: bi-21-2-4-4 + name: Round Shader Tattooing Needles children: [] attributes: - color + - needle_material + - needle_gauge - pattern -- id: bi-19-4-3-5 - name: Taylor Hammers +- id: bi-22 + name: Retail + children: + - bi-22-1 + - bi-22-2 + - bi-22-3 + - bi-22-4 + - bi-22-5 + - bi-22-6 + - bi-22-7 + - bi-22-8 + attributes: + - color + - pattern +- id: bi-22-1 + name: Clothing Display Racks + children: + - bi-22-1-1 + - bi-22-1-2 + - bi-22-1-3 + - bi-22-1-4 + attributes: + - color + - material + - pattern +- id: bi-22-1-1 + name: Four-Way Clothing Display Racks children: [] attributes: - color + - material - pattern -- id: bi-19-4-3-3 - name: Tuning Forks +- id: bi-22-1-2 + name: Round Clothing Display Racks children: [] attributes: - color + - material - pattern - - tuning_fork_design - - tuning_fork_frequency -- id: bi-19-4-4-2 - name: Manual Stretchers & Gurneys +- id: bi-22-1-3 + name: Straight Clothing Display Racks children: [] attributes: - color - - compatible_patient_profile - material - pattern - - stretcher_gurney_intended_use -- id: bi-19-4-4-4 - name: Powered Stretchers & Gurneys +- id: bi-22-1-4 + name: Two-Way Clothing Display Racks children: [] attributes: - color - - compatible_patient_profile - material - pattern - - stretcher_gurney_intended_use -- id: bi-19-4-6-2 - name: Bath Lifts - children: [] +- id: bi-22-2 + name: Display Mannequins + children: + - bi-22-2-1 + - bi-22-2-2 + - bi-22-2-3 + - bi-22-2-4 attributes: - color - - compatible_patient_profile - - equipment_operation + - material - pattern - - power_source -- id: bi-19-4-6-3 - name: Mobile Lifts + - target_gender +- id: bi-22-2-1 + name: Full Body Display Mannequins children: [] attributes: - color - - compatible_patient_profile - - equipment_operation + - material - pattern - - power_source -- id: bi-19-4-6-4 - name: Stand-Up Patient Lifts + - target_gender +- id: bi-22-2-2 + name: Head Display Mannequins children: [] attributes: - color - - compatible_patient_profile - - equipment_operation + - material - pattern - - power_source -- id: bi-19-4-7-1 - name: Training Stethoscopes + - target_gender +- id: bi-22-2-3 + name: Leg Display Mannequins children: [] attributes: - color + - material - pattern - - stethoscope_design - - stethoscope_technology - - tube_color -- id: bi-19-4-8-1 - name: Vital Signs Monitor Cuffs + - target_gender +- id: bi-22-2-4 + name: Torso Display Mannequins children: [] attributes: - color + - material - pattern -- id: bi-19-4-8-2 - name: Vital Signs Monitor Mounts - children: [] + - target_gender +- id: bi-22-3 + name: Mannequin Parts + children: + - bi-22-3-1 + - bi-22-3-2 + - bi-22-3-3 + - bi-22-3-4 attributes: - color + - material - pattern -- id: bi-19-4-8-3 - name: Vital Signs Monitor Power Cords +- id: bi-22-3-1 + name: Mannequin Arms children: [] attributes: - color + - material - pattern -- id: bi-19-4-8-4 - name: Vital Signs Monitor Sensors +- id: bi-22-3-2 + name: Mannequin Heads children: [] attributes: - color + - material - pattern -- id: bi-19-4-9-1 - name: ECG Monitors +- id: bi-22-3-3 + name: Mannequin Legs children: [] attributes: - color + - material - pattern - - power_source -- id: bi-19-4-9-2 - name: Multi-Parameter Monitors +- id: bi-22-3-4 + name: Mannequin Torsos children: [] attributes: - color + - material - pattern - - power_source -- id: bi-19-4-9-3 - name: Pulse Oximeter Monitors - children: [] +- id: bi-22-4 + name: Money Handling + children: + - bi-22-4-1 + - bi-22-4-2 + - bi-22-4-3 + - bi-22-4-4 + - bi-22-4-5 + - bi-22-4-6 + - bi-22-4-7 attributes: - color - pattern - - power_source -- id: bi-19-5-1-3 - name: Portable Chiropractic Tables +- id: bi-22-4-1 + name: Banknote Verifiers children: [] attributes: - - chiropractic_table_design - color + - currencies_supported - pattern - - furniture_fixture_material -- id: bi-19-5-1-4 - name: Stationary Chiropractic Tables - children: [] + - power_source + - verification_technology +- id: bi-22-4-2 + name: Cash Register & POS Terminal Accessories + children: + - bi-22-4-2-1 + - bi-22-4-2-2 + - bi-22-4-2-3 attributes: - - chiropractic_table_design - color - pattern - - furniture_fixture_material -- id: bi-19-5-2-1 - name: Examination Chairs +- id: bi-22-4-2-1 + name: Cash Drawers & Trays children: - - bi-19-5-2-1-2 - - bi-19-5-2-1-4 + - bi-22-4-2-1-2 + - bi-22-4-2-1-3 attributes: - color - - compatible_patient_profile + - material - pattern - - furniture_fixture_material -- id: bi-19-5-2-1-2 - name: Manual Examination Chairs +- id: bi-22-4-2-1-2 + name: Electronic Cash Drawers children: [] attributes: - color - - compatible_patient_profile + - material - pattern - - furniture_fixture_material -- id: bi-19-5-2-1-4 - name: Powered Examination Chairs +- id: bi-22-4-2-1-3 + name: Manual Cash Drawers children: [] attributes: - color - - compatible_patient_profile + - material - pattern - - furniture_fixture_material -- id: bi-19-5-2-2 - name: Examination Tables - children: - - bi-19-5-2-2-1 - - bi-19-5-2-2-2 +- id: bi-22-4-2-2 + name: Credit Card Terminals + children: [] attributes: - color - - compatible_patient_profile + - connectivity_technology + - mounting_type - pattern - - furniture_fixture_material -- id: bi-19-5-2-2-1 - name: Manual Examination Tables +- id: bi-22-4-2-3 + name: Signature Capture Pads children: [] attributes: - color - - compatible_patient_profile + - connectivity_technology + - display_resolution + - display_technology + - pad_display_profile - pattern - - furniture_fixture_material -- id: bi-19-5-2-2-2 - name: Powered Examination Tables - children: [] +- id: bi-22-4-3 + name: Cash Registers & POS Terminals + children: + - bi-22-4-3-1 + - bi-22-4-3-2 attributes: - color - - compatible_patient_profile - pattern - - furniture_fixture_material -- id: bi-19-5-3-2 - name: Full-Electric Beds +- id: bi-22-4-3-1 + name: Cash Registers children: [] attributes: - - bedding_size - color - - compatible_patient_profile + - connectivity_technology - pattern -- id: bi-19-5-3-3 - name: Manual Beds + - terminal_operation +- id: bi-22-4-3-2 + name: POS Terminals children: [] attributes: - - bedding_size - color - - compatible_patient_profile + - mounting_type + - operating_system - pattern -- id: bi-19-5-3-4 - name: Semi-Electric Beds +- id: bi-22-4-4 + name: Coin & Bill Counters children: [] attributes: - - bedding_size - color + - currency_type - pattern -- id: bi-19-5-4-1 - name: Bedside Cabinets + - power_source +- id: bi-22-4-5 + name: Money Changers children: [] attributes: - color + - currency_type + - display_technology + - housing_material - mounting_type - pattern - - furniture_fixture_material -- id: bi-19-5-4-2 - name: Exam Room Cabinets +- id: bi-22-4-6 + name: Money Deposit Bags children: [] attributes: - color - - mounting_type + - bag_case_material - pattern - - furniture_fixture_material -- id: bi-19-5-5-1-1 - name: Anesthesia Crash Carts + - usage_type +- id: bi-22-4-7 + name: Paper Coin Wrappers & Bill Straps children: [] attributes: - color + - currency_type - pattern - - furniture_fixture_material -- id: bi-19-5-5-1-2 - name: Emergency Crash Carts - children: [] +- id: bi-22-5 + name: Paper & Plastic Shopping Bags + children: + - bi-22-5-1 + - bi-22-5-2 + - bi-22-5-3 + - bi-22-5-4 attributes: + - accessory_size - color + - shopping_bag_material - pattern - - furniture_fixture_material -- id: bi-19-5-5-1-3 - name: Isolation Crash Carts +- id: bi-22-5-1 + name: Die Cut Shopping Bags children: [] attributes: + - accessory_size - color + - shopping_bag_material - pattern - - furniture_fixture_material -- id: bi-19-5-5-1-4 - name: Pediatric Crash Carts +- id: bi-22-5-2 + name: Rigid Handle Shopping Bags children: [] attributes: + - accessory_size - color + - shopping_bag_material - pattern - - furniture_fixture_material -- id: bi-19-5-6-2 - name: General Surgery Surgical Tables +- id: bi-22-5-3 + name: Soft Loop Shopping Bags children: [] attributes: + - accessory_size - color - - compatible_patient_profile + - shopping_bag_material - pattern - - power_source -- id: bi-19-5-6-3 - name: Orthopedic Surgical Tables +- id: bi-22-5-4 + name: T-Shirt Shopping Bags children: [] attributes: + - accessory_size - color - - compatible_patient_profile + - shopping_bag_material - pattern - - power_source -- id: bi-19-6-1-1 - name: Dressing Forceps +- id: bi-22-6 + name: Pricing Guns children: [] attributes: - color - - material - pattern -- id: bi-19-6-1-2 - name: Hemostatic Forceps +- id: bi-22-7 + name: Retail Display Cases children: [] attributes: - color - - material + - bag_case_material + - mounting_type - pattern -- id: bi-19-6-1-3 - name: Splinter Forceps +- id: bi-22-8 + name: Retail Display Props & Models children: [] attributes: - color - material - pattern -- id: bi-19-6-1-4 - name: Tissue Forceps - children: [] +- id: bi-23 + name: Science & Laboratory + children: + - bi-23-1 + - bi-23-2 + - bi-23-3 + - bi-23-4 + - bi-23-5 + - bi-23-6 attributes: - color - - material - pattern -- id: bi-19-6-4-1 - name: Surgical Needles +- id: bi-23-1 + name: Biochemicals children: - - bi-19-6-4-1-1 - - bi-19-6-4-1-2 - - bi-19-6-4-1-3 + - bi-23-1-1 + - bi-23-1-2 + - bi-23-1-3 attributes: + - chemical_grade + - chemical_purity - color - pattern -- id: bi-19-6-4-1-1 - name: Cutting Surgical Needles +- id: bi-23-1-1 + name: Buffers children: [] attributes: + - chemical_grade + - chemical_purity - color - pattern -- id: bi-19-6-4-1-2 - name: Reverse Cutting Surgical Needles +- id: bi-23-1-2 + name: Detergents children: [] attributes: + - chemical_grade + - chemical_purity - color - pattern -- id: bi-19-6-4-1-3 - name: Taper Surgical Needles +- id: bi-23-1-3 + name: Enzymes children: [] attributes: + - chemical_grade + - chemical_purity - color - pattern -- id: bi-19-6-4-2 - name: Surgical Sutures +- id: bi-23-2 + name: Dissection Kits children: - - bi-19-6-4-2-1 - - bi-19-6-4-2-2 + - bi-23-2-1 + - bi-23-2-2 attributes: - color - pattern -- id: bi-19-6-4-2-1 - name: Absorbable Surgical Sutures +- id: bi-23-2-1 + name: Professional Dissection Kits children: [] attributes: - color - pattern -- id: bi-19-6-4-2-2 - name: Non-Absorbable Surgical Sutures +- id: bi-23-2-2 + name: Training Dissection Kits children: [] attributes: - color - pattern -- id: bi-19-7-4-1 - name: Adhesive Removers - children: [] +- id: bi-23-3 + name: Laboratory Chemicals + children: + - bi-23-3-1 + - bi-23-3-2 + - bi-23-3-3 + - bi-23-3-4 attributes: - - accessory_size + - chemical_grade + - chemical_purity - color - pattern -- id: bi-19-7-4-2 - name: Ostomy Bags +- id: bi-23-3-1 + name: Acids children: [] attributes: - - accessory_size + - chemical_grade + - chemical_purity - color - pattern -- id: bi-19-7-4-3 - name: Ostomy Belts +- id: bi-23-3-2 + name: Bases children: [] attributes: - - accessory_size + - chemical_grade + - chemical_purity - color - pattern -- id: bi-19-7-4-4 - name: Skin Barriers +- id: bi-23-3-3 + name: Salts children: [] attributes: - - accessory_size + - chemical_grade + - chemical_purity - color - pattern -- id: bi-19-8-1-1 - name: Childbirth Training Mannequins +- id: bi-23-3-4 + name: Solvents children: [] attributes: - - age_group + - chemical_grade + - chemical_purity - color - pattern -- id: bi-19-8-1-2 - name: Choking Training Mannequins - children: [] +- id: bi-23-4 + name: Laboratory Equipment + children: + - bi-23-4-1 + - bi-23-4-2 + - bi-23-4-3 + - bi-23-4-4 + - bi-23-4-5 + - bi-23-4-6 + - bi-23-4-7 + - bi-23-4-8 + - bi-23-4-9 + - bi-23-4-10 + - bi-23-4-11 + - bi-23-4-12 + - bi-23-4-13 + - bi-23-4-14 attributes: - - age_group - color - pattern -- id: bi-19-8-1-3 - name: CPR Training Mannequins +- id: bi-23-4-1 + name: Autoclaves children: [] attributes: - - age_group + - autoclave_sterilization_method - color - pattern -- id: bi-19-8-1-4 - name: Trauma Training Mannequins +- id: bi-23-4-2 + name: Centrifuges children: [] attributes: - - age_group - color + - mounting_type - pattern -- id: bi-20-1 - name: Mining & Quarrying Machinery - children: - - bi-20-1-1 - - bi-20-1-2 +- id: bi-23-4-3 + name: Dry Ice Makers + children: [] attributes: - color + - mounting_type - pattern - - power_source -- id: bi-20-1-1 - name: Crushers - children: - - bi-20-1-1-1 - - bi-20-1-1-2 - - bi-20-1-1-3 - - bi-20-1-1-4 +- id: bi-23-4-4 + name: Freeze-Drying Machines + children: [] attributes: - color + - mounting_type - pattern - - power_source -- id: bi-20-1-1-1 - name: Cone Crushers +- id: bi-23-4-5 + name: Laboratory Blenders children: [] attributes: + - blending_type - color - pattern - - power_source -- id: bi-20-1-1-2 - name: Gyratory Crushers +- id: bi-23-4-6 + name: Laboratory Freezers children: [] attributes: - color + - laboratory_freezer_design - pattern - - power_source -- id: bi-20-1-1-3 - name: Impact Crushers - children: [] +- id: bi-23-4-7 + name: Laboratory Funnels + children: + - bi-23-4-7-1 + - bi-23-4-7-2 + - bi-23-4-7-3 + - bi-23-4-7-4 attributes: - color + - material - pattern - - power_source -- id: bi-20-1-1-4 - name: Jaw Crushers +- id: bi-23-4-7-1 + name: Dropping Laboratory Funnels children: [] attributes: - color + - material - pattern - - power_source -- id: bi-20-1-2 - name: Drilling Rigs +- id: bi-23-4-7-2 + name: Filter Laboratory Funnels children: [] attributes: - color - - drilling_method - - drilling_rig_orientation + - material - pattern - - power_source -- id: bi-20-2 - name: Mining & Quarrying Supplies +- id: bi-23-4-7-3 + name: Powder Laboratory Funnels children: [] attributes: - color - material - pattern -- id: bi-21-1-1-1 - name: Cannula Needles +- id: bi-23-4-7-4 + name: Separatory Laboratory Funnels children: [] attributes: - color - - needle_gauge + - material - pattern - - needle_material -- id: bi-21-1-1-2 - name: Dermal Punches +- id: bi-23-4-8 + name: Laboratory Hot Plates children: [] attributes: - color - material - - needle_gauge - pattern -- id: bi-21-2-3-1 - name: Coil Tattooing Machines +- id: bi-23-4-9 + name: Laboratory Ovens + children: + - bi-23-4-9-1 + - bi-23-4-9-2 + - bi-23-4-9-3 + attributes: + - color + - pattern +- id: bi-23-4-9-1 + name: Gravity Convection Laboratory Ovens + children: [] + attributes: + - color + - pattern +- id: bi-23-4-9-2 + name: Mechanical Convection Laboratory Ovens children: [] attributes: - color - - material - pattern - - power_source -- id: bi-21-2-3-2 - name: Pen Tattooing Machines +- id: bi-23-4-9-3 + name: Vacuum Laboratory Ovens children: [] attributes: - color - - material - pattern - - power_source -- id: bi-21-2-3-3 - name: Rotary Tattooing Machines - children: [] +- id: bi-23-4-10 + name: Microscope Accessories + children: + - bi-23-4-10-1 + - bi-23-4-10-2 + - bi-23-4-10-3 + - bi-23-4-10-4 + - bi-23-4-10-5 attributes: - color - - material - pattern - - power_source -- id: bi-21-2-4-1 - name: Curved Magnum Tattooing Needles +- id: bi-23-4-10-1 + name: Microscope Cameras children: [] attributes: + - camera_sensor_type - color - - needle_gauge - pattern - - needle_material -- id: bi-21-2-4-2 - name: Magnum Tattooing Needles - children: [] +- id: bi-23-4-10-2 + name: Microscope Eyepieces & Adapters + children: + - bi-23-4-10-2-1 + - bi-23-4-10-2-2 + - bi-23-4-10-2-3 + - bi-23-4-10-2-4 attributes: - color - - needle_gauge + - magnification + - eyepiece_adapter_material - pattern - - needle_material -- id: bi-21-2-4-3 - name: Round Liner Tattooing Needles +- id: bi-23-4-10-2-1 + name: Huygenian Eyepieces & Adapters children: [] attributes: - color - - needle_gauge + - magnification + - eyepiece_adapter_material - pattern - - needle_material -- id: bi-21-2-4-4 - name: Round Shader Tattooing Needles +- id: bi-23-4-10-2-2 + name: Kellner Eyepieces & Adapters children: [] attributes: - color - - needle_gauge + - magnification + - eyepiece_adapter_material - pattern - - needle_material -- id: bi-22-1-1 - name: Four-Way Clothing Display Racks +- id: bi-23-4-10-2-3 + name: Orthoscopic Eyepieces & Adapters children: [] attributes: - color - - material + - magnification + - eyepiece_adapter_material - pattern -- id: bi-22-1-2 - name: Round Clothing Display Racks +- id: bi-23-4-10-2-4 + name: Plössl Eyepieces & Adapters children: [] attributes: - color - - material + - magnification + - eyepiece_adapter_material - pattern -- id: bi-22-1-3 - name: Straight Clothing Display Racks - children: [] +- id: bi-23-4-10-3 + name: Microscope Objective Lenses + children: + - bi-23-4-10-3-1 + - bi-23-4-10-3-2 + - bi-23-4-10-3-3 attributes: - color - - material + - magnification + - maximum_magnification + - minimum_magnification - pattern -- id: bi-22-1-4 - name: Two-Way Clothing Display Racks +- id: bi-23-4-10-3-1 + name: Achromatic Microscope Lenses children: [] attributes: - color - - material + - field_of_view + - magnification + - maximum_magnification + - minimum_magnification - pattern -- id: bi-22-2-1 - name: Full Body Display Mannequins +- id: bi-23-4-10-3-2 + name: Apochromatic Microscope Lenses children: [] attributes: - color - - material + - field_of_view + - magnification + - maximum_magnification + - minimum_magnification - pattern - - target_gender -- id: bi-22-2-2 - name: Head Display Mannequins +- id: bi-23-4-10-3-3 + name: Fluorite Microscope Lenses children: [] attributes: - color - - material + - field_of_view + - magnification + - maximum_magnification + - minimum_magnification - pattern - - target_gender -- id: bi-22-2-3 - name: Leg Display Mannequins +- id: bi-23-4-10-4 + name: Microscope Replacement Bulbs children: [] attributes: + - bulb_type - color - - material - pattern - - target_gender -- id: bi-22-2-4 - name: Torso Display Mannequins - children: [] +- id: bi-23-4-10-5 + name: Microscope Slides + children: + - bi-23-4-10-5-1 + - bi-23-4-10-5-2 + - bi-23-4-10-5-3 + - bi-23-4-10-5-4 attributes: - color - - material + - microscope_slide_material - pattern - - target_gender -- id: bi-22-3-1 - name: Mannequin Arms +- id: bi-23-4-10-5-1 + name: Adhesive Microscope Slides children: [] attributes: - color - - material + - microscope_slide_material - pattern -- id: bi-22-3-2 - name: Mannequin Heads +- id: bi-23-4-10-5-2 + name: Charged Microscope Slides children: [] attributes: - color - - material + - microscope_slide_material - pattern -- id: bi-22-3-3 - name: Mannequin Legs +- id: bi-23-4-10-5-3 + name: Frosted Microscope Slides children: [] attributes: - color - - material + - microscope_slide_material - pattern -- id: bi-22-3-4 - name: Mannequin Torsos +- id: bi-23-4-10-5-4 + name: Plain Microscope Slides children: [] attributes: - color - - material + - microscope_slide_material - pattern -- id: bi-22-4-2-1-2 - name: Electronic Cash Drawers - children: [] +- id: bi-23-4-11 + name: Microscopes + children: + - bi-23-4-11-2 + - bi-23-4-11-3 + - bi-23-4-11-4 attributes: - color - - material + - illumination_technique + - magnification + - maximum_magnification - pattern -- id: bi-22-4-2-1-3 - name: Manual Cash Drawers +- id: bi-23-4-11-2 + name: Optical Microscopes children: [] attributes: - color - - material + - illumination_technique + - magnification + - maximum_magnification - pattern -- id: bi-22-5-1 - name: Die Cut Shopping Bags +- id: bi-23-4-11-3 + name: Projection Microscopes children: [] attributes: - - accessory_size - color + - illumination_technique + - magnification + - maximum_magnification - pattern - - shopping_bag_material -- id: bi-22-5-2 - name: Rigid Handle Shopping Bags +- id: bi-23-4-11-4 + name: USB Microscopes children: [] attributes: - - accessory_size - color + - illumination_technique + - magnification + - maximum_magnification - pattern - - shopping_bag_material -- id: bi-22-5-3 - name: Soft Loop Shopping Bags - children: [] +- id: bi-23-4-12 + name: Microtomes + children: + - bi-23-4-12-1 + - bi-23-4-12-2 + - bi-23-4-12-3 attributes: - - accessory_size - color - pattern - - shopping_bag_material -- id: bi-22-5-4 - name: T-Shirt Shopping Bags +- id: bi-23-4-12-1 + name: Cryostat Microtomes children: [] attributes: - - accessory_size - color - pattern - - shopping_bag_material -- id: bi-23-1-1 - name: Buffers +- id: bi-23-4-12-2 + name: Rotary Microtomes children: [] attributes: - - chemical_grade - - chemical_purity - color - pattern -- id: bi-23-1-2 - name: Detergents +- id: bi-23-4-12-3 + name: Sliding Microtomes children: [] attributes: - - chemical_grade - - chemical_purity - color - pattern -- id: bi-23-1-3 - name: Enzymes - children: [] +- id: bi-23-4-13 + name: Spectrometer Accessories + children: + - bi-23-4-13-1 + - bi-23-4-13-2 attributes: - - chemical_grade - - chemical_purity - color - pattern -- id: bi-23-2-1 - name: Professional Dissection Kits +- id: bi-23-4-13-1 + name: Cuvettes children: [] attributes: - color - pattern -- id: bi-23-2-2 - name: Training Dissection Kits +- id: bi-23-4-13-2 + name: Fiber Optic Probes children: [] attributes: - color - pattern -- id: bi-23-3-1 - name: Acids - children: [] +- id: bi-23-4-14 + name: Spectrometers + children: + - bi-23-4-14-1 + - bi-23-4-14-2 + - bi-23-4-14-3 + - bi-23-4-14-4 attributes: - - chemical_grade - - chemical_purity - color - pattern -- id: bi-23-3-2 - name: Bases +- id: bi-23-4-14-1 + name: Fluorescence Spectrometers children: [] attributes: - - chemical_grade - - chemical_purity - color - pattern -- id: bi-23-3-3 - name: Salts +- id: bi-23-4-14-2 + name: Fourier Transform Infrared (FT-IR) Spectrometers children: [] attributes: - - chemical_grade - - chemical_purity - color - pattern -- id: bi-23-3-4 - name: Solvents +- id: bi-23-4-14-3 + name: Raman Spectrometers children: [] attributes: - - chemical_grade - - chemical_purity - color - pattern -- id: bi-23-4-7-1 - name: Dropping Laboratory Funnels +- id: bi-23-4-14-4 + name: UV-Vis Spectrometers children: [] attributes: - color - - material - pattern -- id: bi-23-4-7-2 - name: Filter Laboratory Funnels +- id: bi-23-5 + name: Laboratory Specimens children: [] attributes: - color - - material - pattern -- id: bi-23-4-7-3 - name: Powder Laboratory Funnels - children: [] + - preservation_type +- id: bi-23-6 + name: Laboratory Supplies + children: + - bi-23-6-1 + - bi-23-6-2 + - bi-23-6-3 + - bi-23-6-4 + - bi-23-6-5 + - bi-23-6-6 + - bi-23-6-7 + - bi-23-6-8 attributes: - color - material - pattern -- id: bi-23-4-7-4 - name: Separatory Laboratory Funnels +- id: bi-23-6-1 + name: Beakers children: [] attributes: - color - material - pattern -- id: bi-23-4-9-1 - name: Gravity Convection Laboratory Ovens +- id: bi-23-6-2 + name: Graduated Cylinders children: [] attributes: - color + - material - pattern -- id: bi-23-4-9-2 - name: Mechanical Convection Laboratory Ovens - children: [] +- id: bi-23-6-3 + name: Laboratory Flasks + children: + - bi-23-6-3-1 + - bi-23-6-3-2 + - bi-23-6-3-3 + - bi-23-6-3-4 attributes: - color + - material - pattern -- id: bi-23-4-9-3 - name: Vacuum Laboratory Ovens +- id: bi-23-6-3-1 + name: Boiling Laboratory Flasks children: [] attributes: - color + - material - pattern -- id: bi-23-4-10-2-1 - name: Huygenian Eyepieces & Adapters +- id: bi-23-6-3-2 + name: Buchner Laboratory Flasks children: [] attributes: - color - - magnification + - material - pattern - - eyepiece_adapter_material -- id: bi-23-4-10-2-2 - name: Kellner Eyepieces & Adapters +- id: bi-23-6-3-3 + name: Erlenmeyer Laboratory Flasks children: [] attributes: - color - - magnification + - material - pattern - - eyepiece_adapter_material -- id: bi-23-4-10-2-3 - name: Orthoscopic Eyepieces & Adapters +- id: bi-23-6-3-4 + name: Volumetric Laboratory Flasks children: [] attributes: - color - - magnification + - material - pattern - - eyepiece_adapter_material -- id: bi-23-4-10-2-4 - name: Plössl Eyepieces & Adapters +- id: bi-23-6-4 + name: Petri Dishes children: [] attributes: - color - - magnification + - material - pattern - - eyepiece_adapter_material -- id: bi-23-4-10-3-1 - name: Achromatic Microscope Lenses - children: [] +- id: bi-23-6-5 + name: Pipettes + children: + - bi-23-6-5-1 + - bi-23-6-5-2 + - bi-23-6-5-3 attributes: - color - - field_of_view - - magnification - - maximum_magnification - - minimum_magnification + - material - pattern -- id: bi-23-4-10-3-2 - name: Apochromatic Microscope Lenses +- id: bi-23-6-5-1 + name: Graduated Pipettes children: [] attributes: - color - - field_of_view - - magnification - - maximum_magnification - - minimum_magnification + - material - pattern -- id: bi-23-4-10-3-3 - name: Fluorite Microscope Lenses +- id: bi-23-6-5-2 + name: Micropipettes children: [] attributes: - color - - field_of_view - - magnification - - maximum_magnification - - minimum_magnification + - material - pattern -- id: bi-23-4-10-5-1 - name: Adhesive Microscope Slides +- id: bi-23-6-5-3 + name: Volumetric Pipettes children: [] attributes: - color + - material - pattern - - microscope_slide_material -- id: bi-23-4-10-5-2 - name: Charged Microscope Slides +- id: bi-23-6-6 + name: Test Tube Racks children: [] attributes: - color + - housing_material - pattern - - microscope_slide_material -- id: bi-23-4-10-5-3 - name: Frosted Microscope Slides +- id: bi-23-6-7 + name: Test Tubes children: [] attributes: - color + - material - pattern - - microscope_slide_material -- id: bi-23-4-10-5-4 - name: Plain Microscope Slides +- id: bi-23-6-8 + name: Wash Bottles children: [] attributes: - color + - material - pattern - - microscope_slide_material -- id: bi-23-4-11-2 - name: Optical Microscopes - children: [] +- id: bi-24 + name: Signage + children: + - bi-24-1 + - bi-24-2 + - bi-24-3 + - bi-24-4 + - bi-24-5 + - bi-24-6 + - bi-24-7 + - bi-24-8 + - bi-24-9 + - bi-24-10 + - bi-24-11 + - bi-24-12 + - bi-24-13 attributes: - color - - illumination_technique - - magnification - - maximum_magnification - pattern -- id: bi-23-4-11-3 - name: Projection Microscopes +- id: bi-24-1 + name: Business Hour Signs children: [] attributes: + - accessory_size - color - - illumination_technique - - magnification - - maximum_magnification + - display_technology + - material + - mounting_type - pattern -- id: bi-23-4-11-4 - name: USB Microscopes + - suitable_space +- id: bi-24-2 + name: Digital Signs children: [] attributes: - color - - illumination_technique - - magnification - - maximum_magnification + - connectivity_technology + - display_resolution + - display_technology - pattern -- id: bi-23-4-12-1 - name: Cryostat Microtomes - children: [] + - suitable_space +- id: bi-24-3 + name: Electric Signs + children: + - bi-24-3-1 + - bi-24-3-2 attributes: - color + - display_sign_design + - display_technology - pattern -- id: bi-23-4-12-2 - name: Rotary Microtomes + - power_source + - suitable_space +- id: bi-24-3-1 + name: LED Signs children: [] attributes: - color + - display_sign_design + - display_technology - pattern -- id: bi-23-4-12-3 - name: Sliding Microtomes + - power_source + - suitable_space +- id: bi-24-3-2 + name: Neon Signs children: [] attributes: - color + - display_sign_design + - display_technology - pattern -- id: bi-23-4-13-1 - name: Cuvettes + - power_source + - suitable_space +- id: bi-24-4 + name: Emergency & Exit Signs children: [] attributes: - color + - display_technology + - emergency_safety_sign_design + - light_features - pattern -- id: bi-23-4-13-2 - name: Fiber Optic Probes + - power_source + - suitable_space +- id: bi-24-5 + name: Facility Identification Signs children: [] attributes: - color + - display_technology + - facility_sign_design + - material + - mounting_type - pattern -- id: bi-23-4-14-1 - name: Fluorescence Spectrometers + - suitable_space +- id: bi-24-6 + name: Open & Closed Signs children: [] attributes: - color - - pattern -- id: bi-23-4-14-2 - name: Fourier Transform Infrared (FT-IR) Spectrometers + - display_technology + - material + - mounting_type + - open_closed_sign_design + - pattern + - suitable_space +- id: bi-24-7 + name: Parking Signs & Permits children: [] attributes: - color + - material + - mounting_type + - parking_sign_design - pattern -- id: bi-23-4-14-3 - name: Raman Spectrometers + - suitable_space +- id: bi-24-8 + name: Policy Signs children: [] attributes: - color + - material + - mounting_type - pattern -- id: bi-23-4-14-4 - name: UV-Vis Spectrometers + - policy_sign_design + - suitable_space +- id: bi-24-9 + name: Retail & Sale Signs children: [] attributes: - color + - display_technology + - material + - mounting_type - pattern -- id: bi-23-6-3-1 - name: Boiling Laboratory Flasks + - retail_sale_sign_design + - suitable_space +- id: bi-24-10 + name: Road & Traffic Signs children: [] attributes: - color - material + - mounting_type - pattern -- id: bi-23-6-3-2 - name: Buchner Laboratory Flasks + - road_sign_design + - suitable_space +- id: bi-24-11 + name: Safety & Warning Signs children: [] attributes: - color + - emergency_safety_sign_design - material + - mounting_type - pattern -- id: bi-23-6-3-3 - name: Erlenmeyer Laboratory Flasks + - warning_category +- id: bi-24-12 + name: Security Signs children: [] attributes: - color + - emergency_safety_sign_design - material + - mounting_type - pattern -- id: bi-23-6-3-4 - name: Volumetric Laboratory Flasks + - warning_category +- id: bi-24-13 + name: Sidewalk & Yard Signs children: [] attributes: - color - material + - mounting_type - pattern -- id: bi-23-6-5-1 - name: Graduated Pipettes - children: [] + - retail_sale_sign_design + - suitable_space +- id: bi-25 + name: Work Safety Protective Gear + children: + - bi-25-1 + - bi-25-2 + - bi-25-3 + - bi-25-4 + - bi-25-5 + - bi-25-6 + - bi-25-7 + - bi-25-8 + - bi-25-9 + - bi-25-10 + - bi-25-11 + - bi-25-12 attributes: - color - - material - pattern -- id: bi-23-6-5-2 - name: Micropipettes +- id: bi-25-1 + name: Bullet Proof Vests children: [] attributes: + - accessory_size + - bullet_protection_level - color - - material + - gear_material - pattern -- id: bi-23-6-5-3 - name: Volumetric Pipettes - children: [] +- id: bi-25-2 + name: Gas Mask & Respirator Accessories + children: + - bi-25-2-1 + - bi-25-2-2 + - bi-25-2-3 attributes: - color - - material + - filtration_class - pattern - id: bi-25-2-1 name: Combination Cartridges @@ -4467,30 +4326,69 @@ - color - filtration_class - pattern +- id: bi-25-3 + name: Hardhats + children: [] + attributes: + - color + - hardhat_class + - gear_material + - pattern + - protection_type +- id: bi-25-4 + name: Hazardous Material Suits + children: [] + attributes: + - accessory_size + - color + - hazmat_suit_design + - gear_material + - pattern +- id: bi-25-5 + name: Protective Aprons + children: + - bi-25-5-1 + - bi-25-5-2 + - bi-25-5-3 + attributes: + - accessory_size + - color + - gear_material + - pattern - id: bi-25-5-1 name: Bib Protective Aprons children: [] attributes: - accessory_size - color - - pattern - gear_material + - pattern - id: bi-25-5-2 name: Cobbler Protective Aprons children: [] attributes: - accessory_size - color - - pattern - gear_material + - pattern - id: bi-25-5-3 name: Waist Protective Aprons children: [] attributes: - accessory_size - color - - pattern - gear_material + - pattern +- id: bi-25-6 + name: Protective Eyewear + children: + - bi-25-6-1 + - bi-25-6-2 + - bi-25-6-3 + attributes: + - color + - lens_color + - pattern - id: bi-25-6-1 name: Face Shields children: [] @@ -4512,80 +4410,182 @@ - color - lens_color - pattern +- id: bi-25-7 + name: Protective Masks + children: + - bi-25-7-1 + - bi-25-7-2 + - bi-25-7-3 + - bi-25-7-4 + attributes: + - accessory_size + - color + - gear_material + - pattern + - usage_type +- id: bi-25-7-1 + name: Dust Masks + children: [] + attributes: + - accessory_size + - color + - dust_mask_type + - filtration_class + - gear_material + - pattern + - usage_type +- id: bi-25-7-2 + name: Fireman's Masks + children: [] + attributes: + - accessory_size + - color + - material + - pattern + - usage_type +- id: bi-25-7-3 + name: Gas Masks & Respirators + children: [] + attributes: + - accessory_size + - color + - gear_material + - pattern + - usage_type +- id: bi-25-7-4 + name: Medical Masks + children: [] + attributes: + - accessory_size + - color + - gear_material + - pattern + - usage_type +- id: bi-25-8 + name: Safety Gloves + children: + - bi-25-8-1 + - bi-25-8-2 + - bi-25-8-3 + - bi-25-8-4 + attributes: + - accessory_size + - color + - handwear_material + - pattern - id: bi-25-8-1 name: Chemical-Resistant Safety Gloves children: [] attributes: - accessory_size - color - - pattern - handwear_material + - pattern - id: bi-25-8-2 name: Cut-Resistant Safety Gloves children: [] attributes: - accessory_size - color - - pattern - handwear_material + - pattern - id: bi-25-8-3 name: Electrical-Resistant Safety Gloves children: [] attributes: - accessory_size - color - - pattern - handwear_material + - pattern - id: bi-25-8-4 name: Heat-Resistant Safety Gloves children: [] attributes: - accessory_size - color - - pattern - handwear_material + - pattern +- id: bi-25-9 + name: Safety Knee Pads + children: [] + attributes: + - accessory_size + - attachment_type + - color + - gear_material + - pattern +- id: bi-25-10 + name: Welding Helmets + children: [] + attributes: + - color + - helmet_shade_design + - pattern + - viewing_area_height + - viewing_area_width +- id: bi-25-11 + name: Work Safety Harnesses + children: + - bi-25-11-1 + - bi-25-11-2 + - bi-25-11-3 + attributes: + - accessory_size + - color + - gear_material + - pattern - id: bi-25-11-1 name: Cross-Chest Work Safety Harnesses children: [] attributes: - accessory_size - color - - pattern - gear_material + - pattern - id: bi-25-11-2 name: Full-Body Work Safety Harnesses children: [] attributes: - accessory_size - color - - pattern - gear_material + - pattern - id: bi-25-11-3 name: Vest-Style Work Safety Harnesses children: [] attributes: - accessory_size - color + - gear_material - pattern +- id: bi-25-12 + name: Work Safety Tethers + children: + - bi-25-12-1 + - bi-25-12-2 + - bi-25-12-3 + attributes: + - color - gear_material + - pattern - id: bi-25-12-1 name: Anchorage Work Safety Tethers children: [] attributes: - color - - pattern - gear_material + - pattern - id: bi-25-12-2 name: Tool Belt Work Safety Tethers children: [] attributes: - color - - pattern - gear_material + - pattern - id: bi-25-12-3 name: Wrist Work Safety Tethers children: [] attributes: - color - - pattern - gear_material + - pattern diff --git a/data/categories/bt_baby_toddler.yml b/data/categories/bt_baby_toddler.yml index e80203b9..bad8d06f 100644 --- a/data/categories/bt_baby_toddler.yml +++ b/data/categories/bt_baby_toddler.yml @@ -9,11 +9,11 @@ - bt-5 - bt-6 - bt-7 + - bt-8 - bt-9 - bt-10 - bt-11 - bt-12 - - bt-8 attributes: [] - id: bt-1 name: Baby Bathing @@ -37,6 +37,51 @@ - material - pattern - safety_certifications +- id: bt-1-1-1 + name: Bath Rings + children: [] + attributes: + - infant_age_group + - color + - material + - pattern + - safety_certifications +- id: bt-1-1-2 + name: Bath Seats + children: [] + attributes: + - infant_age_group + - color + - material + - pattern + - safety_certifications +- id: bt-1-1-3 + name: Bath Supports + children: [] + attributes: + - infant_age_group + - color + - material + - pattern + - safety_certifications +- id: bt-1-1-4 + name: Bathtubs + children: [] + attributes: + - infant_age_group + - color + - material + - pattern + - safety_certifications +- id: bt-1-1-5 + name: Tummy Tubs + children: [] + attributes: + - infant_age_group + - color + - material + - pattern + - safety_certifications - id: bt-1-2 name: Shower Visors children: @@ -46,6 +91,14 @@ - color - material - pattern +- id: bt-1-2-1 + name: Hair Rinse Cups + children: [] + attributes: + - infant_age_group + - color + - material + - pattern - id: bt-2 name: Baby Gift Sets children: [] @@ -97,742 +150,17 @@ attributes: - wipe_fragrance - material -- id: bt-3-5 - name: Pacifiers & Teethers - children: - - bt-3-5-1 - - bt-3-5-2 - attributes: - - infant_age_group - - color - - material - - pattern - - pacifier_teether_design -- id: bt-4 - name: Baby Safety - children: - - bt-4-1 - - bt-4-2 - - bt-4-3 - - bt-4-4 - - bt-4-5 - - bt-4-6 - attributes: [] -- id: bt-4-1 - name: Baby & Pet Gate Accessories - children: - - bt-4-1-1 - - bt-4-1-2 - - bt-4-1-3 - - bt-4-1-4 - - bt-4-1-5 - attributes: - - color - - material -- id: bt-4-2 - name: Baby & Pet Gates - children: - - bt-4-2-1 - - bt-4-2-2 - - bt-4-2-3 - attributes: - - material -- id: bt-4-3 - name: Baby Monitors - children: - - bt-4-3-1 - - bt-4-3-2 - - bt-4-3-3 - attributes: - - connectivity_technology - - display_color_mode - - range_type -- id: bt-4-4 - name: Baby Safety Harnesses & Leashes - children: - - bt-4-4-1 - - bt-4-4-2 - - bt-4-4-3 - attributes: - - material -- id: bt-4-5 - name: Baby Safety Locks & Guards - children: - - bt-4-5-1 - - bt-4-5-2 - - bt-4-5-3 - - bt-4-5-4 - - bt-4-5-5 - attributes: - - color - - safety_device_installation - - locking_mechanism - - material -- id: bt-4-6 - name: Baby Safety Rails - children: - - bt-4-6-1 - - bt-4-6-2 - attributes: - - color - - safety_rail_installation - - material -- id: bt-5 - name: Baby Toys & Activity Equipment - children: - - bt-5-1 - - bt-5-2 - - bt-5-3 - - bt-5-4 - - bt-5-5 - - bt-5-6 - - bt-5-7 - - bt-5-8 - - bt-5-9 - - bt-5-10 - - bt-5-11 - - bt-5-12 - attributes: - - color -- id: bt-5-1 - name: Alphabet Toys - children: - - bt-5-1-1 - - bt-5-1-2 - - bt-5-1-3 - - bt-5-1-4 - - bt-5-1-5 - attributes: - - color - - toy_game_material -- id: bt-5-2 - name: Baby Activity Toys - children: - - bt-5-2-1 - - bt-5-2-2 - - bt-5-2-3 - - bt-5-2-4 - attributes: - - color - - pattern - - toy_game_material -- id: bt-5-3 - name: Baby Bouncers & Rockers - children: - - bt-5-3-1 - - bt-5-3-2 - attributes: - - toy_game_material -- id: bt-5-4 - name: Baby Jumpers & Swings - children: - - bt-5-4-1 - - bt-5-4-2 - attributes: - - toy_game_material -- id: bt-5-5 - name: Baby Mobile Accessories - children: - - bt-5-5-1 - - bt-5-5-2 - - bt-5-5-3 - attributes: - - toy_game_material -- id: bt-5-6 - name: Baby Mobiles - children: - - bt-5-6-1 - - bt-5-6-2 - - bt-5-6-3 - attributes: - - toy_game_material -- id: bt-5-7 - name: Baby Soothers - children: - - bt-5-7-1 - - bt-5-7-2 - - bt-5-7-3 - attributes: - - toy_game_material -- id: bt-5-8 - name: Baby Walkers & Entertainers - children: - - bt-5-8-1 - - bt-5-8-2 - attributes: - - toy_game_material -- id: bt-5-9 - name: Play Mats & Gyms - children: - - bt-5-9-1 - - bt-5-9-2 - attributes: - - color - - pattern -- id: bt-5-9-1 - name: Play Gyms - children: [] - attributes: - - color - - pattern - - toy_game_material -- id: bt-5-9-2 - name: Play Mats - children: [] - attributes: - - infant_age_group - - color - - pattern - - toy_game_material -- id: bt-5-10 - name: Play Yards - children: [] - attributes: - - infant_age_group - - color - - pattern - - toy_game_material -- id: bt-5-11 - name: Push & Pull Toys - children: [] - attributes: - - infant_age_group - - color - - pattern - - toy_game_material -- id: bt-5-12 - name: Sorting & Stacking Toys - children: [] - attributes: - - infant_age_group - - color - - pattern - - toy_game_material -- id: bt-6 - name: Baby Transport - children: - - bt-6-1 - - bt-6-2 - - bt-6-3 - attributes: - - color - - pattern -- id: bt-6-1 - name: Baby & Toddler Car Seats - children: - - bt-6-1-1 - - bt-6-1-2 - - bt-6-1-3 - - bt-6-1-4 - attributes: - - color - - pattern -- id: bt-6-2 - name: Baby Carriers - children: - - bt-6-2-1 - - bt-6-2-2 - - bt-6-2-3 - - bt-6-2-4 - - bt-6-2-5 - attributes: - - color - - pattern -- id: bt-6-3 - name: Baby Strollers - children: - - bt-6-3-1 - - bt-6-3-2 - - bt-6-3-3 - - bt-6-3-4 - - bt-6-3-5 - - bt-6-3-6 - attributes: - - color - - pattern -- id: bt-7 - name: Baby Transport Accessories - children: - - bt-7-1 - - bt-7-2 - - bt-7-3 - - bt-7-4 - - bt-7-5 - attributes: - - color - - pattern -- id: bt-7-1 - name: Baby & Toddler Car Seat Accessories - children: - - bt-7-1-1 - - bt-7-1-2 - - bt-7-1-3 - - bt-7-1-4 - - bt-7-1-5 - - bt-7-1-6 - attributes: - - color - - pattern -- id: bt-7-2 - name: Baby Carrier Accessories - children: - - bt-7-2-1 - - bt-7-2-2 - - bt-7-2-3 - - bt-7-2-4 - - bt-7-2-5 - - bt-7-2-6 - attributes: - - color - - pattern -- id: bt-7-3 - name: Baby Stroller Accessories - children: - - bt-7-3-1 - - bt-7-3-2 - - bt-7-3-3 - - bt-7-3-4 - - bt-7-3-5 - - bt-7-3-6 - - bt-7-3-7 - attributes: - - color - - pattern -- id: bt-7-4 - name: Baby Transport Liners & Sacks - children: [] - attributes: - - color - - compatible_baby_transport_type - - pattern - - fabric -- id: bt-7-5 - name: Shopping Cart & High Chair Covers - children: [] - attributes: - - color - - compatible_baby_chair_type - - pattern - - fabric -- id: bt-9 - name: Diapering - children: - - bt-9-1 - - bt-9-2 - - bt-9-3 - - bt-9-4 - - bt-9-5 - - bt-9-6 - - bt-9-7 - - bt-9-8 - - bt-9-9 - - bt-9-10 - - bt-9-11 - - bt-9-12 - attributes: [] -- id: bt-9-1 - name: Baby Wipe Dispensers & Warmers - children: - - bt-9-1-1 - - bt-9-1-2 - - bt-9-1-3 - attributes: - - color -- id: bt-9-2 - name: Baby Wipes - children: - - bt-9-2-1 - - bt-9-2-2 - - bt-9-2-3 - attributes: - - color - - pattern -- id: bt-9-3 - name: Changing Mat & Tray Covers - children: - - bt-9-3-1 - - bt-9-3-2 - - bt-9-3-3 - attributes: - - color - - pattern -- id: bt-9-4 - name: Changing Mats & Trays - children: - - bt-9-4-1 - - bt-9-4-2 - - bt-9-4-3 - attributes: - - color - - pattern -- id: bt-9-5 - name: Diaper Kits - children: - - bt-9-5-1 - - bt-9-5-2 - - bt-9-5-3 - attributes: - - color - - pattern -- id: bt-9-6 - name: Diaper Liners - children: - - bt-9-6-1 - - bt-9-6-2 - - bt-9-6-3 - attributes: - - color - - pattern -- id: bt-9-7 - name: Diaper Organizers - children: - - bt-9-7-1 - - bt-9-7-2 - - bt-9-7-3 - - bt-9-7-4 - attributes: - - color - - pattern -- id: bt-9-8 - name: Diaper Pail Accessories - children: - - bt-9-8-1 - - bt-9-8-2 - - bt-9-8-3 - - bt-9-8-4 - attributes: - - color - - pattern -- id: bt-9-9 - name: Diaper Pails - children: - - bt-9-9-1 - - bt-9-9-3 - attributes: - - color - - pattern -- id: bt-9-10 - name: Diaper Rash Treatments - children: - - bt-9-10-1 - - bt-9-10-2 - - bt-9-10-3 - - bt-9-10-4 - attributes: - - dispenser_type - - fragrance_level - - ingredients - - treatment_texture -- id: bt-9-11 - name: Diaper Wet Bags - children: - - bt-9-11-2 - - bt-9-11-3 - attributes: - - closure_type - - color - - pattern - - diaper_bag_material -- id: bt-9-12 - name: Diapers - children: - - bt-9-12-1 - - bt-9-12-2 - - bt-9-12-3 - - bt-9-12-4 - - bt-9-12-5 - attributes: - - diaper_size -- id: bt-10 - name: Nursing & Feeding - children: - - bt-10-1 - - bt-10-2 - - bt-10-3 - - bt-10-4 - - bt-10-5 - - bt-10-6 - - bt-10-7 - - bt-10-8 - - bt-10-9 - - bt-10-10 - - bt-10-11 - - bt-10-12 - - bt-10-13 - - bt-10-14 - - bt-10-15 - attributes: [] -- id: bt-10-1 - name: Baby & Toddler Food - children: - - bt-10-1-2 - - bt-10-1-3 - - bt-10-1-4 - - bt-10-1-5 - - bt-10-1-6 - - bt-10-1-1 - attributes: [] -- id: bt-10-1-2 - name: Baby Drinks - children: - - bt-10-1-2-1 - - bt-10-1-2-2 - attributes: - - infant_age_group -- id: bt-10-1-3 - name: Baby Food - children: [] - attributes: - - infant_age_group - - baby_food_flavor -- id: bt-10-1-4 - name: Baby Formula - children: - - bt-10-1-4-1 - - bt-10-1-4-2 - - bt-10-1-4-3 - - bt-10-1-4-4 - attributes: - - formula_level -- id: bt-10-1-5 - name: Baby Snacks - children: [] - attributes: - - infant_age_group - - dietary_preferences - - baby_snack_flavor - - baby_snack_texture -- id: bt-10-1-6 - name: Toddler Nutrition Drinks & Shakes - children: [] - attributes: - - infant_age_group - - dietary_preferences - - baby_food_flavor -- id: bt-10-2 - name: Baby Bottle Nipples & Liners - children: - - bt-10-2-1 - - bt-10-2-2 - attributes: - - material -- id: bt-10-2-1 - name: Baby Bottle Liners - children: [] - attributes: - - compatible_baby_bottle_design - - usage_type - - material -- id: bt-10-2-2 - name: Baby Bottle Nipples - children: - - bt-10-2-2-1 - - bt-10-2-2-2 - - bt-10-2-2-3 - attributes: - - material -- id: bt-10-3 - name: Baby Bottles - children: - - bt-10-3-1 - - bt-10-3-2 - - bt-10-3-3 - attributes: [] -- id: bt-10-4 - name: Baby Care Timers - children: - - bt-10-4-1 - - bt-10-4-2 - attributes: - - display_technology - - power_source -- id: bt-10-5 - name: Bibs - children: [] - attributes: - - closure_type - - color - - material - - pattern - - bib_design -- id: bt-10-6 - name: Bottle Warmers & Sterilizers - children: - - bt-10-6-1 - - bt-10-6-2 - attributes: [] -- id: bt-10-7 - name: Breast Milk Storage Containers - children: [] - attributes: - - closure_type - - material - - usage_type - - sterilization_instructions -- id: bt-10-8 - name: Breast Pump Accessories - children: - - bt-10-8-2 - - bt-10-8-3 - - bt-10-8-4 - - bt-10-8-5 - - bt-10-8-6 - - bt-10-8-7 - attributes: - - material -- id: bt-10-9 - name: Breast Pumps - children: - - bt-10-9-1 - - bt-10-9-2 - - bt-10-9-3 - attributes: - - pump_accessories - - cleaning_instructions -- id: bt-10-10 - name: Burp Cloths - children: [] - attributes: - - cleaning_instructions - - closure_type - - color - - material - - pattern -- id: bt-10-11 - name: Nursing Covers - children: [] - attributes: - - closure_type - - color - - nursing_cover_coverage - - pattern - - fabric -- id: bt-10-12 - name: Nursing Pads & Shields - children: - - bt-10-12-3 - - bt-10-12-1 - - bt-10-12-2 - attributes: - - material - - nursing_pad_design -- id: bt-10-13 - name: Nursing Pillow Covers - children: [] - attributes: - - cover_closure_design - - color - - pattern - - fabric -- id: bt-10-14 - name: Nursing Pillows - children: [] - attributes: - - color - - firmness - - material - - pattern - - nursing_pillow_shape -- id: bt-10-15 - name: Sippy Cups - children: [] - attributes: - - color - - lid_type - - material - - pattern - - spout_type -- id: bt-11 - name: Potty Training - children: - - bt-11-2 - - bt-11-1 - - bt-11-3 - attributes: - - material -- id: bt-11-2 - name: Potty Training Kits - children: [] - attributes: - - color - - potty_training_kit_components - - material - - pattern -- id: bt-12 - name: Swaddling & Receiving Blankets - children: - - bt-12-1 - - bt-12-2 - attributes: - - material -- id: bt-12-1 - name: Receiving Blankets - children: [] - attributes: - - color - - material - - pattern -- id: bt-12-2 - name: Swaddling Blankets - children: [] - attributes: - - closure_type - - color - - material - - pattern -- id: bt-1-1-1 - name: Bath Rings - children: [] - attributes: - - infant_age_group - - color - - material - - pattern - - safety_certifications -- id: bt-1-1-2 - name: Bath Seats - children: [] - attributes: - - infant_age_group - - color - - material - - pattern - - safety_certifications -- id: bt-1-1-3 - name: Bath Supports - children: [] - attributes: - - infant_age_group - - color - - material - - pattern - - safety_certifications -- id: bt-1-1-4 - name: Bathtubs - children: [] - attributes: - - infant_age_group - - color - - material - - pattern - - safety_certifications -- id: bt-1-1-5 - name: Tummy Tubs - children: [] - attributes: - - infant_age_group - - color - - material - - pattern - - safety_certifications -- id: bt-1-2-1 - name: Hair Rinse Cups - children: [] +- id: bt-3-5 + name: Pacifiers & Teethers + children: + - bt-3-5-1 + - bt-3-5-2 attributes: - infant_age_group - color - material - pattern + - pacifier_teether_design - id: bt-3-5-1 name: Pacifiers children: [] @@ -852,6 +180,27 @@ - material - pattern - pacifier_teether_design +- id: bt-4 + name: Baby Safety + children: + - bt-4-1 + - bt-4-2 + - bt-4-3 + - bt-4-4 + - bt-4-5 + - bt-4-6 + attributes: [] +- id: bt-4-1 + name: Baby & Pet Gate Accessories + children: + - bt-4-1-1 + - bt-4-1-2 + - bt-4-1-3 + - bt-4-1-4 + - bt-4-1-5 + attributes: + - color + - material - id: bt-4-1-1 name: Door Stoppers children: [] @@ -889,6 +238,14 @@ - color - safety_device_installation - material +- id: bt-4-2 + name: Baby & Pet Gates + children: + - bt-4-2-1 + - bt-4-2-2 + - bt-4-2-3 + attributes: + - material - id: bt-4-2-1 name: Retractable Gates children: [] @@ -916,6 +273,16 @@ - locking_mechanism - gate_mounting_type - opening_mechanism +- id: bt-4-3 + name: Baby Monitors + children: + - bt-4-3-1 + - bt-4-3-2 + - bt-4-3-3 + attributes: + - connectivity_technology + - display_color_mode + - range_type - id: bt-4-3-1 name: Audio & Video Baby Monitors children: [] @@ -937,6 +304,14 @@ - connectivity_technology - display_color_mode - range_type +- id: bt-4-4 + name: Baby Safety Harnesses & Leashes + children: + - bt-4-4-1 + - bt-4-4-2 + - bt-4-4-3 + attributes: + - material - id: bt-4-4-1 name: Harnesses children: [] @@ -964,6 +339,19 @@ - color - material - pattern +- id: bt-4-5 + name: Baby Safety Locks & Guards + children: + - bt-4-5-1 + - bt-4-5-2 + - bt-4-5-3 + - bt-4-5-4 + - bt-4-5-5 + attributes: + - color + - safety_device_installation + - locking_mechanism + - material - id: bt-4-5-1 name: Cabinet Locks children: [] @@ -1004,6 +392,15 @@ - safety_device_installation - locking_mechanism - material +- id: bt-4-6 + name: Baby Safety Rails + children: + - bt-4-6-1 + - bt-4-6-2 + attributes: + - color + - safety_rail_installation + - material - id: bt-4-6-1 name: Bed Safety Rails children: [] @@ -1018,6 +415,34 @@ - color - safety_rail_installation - material +- id: bt-5 + name: Baby Toys & Activity Equipment + children: + - bt-5-1 + - bt-5-2 + - bt-5-3 + - bt-5-4 + - bt-5-5 + - bt-5-6 + - bt-5-7 + - bt-5-8 + - bt-5-9 + - bt-5-10 + - bt-5-11 + - bt-5-12 + attributes: + - color +- id: bt-5-1 + name: Alphabet Toys + children: + - bt-5-1-1 + - bt-5-1-2 + - bt-5-1-3 + - bt-5-1-4 + - bt-5-1-5 + attributes: + - color + - toy_game_material - id: bt-5-1-1 name: Alphabet Blocks children: [] @@ -1058,91 +483,132 @@ - color - language - toy_game_material +- id: bt-5-2 + name: Baby Activity Toys + children: + - bt-5-2-1 + - bt-5-2-2 + - bt-5-2-3 + - bt-5-2-4 + attributes: + - color + - toy_game_material + - pattern - id: bt-5-2-1 name: Activity Centers children: [] attributes: - infant_age_group - color - - pattern - toy_game_material + - pattern - id: bt-5-2-2 name: Musical Toys children: [] attributes: - infant_age_group - color - - pattern - toy_game_material + - pattern - id: bt-5-2-3 name: Rattles children: [] attributes: - infant_age_group - color - - pattern - toy_game_material + - pattern - id: bt-5-2-4 name: Teething Toys children: [] attributes: - infant_age_group - color + - toy_game_material - pattern +- id: bt-5-3 + name: Baby Bouncers & Rockers + children: + - bt-5-3-1 + - bt-5-3-2 + attributes: - toy_game_material - id: bt-5-3-1 name: Baby Bouncers children: [] attributes: - infant_age_group + - toy_game_material - motion - safety_features - - toy_game_material - id: bt-5-3-2 name: Baby Rockers children: [] attributes: - infant_age_group + - toy_game_material - motion - safety_features +- id: bt-5-4 + name: Baby Jumpers & Swings + children: + - bt-5-4-1 + - bt-5-4-2 + attributes: - toy_game_material - id: bt-5-4-1 name: Baby Jumpers children: [] attributes: - infant_age_group - - motion - toy_game_material + - motion - id: bt-5-4-2 name: Baby Swings children: [] attributes: - infant_age_group + - toy_game_material - motion +- id: bt-5-5 + name: Baby Mobile Accessories + children: + - bt-5-5-1 + - bt-5-5-2 + - bt-5-5-3 + attributes: - toy_game_material - id: bt-5-5-1 name: Mobile Arms children: [] attributes: - color + - toy_game_material - mobile_mounting_type - pattern - - toy_game_material - id: bt-5-5-2 name: Mobile Attachments children: [] attributes: - color + - toy_game_material - mobile_mounting_type - pattern - - toy_game_material - id: bt-5-5-3 name: Mobile Holders children: [] attributes: - color + - toy_game_material - mobile_mounting_type - pattern +- id: bt-5-6 + name: Baby Mobiles + children: + - bt-5-6-1 + - bt-5-6-2 + - bt-5-6-3 + attributes: - toy_game_material - id: bt-5-6-1 name: Ceiling Mobiles @@ -1151,10 +617,10 @@ - infant_age_group - attachment_method - color + - toy_game_material - mobile_movement - pattern - nursery_theme - - toy_game_material - id: bt-5-6-2 name: Crib Mobiles children: [] @@ -1162,10 +628,10 @@ - infant_age_group - attachment_method - color + - toy_game_material - mobile_movement - pattern - nursery_theme - - toy_game_material - id: bt-5-6-3 name: Stroller Mobiles children: [] @@ -1173,9 +639,17 @@ - infant_age_group - attachment_method - color + - toy_game_material - mobile_movement - pattern - nursery_theme +- id: bt-5-7 + name: Baby Soothers + children: + - bt-5-7-1 + - bt-5-7-2 + - bt-5-7-3 + attributes: - toy_game_material - id: bt-5-7-1 name: Night Lights @@ -1185,10 +659,10 @@ - attachment_method - color - light_options + - toy_game_material - pattern - power_source - soothing_sounds - - toy_game_material - id: bt-5-7-2 name: Plush Toys children: [] @@ -1197,10 +671,10 @@ - attachment_method - color - light_options + - toy_game_material - pattern - power_source - soothing_sounds - - toy_game_material - id: bt-5-7-3 name: Sound Machines children: [] @@ -1209,9 +683,16 @@ - attachment_method - color - light_options + - toy_game_material - pattern - power_source - soothing_sounds +- id: bt-5-8 + name: Baby Walkers & Entertainers + children: + - bt-5-8-1 + - bt-5-8-2 + attributes: - toy_game_material - id: bt-5-8-1 name: Baby Walkers @@ -1219,16 +700,82 @@ attributes: - infant_age_group - color - - pattern - toy_game_material + - pattern - id: bt-5-8-2 name: Jumperoos children: [] attributes: - infant_age_group - color + - toy_game_material + - pattern +- id: bt-5-9 + name: Play Mats & Gyms + children: + - bt-5-9-1 + - bt-5-9-2 + attributes: + - color + - pattern +- id: bt-5-9-1 + name: Play Gyms + children: [] + attributes: + - color + - toy_game_material + - pattern +- id: bt-5-9-2 + name: Play Mats + children: [] + attributes: + - infant_age_group + - color + - toy_game_material + - pattern +- id: bt-5-10 + name: Play Yards + children: [] + attributes: + - infant_age_group + - color + - toy_game_material + - pattern +- id: bt-5-11 + name: Push & Pull Toys + children: [] + attributes: + - infant_age_group + - color + - toy_game_material - pattern +- id: bt-5-12 + name: Sorting & Stacking Toys + children: [] + attributes: + - infant_age_group + - color - toy_game_material + - pattern +- id: bt-6 + name: Baby Transport + children: + - bt-6-1 + - bt-6-2 + - bt-6-3 + attributes: + - color + - pattern +- id: bt-6-1 + name: Baby & Toddler Car Seats + children: + - bt-6-1-1 + - bt-6-1-2 + - bt-6-1-3 + - bt-6-1-4 + attributes: + - color + - pattern - id: bt-6-1-1 name: Booster Seats children: [] @@ -1262,10 +809,21 @@ name: Infant Car Seats children: [] attributes: - - infant_age_group + - infant_age_group + - color + - car_seat_installation + - car_seat_orientation + - pattern +- id: bt-6-2 + name: Baby Carriers + children: + - bt-6-2-1 + - bt-6-2-2 + - bt-6-2-3 + - bt-6-2-4 + - bt-6-2-5 + attributes: - color - - car_seat_installation - - car_seat_orientation - pattern - id: bt-6-2-1 name: Backpack Carriers @@ -1317,6 +875,18 @@ - color - material - pattern +- id: bt-6-3 + name: Baby Strollers + children: + - bt-6-3-1 + - bt-6-3-2 + - bt-6-3-3 + - bt-6-3-4 + - bt-6-3-5 + - bt-6-3-6 + attributes: + - color + - pattern - id: bt-6-3-1 name: Convertible Strollers children: [] @@ -1372,22 +942,45 @@ - folding_mechanism - pattern - stroller_wheel_type +- id: bt-7 + name: Baby Transport Accessories + children: + - bt-7-1 + - bt-7-2 + - bt-7-3 + - bt-7-4 + - bt-7-5 + attributes: + - color + - pattern +- id: bt-7-1 + name: Baby & Toddler Car Seat Accessories + children: + - bt-7-1-1 + - bt-7-1-2 + - bt-7-1-3 + - bt-7-1-4 + - bt-7-1-5 + - bt-7-1-6 + attributes: + - color + - pattern - id: bt-7-1-1 name: Car Seat Canopies children: [] attributes: - color - compatible_seat_type - - pattern - fabric + - pattern - id: bt-7-1-2 name: Car Seat Covers children: [] attributes: - color - compatible_seat_type - - pattern - fabric + - pattern - id: bt-7-1-3 name: Car Seat Mirrors children: [] @@ -1418,56 +1011,81 @@ attributes: - color - compatible_seat_type - - pattern - bag_case_material + - pattern +- id: bt-7-2 + name: Baby Carrier Accessories + children: + - bt-7-2-1 + - bt-7-2-2 + - bt-7-2-3 + - bt-7-2-4 + - bt-7-2-5 + - bt-7-2-6 + attributes: + - color + - pattern - id: bt-7-2-1 name: Baby Carrier Bibs children: [] attributes: - color - compatible_baby_carrier_type - - pattern - fabric + - pattern - id: bt-7-2-2 name: Baby Carrier Covers children: [] attributes: - color - compatible_baby_carrier_type - - pattern - fabric + - pattern - id: bt-7-2-3 name: Baby Carrier Hoods children: [] attributes: - color - compatible_baby_carrier_type - - pattern - fabric + - pattern - id: bt-7-2-4 name: Baby Carrier Storage Bags children: [] attributes: - color - compatible_baby_carrier_type - - pattern - bag_case_material + - pattern - id: bt-7-2-5 name: Baby Carrier Teething Pads children: [] attributes: - color - compatible_baby_carrier_type - - pattern - fabric + - pattern - id: bt-7-2-6 name: Baby Carrier Waistband Extenders children: [] attributes: - color - compatible_baby_carrier_type - - pattern - fabric + - pattern +- id: bt-7-3 + name: Baby Stroller Accessories + children: + - bt-7-3-1 + - bt-7-3-2 + - bt-7-3-3 + - bt-7-3-4 + - bt-7-3-5 + - bt-7-3-6 + - bt-7-3-7 + attributes: + - color + - pattern - id: bt-7-3-1 name: Stroller Cup Holders children: [] @@ -1482,8 +1100,8 @@ attributes: - color - compatible_stroller_type - - pattern - fabric + - pattern - id: bt-7-3-3 name: Stroller Hooks children: [] @@ -1506,24 +1124,40 @@ attributes: - color - compatible_stroller_type - - pattern - fabric + - pattern - id: bt-7-3-6 name: Stroller Sunshades children: [] attributes: - color - compatible_stroller_type - - pattern - fabric + - pattern - id: bt-7-3-7 name: Stroller Travel Bags children: [] attributes: - color - compatible_stroller_type - - pattern - bag_case_material + - pattern +- id: bt-7-4 + name: Baby Transport Liners & Sacks + children: [] + attributes: + - color + - compatible_baby_transport_type + - fabric + - pattern +- id: bt-7-5 + name: Shopping Cart & High Chair Covers + children: [] + attributes: + - color + - compatible_baby_chair_type + - fabric + - pattern - id: bt-8 name: Baby Transport Replacement Parts children: [] @@ -1531,6 +1165,30 @@ - color - material - pattern +- id: bt-9 + name: Diapering + children: + - bt-9-1 + - bt-9-2 + - bt-9-3 + - bt-9-4 + - bt-9-5 + - bt-9-6 + - bt-9-7 + - bt-9-8 + - bt-9-9 + - bt-9-10 + - bt-9-11 + - bt-9-12 + attributes: [] +- id: bt-9-1 + name: Baby Wipe Dispensers & Warmers + children: + - bt-9-1-1 + - bt-9-1-2 + - bt-9-1-3 + attributes: + - color - id: bt-9-1-1 name: Baby Wipe Dispensers children: [] @@ -1549,6 +1207,15 @@ attributes: - color - power_source +- id: bt-9-2 + name: Baby Wipes + children: + - bt-9-2-1 + - bt-9-2-2 + - bt-9-2-3 + attributes: + - color + - pattern - id: bt-9-2-1 name: Cloth Baby Wipes children: [] @@ -1579,27 +1246,45 @@ - wipe_packaging - pattern - wipe_fragrance +- id: bt-9-3 + name: Changing Mat & Tray Covers + children: + - bt-9-3-1 + - bt-9-3-2 + - bt-9-3-3 + attributes: + - color + - pattern - id: bt-9-3-1 name: Changing Mat Covers children: [] attributes: - color - - pattern - fabric + - pattern - id: bt-9-3-2 name: Changing Tray Covers children: [] attributes: - color - - pattern - fabric + - pattern - id: bt-9-3-3 name: Diaper Changing Pad Covers children: [] attributes: - color - - pattern - fabric + - pattern +- id: bt-9-4 + name: Changing Mats & Trays + children: + - bt-9-4-1 + - bt-9-4-2 + - bt-9-4-3 + attributes: + - color + - pattern - id: bt-9-4-1 name: Changing Mats children: [] @@ -1618,6 +1303,15 @@ attributes: - color - pattern +- id: bt-9-5 + name: Diaper Kits + children: + - bt-9-5-1 + - bt-9-5-2 + - bt-9-5-3 + attributes: + - color + - pattern - id: bt-9-5-1 name: Diaper Bag Kits children: [] @@ -1642,6 +1336,15 @@ - diaper_kit_components - material - pattern +- id: bt-9-6 + name: Diaper Liners + children: + - bt-9-6-1 + - bt-9-6-2 + - bt-9-6-3 + attributes: + - color + - pattern - id: bt-9-6-1 name: Cloth Diaper Liners children: [] @@ -1663,6 +1366,16 @@ - color - material - pattern +- id: bt-9-7 + name: Diaper Organizers + children: + - bt-9-7-1 + - bt-9-7-2 + - bt-9-7-3 + - bt-9-7-4 + attributes: + - color + - pattern - id: bt-9-7-1 name: Diaper Bag Organizers children: [] @@ -1691,13 +1404,23 @@ - color - material - pattern +- id: bt-9-8 + name: Diaper Pail Accessories + children: + - bt-9-8-1 + - bt-9-8-2 + - bt-9-8-3 + - bt-9-8-4 + attributes: + - color + - pattern - id: bt-9-8-1 name: Diaper Pail Bags children: [] attributes: - color - - pattern - disposable_bag_material + - pattern - id: bt-9-8-2 name: Diaper Pail Deodorizers children: [] @@ -1709,15 +1432,23 @@ children: [] attributes: - color - - pattern - fabric + - pattern - id: bt-9-8-4 name: Diaper Pail Refills children: [] attributes: - color - - pattern - waste_bag_material + - pattern +- id: bt-9-9 + name: Diaper Pails + children: + - bt-9-9-1 + - bt-9-9-3 + attributes: + - color + - pattern - id: bt-9-9-1 name: Diaper Disposal Systems children: [] @@ -1732,6 +1463,18 @@ - color - material - pattern +- id: bt-9-10 + name: Diaper Rash Treatments + children: + - bt-9-10-1 + - bt-9-10-2 + - bt-9-10-3 + - bt-9-10-4 + attributes: + - dispenser_type + - fragrance_level + - ingredients + - treatment_texture - id: bt-9-10-1 name: Diaper Rash Creams children: [] @@ -1764,22 +1507,42 @@ - fragrance_level - ingredients - treatment_texture +- id: bt-9-11 + name: Diaper Wet Bags + children: + - bt-9-11-2 + - bt-9-11-3 + attributes: + - closure_type + - color + - diaper_bag_material + - pattern - id: bt-9-11-2 name: Hanging Diaper Wet Bags children: [] attributes: - closure_type - color - - pattern - diaper_bag_material + - pattern - id: bt-9-11-3 name: Wet Dry Diaper Bags children: [] attributes: - - closure_type - - color - - pattern - - diaper_bag_material + - closure_type + - color + - diaper_bag_material + - pattern +- id: bt-9-12 + name: Diapers + children: + - bt-9-12-1 + - bt-9-12-2 + - bt-9-12-3 + - bt-9-12-4 + - bt-9-12-5 + attributes: + - diaper_size - id: bt-9-12-1 name: Cloth Diapers children: [] @@ -1808,6 +1571,35 @@ children: [] attributes: - diaper_size +- id: bt-10 + name: Nursing & Feeding + children: + - bt-10-1 + - bt-10-2 + - bt-10-3 + - bt-10-4 + - bt-10-5 + - bt-10-6 + - bt-10-7 + - bt-10-8 + - bt-10-9 + - bt-10-10 + - bt-10-11 + - bt-10-12 + - bt-10-13 + - bt-10-14 + - bt-10-15 + attributes: [] +- id: bt-10-1 + name: Baby & Toddler Food + children: + - bt-10-1-1 + - bt-10-1-2 + - bt-10-1-3 + - bt-10-1-4 + - bt-10-1-5 + - bt-10-1-6 + attributes: [] - id: bt-10-1-1 name: Baby Cereals children: [] @@ -1815,6 +1607,13 @@ - infant_age_group - dietary_preferences - flour_grain_type +- id: bt-10-1-2 + name: Baby Drinks + children: + - bt-10-1-2-1 + - bt-10-1-2-2 + attributes: + - infant_age_group - id: bt-10-1-2-1 name: Concentrated Drinks children: [] @@ -1829,6 +1628,21 @@ - infant_age_group - baby_food_flavor - baby_drink_packaging +- id: bt-10-1-3 + name: Baby Food + children: [] + attributes: + - infant_age_group + - baby_food_flavor +- id: bt-10-1-4 + name: Baby Formula + children: + - bt-10-1-4-1 + - bt-10-1-4-2 + - bt-10-1-4-3 + - bt-10-1-4-4 + attributes: + - formula_level - id: bt-10-1-4-1 name: Dairy Formula children: [] @@ -1853,6 +1667,43 @@ attributes: - formula_level - baby_formula_format +- id: bt-10-1-5 + name: Baby Snacks + children: [] + attributes: + - infant_age_group + - dietary_preferences + - baby_snack_flavor + - baby_snack_texture +- id: bt-10-1-6 + name: Toddler Nutrition Drinks & Shakes + children: [] + attributes: + - infant_age_group + - dietary_preferences + - baby_food_flavor +- id: bt-10-2 + name: Baby Bottle Nipples & Liners + children: + - bt-10-2-1 + - bt-10-2-2 + attributes: + - material +- id: bt-10-2-1 + name: Baby Bottle Liners + children: [] + attributes: + - compatible_baby_bottle_design + - usage_type + - material +- id: bt-10-2-2 + name: Baby Bottle Nipples + children: + - bt-10-2-2-1 + - bt-10-2-2-2 + - bt-10-2-2-3 + attributes: + - material - id: bt-10-2-2-1 name: Orthodontic Nipples children: [] @@ -1860,8 +1711,8 @@ - compatible_baby_bottle_design - flow_rate_type - material - - stage - nipple_shape + - stage - id: bt-10-2-2-2 name: Standard Nipples children: [] @@ -1880,33 +1731,48 @@ - material - nipple_shape - stage +- id: bt-10-3 + name: Baby Bottles + children: + - bt-10-3-1 + - bt-10-3-2 + - bt-10-3-3 + attributes: [] - id: bt-10-3-1 name: Anti Colic Bottles children: [] attributes: - bottle_design - flow_rate_type + - bottle_material - nipple_material - nipple_type - - bottle_material - id: bt-10-3-2 name: Standard Bottles children: [] attributes: - bottle_design - flow_rate_type + - bottle_material - nipple_material - nipple_type - - bottle_material - id: bt-10-3-3 name: Wide Neck Bottles children: [] attributes: - bottle_design - flow_rate_type + - bottle_material - nipple_material - nipple_type - - bottle_material +- id: bt-10-4 + name: Baby Care Timers + children: + - bt-10-4-1 + - bt-10-4-2 + attributes: + - display_technology + - power_source - id: bt-10-4-1 name: Analog Timers children: [] @@ -1919,6 +1785,21 @@ attributes: - display_technology - power_source +- id: bt-10-5 + name: Bibs + children: [] + attributes: + - closure_type + - color + - material + - pattern + - bib_design +- id: bt-10-6 + name: Bottle Warmers & Sterilizers + children: + - bt-10-6-1 + - bt-10-6-2 + attributes: [] - id: bt-10-6-1 name: Bottle Warmers children: @@ -1967,6 +1848,25 @@ attributes: - sterilization_cycle_time - sterilization_method +- id: bt-10-7 + name: Breast Milk Storage Containers + children: [] + attributes: + - closure_type + - material + - usage_type + - sterilization_instructions +- id: bt-10-8 + name: Breast Pump Accessories + children: + - bt-10-8-2 + - bt-10-8-3 + - bt-10-8-4 + - bt-10-8-5 + - bt-10-8-6 + - bt-10-8-7 + attributes: + - material - id: bt-10-8-2 name: Carrying Bags & Totes children: [] @@ -1997,6 +1897,15 @@ children: [] attributes: - material +- id: bt-10-9 + name: Breast Pumps + children: + - bt-10-9-1 + - bt-10-9-2 + - bt-10-9-3 + attributes: + - pump_accessories + - cleaning_instructions - id: bt-10-9-1 name: Double Electric Breast Pumps children: [] @@ -2023,11 +1932,33 @@ attributes: - pump_accessories - cleaning_instructions -- id: bt-10-12-3 - name: Breast Shields +- id: bt-10-10 + name: Burp Cloths + children: [] + attributes: + - cleaning_instructions + - closure_type + - color + - material + - pattern +- id: bt-10-11 + name: Nursing Covers children: [] attributes: + - closure_type + - color + - nursing_cover_coverage + - fabric + - pattern +- id: bt-10-12 + name: Nursing Pads & Shields + children: + - bt-10-12-1 + - bt-10-12-2 + - bt-10-12-3 + attributes: - material + - nursing_pad_design - id: bt-10-12-1 name: Disposable Nursing Pads children: [] @@ -2040,6 +1971,45 @@ attributes: - material - nursing_pad_design +- id: bt-10-12-3 + name: Breast Shields + children: [] + attributes: + - material +- id: bt-10-13 + name: Nursing Pillow Covers + children: [] + attributes: + - cover_closure_design + - color + - fabric + - pattern +- id: bt-10-14 + name: Nursing Pillows + children: [] + attributes: + - color + - firmness + - material + - pattern + - nursing_pillow_shape +- id: bt-10-15 + name: Sippy Cups + children: [] + attributes: + - color + - lid_type + - material + - pattern + - spout_type +- id: bt-11 + name: Potty Training + children: + - bt-11-1 + - bt-11-2 + - bt-11-3 + attributes: + - material - id: bt-11-1 name: Potties children: [] @@ -2048,6 +2018,14 @@ - material - pattern - potty_toilet_seat_design +- id: bt-11-2 + name: Potty Training Kits + children: [] + attributes: + - color + - potty_training_kit_components + - material + - pattern - id: bt-11-3 name: Toilet Seats & Step Stools children: [] @@ -2056,3 +2034,25 @@ - material - pattern - potty_toilet_seat_design +- id: bt-12 + name: Swaddling & Receiving Blankets + children: + - bt-12-1 + - bt-12-2 + attributes: + - material +- id: bt-12-1 + name: Receiving Blankets + children: [] + attributes: + - color + - material + - pattern +- id: bt-12-2 + name: Swaddling Blankets + children: [] + attributes: + - closure_type + - color + - material + - pattern diff --git a/data/categories/co_cameras_optics.yml b/data/categories/co_cameras_optics.yml index 0936f74a..08cc84ab 100644 --- a/data/categories/co_cameras_optics.yml +++ b/data/categories/co_cameras_optics.yml @@ -29,6 +29,24 @@ attributes: - color - cable_housing_material +- id: co-1-1-1 + name: Component Video Cables + children: [] + attributes: + - color + - cable_housing_material +- id: co-1-1-2 + name: Composite Video Cables + children: [] + attributes: + - color + - cable_housing_material +- id: co-1-1-3 + name: Optical Audio Cables + children: [] + attributes: + - color + - cable_housing_material - id: co-1-2 name: Camera & Video Camera Lenses children: @@ -38,8 +56,8 @@ attributes: - camera_lens_type - color - - suitable_for_camera_type - camera_lens_material + - suitable_for_camera_type - id: co-1-2-1 name: Camera Lenses children: [] @@ -48,24 +66,24 @@ - color - focus_adjustment - focus_type - - suitable_for_camera_type - camera_lens_material + - suitable_for_camera_type - id: co-1-2-2 name: Surveillance Camera Lenses children: [] attributes: - camera_lens_type - color - - suitable_for_camera_type - camera_lens_material + - suitable_for_camera_type - id: co-1-2-3 name: Video Camera Lenses children: [] attributes: - camera_lens_type - color - - suitable_for_camera_type - camera_lens_material + - suitable_for_camera_type - id: co-1-3 name: Camera Lens Accessories children: @@ -174,6 +192,69 @@ - bag_case_closure - color - bag_case_material +- id: co-1-4-2-1 + name: Camera Backpacks + children: [] + attributes: + - bag_case_closure + - color + - bag_case_material +- id: co-1-4-2-2 + name: Camera Hard Cases + children: [] + attributes: + - bag_case_closure + - color + - bag_case_material +- id: co-1-4-2-3 + name: Camera Holster Bags + children: [] + attributes: + - bag_case_closure + - color + - bag_case_material +- id: co-1-4-2-4 + name: Camera Rolling Cases + children: [] + attributes: + - bag_case_closure + - color + - bag_case_material +- id: co-1-4-2-5 + name: Camera Shoulder Bags + children: [] + attributes: + - bag_case_closure + - color + - bag_case_material +- id: co-1-4-2-6 + name: Camera Sling Bags + children: [] + attributes: + - bag_case_closure + - color + - bag_case_material +- id: co-1-4-2-7 + name: Camera Soft Pouches + children: [] + attributes: + - bag_case_closure + - color + - bag_case_material +- id: co-1-4-2-8 + name: Camera Tote Bags + children: [] + attributes: + - bag_case_closure + - color + - bag_case_material +- id: co-1-4-2-9 + name: Camera Underwater Cases + children: [] + attributes: + - bag_case_closure + - color + - bag_case_material - id: co-1-4-3 name: Camera Body Replacement Panels & Doors children: [] @@ -201,6 +282,60 @@ - contrast - film_format - grain +- id: co-1-4-5-1 + name: Black & White Film + children: [] + attributes: + - color + - color_saturation + - contrast + - film_format + - grain +- id: co-1-4-5-2 + name: Color Negative Film + children: [] + attributes: + - color + - color_saturation + - contrast + - film_format + - grain +- id: co-1-4-5-3 + name: Infrared Film + children: [] + attributes: + - color + - color_saturation + - contrast + - film_format + - grain +- id: co-1-4-5-4 + name: Instant Film + children: [] + attributes: + - color + - color_saturation + - contrast + - film_format + - grain +- id: co-1-4-5-5 + name: Slide Film + children: [] + attributes: + - color + - color_saturation + - contrast + - film_format + - grain +- id: co-1-4-5-6 + name: Special Effects Film + children: [] + attributes: + - color + - color_saturation + - contrast + - film_format + - grain - id: co-1-4-6 name: Camera Flash Accessories children: [] @@ -245,6 +380,55 @@ - camera_mounting_type - color - material +- id: co-1-4-10-1 + name: Battery Grips + children: [] + attributes: + - camera_mounting_type + - color + - material +- id: co-1-4-10-2 + name: Finger Grips + children: [] + attributes: + - camera_mounting_type + - color + - material +- id: co-1-4-10-3 + name: Hand Grips + children: [] + attributes: + - camera_mounting_type + - color + - material +- id: co-1-4-10-4 + name: Shoulder Grips + children: [] + attributes: + - camera_mounting_type + - color + - material +- id: co-1-4-10-5 + name: Strap Grips + children: [] + attributes: + - camera_mounting_type + - color + - material +- id: co-1-4-10-6 + name: Underwater Grips + children: [] + attributes: + - camera_mounting_type + - color + - material +- id: co-1-4-10-7 + name: Wrist Grips + children: [] + attributes: + - camera_mounting_type + - color + - material - id: co-1-4-11 name: Camera Image Sensors children: [] @@ -265,6 +449,41 @@ - camera_lens_type - color - material +- id: co-1-4-12-1 + name: Digital Zoom Units + children: [] + attributes: + - camera_lens_type + - color + - material +- id: co-1-4-12-2 + name: Manual Zoom Units + children: [] + attributes: + - camera_lens_type + - color + - material +- id: co-1-4-12-3 + name: Motorized Zoom Units + children: [] + attributes: + - camera_lens_type + - color + - material +- id: co-1-4-12-4 + name: Optical Zoom Units + children: [] + attributes: + - camera_lens_type + - color + - material +- id: co-1-4-12-5 + name: Servo Zoom Units + children: [] + attributes: + - camera_lens_type + - color + - material - id: co-1-4-13 name: Camera Remote Controls children: [] @@ -317,37 +536,101 @@ - material - pattern - suitable_for_camera_optics_device -- id: co-1-4-19 - name: Camera Sun Hoods & Viewfinder Attachments +- id: co-1-4-18-1 + name: Belt Straps children: [] attributes: - - camera_attachment - color - material -- id: co-1-4-20 - name: Flash Brackets + - pattern + - suitable_for_camera_optics_device +- id: co-1-4-18-2 + name: Chest Straps children: [] attributes: - color - material -- id: co-1-4-21 - name: On-Camera Monitors + - pattern + - suitable_for_camera_optics_device +- id: co-1-4-18-3 + name: Hand Straps children: [] attributes: - color - - display_resolution - material - - monitor_type - - power_source -- id: co-1-4-22 - name: Surveillance Camera Accessories + - pattern + - suitable_for_camera_optics_device +- id: co-1-4-18-4 + name: Harness Straps children: [] attributes: - color - material - - suitable_space -- id: co-1-4-23 - name: Underwater Camera Housing Accessories + - pattern + - suitable_for_camera_optics_device +- id: co-1-4-18-5 + name: Neck Straps + children: [] + attributes: + - color + - material + - pattern + - suitable_for_camera_optics_device +- id: co-1-4-18-6 + name: Quick-Release Straps + children: [] + attributes: + - color + - material + - pattern + - suitable_for_camera_optics_device +- id: co-1-4-18-7 + name: Shoulder Straps + children: [] + attributes: + - color + - material + - pattern + - suitable_for_camera_optics_device +- id: co-1-4-18-8 + name: Wrist Straps + children: [] + attributes: + - color + - material + - pattern + - suitable_for_camera_optics_device +- id: co-1-4-19 + name: Camera Sun Hoods & Viewfinder Attachments + children: [] + attributes: + - camera_attachment + - color + - material +- id: co-1-4-20 + name: Flash Brackets + children: [] + attributes: + - color + - material +- id: co-1-4-21 + name: On-Camera Monitors + children: [] + attributes: + - color + - display_resolution + - material + - monitor_type + - power_source +- id: co-1-4-22 + name: Surveillance Camera Accessories + children: [] + attributes: + - color + - material + - suitable_space +- id: co-1-4-23 + name: Underwater Camera Housing Accessories children: [] attributes: - color @@ -402,6 +685,69 @@ - accessory_size - color - bag_case_material +- id: co-1-5-2-1 + name: Accessory Cases + children: [] + attributes: + - accessory_size + - color + - bag_case_material +- id: co-1-5-2-2 + name: Binocular Cases + children: [] + attributes: + - accessory_size + - color + - bag_case_material +- id: co-1-5-2-4 + name: Drone Cases + children: [] + attributes: + - accessory_size + - color + - bag_case_material +- id: co-1-5-2-5 + name: Lens Bags + children: [] + attributes: + - accessory_size + - color + - bag_case_material +- id: co-1-5-2-6 + name: Microscope Cases + children: [] + attributes: + - accessory_size + - color + - bag_case_material +- id: co-1-5-2-7 + name: Monocular Cases + children: [] + attributes: + - accessory_size + - color + - bag_case_material +- id: co-1-5-2-8 + name: Rangefinder Cases + children: [] + attributes: + - accessory_size + - color + - bag_case_material +- id: co-1-5-2-9 + name: Spotting Scope Cases + children: [] + attributes: + - accessory_size + - color + - bag_case_material +- id: co-1-5-2-10 + name: Telescope Bags + children: [] + attributes: + - accessory_size + - color + - bag_case_material - id: co-1-5-3 name: Rangefinder Accessories children: [] @@ -470,8 +816,8 @@ children: [] attributes: - color - - tripop_handle_type - handle_material + - tripop_handle_type - id: co-1-6-5 name: Tripod Spreaders children: [] @@ -497,6 +843,87 @@ - leg_lock_type - leg_sections - material +- id: co-1-7-1 + name: Boom Stands + children: [] + attributes: + - color + - feet_type + - leg_lock_type + - leg_sections + - material +- id: co-1-7-2 + name: Light Stands + children: [] + attributes: + - color + - feet_type + - leg_lock_type + - leg_sections + - material +- id: co-1-7-3 + name: Monopods + children: [] + attributes: + - color + - feet_type + - leg_lock_type + - leg_sections + - material +- id: co-1-7-4 + name: Pocket Tripods + children: [] + attributes: + - color + - feet_type + - leg_lock_type + - leg_sections + - material +- id: co-1-7-5 + name: Studio Tripods + children: [] + attributes: + - color + - feet_type + - leg_lock_type + - leg_sections + - material +- id: co-1-7-6 + name: Tabletop Tripods + children: [] + attributes: + - color + - feet_type + - leg_lock_type + - leg_sections + - material +- id: co-1-7-7 + name: Travel Tripods + children: [] + attributes: + - color + - feet_type + - leg_lock_type + - leg_sections + - material +- id: co-1-7-9 + name: Underwater Tripods + children: [] + attributes: + - color + - feet_type + - leg_lock_type + - leg_sections + - material +- id: co-1-7-10 + name: Video Tripods + children: [] + attributes: + - color + - feet_type + - leg_lock_type + - leg_sections + - material - id: co-2 name: Cameras children: @@ -547,873 +974,33 @@ - photo_effects_type - scene_modes - shooting_modes -- id: co-2-3 - name: Disposable Cameras +- id: co-2-2-1 + name: 360-Degree Digital Cameras children: [] attributes: + - auto_focusing_modes + - camera_display_technology + - camera_hd_type + - camera_sensor_type - color - - material -- id: co-2-4 - name: Film Cameras - children: - - co-2-4-1 - - co-2-4-2 - - co-2-4-3 - - co-2-4-4 - - co-2-4-5 - - co-2-4-6 - attributes: - - color - - exposure_control - - film_type -- id: co-2-5 - name: Surveillance Cameras + - compatible_memory_cards + - flash_modes + - focus_adjustment + - focus_type + - image_formats_supported + - image_sensor_size + - light_exposure_modes + - optical_zoom + - photo_effects_type + - scene_modes + - shooting_modes +- id: co-2-2-2 + name: Action Digital Cameras children: [] attributes: - - camera_sensor_type - - color - - connection_method - - material - - power_source - - surveillance_camera_design - - surveillance_camera_mounting_type -- id: co-2-6 - name: Trail Cameras - children: [] - attributes: - - color - - connection_method - - material - - memory_storage_type - - power_source - - trail_camera_design -- id: co-2-7 - name: Video Cameras - children: - - co-2-7-1 - - co-2-7-2 - - co-2-7-4 - - co-2-7-5 - - co-2-7-6 - - co-2-7-7 - attributes: - - camera_hd_type - - camera_sensor_type - - color - - compatible_memory_cards - - connectivity_technology - - material - - memory_storage_type - - power_source -- id: co-2-8 - name: Webcams - children: [] - attributes: - - camera_hd_type - - camera_mounting_type - - color - - connectivity_technology - - material - - webcam_design -- id: co-3 - name: Optics - children: - - co-3-1 - - co-3-2 - - co-3-3 - - co-3-4 - attributes: - - color - - material -- id: co-3-1 - name: Binoculars - children: [] - attributes: - - binocular_design - - color - - material -- id: co-3-2 - name: Monoculars - children: [] - attributes: - - color - - material - - monocular_design -- id: co-3-3 - name: Rangefinders - children: [] - attributes: - - color - - material -- id: co-3-4 - name: Scopes - children: - - co-3-4-1 - - co-3-4-2 - - co-3-4-3 - attributes: - - color - - material -- id: co-3-4-1 - name: Spotting Scopes - children: [] - attributes: - - color - - material -- id: co-3-4-2 - name: Telescopes - children: - - co-3-4-2-1 - - co-3-4-2-2 - - co-3-4-2-3 - - co-3-4-2-4 - - co-3-4-2-5 - - co-3-4-2-6 - attributes: - - color - - material -- id: co-3-4-3 - name: Weapon Scopes & Sights - children: [] - attributes: - - color - - material - - reticle_type - - scope_sight_design - - suitable_for_weapon_type -- id: co-4 - name: Photography - children: - - co-4-1 - - co-4-2 - - co-4-3 - - co-4-4 - attributes: - - color - - material -- id: co-4-1 - name: Darkroom - children: - - co-4-1-1 - - co-4-1-2 - - co-4-1-3 - - co-4-1-4 - - co-4-1-5 - attributes: - - color - - material -- id: co-4-1-1 - name: Developing & Processing Equipment - children: - - co-4-1-1-1 - - co-4-1-1-2 - - co-4-1-1-3 - - co-4-1-1-4 - - co-4-1-1-5 - attributes: - - color - - material -- id: co-4-1-1-1 - name: Copystands - children: [] - attributes: - - color - - material -- id: co-4-1-1-2 - name: Darkroom Sinks - children: [] - attributes: - - accessory_size - - color - - material -- id: co-4-1-1-3 - name: Developing Tanks & Reels - children: [] - attributes: - - color - - material - - reel_capacity -- id: co-4-1-1-4 - name: Print Trays, Washers & Dryers - children: - - co-4-1-1-4-1 - - co-4-1-1-4-2 - - co-4-1-1-4-3 - - co-4-1-1-4-4 - - co-4-1-1-4-5 - - co-4-1-1-4-6 - attributes: - - color - - material -- id: co-4-1-1-5 - name: Retouching Equipment & Supplies - children: [] - attributes: - - color - - material -- id: co-4-1-2 - name: Enlarging Equipment - children: - - co-4-1-2-1 - - co-4-1-2-2 - - co-4-1-2-3 - - co-4-1-2-4 - - co-4-1-2-5 - attributes: - - color - - material -- id: co-4-1-2-1 - name: Darkroom Easels - children: [] - attributes: - - color - - material -- id: co-4-1-2-2 - name: Darkroom Timers - children: [] - attributes: - - color - - material - - power_source - - timer_design -- id: co-4-1-2-3 - name: Focusing Aids - children: [] - attributes: - - camera_mounting_type - - color - - material -- id: co-4-1-2-4 - name: Photographic Analyzers - children: [] - attributes: - - color - - material -- id: co-4-1-2-5 - name: Photographic Enlargers - children: [] - attributes: - - color - - lamp_type - - light_source - - material -- id: co-4-1-3 - name: Photographic Chemicals - children: - - co-4-1-3-1 - - co-4-1-3-2 - - co-4-1-3-3 - - co-4-1-3-4 - - co-4-1-3-5 - - co-4-1-3-6 - - co-4-1-3-7 - - co-4-1-3-8 - - co-4-1-3-9 - - co-4-1-3-10 - attributes: - - color - - compatible_film_type - - photographic_chemical_form -- id: co-4-1-4 - name: Photographic Paper - children: [] - attributes: - - color - - material - - photographic_paper_size - - photographic_paper_type -- id: co-4-1-5 - name: Safelights - children: [] - attributes: - - color - - light_source - - material - - power_source -- id: co-4-2 - name: Lighting & Studio - children: - - co-4-2-1 - - co-4-2-2 - - co-4-2-3 - - co-4-2-4 - - co-4-2-5 - - co-4-2-6 - - co-4-2-7 - - co-4-2-8 - attributes: - - color - - material -- id: co-4-2-1 - name: Light Meter Accessories - children: [] - attributes: - - color - - material -- id: co-4-2-2 - name: Light Meters - children: [] - attributes: - - color - - display_mode - - material - - power_source -- id: co-4-2-3 - name: Studio Backgrounds - children: [] - attributes: - - accessory_size - - background_design - - color - - material - - pattern -- id: co-4-2-4 - name: Studio Light & Flash Accessories - children: [] - attributes: - - color - - material -- id: co-4-2-5 - name: Studio Lighting Controls - children: - - co-4-2-5-1 - - co-4-2-5-2 - - co-4-2-5-3 - - co-4-2-5-4 - attributes: - - color - - material - - power_source -- id: co-4-2-5-1 - name: Flash Diffusers - children: [] - attributes: - - color - - diffuser_design - - material - - power_source -- id: co-4-2-5-2 - name: Flash Reflectors - children: [] - attributes: - - color - - material - - power_source - - reflector_design -- id: co-4-2-5-3 - name: Lighting Filters & Gobos - children: [] - attributes: - - color - - light_filtering - - material - - power_source - - projection_design -- id: co-4-2-5-4 - name: Softboxes - children: [] - attributes: - - color - - material - - power_source - - softbox_mounting_type - - softbox_shape -- id: co-4-2-6 - name: Studio Lights & Flashes - children: [] - attributes: - - color - - material - - power_source -- id: co-4-2-7 - name: Studio Stand & Mount Accessories - children: [] - attributes: - - color - - material -- id: co-4-2-8 - name: Studio Stands & Mounts - children: - - co-4-2-8-1 - - co-4-2-8-2 - - co-4-2-8-3 - - co-4-2-8-4 - - co-4-2-8-5 - - co-4-2-8-6 - - co-4-2-8-7 - - co-4-2-8-8 - - co-4-2-8-9 - - co-4-2-8-10 - attributes: - - color - - mount_material -- id: co-4-3 - name: Photo Mounting Supplies - children: [] - attributes: - - color - - material -- id: co-4-4 - name: Photo Negative & Slide Storage - children: [] - attributes: - - color - - material - - negative_slide_storage_type -- id: co-1-1-1 - name: Component Video Cables - children: [] - attributes: - - color - - cable_housing_material -- id: co-1-1-2 - name: Composite Video Cables - children: [] - attributes: - - color - - cable_housing_material -- id: co-1-1-3 - name: Optical Audio Cables - children: [] - attributes: - - color - - cable_housing_material -- id: co-1-4-2-1 - name: Camera Backpacks - children: [] - attributes: - - bag_case_closure - - color - - bag_case_material -- id: co-1-4-2-2 - name: Camera Hard Cases - children: [] - attributes: - - bag_case_closure - - color - - bag_case_material -- id: co-1-4-2-3 - name: Camera Holster Bags - children: [] - attributes: - - bag_case_closure - - color - - bag_case_material -- id: co-1-4-2-4 - name: Camera Rolling Cases - children: [] - attributes: - - bag_case_closure - - color - - bag_case_material -- id: co-1-4-2-5 - name: Camera Shoulder Bags - children: [] - attributes: - - bag_case_closure - - color - - bag_case_material -- id: co-1-4-2-6 - name: Camera Sling Bags - children: [] - attributes: - - bag_case_closure - - color - - bag_case_material -- id: co-1-4-2-7 - name: Camera Soft Pouches - children: [] - attributes: - - bag_case_closure - - color - - bag_case_material -- id: co-1-4-2-8 - name: Camera Tote Bags - children: [] - attributes: - - bag_case_closure - - color - - bag_case_material -- id: co-1-4-2-9 - name: Camera Underwater Cases - children: [] - attributes: - - bag_case_closure - - color - - bag_case_material -- id: co-1-4-5-1 - name: Black & White Film - children: [] - attributes: - - color - - color_saturation - - contrast - - film_format - - grain -- id: co-1-4-5-2 - name: Color Negative Film - children: [] - attributes: - - color - - color_saturation - - contrast - - film_format - - grain -- id: co-1-4-5-3 - name: Infrared Film - children: [] - attributes: - - color - - color_saturation - - contrast - - film_format - - grain -- id: co-1-4-5-4 - name: Instant Film - children: [] - attributes: - - color - - color_saturation - - contrast - - film_format - - grain -- id: co-1-4-5-5 - name: Slide Film - children: [] - attributes: - - color - - color_saturation - - contrast - - film_format - - grain -- id: co-1-4-5-6 - name: Special Effects Film - children: [] - attributes: - - color - - color_saturation - - contrast - - film_format - - grain -- id: co-1-4-10-1 - name: Battery Grips - children: [] - attributes: - - camera_mounting_type - - color - - material -- id: co-1-4-10-2 - name: Finger Grips - children: [] - attributes: - - camera_mounting_type - - color - - material -- id: co-1-4-10-3 - name: Hand Grips - children: [] - attributes: - - camera_mounting_type - - color - - material -- id: co-1-4-10-4 - name: Shoulder Grips - children: [] - attributes: - - camera_mounting_type - - color - - material -- id: co-1-4-10-5 - name: Strap Grips - children: [] - attributes: - - camera_mounting_type - - color - - material -- id: co-1-4-10-6 - name: Underwater Grips - children: [] - attributes: - - camera_mounting_type - - color - - material -- id: co-1-4-10-7 - name: Wrist Grips - children: [] - attributes: - - camera_mounting_type - - color - - material -- id: co-1-4-12-1 - name: Digital Zoom Units - children: [] - attributes: - - camera_lens_type - - color - - material -- id: co-1-4-12-2 - name: Manual Zoom Units - children: [] - attributes: - - camera_lens_type - - color - - material -- id: co-1-4-12-3 - name: Motorized Zoom Units - children: [] - attributes: - - camera_lens_type - - color - - material -- id: co-1-4-12-4 - name: Optical Zoom Units - children: [] - attributes: - - camera_lens_type - - color - - material -- id: co-1-4-12-5 - name: Servo Zoom Units - children: [] - attributes: - - camera_lens_type - - color - - material -- id: co-1-4-18-1 - name: Belt Straps - children: [] - attributes: - - color - - material - - pattern - - suitable_for_camera_optics_device -- id: co-1-4-18-2 - name: Chest Straps - children: [] - attributes: - - color - - material - - pattern - - suitable_for_camera_optics_device -- id: co-1-4-18-3 - name: Hand Straps - children: [] - attributes: - - color - - material - - pattern - - suitable_for_camera_optics_device -- id: co-1-4-18-4 - name: Harness Straps - children: [] - attributes: - - color - - material - - pattern - - suitable_for_camera_optics_device -- id: co-1-4-18-5 - name: Neck Straps - children: [] - attributes: - - color - - material - - pattern - - suitable_for_camera_optics_device -- id: co-1-4-18-6 - name: Quick-Release Straps - children: [] - attributes: - - color - - material - - pattern - - suitable_for_camera_optics_device -- id: co-1-4-18-7 - name: Shoulder Straps - children: [] - attributes: - - color - - material - - pattern - - suitable_for_camera_optics_device -- id: co-1-4-18-8 - name: Wrist Straps - children: [] - attributes: - - color - - material - - pattern - - suitable_for_camera_optics_device -- id: co-1-5-2-1 - name: Accessory Cases - children: [] - attributes: - - accessory_size - - color - - bag_case_material -- id: co-1-5-2-2 - name: Binocular Cases - children: [] - attributes: - - accessory_size - - color - - bag_case_material -- id: co-1-5-2-4 - name: Drone Cases - children: [] - attributes: - - accessory_size - - color - - bag_case_material -- id: co-1-5-2-5 - name: Lens Bags - children: [] - attributes: - - accessory_size - - color - - bag_case_material -- id: co-1-5-2-6 - name: Microscope Cases - children: [] - attributes: - - accessory_size - - color - - bag_case_material -- id: co-1-5-2-7 - name: Monocular Cases - children: [] - attributes: - - accessory_size - - color - - bag_case_material -- id: co-1-5-2-8 - name: Rangefinder Cases - children: [] - attributes: - - accessory_size - - color - - bag_case_material -- id: co-1-5-2-9 - name: Spotting Scope Cases - children: [] - attributes: - - accessory_size - - color - - bag_case_material -- id: co-1-5-2-10 - name: Telescope Bags - children: [] - attributes: - - accessory_size - - color - - bag_case_material -- id: co-1-7-1 - name: Boom Stands - children: [] - attributes: - - color - - feet_type - - leg_lock_type - - leg_sections - - material -- id: co-1-7-2 - name: Light Stands - children: [] - attributes: - - color - - feet_type - - leg_lock_type - - leg_sections - - material -- id: co-1-7-3 - name: Monopods - children: [] - attributes: - - color - - feet_type - - leg_lock_type - - leg_sections - - material -- id: co-1-7-4 - name: Pocket Tripods - children: [] - attributes: - - color - - feet_type - - leg_lock_type - - leg_sections - - material -- id: co-1-7-5 - name: Studio Tripods - children: [] - attributes: - - color - - feet_type - - leg_lock_type - - leg_sections - - material -- id: co-1-7-6 - name: Tabletop Tripods - children: [] - attributes: - - color - - feet_type - - leg_lock_type - - leg_sections - - material -- id: co-1-7-7 - name: Travel Tripods - children: [] - attributes: - - color - - feet_type - - leg_lock_type - - leg_sections - - material -- id: co-1-7-9 - name: Underwater Tripods - children: [] - attributes: - - color - - feet_type - - leg_lock_type - - leg_sections - - material -- id: co-1-7-10 - name: Video Tripods - children: [] - attributes: - - color - - feet_type - - leg_lock_type - - leg_sections - - material -- id: co-2-2-1 - name: 360-Degree Digital Cameras - children: [] - attributes: - - auto_focusing_modes - - camera_display_technology - - camera_hd_type - - camera_sensor_type - - color - - compatible_memory_cards - - flash_modes - - focus_adjustment - - focus_type - - image_formats_supported - - image_sensor_size - - light_exposure_modes - - optical_zoom - - photo_effects_type - - scene_modes - - shooting_modes -- id: co-2-2-2 - name: Action Digital Cameras - children: [] - attributes: - - auto_focusing_modes - - camera_display_technology - - camera_hd_type + - auto_focusing_modes + - camera_display_technology + - camera_hd_type - camera_sensor_type - color - compatible_memory_cards @@ -1547,6 +1134,25 @@ - photo_effects_type - scene_modes - shooting_modes +- id: co-2-3 + name: Disposable Cameras + children: [] + attributes: + - color + - material +- id: co-2-4 + name: Film Cameras + children: + - co-2-4-1 + - co-2-4-2 + - co-2-4-3 + - co-2-4-4 + - co-2-4-5 + - co-2-4-6 + attributes: + - color + - exposure_control + - film_type - id: co-2-4-1 name: Compact Film Cameras children: [] @@ -1590,6 +1196,45 @@ - color - exposure_control - film_type +- id: co-2-5 + name: Surveillance Cameras + children: [] + attributes: + - camera_sensor_type + - color + - connection_method + - material + - power_source + - surveillance_camera_design + - surveillance_camera_mounting_type +- id: co-2-6 + name: Trail Cameras + children: [] + attributes: + - color + - connection_method + - material + - memory_storage_type + - power_source + - trail_camera_design +- id: co-2-7 + name: Video Cameras + children: + - co-2-7-1 + - co-2-7-2 + - co-2-7-4 + - co-2-7-5 + - co-2-7-6 + - co-2-7-7 + attributes: + - camera_hd_type + - camera_sensor_type + - color + - compatible_memory_cards + - connectivity_technology + - material + - memory_storage_type + - power_source - id: co-2-7-1 name: 360-Degree Video Cameras children: [] @@ -1662,39 +1307,179 @@ - material - memory_storage_type - power_source +- id: co-2-8 + name: Webcams + children: [] + attributes: + - camera_hd_type + - camera_mounting_type + - color + - connectivity_technology + - material + - webcam_design +- id: co-3 + name: Optics + children: + - co-3-1 + - co-3-2 + - co-3-3 + - co-3-4 + attributes: + - color + - material +- id: co-3-1 + name: Binoculars + children: [] + attributes: + - binocular_design + - color + - material +- id: co-3-2 + name: Monoculars + children: [] + attributes: + - color + - material + - monocular_design +- id: co-3-3 + name: Rangefinders + children: [] + attributes: + - color + - material +- id: co-3-4 + name: Scopes + children: + - co-3-4-1 + - co-3-4-2 + - co-3-4-3 + attributes: + - color + - material +- id: co-3-4-1 + name: Spotting Scopes + children: [] + attributes: + - color + - material +- id: co-3-4-2 + name: Telescopes + children: + - co-3-4-2-1 + - co-3-4-2-2 + - co-3-4-2-3 + - co-3-4-2-4 + - co-3-4-2-5 + - co-3-4-2-6 + attributes: + - color + - material - id: co-3-4-2-1 name: Catadioptric Telescopes children: [] attributes: - color - material -- id: co-3-4-2-2 - name: Compound Telescopes - children: [] +- id: co-3-4-2-2 + name: Compound Telescopes + children: [] + attributes: + - color + - material +- id: co-3-4-2-3 + name: Dobsonian Telescopes + children: [] + attributes: + - color + - material +- id: co-3-4-2-4 + name: Reflector Telescopes + children: [] + attributes: + - color + - material +- id: co-3-4-2-5 + name: Refractor Telescopes + children: [] + attributes: + - color + - material +- id: co-3-4-2-6 + name: Solar Telescopes + children: [] + attributes: + - color + - material +- id: co-3-4-3 + name: Weapon Scopes & Sights + children: [] + attributes: + - color + - material + - reticle_type + - scope_sight_design + - suitable_for_weapon_type +- id: co-4 + name: Photography + children: + - co-4-1 + - co-4-2 + - co-4-3 + - co-4-4 + attributes: + - color + - material +- id: co-4-1 + name: Darkroom + children: + - co-4-1-1 + - co-4-1-2 + - co-4-1-3 + - co-4-1-4 + - co-4-1-5 + attributes: + - color + - material +- id: co-4-1-1 + name: Developing & Processing Equipment + children: + - co-4-1-1-1 + - co-4-1-1-2 + - co-4-1-1-3 + - co-4-1-1-4 + - co-4-1-1-5 attributes: - color - material -- id: co-3-4-2-3 - name: Dobsonian Telescopes +- id: co-4-1-1-1 + name: Copystands children: [] attributes: - color - material -- id: co-3-4-2-4 - name: Reflector Telescopes +- id: co-4-1-1-2 + name: Darkroom Sinks children: [] attributes: + - accessory_size - color - material -- id: co-3-4-2-5 - name: Refractor Telescopes +- id: co-4-1-1-3 + name: Developing Tanks & Reels children: [] attributes: - color - material -- id: co-3-4-2-6 - name: Solar Telescopes - children: [] + - reel_capacity +- id: co-4-1-1-4 + name: Print Trays, Washers & Dryers + children: + - co-4-1-1-4-1 + - co-4-1-1-4-2 + - co-4-1-1-4-3 + - co-4-1-1-4-4 + - co-4-1-1-4-5 + - co-4-1-1-4-6 attributes: - color - material @@ -1732,6 +1517,75 @@ attributes: - color - material +- id: co-4-1-1-5 + name: Retouching Equipment & Supplies + children: [] + attributes: + - color + - material +- id: co-4-1-2 + name: Enlarging Equipment + children: + - co-4-1-2-1 + - co-4-1-2-2 + - co-4-1-2-3 + - co-4-1-2-4 + - co-4-1-2-5 + attributes: + - color + - material +- id: co-4-1-2-1 + name: Darkroom Easels + children: [] + attributes: + - color + - material +- id: co-4-1-2-2 + name: Darkroom Timers + children: [] + attributes: + - color + - material + - power_source + - timer_design +- id: co-4-1-2-3 + name: Focusing Aids + children: [] + attributes: + - camera_mounting_type + - color + - material +- id: co-4-1-2-4 + name: Photographic Analyzers + children: [] + attributes: + - color + - material +- id: co-4-1-2-5 + name: Photographic Enlargers + children: [] + attributes: + - color + - lamp_type + - light_source + - material +- id: co-4-1-3 + name: Photographic Chemicals + children: + - co-4-1-3-1 + - co-4-1-3-2 + - co-4-1-3-3 + - co-4-1-3-4 + - co-4-1-3-5 + - co-4-1-3-6 + - co-4-1-3-7 + - co-4-1-3-8 + - co-4-1-3-9 + - co-4-1-3-10 + attributes: + - color + - compatible_film_type + - photographic_chemical_form - id: co-4-1-3-1 name: Bleaches children: [] @@ -1802,6 +1656,139 @@ - color - compatible_film_type - photographic_chemical_form +- id: co-4-1-4 + name: Photographic Paper + children: [] + attributes: + - color + - material + - photographic_paper_size + - photographic_paper_type +- id: co-4-1-5 + name: Safelights + children: [] + attributes: + - color + - light_source + - material + - power_source +- id: co-4-2 + name: Lighting & Studio + children: + - co-4-2-1 + - co-4-2-2 + - co-4-2-3 + - co-4-2-4 + - co-4-2-5 + - co-4-2-6 + - co-4-2-7 + - co-4-2-8 + attributes: + - color + - material +- id: co-4-2-1 + name: Light Meter Accessories + children: [] + attributes: + - color + - material +- id: co-4-2-2 + name: Light Meters + children: [] + attributes: + - color + - display_mode + - material + - power_source +- id: co-4-2-3 + name: Studio Backgrounds + children: [] + attributes: + - accessory_size + - background_design + - color + - material + - pattern +- id: co-4-2-4 + name: Studio Light & Flash Accessories + children: [] + attributes: + - color + - material +- id: co-4-2-5 + name: Studio Lighting Controls + children: + - co-4-2-5-1 + - co-4-2-5-2 + - co-4-2-5-3 + - co-4-2-5-4 + attributes: + - color + - material + - power_source +- id: co-4-2-5-1 + name: Flash Diffusers + children: [] + attributes: + - color + - diffuser_design + - material + - power_source +- id: co-4-2-5-2 + name: Flash Reflectors + children: [] + attributes: + - color + - material + - power_source + - reflector_design +- id: co-4-2-5-3 + name: Lighting Filters & Gobos + children: [] + attributes: + - color + - light_filtering + - material + - power_source + - projection_design +- id: co-4-2-5-4 + name: Softboxes + children: [] + attributes: + - color + - material + - power_source + - softbox_mounting_type + - softbox_shape +- id: co-4-2-6 + name: Studio Lights & Flashes + children: [] + attributes: + - color + - material + - power_source +- id: co-4-2-7 + name: Studio Stand & Mount Accessories + children: [] + attributes: + - color + - material +- id: co-4-2-8 + name: Studio Stands & Mounts + children: + - co-4-2-8-1 + - co-4-2-8-2 + - co-4-2-8-3 + - co-4-2-8-4 + - co-4-2-8-5 + - co-4-2-8-6 + - co-4-2-8-7 + - co-4-2-8-8 + - co-4-2-8-9 + - co-4-2-8-10 + attributes: + - color + - mount_material - id: co-4-2-8-1 name: Backdrop Stands children: [] @@ -1862,3 +1849,16 @@ attributes: - color - mount_material +- id: co-4-3 + name: Photo Mounting Supplies + children: [] + attributes: + - color + - material +- id: co-4-4 + name: Photo Negative & Slide Storage + children: [] + attributes: + - color + - material + - negative_slide_storage_type diff --git a/data/categories/el_electronics.yml b/data/categories/el_electronics.yml index b699d8cd..f88b955e 100644 --- a/data/categories/el_electronics.yml +++ b/data/categories/el_electronics.yml @@ -57,6 +57,31 @@ - color - pattern - theme +- id: el-1-2-2 + name: Playfield Waxes + children: [] + attributes: + - color + - pattern +- id: el-1-2-3 + name: Protective Covers + children: [] + attributes: + - color + - pattern + - theme +- id: el-1-2-4 + name: Replacement Balls + children: [] + attributes: + - color + - pattern +- id: el-1-2-5 + name: Rubber Ring Kits + children: [] + attributes: + - color + - pattern - id: el-1-3 name: Pinball Machines children: [] @@ -86,6 +111,39 @@ - color - pattern - theme +- id: el-1-5-1 + name: Coin Mechanisms + children: [] + attributes: + - color + - currency + - pattern +- id: el-1-5-2 + name: Control Panels + children: [] + attributes: + - color + - pattern +- id: el-1-5-3 + name: Joysticks + children: [] + attributes: + - color + - pattern +- id: el-1-5-4 + name: Marquees + children: [] + attributes: + - color + - pattern + - theme +- id: el-1-5-5 + name: Push Buttons + children: [] + attributes: + - color + - pattern + - shape - id: el-1-6 name: Video Game Arcade Cabinets children: [] @@ -115,9 +173,9 @@ - el-2-1-1 - el-2-1-2 - el-2-1-3 - - el-2-1-6 - el-2-1-4 - el-2-1-5 + - el-2-1-6 - el-2-1-7 - el-2-1-8 - el-2-1-9 @@ -132,15 +190,35 @@ attributes: - color - pattern +- id: el-2-1-1-1 + name: Audio & Video Receiver Rack Mounts + children: [] + attributes: + - color + - pattern +- id: el-2-1-1-2 + name: Bluetooth Adapters + children: [] + attributes: + - color + - pattern + - usb_standard - id: el-2-1-2 name: Headphone & Headset Accessories children: - - el-2-1-2-4 - el-2-1-2-3 + - el-2-1-2-4 - el-2-1-2-5 attributes: - color - pattern +- id: el-2-1-2-3 + name: Headphone Carrying Cases + children: [] + attributes: + - color + - bag_case_material + - pattern - id: el-2-1-2-4 name: Headphone Cushions & Tips children: @@ -149,11 +227,35 @@ attributes: - color - pattern +- id: el-2-1-2-4-1 + name: Headphone Cushions + children: [] + attributes: + - color + - pattern +- id: el-2-1-2-4-2 + name: Headphone Tips + children: [] + attributes: + - color + - pattern +- id: el-2-1-2-5 + name: Headphone Stands + children: [] + attributes: + - color + - pattern - id: el-2-1-3 name: Karaoke System Accessories children: - - el-2-1-3-2 - el-2-1-3-1 + - el-2-1-3-2 + attributes: + - color + - pattern +- id: el-2-1-3-1 + name: Karaoke Carrying Cases + children: [] attributes: - color - pattern @@ -164,35 +266,31 @@ - color - music_genre - pattern -- id: el-2-1-6 - name: MP3 Player Accessories +- id: el-2-1-4 + name: Microphone Accessories children: - - el-2-1-6-1 - - el-2-1-6-2 + - el-2-1-4-1 + - el-2-1-4-2 + - el-2-1-4-3 attributes: - color - pattern -- id: el-2-1-6-1 - name: MP3 Player & Mobile Phone Accessory Sets +- id: el-2-1-4-1 + name: Microphone Shock Mounts children: [] attributes: - color - - mp3_player_accessories_included + - compatible_microphone_thread - pattern -- id: el-2-1-6-2 - name: MP3 Player Cases +- id: el-2-1-4-2 + name: Pop Filters children: [] attributes: - - case_type - color - pattern - - bag_case_material -- id: el-2-1-4 - name: Microphone Accessories - children: - - el-2-1-4-1 - - el-2-1-4-2 - - el-2-1-4-3 +- id: el-2-1-4-3 + name: Windshields + children: [] attributes: - color - pattern @@ -205,6 +303,29 @@ - material - microphone_thread - pattern +- id: el-2-1-6 + name: MP3 Player Accessories + children: + - el-2-1-6-1 + - el-2-1-6-2 + attributes: + - color + - pattern +- id: el-2-1-6-1 + name: MP3 Player & Mobile Phone Accessory Sets + children: [] + attributes: + - color + - mp3_player_accessories_included + - pattern +- id: el-2-1-6-2 + name: MP3 Player Cases + children: [] + attributes: + - case_type + - color + - bag_case_material + - pattern - id: el-2-1-7 name: Satellite Radio Accessories children: @@ -212,6 +333,12 @@ attributes: - color - pattern +- id: el-2-1-7-1 + name: Satellite Radio Mounts & Brackets + children: [] + attributes: + - color + - pattern - id: el-2-1-8 name: Speaker Accessories children: @@ -228,8 +355,8 @@ children: [] attributes: - color - - pattern - bag_case_material + - pattern - id: el-2-1-8-2 name: Speaker Components & Kits children: [] @@ -241,16 +368,16 @@ children: [] attributes: - color - - pattern - bag_case_material + - pattern - id: el-2-1-8-4 name: Speaker Stands & Mounts children: [] attributes: - color + - mount_material - mounting_type - pattern - - mount_material - id: el-2-1-8-5 name: Tactile Transducers children: [] @@ -268,6 +395,31 @@ attributes: - color - pattern +- id: el-2-1-9-1 + name: Cartridges + children: [] + attributes: + - color + - pattern +- id: el-2-1-9-2 + name: Record Cleaning Kits + children: [] + attributes: + - color + - pattern +- id: el-2-1-9-3 + name: Replacement Needles + children: [] + attributes: + - color + - pattern + - stylus_type +- id: el-2-1-9-4 + name: Slipmats + children: [] + attributes: + - color + - pattern - id: el-2-2 name: Audio Components children: @@ -432,6 +584,55 @@ - headphone_style - microphone_type - pattern +- id: el-2-2-7-1-1 + name: Bone Conduction Headphones + children: [] + attributes: + - color + - connectivity_technology + - device_interface + - microphone_type + - pattern +- id: el-2-2-7-1-2 + name: DJ Headphones + children: [] + attributes: + - audio_connectivity + - color + - connectivity_technology + - headphone_style + - microphone_type + - pattern +- id: el-2-2-7-1-3 + name: In-Ear Headphones + children: [] + attributes: + - audio_connectivity + - color + - connectivity_technology + - headphone_style + - microphone_type + - pattern +- id: el-2-2-7-1-4 + name: On-Ear Headphones + children: [] + attributes: + - audio_connectivity + - color + - connectivity_technology + - headphone_style + - microphone_type + - pattern +- id: el-2-2-7-1-5 + name: Over-Ear Headphones + children: [] + attributes: + - audio_connectivity + - color + - connectivity_technology + - headphone_style + - microphone_type + - pattern - id: el-2-2-7-2 name: Headsets children: [] @@ -574,6 +775,7 @@ name: Audio Players & Recorders children: - el-2-3-1 + - el-2-3-2 - el-2-3-3 - el-2-3-4 - el-2-3-5 @@ -583,7 +785,6 @@ - el-2-3-9 - el-2-3-10 - el-2-3-11 - - el-2-3-2 attributes: - color - connectivity_technology @@ -598,14 +799,24 @@ - connectivity_technology - pattern - power_source -- id: el-2-3-3 - name: Home Theater Systems +- id: el-2-3-2 + name: Handheld Players & Recorders children: [] attributes: - - audio_codecs_formats_supported - color + - connection_type - connectivity_technology - - device_interface + - media_format + - pattern + - power_source +- id: el-2-3-3 + name: Home Theater Systems + children: [] + attributes: + - audio_codecs_formats_supported + - color + - connectivity_technology + - device_interface - frequency_radio_bands_supported - pattern - power_source @@ -660,6 +871,78 @@ - pattern - power_source - tuner_type +- id: el-2-3-7-1 + name: AM/FM Radios + children: [] + attributes: + - audio_codecs_formats_supported + - color + - connection_type + - connectivity_technology + - frequency_radio_bands_supported + - pattern + - power_source + - tuner_type +- id: el-2-3-7-2 + name: DAB Radios + children: [] + attributes: + - audio_codecs_formats_supported + - color + - connection_type + - connectivity_technology + - frequency_radio_bands_supported + - pattern + - power_source + - tuner_type +- id: el-2-3-7-3 + name: Internet Radios + children: [] + attributes: + - audio_codecs_formats_supported + - color + - connection_type + - connectivity_technology + - frequency_radio_bands_supported + - pattern + - power_source + - tuner_type +- id: el-2-3-7-4 + name: Satellite Radios + children: [] + attributes: + - audio_codecs_formats_supported + - color + - connection_type + - connectivity_technology + - frequency_radio_bands_supported + - pattern + - power_source + - tuner_type +- id: el-2-3-7-5 + name: Shortwave Radios + children: [] + attributes: + - audio_codecs_formats_supported + - color + - connection_type + - connectivity_technology + - frequency_radio_bands_supported + - pattern + - power_source + - tuner_type +- id: el-2-3-7-6 + name: Weather Radios + children: [] + attributes: + - audio_codecs_formats_supported + - color + - connection_type + - connectivity_technology + - frequency_radio_bands_supported + - pattern + - power_source + - tuner_type - id: el-2-3-8 name: Reel-to-Reel Tape Players & Recorders children: [] @@ -788,6 +1071,27 @@ attributes: - color - pattern +- id: el-3-1-1 + name: Circuit Board Protective Cases + children: [] + attributes: + - color + - pattern +- id: el-3-1-2 + name: Heat Sinks + children: [] + attributes: + - color + - pattern + - shape +- id: el-3-1-3 + name: Jump Wires + children: [] + attributes: + - color + - connector_gender + - wire_rope_material + - pattern - id: el-3-2 name: Circuit Decoders & Encoders children: [] @@ -825,6 +1129,51 @@ - passband - pattern - stopband +- id: el-3-4-1 + name: All-Pass Filters + children: [] + attributes: + - color + - component_package_type + - passband + - pattern + - stopband +- id: el-3-4-2 + name: Band-Pass Filters + children: [] + attributes: + - color + - component_package_type + - passband + - pattern + - stopband +- id: el-3-4-3 + name: Band-Stop Filters + children: [] + attributes: + - color + - component_package_type + - passband + - pattern + - stopband +- id: el-3-4-4 + name: High-Pass Filters + children: [] + attributes: + - color + - component_package_type + - passband + - pattern + - stopband +- id: el-3-4-5 + name: Low-Pass Filters + children: [] + attributes: + - color + - component_package_type + - passband + - pattern + - stopband - id: el-3-5 name: Passive Circuit Components children: @@ -1058,13 +1407,38 @@ attributes: - color - pattern +- id: el-4-3-1 + name: Earpieces + children: [] + attributes: + - audio_connectivity + - color + - pattern +- id: el-4-3-2 + name: Radio Carrying Cases + children: [] + attributes: + - color + - bag_case_material + - pattern + - radio_case_design - id: el-4-4 name: Communication Radios children: + - el-4-4-1 - el-4-4-2 - el-4-4-3 - el-4-4-4 - - el-4-4-1 + attributes: + - color + - connection_type + - connectivity_technology + - frequency_radio_bands_supported + - pattern + - power_source +- id: el-4-4-1 + name: Amateur Radios + children: [] attributes: - color - connection_type @@ -1110,6 +1484,17 @@ - color - connection_type - pattern +- id: el-4-5-1 + name: Speaker Units + children: [] + attributes: + - audio_output_channel + - color + - connectivity_technology + - device_interface + - mounting_type + - pattern + - speaker_technology - id: el-4-6 name: Intercoms children: [] @@ -1133,10 +1518,10 @@ - el-4-8-1 - el-4-8-2 - el-4-8-3 - - el-4-8-6 - - el-4-8-7 - el-4-8-4 - el-4-8-5 + - el-4-8-6 + - el-4-8-7 attributes: - color - pattern @@ -1162,61 +1547,191 @@ - handset_type - pattern - telephone_style -- id: el-4-8-6 - name: Satellite Phones - children: [] +- id: el-4-8-4 + name: Mobile & Smart Phone Accessories + children: + - el-4-8-4-1 + - el-4-8-4-2 + - el-4-8-4-3 + - el-4-8-4-4 + - el-4-8-4-5 + - el-4-8-4-6 + - el-4-8-4-7 attributes: - color - - connectivity_technology - - data_network - pattern - - satellite_coverage_area - - satellite_network_type - - subscription_type -- id: el-4-8-7 - name: Telephone Accessories +- id: el-4-8-4-1 + name: Mobile Phone Camera Accessories children: - - el-4-8-7-1 + - el-4-8-4-1-1 + - el-4-8-4-1-2 + - el-4-8-4-1-3 + - el-4-8-4-1-4 attributes: - color + - device_interface - pattern -- id: el-4-8-7-1 - name: Phone Cards +- id: el-4-8-4-1-1 + name: Lenses children: [] attributes: - color - - currency + - device_interface - pattern -- id: el-4-9 - name: Video Conferencing +- id: el-4-8-4-1-2 + name: Lighting Kits children: [] attributes: - color - - connectivity_technology - - display_resolution + - connection_type - pattern -- id: el-5 - name: Components - children: - - el-5-1 - - el-5-2 - - el-5-3 - - el-5-4 - - el-5-5 +- id: el-4-8-4-1-3 + name: Remote Shutters + children: [] attributes: - color + - device_interface - pattern -- id: el-5-1 - name: Accelerometers +- id: el-4-8-4-1-4 + name: Selfie Sticks children: [] attributes: - color - - component_output_type - - connectivity_technology - device_interface + - feet_type + - leg_lock_type + - leg_sections + - material - pattern -- id: el-5-2 - name: Converters +- id: el-4-8-4-2 + name: Mobile Phone Cases + children: [] + attributes: + - case_type + - certifications_standards + - color + - hand_side + - bag_case_material + - pattern +- id: el-4-8-4-3 + name: Mobile Phone Charms & Straps + children: [] + attributes: + - color + - pattern +- id: el-4-8-4-4 + name: Mobile Phone Pre-Paid Cards & SIM Cards + children: + - el-4-8-4-4-1 + - el-4-8-4-4-2 + attributes: + - color + - currency + - pattern +- id: el-4-8-4-4-1 + name: Mobile Phone Pre-Paid Cards + children: [] + attributes: + - color + - currency + - pattern +- id: el-4-8-4-4-2 + name: SIM Cards + children: [] + attributes: + - color + - currency + - pattern + - sim_card_type +- id: el-4-8-4-5 + name: Mobile Phone Replacement Parts + children: [] + attributes: + - color + - pattern +- id: el-4-8-4-6 + name: Mobile Phone Stands + children: [] + attributes: + - color + - pattern +- id: el-4-8-4-7 + name: SIM Card Ejection Tools + children: [] + attributes: + - color + - pattern +- id: el-4-8-5 + name: Mobile & Smart Phones + children: [] + attributes: + - battery_technology + - color + - cosmetic_condition + - data_network + - display_resolution + - operating_system + - pattern + - removable_storage_formats_supported + - sim_card_capability + - sim_card_type_1 + - sim_card_type_2 + - subscription_type +- id: el-4-8-6 + name: Satellite Phones + children: [] + attributes: + - color + - connectivity_technology + - data_network + - pattern + - satellite_coverage_area + - satellite_network_type + - subscription_type +- id: el-4-8-7 + name: Telephone Accessories + children: + - el-4-8-7-1 + attributes: + - color + - pattern +- id: el-4-8-7-1 + name: Phone Cards + children: [] + attributes: + - color + - currency + - pattern +- id: el-4-9 + name: Video Conferencing + children: [] + attributes: + - color + - connectivity_technology + - display_resolution + - pattern +- id: el-5 + name: Components + children: + - el-5-1 + - el-5-2 + - el-5-3 + - el-5-4 + - el-5-5 + attributes: + - color + - pattern +- id: el-5-1 + name: Accelerometers + children: [] + attributes: + - color + - component_output_type + - connectivity_technology + - device_interface + - pattern +- id: el-5-2 + name: Converters children: - el-5-2-1 - el-5-2-2 @@ -1377,13 +1892,13 @@ - connection_type - data_network - display_resolution + - e_reader_display_technology - e_book_formats_supported - energy_efficiency_class - operating_system - pattern - power_source - processor_family - - e_reader_display_technology - id: el-6-4-3 name: PDAs children: [] @@ -1734,12 +2249,12 @@ name: Cables children: - el-7-7-1 + - el-7-7-2 - el-7-7-3 - el-7-7-4 - el-7-7-5 - el-7-7-6 - el-7-7-7 - - el-7-7-2 attributes: - cable_shielding - color @@ -1757,6 +2272,47 @@ - color - device_interface - pattern +- id: el-7-7-1-1 + name: AUX Cables + children: [] + attributes: + - audio_connectivity + - cable_shielding + - color + - pattern +- id: el-7-7-1-2 + name: HDMI Cables + children: [] + attributes: + - cable_shielding + - color + - device_interface + - pattern +- id: el-7-7-1-3 + name: VGA Cables + children: [] + attributes: + - cable_shielding + - color + - device_interface + - pattern +- id: el-7-7-1-4 + name: XLR Cables + children: [] + attributes: + - cable_shielding + - color + - input_connection + - output_connection + - pattern +- id: el-7-7-2 + name: Extension Cables + children: [] + attributes: + - cable_shielding + - color + - device_interface + - pattern - id: el-7-7-3 name: KVM Cables children: [] @@ -1775,6 +2331,22 @@ - color - network_cable_interface - pattern +- id: el-7-7-4-1 + name: Coaxial Cables + children: [] + attributes: + - cable_shielding + - color + - device_interface + - pattern +- id: el-7-7-4-2 + name: Ethernet Cables + children: [] + attributes: + - cable_shielding + - color + - network_cable_interface + - pattern - id: el-7-7-5 name: Storage & Data Transfer Cables children: @@ -1785,6 +2357,22 @@ - color - device_interface - pattern +- id: el-7-7-5-1 + name: FireWire Cables + children: [] + attributes: + - cable_shielding + - color + - device_interface + - pattern +- id: el-7-7-5-2 + name: USB Cables + children: [] + attributes: + - cable_shielding + - color + - connection_type + - pattern - id: el-7-7-6 name: System & Power Cables children: [] @@ -1859,8 +2447,8 @@ attributes: - case_type - color - - pattern - bag_case_material + - pattern - id: el-7-8-4-2 name: PDA Accessories children: @@ -1874,8 +2462,8 @@ attributes: - case_type - color - - pattern - bag_case_material + - pattern - id: el-7-8-5 name: Keyboard & Mouse Wrist Rests children: [] @@ -2030,8 +2618,8 @@ attributes: - color - display_resolution - - pattern - e_reader_display_technology + - pattern - id: el-7-9-10 name: I/O Cards & Adapters children: @@ -2106,6 +2694,24 @@ attributes: - color - pattern +- id: el-7-9-11-2-1 + name: Game Controller Carrying Cases + children: [] + attributes: + - color + - pattern +- id: el-7-9-11-2-2 + name: Game Controller Skins + children: [] + attributes: + - color + - pattern +- id: el-7-9-11-2-3 + name: Thumb Grips + children: [] + attributes: + - color + - pattern - id: el-7-9-11-3 name: Keyboard Keys & Caps children: [] @@ -2121,6 +2727,24 @@ attributes: - color - pattern +- id: el-7-9-11-4-1 + name: Mice & Trackball Carrying Cases + children: [] + attributes: + - color + - pattern +- id: el-7-9-11-4-2 + name: Mouse Bungees + children: [] + attributes: + - color + - pattern +- id: el-7-9-11-4-3 + name: Mouse Skates + children: [] + attributes: + - color + - pattern - id: el-7-9-12 name: Input Devices children: @@ -2131,8 +2755,8 @@ - el-7-9-12-5 - el-7-9-12-6 - el-7-9-12-7 - - el-7-9-12-9 - el-7-9-12-8 + - el-7-9-12-9 - el-7-9-12-10 - el-7-9-12-11 - el-7-9-12-12 @@ -2264,20 +2888,8 @@ - display_resolution - pattern - power_source -- id: el-7-9-12-9 - name: KVM Switches - children: [] - attributes: - - color - - connectivity_technology - - device_interface - - keyboard_port_type - - mouse_port_type - - pattern - - power_source - - video_port_type -- id: el-7-9-12-8 - name: Keyboards +- id: el-7-9-12-8 + name: Keyboards children: [] attributes: - color @@ -2289,6 +2901,18 @@ - pattern - pointing_device - power_source +- id: el-7-9-12-9 + name: KVM Switches + children: [] + attributes: + - color + - connectivity_technology + - device_interface + - keyboard_port_type + - mouse_port_type + - pattern + - power_source + - video_port_type - id: el-7-9-12-10 name: Memory Card Readers children: [] @@ -2408,15 +3032,25 @@ - id: el-7-9-14-1 name: Disk Duplicators children: + - el-7-9-14-1-1 - el-7-9-14-1-2 - el-7-9-14-1-3 - - el-7-9-14-1-1 attributes: - color - device_interface - pattern - power_source - read_write_speed +- id: el-7-9-14-1-1 + name: CD/DVD/Blu-ray Duplicators + children: [] + attributes: + - color + - device_interface + - optical_drive_type + - pattern + - power_source + - read_write_speed - id: el-7-9-14-1-2 name: Hard Drive Duplicators children: [] @@ -2451,8 +3085,8 @@ attributes: - case_type - color - - pattern - bag_case_material + - pattern - id: el-7-9-14-2-2 name: Hard Drive Docks children: [] @@ -2584,11 +3218,17 @@ - id: el-7-11 name: Electronics Films & Shields children: + - el-7-11-1 - el-7-11-2 - el-7-11-3 - el-7-11-4 - el-7-11-5 - - el-7-11-1 + attributes: + - color + - pattern +- id: el-7-11-1 + name: Dust Covers + children: [] attributes: - color - pattern @@ -2687,9 +3327,9 @@ children: [] attributes: - color + - bag_case_material - pattern - removable_storage_formats_supported - - bag_case_material - id: el-7-14 name: Mobile Phone & Tablet Tripods & Monopods children: [] @@ -2705,13 +3345,13 @@ - el-7-15-4 - el-7-15-5 - el-7-15-6 + - el-7-15-7 - el-7-15-8 - el-7-15-9 - el-7-15-10 - el-7-15-11 - el-7-15-12 - el-7-15-13 - - el-7-15-7 attributes: - color - pattern @@ -2723,8 +3363,8 @@ - el-7-15-1-3 - el-7-15-1-4 - el-7-15-1-5 - - el-7-15-1-7 - el-7-15-1-6 + - el-7-15-1-7 - el-7-15-1-8 - el-7-15-1-9 - el-7-15-1-10 @@ -2775,16 +3415,16 @@ - battery_technology - color - pattern -- id: el-7-15-1-7 - name: MP3 Player Batteries +- id: el-7-15-1-6 + name: Mobile Phone Batteries children: [] attributes: - battery_size - battery_technology - color - pattern -- id: el-7-15-1-6 - name: Mobile Phone Batteries +- id: el-7-15-1-7 + name: MP3 Player Batteries children: [] attributes: - battery_size @@ -2916,6 +3556,20 @@ attributes: - color - pattern +- id: el-7-15-4-1 + name: Charger Protective Cases + children: [] + attributes: + - color + - pattern +- id: el-7-15-4-2 + name: Replacement Cords + children: [] + attributes: + - cable_shielding + - color + - pattern + - plug_type - id: el-7-15-5 name: Power Adapters & Chargers children: @@ -2927,6 +3581,27 @@ - pattern - plug_type - power_source +- id: el-7-15-5-1 + name: Power Banks + children: [] + attributes: + - charging_method + - color + - compatible_device + - connection_type + - pattern + - plug_type + - power_source +- id: el-7-15-5-2 + name: Wireless Chargers + children: [] + attributes: + - color + - compatible_device + - connection_type + - pattern + - plug_type + - power_source - id: el-7-15-6 name: Power Control Units children: [] @@ -2934,6 +3609,15 @@ - color - outlet_type - pattern +- id: el-7-15-7 + name: Power Stations + children: [] + attributes: + - battery_technology + - color + - connection_type + - pattern + - power_source - id: el-7-15-8 name: Power Strips & Surge Suppressors children: [] @@ -2980,6 +3664,12 @@ attributes: - color - pattern +- id: el-7-15-13-1 + name: UPS Rack Mounting Kits + children: [] + attributes: + - color + - pattern - id: el-7-16 name: Remote Controls children: [] @@ -3277,6 +3967,96 @@ - network_protocols_supported - pattern - power_source +- id: el-12-3-1 + name: Gigabit Switches + children: [] + attributes: + - color + - connection_type + - ethernet_lan_interface_type + - network_protocols_supported + - pattern + - power_source +- id: el-12-3-2 + name: Layer 2 Switches + children: [] + attributes: + - color + - connection_type + - ethernet_lan_interface_type + - network_protocols_supported + - pattern + - power_source +- id: el-12-3-3 + name: Layer 3 Switches + children: [] + attributes: + - color + - connection_type + - ethernet_lan_interface_type + - network_protocols_supported + - pattern + - power_source +- id: el-12-3-4 + name: Managed Switches + children: [] + attributes: + - color + - connection_type + - ethernet_lan_interface_type + - network_protocols_supported + - pattern + - power_source +- id: el-12-3-5 + name: Modular Switches + children: [] + attributes: + - color + - connection_type + - ethernet_lan_interface_type + - network_protocols_supported + - pattern + - power_source +- id: el-12-3-6 + name: Power Over Ethernet Switches + children: [] + attributes: + - color + - connection_type + - ethernet_lan_interface_type + - network_protocols_supported + - pattern + - power_source +- id: el-12-3-7 + name: Smart Switches + children: [] + attributes: + - color + - connection_type + - ethernet_lan_interface_type + - network_protocols_supported + - pattern + - power_source +- id: el-12-3-8 + name: Stackable Switches + children: [] + attributes: + - color + - connection_type + - ethernet_lan_interface_type + - network_protocols_supported + - pattern + - power_source +- id: el-12-3-9 + name: Unmanaged Switches + children: [] + attributes: + - color + - connection_type + - ethernet_lan_interface_type + - network_protocols_supported + - pattern + - power_source - id: el-12-4 name: Modem Accessories children: [] @@ -3366,6 +4146,49 @@ attributes: - color - pattern +- id: el-13-1-1 + name: 3D Printer Carrying Cases + children: [] + attributes: + - color + - pattern +- id: el-13-1-2 + name: 3D Printer Cleaning Kits + children: [] + attributes: + - color + - pattern +- id: el-13-1-3 + name: Build Tape + children: [] + attributes: + - color + - pattern +- id: el-13-1-4 + name: Extruders + children: [] + attributes: + - color + - pattern +- id: el-13-1-5 + name: Filaments + children: [] + attributes: + - color + - material + - pattern +- id: el-13-1-6 + name: Nozzles + children: [] + attributes: + - color + - pattern +- id: el-13-1-7 + name: Print Beds + children: [] + attributes: + - color + - pattern - id: el-13-2 name: 3D Printers children: [] @@ -3385,9 +4208,9 @@ - el-13-3-2 - el-13-3-3 - el-13-3-4 - - el-13-3-7 - el-13-3-5 - el-13-3-6 + - el-13-3-7 attributes: - color - pattern @@ -3423,24 +4246,52 @@ - color - pattern - print_technology -- id: el-13-3-1-3 - name: Printer Maintenance Kits +- id: el-13-3-1-2-1 + name: Air Printer Filters children: [] attributes: - color - pattern - print_technology - - printer_accessories_included -- id: el-13-3-1-4 - name: Printer Ribbons +- id: el-13-3-1-2-2 + name: Fume Printer Filters children: [] attributes: - color - pattern - print_technology - - suitable_for_printer_type -- id: el-13-3-1-5 - name: Printheads +- id: el-13-3-1-2-3 + name: Ozone Printer Filters + children: [] + attributes: + - color + - pattern + - print_technology +- id: el-13-3-1-2-4 + name: Toner Printer Filters + children: [] + attributes: + - color + - pattern + - print_technology +- id: el-13-3-1-3 + name: Printer Maintenance Kits + children: [] + attributes: + - color + - pattern + - print_technology + - printer_accessories_included +- id: el-13-3-1-4 + name: Printer Ribbons + children: [] + attributes: + - color + - pattern + - print_technology + - suitable_for_printer_type +- id: el-13-3-1-5 + name: Printheads children: [] attributes: - color @@ -3482,6 +4333,18 @@ attributes: - color - pattern +- id: el-13-3-5 + name: Printer, Copier & Fax Carrying Cases + children: [] + attributes: + - color + - pattern +- id: el-13-3-6 + name: Printer, Copier & Fax Cleaning Kits + children: [] + attributes: + - color + - pattern - id: el-13-3-7 name: Printer, Copier & Fax Machine Replacement Parts children: [] @@ -3509,6 +4372,18 @@ attributes: - color - pattern +- id: el-13-5-1 + name: Scanner Carrying Cases + children: [] + attributes: + - color + - pattern +- id: el-13-5-2 + name: Scanner Cleaning Kits + children: [] + attributes: + - color + - pattern - id: el-13-6 name: Scanners children: @@ -3527,6 +4402,78 @@ - pattern - power_source - scanner_sensor_type +- id: el-13-6-1 + name: Drum Scanners + children: [] + attributes: + - color + - compatible_paper_size + - connection_type + - energy_efficiency_class + - memory_technology + - pattern + - power_source + - scanner_sensor_type +- id: el-13-6-2 + name: Film Scanners + children: [] + attributes: + - color + - compatible_paper_size + - connection_type + - energy_efficiency_class + - memory_technology + - pattern + - power_source + - scanner_sensor_type +- id: el-13-6-3 + name: Flatbed Scanners + children: [] + attributes: + - color + - compatible_paper_size + - connection_type + - energy_efficiency_class + - memory_technology + - pattern + - power_source + - scanner_sensor_type +- id: el-13-6-4 + name: Photo Scanners + children: [] + attributes: + - color + - compatible_paper_size + - connection_type + - energy_efficiency_class + - memory_technology + - pattern + - power_source + - scanner_sensor_type +- id: el-13-6-5 + name: Portable Scanners + children: [] + attributes: + - color + - compatible_paper_size + - connection_type + - energy_efficiency_class + - memory_technology + - pattern + - power_source + - scanner_sensor_type +- id: el-13-6-6 + name: Sheetfed Scanners + children: [] + attributes: + - color + - compatible_paper_size + - connection_type + - energy_efficiency_class + - memory_technology + - pattern + - power_source + - scanner_sensor_type - id: el-14 name: Radar Detectors children: [] @@ -3694,8 +4641,8 @@ attributes: - color - device_interface - - pattern - 3d_glasses_material + - pattern - id: el-17-5-2 name: Computer Monitor Accessories children: @@ -3754,9 +4701,9 @@ name: Projector Replacement Lamps children: [] attributes: + - projector_light_source - color - pattern - - projector_light_source - id: el-17-5-4 name: Rewinders children: [] @@ -3818,16 +4765,25 @@ - id: el-17-8 name: Video Players & Recorders children: - - el-17-8-2 - el-17-8-1 + - el-17-8-2 + - el-17-8-3 - el-17-8-4 - el-17-8-5 - - el-17-8-3 attributes: - color - device_interface - energy_efficiency_class - pattern +- id: el-17-8-1 + name: Digital Video Recorders + children: [] + attributes: + - color + - device_interface + - energy_efficiency_class + - pattern + - video_codecs_formats_supported - id: el-17-8-2 name: DVD & Blu-ray Players children: [] @@ -3839,15 +4795,17 @@ - playback_disc_formats - video_codecs_formats_supported - video_region_code -- id: el-17-8-1 - name: Digital Video Recorders +- id: el-17-8-3 + name: DVD & Blu-ray Recorders children: [] attributes: - color - - device_interface + - connection_type - energy_efficiency_class - pattern + - playback_disc_formats - video_codecs_formats_supported + - video_region_code - id: el-17-8-4 name: Streaming & Home Media Players children: [] @@ -3887,12 +4845,19 @@ - id: el-18 name: Video Game Console Accessories children: + - el-18-1 - el-18-3 - el-18-4 - - el-18-1 attributes: - color - pattern +- id: el-18-1 + name: Charging Docks + children: [] + attributes: + - color + - device_interface + - pattern - id: el-18-3 name: Home Game Console Accessories children: @@ -3900,6 +4865,12 @@ attributes: - color - pattern +- id: el-18-3-2 + name: Home Game Console Skins + children: [] + attributes: + - color + - pattern - id: el-18-4 name: Portable Game Console Accessories children: @@ -3909,1004 +4880,33 @@ attributes: - color - pattern -- id: el-19 - name: Video Game Consoles - children: [] - attributes: - - color - - compatible_game_format - - compatible_resolution - - connection_type - - console_system - - energy_efficiency_class - - pattern - - power_source -- id: el-1-2-2 - name: Playfield Waxes - children: [] - attributes: - - color - - pattern -- id: el-1-2-3 - name: Protective Covers - children: [] - attributes: - - color - - pattern - - theme -- id: el-1-2-4 - name: Replacement Balls - children: [] - attributes: - - color - - pattern -- id: el-1-2-5 - name: Rubber Ring Kits - children: [] - attributes: - - color - - pattern -- id: el-1-5-1 - name: Coin Mechanisms - children: [] - attributes: - - color - - currency - - pattern -- id: el-1-5-2 - name: Control Panels - children: [] - attributes: - - color - - pattern -- id: el-1-5-3 - name: Joysticks - children: [] - attributes: - - color - - pattern -- id: el-1-5-4 - name: Marquees - children: [] - attributes: - - color - - pattern - - theme -- id: el-1-5-5 - name: Push Buttons +- id: el-18-4-1 + name: Portable Game Console Cases children: [] attributes: - color - pattern - - shape -- id: el-2-1-1-1 - name: Audio & Video Receiver Rack Mounts +- id: el-18-4-2 + name: Portable Game Console Screen Protectors children: [] attributes: - color - pattern -- id: el-2-1-1-2 - name: Bluetooth Adapters +- id: el-18-4-3 + name: Portable Game Console Skins children: [] attributes: - color - pattern - - usb_standard -- id: el-2-1-2-3 - name: Headphone Carrying Cases +- id: el-19 + name: Video Game Consoles children: [] attributes: - color - - pattern - - bag_case_material -- id: el-2-1-2-4-1 - name: Headphone Cushions - children: [] - attributes: - - color - - pattern -- id: el-2-1-2-4-2 - name: Headphone Tips - children: [] - attributes: - - color - - pattern -- id: el-2-1-2-5 - name: Headphone Stands - children: [] - attributes: - - color - - pattern -- id: el-2-1-3-1 - name: Karaoke Carrying Cases - children: [] - attributes: - - color - - pattern -- id: el-2-1-4-1 - name: Microphone Shock Mounts - children: [] - attributes: - - color - - compatible_microphone_thread - - pattern -- id: el-2-1-4-2 - name: Pop Filters - children: [] - attributes: - - color - - pattern -- id: el-2-1-4-3 - name: Windshields - children: [] - attributes: - - color - - pattern -- id: el-2-1-7-1 - name: Satellite Radio Mounts & Brackets - children: [] - attributes: - - color - - pattern -- id: el-2-1-9-1 - name: Cartridges - children: [] - attributes: - - color - - pattern -- id: el-2-1-9-2 - name: Record Cleaning Kits - children: [] - attributes: - - color - - pattern -- id: el-2-1-9-3 - name: Replacement Needles - children: [] - attributes: - - color - - pattern - - stylus_type -- id: el-2-1-9-4 - name: Slipmats - children: [] - attributes: - - color - - pattern -- id: el-2-2-7-1-1 - name: Bone Conduction Headphones - children: [] - attributes: - - color - - connectivity_technology - - device_interface - - microphone_type - - pattern -- id: el-2-2-7-1-2 - name: DJ Headphones - children: [] - attributes: - - audio_connectivity - - color - - connectivity_technology - - headphone_style - - microphone_type - - pattern -- id: el-2-2-7-1-3 - name: In-Ear Headphones - children: [] - attributes: - - audio_connectivity - - color - - connectivity_technology - - headphone_style - - microphone_type - - pattern -- id: el-2-2-7-1-4 - name: On-Ear Headphones - children: [] - attributes: - - audio_connectivity - - color - - connectivity_technology - - headphone_style - - microphone_type - - pattern -- id: el-2-2-7-1-5 - name: Over-Ear Headphones - children: [] - attributes: - - audio_connectivity - - color - - connectivity_technology - - headphone_style - - microphone_type - - pattern -- id: el-2-3-2 - name: Handheld Players & Recorders - children: [] - attributes: - - color - - connection_type - - connectivity_technology - - media_format - - pattern - - power_source -- id: el-2-3-7-1 - name: AM/FM Radios - children: [] - attributes: - - audio_codecs_formats_supported - - color - - connection_type - - connectivity_technology - - frequency_radio_bands_supported - - pattern - - power_source - - tuner_type -- id: el-2-3-7-2 - name: DAB Radios - children: [] - attributes: - - audio_codecs_formats_supported - - color - - connection_type - - connectivity_technology - - frequency_radio_bands_supported - - pattern - - power_source - - tuner_type -- id: el-2-3-7-3 - name: Internet Radios - children: [] - attributes: - - audio_codecs_formats_supported - - color - - connection_type - - connectivity_technology - - frequency_radio_bands_supported - - pattern - - power_source - - tuner_type -- id: el-2-3-7-4 - name: Satellite Radios - children: [] - attributes: - - audio_codecs_formats_supported - - color - - connection_type - - connectivity_technology - - frequency_radio_bands_supported - - pattern - - power_source - - tuner_type -- id: el-2-3-7-5 - name: Shortwave Radios - children: [] - attributes: - - audio_codecs_formats_supported - - color - - connection_type - - connectivity_technology - - frequency_radio_bands_supported - - pattern - - power_source - - tuner_type -- id: el-2-3-7-6 - name: Weather Radios - children: [] - attributes: - - audio_codecs_formats_supported - - color - - connection_type - - connectivity_technology - - frequency_radio_bands_supported - - pattern - - power_source - - tuner_type -- id: el-3-1-1 - name: Circuit Board Protective Cases - children: [] - attributes: - - color - - pattern -- id: el-3-1-2 - name: Heat Sinks - children: [] - attributes: - - color - - pattern - - shape -- id: el-3-1-3 - name: Jump Wires - children: [] - attributes: - - color - - connector_gender - - pattern - - wire_rope_material -- id: el-3-4-1 - name: All-Pass Filters - children: [] - attributes: - - color - - component_package_type - - passband - - pattern - - stopband -- id: el-3-4-2 - name: Band-Pass Filters - children: [] - attributes: - - color - - component_package_type - - passband - - pattern - - stopband -- id: el-3-4-3 - name: Band-Stop Filters - children: [] - attributes: - - color - - component_package_type - - passband - - pattern - - stopband -- id: el-3-4-4 - name: High-Pass Filters - children: [] - attributes: - - color - - component_package_type - - passband - - pattern - - stopband -- id: el-3-4-5 - name: Low-Pass Filters - children: [] - attributes: - - color - - component_package_type - - passband - - pattern - - stopband -- id: el-4-3-1 - name: Earpieces - children: [] - attributes: - - audio_connectivity - - color - - pattern -- id: el-4-3-2 - name: Radio Carrying Cases - children: [] - attributes: - - color - - pattern - - radio_case_design - - bag_case_material -- id: el-4-4-1 - name: Amateur Radios - children: [] - attributes: - - color - - connection_type - - connectivity_technology - - frequency_radio_bands_supported - - pattern - - power_source -- id: el-4-5-1 - name: Speaker Units - children: [] - attributes: - - audio_output_channel - - color - - connectivity_technology - - device_interface - - mounting_type - - pattern - - speaker_technology -- id: el-4-8-4 - name: Mobile & Smart Phone Accessories - children: - - el-4-8-4-1 - - el-4-8-4-2 - - el-4-8-4-3 - - el-4-8-4-4 - - el-4-8-4-5 - - el-4-8-4-6 - - el-4-8-4-7 - attributes: - - color - - pattern -- id: el-4-8-4-1 - name: Mobile Phone Camera Accessories - children: - - el-4-8-4-1-1 - - el-4-8-4-1-2 - - el-4-8-4-1-3 - - el-4-8-4-1-4 - attributes: - - color - - device_interface - - pattern -- id: el-4-8-4-1-1 - name: Lenses - children: [] - attributes: - - color - - device_interface - - pattern -- id: el-4-8-4-1-2 - name: Lighting Kits - children: [] - attributes: - - color - - connection_type - - pattern -- id: el-4-8-4-1-3 - name: Remote Shutters - children: [] - attributes: - - color - - device_interface - - pattern -- id: el-4-8-4-1-4 - name: Selfie Sticks - children: [] - attributes: - - color - - device_interface - - feet_type - - leg_lock_type - - leg_sections - - material - - pattern -- id: el-4-8-4-2 - name: Mobile Phone Cases - children: [] - attributes: - - case_type - - certifications_and_standards - - color - - hand_side - - pattern - - bag_case_material -- id: el-4-8-4-3 - name: Mobile Phone Charms & Straps - children: [] - attributes: - - color - - pattern -- id: el-4-8-4-4 - name: Mobile Phone Pre-Paid Cards & SIM Cards - children: - - el-4-8-4-4-1 - - el-4-8-4-4-2 - attributes: - - color - - currency - - pattern -- id: el-4-8-4-4-1 - name: Mobile Phone Pre-Paid Cards - children: [] - attributes: - - color - - currency - - pattern -- id: el-4-8-4-4-2 - name: SIM Cards - children: [] - attributes: - - color - - currency - - pattern - - sim_card_type -- id: el-4-8-4-5 - name: Mobile Phone Replacement Parts - children: [] - attributes: - - color - - pattern -- id: el-4-8-4-6 - name: Mobile Phone Stands - children: [] - attributes: - - color - - pattern -- id: el-4-8-4-7 - name: SIM Card Ejection Tools - children: [] - attributes: - - color - - pattern -- id: el-4-8-5 - name: Mobile & Smart Phones - children: [] - attributes: - - battery_technology - - color - - cosmetic_condition - - data_network - - display_resolution - - operating_system - - pattern - - removable_storage_formats_supported - - sim_card_capability - - sim_card_type_1 - - sim_card_type_2 - - subscription_type -- id: el-7-7-1-1 - name: AUX Cables - children: [] - attributes: - - audio_connectivity - - cable_shielding - - color - - pattern -- id: el-7-7-1-2 - name: HDMI Cables - children: [] - attributes: - - cable_shielding - - color - - device_interface - - pattern -- id: el-7-7-1-3 - name: VGA Cables - children: [] - attributes: - - cable_shielding - - color - - device_interface - - pattern -- id: el-7-7-1-4 - name: XLR Cables - children: [] - attributes: - - cable_shielding - - color - - input_connection - - output_connection - - pattern -- id: el-7-7-2 - name: Extension Cables - children: [] - attributes: - - cable_shielding - - color - - device_interface - - pattern -- id: el-7-7-4-1 - name: Coaxial Cables - children: [] - attributes: - - cable_shielding - - color - - device_interface - - pattern -- id: el-7-7-4-2 - name: Ethernet Cables - children: [] - attributes: - - cable_shielding - - color - - network_cable_interface - - pattern -- id: el-7-7-5-1 - name: FireWire Cables - children: [] - attributes: - - cable_shielding - - color - - device_interface - - pattern -- id: el-7-7-5-2 - name: USB Cables - children: [] - attributes: - - cable_shielding - - color - - connection_type - - pattern -- id: el-7-9-11-2-1 - name: Game Controller Carrying Cases - children: [] - attributes: - - color - - pattern -- id: el-7-9-11-2-2 - name: Game Controller Skins - children: [] - attributes: - - color - - pattern -- id: el-7-9-11-2-3 - name: Thumb Grips - children: [] - attributes: - - color - - pattern -- id: el-7-9-11-4-1 - name: Mice & Trackball Carrying Cases - children: [] - attributes: - - color - - pattern -- id: el-7-9-11-4-2 - name: Mouse Bungees - children: [] - attributes: - - color - - pattern -- id: el-7-9-11-4-3 - name: Mouse Skates - children: [] - attributes: - - color - - pattern -- id: el-7-9-14-1-1 - name: CD/DVD/Blu-ray Duplicators - children: [] - attributes: - - color - - device_interface - - optical_drive_type - - pattern - - power_source - - read_write_speed -- id: el-7-11-1 - name: Dust Covers - children: [] - attributes: - - color - - pattern -- id: el-7-15-4-1 - name: Charger Protective Cases - children: [] - attributes: - - color - - pattern -- id: el-7-15-4-2 - name: Replacement Cords - children: [] - attributes: - - cable_shielding - - color - - pattern - - plug_type -- id: el-7-15-5-1 - name: Power Banks - children: [] - attributes: - - charging_method - - color - - compatible_device - - connection_type - - pattern - - plug_type - - power_source -- id: el-7-15-5-2 - name: Wireless Chargers - children: [] - attributes: - - color - - compatible_device - - connection_type - - pattern - - plug_type - - power_source -- id: el-7-15-7 - name: Power Stations - children: [] - attributes: - - battery_technology - - color - - connection_type - - pattern - - power_source -- id: el-7-15-13-1 - name: UPS Rack Mounting Kits - children: [] - attributes: - - color - - pattern -- id: el-12-3-1 - name: Gigabit Switches - children: [] - attributes: - - color - - connection_type - - ethernet_lan_interface_type - - network_protocols_supported - - pattern - - power_source -- id: el-12-3-2 - name: Layer 2 Switches - children: [] - attributes: - - color - - connection_type - - ethernet_lan_interface_type - - network_protocols_supported - - pattern - - power_source -- id: el-12-3-3 - name: Layer 3 Switches - children: [] - attributes: - - color - - connection_type - - ethernet_lan_interface_type - - network_protocols_supported - - pattern - - power_source -- id: el-12-3-4 - name: Managed Switches - children: [] - attributes: - - color - - connection_type - - ethernet_lan_interface_type - - network_protocols_supported - - pattern - - power_source -- id: el-12-3-5 - name: Modular Switches - children: [] - attributes: - - color - - connection_type - - ethernet_lan_interface_type - - network_protocols_supported - - pattern - - power_source -- id: el-12-3-6 - name: Power Over Ethernet Switches - children: [] - attributes: - - color - - connection_type - - ethernet_lan_interface_type - - network_protocols_supported - - pattern - - power_source -- id: el-12-3-7 - name: Smart Switches - children: [] - attributes: - - color - - connection_type - - ethernet_lan_interface_type - - network_protocols_supported - - pattern - - power_source -- id: el-12-3-8 - name: Stackable Switches - children: [] - attributes: - - color - - connection_type - - ethernet_lan_interface_type - - network_protocols_supported - - pattern - - power_source -- id: el-12-3-9 - name: Unmanaged Switches - children: [] - attributes: - - color - - connection_type - - ethernet_lan_interface_type - - network_protocols_supported - - pattern - - power_source -- id: el-13-1-1 - name: 3D Printer Carrying Cases - children: [] - attributes: - - color - - pattern -- id: el-13-1-2 - name: 3D Printer Cleaning Kits - children: [] - attributes: - - color - - pattern -- id: el-13-1-3 - name: Build Tape - children: [] - attributes: - - color - - pattern -- id: el-13-1-4 - name: Extruders - children: [] - attributes: - - color - - pattern -- id: el-13-1-5 - name: Filaments - children: [] - attributes: - - color - - material - - pattern -- id: el-13-1-6 - name: Nozzles - children: [] - attributes: - - color - - pattern -- id: el-13-1-7 - name: Print Beds - children: [] - attributes: - - color - - pattern -- id: el-13-3-1-2-1 - name: Air Printer Filters - children: [] - attributes: - - color - - pattern - - print_technology -- id: el-13-3-1-2-2 - name: Fume Printer Filters - children: [] - attributes: - - color - - pattern - - print_technology -- id: el-13-3-1-2-3 - name: Ozone Printer Filters - children: [] - attributes: - - color - - pattern - - print_technology -- id: el-13-3-1-2-4 - name: Toner Printer Filters - children: [] - attributes: - - color - - pattern - - print_technology -- id: el-13-3-5 - name: Printer, Copier & Fax Carrying Cases - children: [] - attributes: - - color - - pattern -- id: el-13-3-6 - name: Printer, Copier & Fax Cleaning Kits - children: [] - attributes: - - color - - pattern -- id: el-13-5-1 - name: Scanner Carrying Cases - children: [] - attributes: - - color - - pattern -- id: el-13-5-2 - name: Scanner Cleaning Kits - children: [] - attributes: - - color - - pattern -- id: el-13-6-1 - name: Drum Scanners - children: [] - attributes: - - color - - compatible_paper_size - - connection_type - - energy_efficiency_class - - memory_technology - - pattern - - power_source - - scanner_sensor_type -- id: el-13-6-2 - name: Film Scanners - children: [] - attributes: - - color - - compatible_paper_size - - connection_type - - energy_efficiency_class - - memory_technology - - pattern - - power_source - - scanner_sensor_type -- id: el-13-6-3 - name: Flatbed Scanners - children: [] - attributes: - - color - - compatible_paper_size - - connection_type - - energy_efficiency_class - - memory_technology - - pattern - - power_source - - scanner_sensor_type -- id: el-13-6-4 - name: Photo Scanners - children: [] - attributes: - - color - - compatible_paper_size - - connection_type - - energy_efficiency_class - - memory_technology - - pattern - - power_source - - scanner_sensor_type -- id: el-13-6-5 - name: Portable Scanners - children: [] - attributes: - - color - - compatible_paper_size - - connection_type - - energy_efficiency_class - - memory_technology - - pattern - - power_source - - scanner_sensor_type -- id: el-13-6-6 - name: Sheetfed Scanners - children: [] - attributes: - - color - - compatible_paper_size - - connection_type - - energy_efficiency_class - - memory_technology + - compatible_game_format + - compatible_resolution + - connection_type + - console_system + - energy_efficiency_class - pattern - power_source - - scanner_sensor_type -- id: el-17-8-3 - name: DVD & Blu-ray Recorders - children: [] - attributes: - - color - - connection_type - - energy_efficiency_class - - pattern - - playback_disc_formats - - video_codecs_formats_supported - - video_region_code -- id: el-18-1 - name: Charging Docks - children: [] - attributes: - - color - - device_interface - - pattern -- id: el-18-3-2 - name: Home Game Console Skins - children: [] - attributes: - - color - - pattern -- id: el-18-4-1 - name: Portable Game Console Cases - children: [] - attributes: - - color - - pattern -- id: el-18-4-2 - name: Portable Game Console Screen Protectors - children: [] - attributes: - - color - - pattern -- id: el-18-4-3 - name: Portable Game Console Skins - children: [] - attributes: - - color - - pattern diff --git a/data/categories/fb_food_beverages_tobacco.yml b/data/categories/fb_food_beverages_tobacco.yml index b9a9a171..daacc130 100644 --- a/data/categories/fb_food_beverages_tobacco.yml +++ b/data/categories/fb_food_beverages_tobacco.yml @@ -12,8 +12,11 @@ - fb-1-1 - fb-1-2 - fb-1-3 + - fb-1-4 - fb-1-5 - fb-1-6 + - fb-1-7 + - fb-1-8 - fb-1-9 - fb-1-10 - fb-1-11 @@ -22,9 +25,6 @@ - fb-1-14 - fb-1-15 - fb-1-16 - - fb-1-4 - - fb-1-7 - - fb-1-8 attributes: - allergen_information - dietary_preferences @@ -36,8 +36,8 @@ - fb-1-1-3 - fb-1-1-4 - fb-1-1-5 - - fb-1-1-7 - fb-1-1-6 + - fb-1-1-7 attributes: - allergen_information - dietary_preferences @@ -45,18 +45,18 @@ name: Beer children: [] attributes: - - beer_variety - - country_of_origin - allergen_information - beer_style + - beer_variety + - country_of_origin - dietary_preferences - package_type - id: fb-1-1-2 name: Bitters children: [] attributes: - - bitter_variery - allergen_information + - bitter_variery - country_of_origin - dietary_preferences - id: fb-1-1-3 @@ -95,11 +95,11 @@ name: Absinthe children: [] attributes: + - absinthe_style + - absinthe_variety - allergen_information - country_of_origin - dietary_preferences - - absinthe_style - - absinthe_variety - id: fb-1-1-5-2 name: Brandy children: [] @@ -112,9 +112,9 @@ name: Gin children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - gin_variety - id: fb-1-1-5-4 name: Liqueurs @@ -129,10 +129,10 @@ name: Rum children: [] attributes: - - rum_grade - allergen_information - country_of_origin - dietary_preferences + - rum_grade - id: fb-1-1-5-6 name: Shochu & Soju children: @@ -147,9 +147,9 @@ name: Shochu children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - spirit_dilution - id: fb-1-1-5-6-2 name: Soju @@ -184,8 +184,74 @@ - country_of_origin - dietary_preferences - region - - whiskey_variety - whiskey_style + - whiskey_variety +- id: fb-1-1-6 + name: Premixed Spirits & Cocktail Mixes + children: + - fb-1-1-6-1 + - fb-1-1-6-2 + - fb-1-1-6-3 + - fb-1-1-6-4 + - fb-1-1-6-5 + - fb-1-1-6-6 + attributes: + - allergen_information + - country_of_origin + - dietary_preferences + - beverage_product_form +- id: fb-1-1-6-1 + name: Beer-Based Cocktails + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences + - beverage_product_form +- id: fb-1-1-6-2 + name: Fruit Mix Preparations + children: [] + attributes: + - allergen_information + - base_spirit + - country_of_origin + - dietary_preferences + - beverage_product_form +- id: fb-1-1-6-3 + name: Hard Seltzers + children: [] + attributes: + - allergen_information + - base_spirit + - country_of_origin + - dietary_preferences + - beverage_product_form +- id: fb-1-1-6-4 + name: Liquor & Spirit-Based Cocktails + children: [] + attributes: + - allergen_information + - base_spirit + - country_of_origin + - dietary_preferences + - beverage_product_form +- id: fb-1-1-6-5 + name: Spice Mix Preparations + children: [] + attributes: + - allergen_information + - base_spirit + - country_of_origin + - dietary_preferences + - beverage_product_form +- id: fb-1-1-6-6 + name: Wine-Based Cocktails + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences + - beverage_product_form - id: fb-1-1-7 name: Wine children: [] @@ -194,8 +260,8 @@ - country_of_origin - dietary_preferences - region - - wine_variety - wine_sweetness + - wine_variety - id: fb-1-2 name: Buttermilk children: [] @@ -207,8 +273,8 @@ - id: fb-1-3 name: Coffee children: - - fb-1-3-2 - fb-1-3-1 + - fb-1-3-2 - fb-1-3-3 attributes: - allergen_information @@ -216,6 +282,43 @@ - country_of_origin - dietary_preferences - flavor +- id: fb-1-3-1 + name: Coffee Beans & Ground Coffee + children: [] + attributes: + - allergen_information + - coffee_roast + - country_of_origin + - dietary_preferences + - flavor + - coffee_product_form +- id: fb-1-3-2 + name: Coffee Pods & Capsules + children: [] + attributes: + - allergen_information + - coffee_roast + - country_of_origin + - dietary_preferences + - flavor +- id: fb-1-3-3 + name: Instant Coffee + children: [] + attributes: + - allergen_information + - coffee_roast + - country_of_origin + - dietary_preferences + - flavor +- id: fb-1-4 + name: Cordials, Syrups & Squash + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences + - flavor + - package_type - id: fb-1-5 name: Fruit Flavored Drinks children: [] @@ -235,13 +338,91 @@ - allergen_information - country_of_origin - dietary_preferences +- id: fb-1-6-1 + name: Cocoa Powder + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences +- id: fb-1-6-2 + name: Hot Chocolate Mixes + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences +- id: fb-1-6-3 + name: Malted Milk + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences +- id: fb-1-7 + name: Juices, Milkshakes & Smoothies + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences + - fruit_source + - package_type +- id: fb-1-8 + name: Low Alcohol & Alcohol-Free Beverages + children: + - fb-1-8-1 + - fb-1-8-2 + - fb-1-8-3 + - fb-1-8-4 + - fb-1-8-5 + - fb-1-8-6 + attributes: + - allergen_information + - dietary_preferences +- id: fb-1-8-1 + name: Low Alcohol & Alcohol-Free Beer + children: [] + attributes: + - allergen_information + - dietary_preferences +- id: fb-1-8-2 + name: Low Alcohol & Alcohol-Free Bitters + children: [] + attributes: + - allergen_information + - dietary_preferences +- id: fb-1-8-3 + name: Low Alcohol & Alcohol-Free Cocktail Mixes + children: [] + attributes: + - allergen_information + - dietary_preferences +- id: fb-1-8-4 + name: Low Alcohol & Alcohol-Free Hard Cider + children: [] + attributes: + - allergen_information + - dietary_preferences +- id: fb-1-8-5 + name: Low Alcohol & Alcohol-Free Liquors & Spirits + children: [] + attributes: + - allergen_information + - dietary_preferences +- id: fb-1-8-6 + name: Low Alcohol & Alcohol-Free Wine + children: [] + attributes: + - allergen_information + - dietary_preferences - id: fb-1-9 name: Milk children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - fat_content - id: fb-1-10 name: Non-Dairy Milk @@ -255,13 +436,48 @@ - allergen_information - country_of_origin - dietary_preferences +- id: fb-1-10-1 + name: Coconut Milk & Drinks + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences +- id: fb-1-10-2 + name: Nut Drinks + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences +- id: fb-1-10-3 + name: Oat Drinks + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences +- id: fb-1-10-4 + name: Rice Drinks + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences +- id: fb-1-10-5 + name: Soy Drinks + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences - id: fb-1-11 name: Powdered Beverage Mixes children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - id: fb-1-12 name: Soda children: [] @@ -283,25 +499,61 @@ - dietary_preferences - package_type - beverage_product_form -- id: fb-1-14 - name: Tea & Infusions - children: - - fb-1-14-1 - - fb-1-14-2 - attributes: +- id: fb-1-13-1 + name: Energy Drinks + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences + - package_type + - beverage_product_form +- id: fb-1-13-2 + name: Sports Drinks + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences + - package_type + - beverage_product_form +- id: fb-1-14 + name: Tea & Infusions + children: + - fb-1-14-1 + - fb-1-14-2 + attributes: + - allergen_information + - country_of_origin + - dietary_preferences - flavor - tea_input_type +- id: fb-1-14-1 + name: Infusions + children: [] + attributes: - allergen_information - country_of_origin - dietary_preferences -- id: fb-1-15 - name: Vinegar Drinks + - flavor + - tea_input_type +- id: fb-1-14-2 + name: Tea children: [] attributes: + - allergen_information + - country_of_origin - dietary_preferences - flavor + - tea_input_type +- id: fb-1-15 + name: Vinegar Drinks + children: [] + attributes: - allergen_information - country_of_origin + - dietary_preferences + - flavor - vinegar_drink_variety - id: fb-1-16 name: Water @@ -311,46 +563,46 @@ - fb-1-16-3 - fb-1-16-4 attributes: - - dietary_preferences - - flavor - allergen_information - country_of_origin + - dietary_preferences + - flavor - package_type - id: fb-1-16-1 name: Carbonated Water children: [] attributes: - - dietary_preferences - - flavor - allergen_information - country_of_origin + - dietary_preferences + - flavor - package_type - id: fb-1-16-2 name: Distilled Water children: [] attributes: - - dietary_preferences - - flavor - allergen_information - country_of_origin + - dietary_preferences + - flavor - package_type - id: fb-1-16-3 name: Flat Mineral Water children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - flavor - package_type - id: fb-1-16-4 name: Spring Water children: [] attributes: - - dietary_preferences - - flavor - allergen_information - country_of_origin + - dietary_preferences + - flavor - package_type - id: fb-2 name: Food Items @@ -375,9 +627,9 @@ - fb-2-18 - fb-2-19 attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - id: fb-2-1 name: Bakery children: @@ -397,33 +649,33 @@ - fb-2-1-14 - fb-2-1-15 attributes: - - dietary_preferences - allergen_information + - dietary_preferences - flour_grain_type - id: fb-2-1-1 name: Bagels children: [] attributes: - - dietary_preferences - - flavor - allergen_information - country_of_origin + - dietary_preferences + - flavor - flour_grain_type - id: fb-2-1-2 name: Bakery Assortments children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - flour_grain_type - id: fb-2-1-3 name: Breads & Buns children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - flour_grain_type - id: fb-2-1-4 name: Cakes & Dessert Bars @@ -431,107 +683,125 @@ - fb-2-1-4-1 - fb-2-1-4-2 attributes: + - allergen_information + - country_of_origin + - dietary_preferences + - flavor + - flour_grain_type +- id: fb-2-1-4-1 + name: Cakes + children: [] + attributes: + - allergen_information + - country_of_origin - dietary_preferences - flavor + - flour_grain_type +- id: fb-2-1-4-2 + name: Dessert Bars + children: [] + attributes: - allergen_information - country_of_origin + - dietary_preferences + - flavor - flour_grain_type - id: fb-2-1-5 name: Coffee Cakes children: [] attributes: - - dietary_preferences - - flavor - allergen_information - country_of_origin + - dietary_preferences + - flavor - flour_grain_type - id: fb-2-1-6 name: Cookies children: [] attributes: - - dietary_preferences - - flavor - allergen_information - country_of_origin + - dietary_preferences + - flavor - flour_grain_type - id: fb-2-1-7 name: Cupcakes children: [] attributes: - - dietary_preferences - - flavor - allergen_information - country_of_origin + - dietary_preferences + - flavor - flour_grain_type - id: fb-2-1-8 name: Donuts children: [] attributes: - - dietary_preferences - - flavor - allergen_information - country_of_origin + - dietary_preferences + - flavor - flour_grain_type - id: fb-2-1-9 name: Fudge children: [] attributes: - - dietary_preferences - - flavor - allergen_information - country_of_origin + - dietary_preferences + - flavor - flour_grain_type - id: fb-2-1-10 name: Ice Cream Cones children: [] attributes: - - dietary_preferences - - flavor - allergen_information - country_of_origin + - dietary_preferences + - flavor - flour_grain_type - id: fb-2-1-11 name: Muffins children: [] attributes: - - dietary_preferences - - flavor - allergen_information - country_of_origin + - dietary_preferences + - flavor - flour_grain_type - id: fb-2-1-12 name: Pastries & Scones children: [] attributes: - - dietary_preferences - - flavor - allergen_information - country_of_origin + - dietary_preferences + - flavor - flour_grain_type - id: fb-2-1-13 name: Pies & Tarts children: [] attributes: - - dietary_preferences - - flavor - allergen_information - country_of_origin + - dietary_preferences + - flavor - flour_grain_type - id: fb-2-1-14 name: Taco Shells & Tostadas children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - flour_grain_type - id: fb-2-1-15 name: Tortillas & Wraps children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - flour_grain_type - id: fb-2-2 name: Candied & Chocolate Covered Fruit @@ -539,18 +809,46 @@ - fb-2-2-1 - fb-2-2-2 attributes: + - allergen_information + - country_of_origin + - dietary_preferences +- id: fb-2-2-1 + name: Candied Fruit + children: [] + attributes: + - allergen_information + - country_of_origin - dietary_preferences +- id: fb-2-2-2 + name: Chocolate Covered Fruit + children: [] + attributes: - allergen_information - country_of_origin + - dietary_preferences - id: fb-2-3 name: Candy & Chocolate children: - fb-2-3-1 - fb-2-3-2 attributes: + - allergen_information + - country_of_origin + - dietary_preferences +- id: fb-2-3-1 + name: Candy + children: [] + attributes: + - allergen_information + - country_of_origin - dietary_preferences +- id: fb-2-3-2 + name: Chocolate + children: [] + attributes: - allergen_information - country_of_origin + - dietary_preferences - id: fb-2-4 name: Condiments & Sauces children: @@ -581,24 +879,24 @@ - fb-2-4-25 - fb-2-4-26 attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - heat_level - id: fb-2-4-1 name: Cocktail Sauce children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - id: fb-2-4-2 name: Curry Sauce children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - heat_level - id: fb-2-4-3 name: Dessert Toppings @@ -606,175 +904,189 @@ - fb-2-4-3-1 - fb-2-4-3-2 attributes: + - allergen_information - dietary_preferences - flavor - - allergen_information - id: fb-2-4-3-1 name: Fruit Toppings children: [] attributes: - - dietary_preferences - - flavor - allergen_information - country_of_origin + - dietary_preferences + - flavor - id: fb-2-4-3-2 name: Ice Cream Syrup children: [] attributes: - - dietary_preferences - - flavor - allergen_information - country_of_origin + - dietary_preferences + - flavor - id: fb-2-4-4 name: Fish Sauce children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - id: fb-2-4-5 name: Gravy children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - id: fb-2-4-6 name: Honey children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - package_type - id: fb-2-4-7 name: Horseradish Sauce children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - id: fb-2-4-8 name: Hot Sauce children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - heat_level - id: fb-2-4-9 name: Ketchup children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - package_type - id: fb-2-4-10 name: Marinades & Grilling Sauces children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - heat_level - id: fb-2-4-11 name: Mayonnaise children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - id: fb-2-4-12 name: Mustard children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - id: fb-2-4-13 name: Olives & Capers children: - fb-2-4-13-1 - fb-2-4-13-2 attributes: + - allergen_information + - country_of_origin + - dietary_preferences +- id: fb-2-4-13-1 + name: Capers + children: [] + attributes: + - allergen_information + - country_of_origin - dietary_preferences +- id: fb-2-4-13-2 + name: Olives + children: [] + attributes: - allergen_information - country_of_origin + - dietary_preferences - id: fb-2-4-14 name: Pasta Sauce children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - heat_level - id: fb-2-4-15 name: Pickled Fruits & Vegetables children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - id: fb-2-4-16 name: Pizza Sauce children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - heat_level - id: fb-2-4-17 name: Relish & Chutney children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - heat_level - id: fb-2-4-18 name: Salad Dressing children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - id: fb-2-4-19 name: Satay Sauce children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - id: fb-2-4-20 name: Soy Sauce children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - id: fb-2-4-21 name: Sweet and Sour Sauces children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - heat_level - id: fb-2-4-22 name: Syrup children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - id: fb-2-4-23 name: Tahini children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - id: fb-2-4-24 name: Tartar Sauce children: [] @@ -786,16 +1098,16 @@ name: White & Cream Sauces children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - id: fb-2-4-26 name: Worcestershire Sauce children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - id: fb-2-5 name: Cooking & Baking Ingredients children: @@ -836,59 +1148,59 @@ - fb-2-5-35 - fb-2-5-36 attributes: - - dietary_preferences - allergen_information + - dietary_preferences - id: fb-2-5-1 name: Baking Chips children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - id: fb-2-5-2 name: Baking Chocolate children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - id: fb-2-5-3 name: Baking Flavors & Extracts children: [] attributes: - - dietary_preferences - - flavor - allergen_information - country_of_origin + - dietary_preferences + - flavor - id: fb-2-5-4 name: Baking Mixes children: [] attributes: - - baking_purpose - - dietary_preferences - allergen_information + - baking_purpose - country_of_origin + - dietary_preferences - id: fb-2-5-5 name: Baking Powder children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - id: fb-2-5-6 name: Baking Soda children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - id: fb-2-5-7 name: Batter & Coating Mixes children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - id: fb-2-5-8 name: Bean Paste children: [] @@ -913,15 +1225,36 @@ - allergen_information - country_of_origin - dietary_preferences -- id: fb-2-5-11 - name: Cookie Decorating Kits +- id: fb-2-5-10-1 + name: Condensed Milk children: [] attributes: + - allergen_information + - country_of_origin - dietary_preferences - - pattern +- id: fb-2-5-10-2 + name: Evaporated Milk + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences +- id: fb-2-5-10-3 + name: Powdered Milk + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences +- id: fb-2-5-11 + name: Cookie Decorating Kits + children: [] + attributes: - allergen_information - color - country_of_origin + - dietary_preferences + - pattern - id: fb-2-5-12 name: Cooking Oils children: @@ -936,31 +1269,101 @@ - fb-2-5-12-9 - fb-2-5-12-10 attributes: + - allergen_information + - country_of_origin + - dietary_preferences +- id: fb-2-5-12-1 + name: Avocado Oil + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences +- id: fb-2-5-12-2 + name: Coconut Oil + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences +- id: fb-2-5-12-3 + name: Corn Oil + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences +- id: fb-2-5-12-4 + name: Olive Oil + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences +- id: fb-2-5-12-5 + name: Peanut Oil + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences +- id: fb-2-5-12-6 + name: Rapeseed Oil + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences +- id: fb-2-5-12-7 + name: Sesame Oil + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences +- id: fb-2-5-12-8 + name: Soybean Oil + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences +- id: fb-2-5-12-9 + name: Sunflower Oil + children: [] + attributes: + - allergen_information + - country_of_origin - dietary_preferences +- id: fb-2-5-12-10 + name: Vegetable Oil + children: [] + attributes: - allergen_information - country_of_origin + - dietary_preferences - id: fb-2-5-13 name: Cooking Starch children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - id: fb-2-5-14 name: Cooking Wine children: [] attributes: - - cooking_wine_variety - - dietary_preferences - allergen_information + - cooking_wine_variety - country_of_origin + - dietary_preferences - id: fb-2-5-15 name: Corn Syrup children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - id: fb-2-5-16 name: Dough children: @@ -968,32 +1371,32 @@ - fb-2-5-16-2 - fb-2-5-16-3 attributes: - - dietary_preferences - allergen_information + - dietary_preferences - flour_grain_type - id: fb-2-5-16-1 name: Bread & Pastry Dough children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - flour_grain_type - id: fb-2-5-16-2 name: Cookie & Brownie Dough children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - flour_grain_type - id: fb-2-5-16-3 name: Pie Crusts children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - flour_grain_type - id: fb-2-5-17 name: Edible Baking Decorations @@ -1030,11 +1433,11 @@ name: Food Coloring children: [] attributes: - - pattern - allergen_information - color - country_of_origin - dietary_preferences + - pattern - id: fb-2-5-22 name: Frosting & Icing children: [] @@ -1106,6 +1509,34 @@ - allergen_information - country_of_origin - dietary_preferences +- id: fb-2-5-30-1 + name: Granulated Sugar + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences +- id: fb-2-5-30-2 + name: Icing Sugar + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences +- id: fb-2-5-30-3 + name: Sweeteners + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences +- id: fb-2-5-30-4 + name: Syrups & Nectars + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences - id: fb-2-5-31 name: Tapioca Pearls children: [] @@ -1141,9 +1572,9 @@ name: Waffle & Pancake Mixes children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - id: fb-2-5-36 name: Yeast children: [] @@ -1177,22 +1608,50 @@ - allergen_information - country_of_origin - dietary_preferences +- id: fb-2-6-1-1 + name: Margarine + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences +- id: fb-2-6-1-2 + name: Salted Butter + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences +- id: fb-2-6-1-3 + name: Unsalted Butter + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences +- id: fb-2-6-1-4 + name: Whipped Butter + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences - id: fb-2-6-2 name: Cheese children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - id: fb-2-6-3 name: Coffee Creamer children: [] attributes: - allergen_information + - coffee_creamer_variety - country_of_origin - dietary_preferences - fat_content - - coffee_creamer_variety - id: fb-2-6-4 name: Cottage Cheese children: [] @@ -1211,6 +1670,22 @@ - country_of_origin - dietary_preferences - fat_content +- id: fb-2-6-5-1 + name: Fresh Cream + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences + - fat_content +- id: fb-2-6-5-2 + name: Whipping Cream + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences + - fat_content - id: fb-2-6-6 name: Sour Cream children: [] @@ -1300,31 +1775,31 @@ name: Nut Butters children: [] attributes: - - nut_butter_variety - allergen_information - country_of_origin - dietary_preferences + - nut_butter_variety - id: fb-2-7-8 name: Salsa children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - id: fb-2-7-9 name: Tapenade children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - id: fb-2-7-10 name: Vegetable Dip children: [] attributes: - - dietary_preferences - allergen_information - country_of_origin + - dietary_preferences - id: fb-2-8 name: Food Gift Baskets children: [] @@ -1354,6 +1829,41 @@ - allergen_information - country_of_origin - dietary_preferences +- id: fb-2-9-1-1 + name: Frozen Yogurt + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences +- id: fb-2-9-1-2 + name: Gelato + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences +- id: fb-2-9-1-3 + name: Ice Cream + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences +- id: fb-2-9-1-4 + name: Sherbet + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences +- id: fb-2-9-1-5 + name: Sorbet + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences - id: fb-2-9-2 name: Ice Cream Novelties children: [] @@ -2291,10 +2801,10 @@ name: Chicory children: [] attributes: - - dietary_preferences - allergen_information - cooking_method - country_of_origin + - dietary_preferences - food_product_form - id: fb-2-10-8-26-6 name: Choy Sum @@ -2327,10 +2837,10 @@ name: On Choy children: [] attributes: - - dietary_preferences - allergen_information - cooking_method - country_of_origin + - dietary_preferences - food_product_form - id: fb-2-10-8-26-10 name: Salad Mixes @@ -2832,23 +3342,95 @@ - cuisine - dietary_preferences - food_product_form -- id: fb-2-12-2-3 - name: Lunch & Deli Meats +- id: fb-2-12-2-2-1 + name: Beef children: [] attributes: - allergen_information - - country_of_origin + - cooking_method + - cuisine - dietary_preferences + - meat_cut - food_product_form -- id: fb-2-12-3 - name: Seafood - children: - - fb-2-12-3-1 - - fb-2-12-3-2 +- id: fb-2-12-2-2-2 + name: Game + children: [] attributes: - allergen_information - - country_of_origin - - dietary_preferences + - cooking_method + - cuisine + - dietary_preferences + - meat_cut + - food_product_form +- id: fb-2-12-2-2-3 + name: Lamb + children: [] + attributes: + - allergen_information + - cooking_method + - cuisine + - dietary_preferences + - meat_cut + - food_product_form +- id: fb-2-12-2-2-4 + name: Pork + children: [] + attributes: + - allergen_information + - cooking_method + - cuisine + - dietary_preferences + - meat_cut + - food_product_form +- id: fb-2-12-2-2-5 + name: Poultry + children: + - fb-2-12-2-2-5-1 + - fb-2-12-2-2-5-2 + attributes: + - allergen_information + - cooking_method + - cuisine + - dietary_preferences + - meat_cut + - food_product_form +- id: fb-2-12-2-2-5-1 + name: Chicken + children: [] + attributes: + - allergen_information + - cooking_method + - cuisine + - dietary_preferences + - meat_cut + - food_product_form +- id: fb-2-12-2-2-5-2 + name: Turkey + children: [] + attributes: + - allergen_information + - cooking_method + - cuisine + - dietary_preferences + - meat_cut + - food_product_form +- id: fb-2-12-2-3 + name: Lunch & Deli Meats + children: [] + attributes: + - allergen_information + - country_of_origin + - dietary_preferences + - food_product_form +- id: fb-2-12-3 + name: Seafood + children: + - fb-2-12-3-1 + - fb-2-12-3-2 + attributes: + - allergen_information + - country_of_origin + - dietary_preferences - id: fb-2-12-3-1 name: Canned Seafood children: [] @@ -2865,8 +3447,8 @@ - cooking_method - cuisine - dietary_preferences - - seafood_type - food_product_form + - seafood_type - id: fb-2-13 name: Nuts & Seeds children: [] @@ -3225,622 +3807,40 @@ - id: fb-3-7 name: Vaporizers & Electronic Cigarettes children: + - fb-3-7-1 - fb-3-7-2 - fb-3-7-3 - - fb-3-7-1 attributes: - - pattern - - vaping_style - - e_liquid_flavor - coil_connection - color - e_cigarette_vaporizer_style + - e_liquid_flavor + - pattern + - vaping_style +- id: fb-3-7-1 + name: E-Liquid + children: [] + attributes: + - e_liquid_flavor + - e_liquid_variety + - vg_pg_ratio - id: fb-3-7-2 name: Electronic Cigarettes children: [] attributes: + - coil_connection + - color - e_cigarette_vaporizer_style + - e_liquid_flavor - pattern - vaping_style - - color - - e_liquid_flavor - - coil_connection - id: fb-3-7-3 name: Vaporizers children: [] attributes: - coil_connection + - color - e_cigarette_vaporizer_style - e_liquid_flavor - - vaping_style - - color - pattern -- id: fb-1-1-6 - name: Premixed Spirits & Cocktail Mixes - children: - - fb-1-1-6-1 - - fb-1-1-6-2 - - fb-1-1-6-3 - - fb-1-1-6-4 - - fb-1-1-6-5 - - fb-1-1-6-6 - attributes: - - dietary_preferences - - allergen_information - - country_of_origin - - beverage_product_form -- id: fb-1-1-6-1 - name: Beer-Based Cocktails - children: [] - attributes: - - dietary_preferences - - allergen_information - - country_of_origin - - beverage_product_form -- id: fb-1-1-6-2 - name: Fruit Mix Preparations - children: [] - attributes: - - allergen_information - - base_spirit - - country_of_origin - - dietary_preferences - - beverage_product_form -- id: fb-1-1-6-3 - name: Hard Seltzers - children: [] - attributes: - - dietary_preferences - - allergen_information - - base_spirit - - country_of_origin - - beverage_product_form -- id: fb-1-1-6-4 - name: Liquor & Spirit-Based Cocktails - children: [] - attributes: - - allergen_information - - base_spirit - - country_of_origin - - dietary_preferences - - beverage_product_form -- id: fb-1-1-6-5 - name: Spice Mix Preparations - children: [] - attributes: - - dietary_preferences - - allergen_information - - base_spirit - - country_of_origin - - beverage_product_form -- id: fb-1-1-6-6 - name: Wine-Based Cocktails - children: [] - attributes: - - dietary_preferences - - allergen_information - - country_of_origin - - beverage_product_form -- id: fb-1-3-2 - name: Coffee Pods & Capsules - children: [] - attributes: - - dietary_preferences - - flavor - - allergen_information - - coffee_roast - - country_of_origin -- id: fb-1-3-1 - name: Coffee Beans & Ground Coffee - children: [] - attributes: - - dietary_preferences - - allergen_information - - coffee_roast - - country_of_origin - - flavor - - coffee_product_form -- id: fb-1-3-3 - name: Instant Coffee - children: [] - attributes: - - dietary_preferences - - flavor - - allergen_information - - coffee_roast - - country_of_origin -- id: fb-1-4 - name: Cordials, Syrups & Squash - children: [] - attributes: - - dietary_preferences - - flavor - - allergen_information - - country_of_origin - - package_type -- id: fb-1-6-1 - name: Cocoa Powder - children: [] - attributes: - - dietary_preferences - - allergen_information - - country_of_origin -- id: fb-1-6-2 - name: Hot Chocolate Mixes - children: [] - attributes: - - dietary_preferences - - allergen_information - - country_of_origin -- id: fb-1-6-3 - name: Malted Milk - children: [] - attributes: - - dietary_preferences - - allergen_information - - country_of_origin -- id: fb-1-7 - name: Juices, Milkshakes & Smoothies - children: [] - attributes: - - dietary_preferences - - allergen_information - - country_of_origin - - fruit_source - - package_type -- id: fb-1-8 - name: Low Alcohol & Alcohol-Free Beverages - children: - - fb-1-8-1 - - fb-1-8-2 - - fb-1-8-3 - - fb-1-8-4 - - fb-1-8-5 - - fb-1-8-6 - attributes: - - dietary_preferences - - allergen_information -- id: fb-1-8-1 - name: Low Alcohol & Alcohol-Free Beer - children: [] - attributes: - - allergen_information - - dietary_preferences -- id: fb-1-8-2 - name: Low Alcohol & Alcohol-Free Bitters - children: [] - attributes: - - dietary_preferences - - allergen_information -- id: fb-1-8-3 - name: Low Alcohol & Alcohol-Free Cocktail Mixes - children: [] - attributes: - - dietary_preferences - - allergen_information -- id: fb-1-8-4 - name: Low Alcohol & Alcohol-Free Hard Cider - children: [] - attributes: - - allergen_information - - dietary_preferences -- id: fb-1-8-5 - name: Low Alcohol & Alcohol-Free Liquors & Spirits - children: [] - attributes: - - allergen_information - - dietary_preferences -- id: fb-1-8-6 - name: Low Alcohol & Alcohol-Free Wine - children: [] - attributes: - - allergen_information - - dietary_preferences -- id: fb-1-10-1 - name: Coconut Milk & Drinks - children: [] - attributes: - - dietary_preferences - - allergen_information - - country_of_origin -- id: fb-1-10-2 - name: Nut Drinks - children: [] - attributes: - - dietary_preferences - - allergen_information - - country_of_origin -- id: fb-1-10-3 - name: Oat Drinks - children: [] - attributes: - - allergen_information - - country_of_origin - - dietary_preferences -- id: fb-1-10-4 - name: Rice Drinks - children: [] - attributes: - - dietary_preferences - - allergen_information - - country_of_origin -- id: fb-1-10-5 - name: Soy Drinks - children: [] - attributes: - - allergen_information - - country_of_origin - - dietary_preferences -- id: fb-1-13-1 - name: Energy Drinks - children: [] - attributes: - - dietary_preferences - - allergen_information - - country_of_origin - - package_type - - beverage_product_form -- id: fb-1-13-2 - name: Sports Drinks - children: [] - attributes: - - allergen_information - - country_of_origin - - dietary_preferences - - package_type - - beverage_product_form -- id: fb-1-14-1 - name: Infusions - children: [] - attributes: - - flavor - - tea_input_type - - allergen_information - - country_of_origin - - dietary_preferences -- id: fb-1-14-2 - name: Tea - children: [] - attributes: - - dietary_preferences - - flavor - - tea_input_type - - allergen_information - - country_of_origin -- id: fb-2-1-4-1 - name: Cakes - children: [] - attributes: - - dietary_preferences - - flavor - - allergen_information - - country_of_origin - - flour_grain_type -- id: fb-2-1-4-2 - name: Dessert Bars - children: [] - attributes: - - dietary_preferences - - allergen_information - - country_of_origin - - flavor - - flour_grain_type -- id: fb-2-2-1 - name: Candied Fruit - children: [] - attributes: - - allergen_information - - country_of_origin - - dietary_preferences -- id: fb-2-2-2 - name: Chocolate Covered Fruit - children: [] - attributes: - - allergen_information - - country_of_origin - - dietary_preferences -- id: fb-2-3-1 - name: Candy - children: [] - attributes: - - dietary_preferences - - allergen_information - - country_of_origin -- id: fb-2-3-2 - name: Chocolate - children: [] - attributes: - - dietary_preferences - - allergen_information - - country_of_origin -- id: fb-2-4-13-1 - name: Capers - children: [] - attributes: - - dietary_preferences - - allergen_information - - country_of_origin -- id: fb-2-4-13-2 - name: Olives - children: [] - attributes: - - allergen_information - - country_of_origin - - dietary_preferences -- id: fb-2-5-10-1 - name: Condensed Milk - children: [] - attributes: - - dietary_preferences - - allergen_information - - country_of_origin -- id: fb-2-5-10-2 - name: Evaporated Milk - children: [] - attributes: - - dietary_preferences - - allergen_information - - country_of_origin -- id: fb-2-5-10-3 - name: Powdered Milk - children: [] - attributes: - - dietary_preferences - - allergen_information - - country_of_origin -- id: fb-2-5-12-1 - name: Avocado Oil - children: [] - attributes: - - allergen_information - - country_of_origin - - dietary_preferences -- id: fb-2-5-12-2 - name: Coconut Oil - children: [] - attributes: - - allergen_information - - country_of_origin - - dietary_preferences -- id: fb-2-5-12-3 - name: Corn Oil - children: [] - attributes: - - allergen_information - - country_of_origin - - dietary_preferences -- id: fb-2-5-12-4 - name: Olive Oil - children: [] - attributes: - - dietary_preferences - - allergen_information - - country_of_origin -- id: fb-2-5-12-5 - name: Peanut Oil - children: [] - attributes: - - dietary_preferences - - allergen_information - - country_of_origin -- id: fb-2-5-12-6 - name: Rapeseed Oil - children: [] - attributes: - - dietary_preferences - - allergen_information - - country_of_origin -- id: fb-2-5-12-7 - name: Sesame Oil - children: [] - attributes: - - allergen_information - - country_of_origin - - dietary_preferences -- id: fb-2-5-12-8 - name: Soybean Oil - children: [] - attributes: - - allergen_information - - country_of_origin - - dietary_preferences -- id: fb-2-5-12-9 - name: Sunflower Oil - children: [] - attributes: - - allergen_information - - country_of_origin - - dietary_preferences -- id: fb-2-5-12-10 - name: Vegetable Oil - children: [] - attributes: - - allergen_information - - country_of_origin - - dietary_preferences -- id: fb-2-5-30-1 - name: Granulated Sugar - children: [] - attributes: - - allergen_information - - country_of_origin - - dietary_preferences -- id: fb-2-5-30-2 - name: Icing Sugar - children: [] - attributes: - - allergen_information - - country_of_origin - - dietary_preferences -- id: fb-2-5-30-3 - name: Sweeteners - children: [] - attributes: - - allergen_information - - country_of_origin - - dietary_preferences -- id: fb-2-5-30-4 - name: Syrups & Nectars - children: [] - attributes: - - allergen_information - - country_of_origin - - dietary_preferences -- id: fb-2-6-1-1 - name: Margarine - children: [] - attributes: - - allergen_information - - country_of_origin - - dietary_preferences -- id: fb-2-6-1-2 - name: Salted Butter - children: [] - attributes: - - allergen_information - - country_of_origin - - dietary_preferences -- id: fb-2-6-1-3 - name: Unsalted Butter - children: [] - attributes: - - allergen_information - - country_of_origin - - dietary_preferences -- id: fb-2-6-1-4 - name: Whipped Butter - children: [] - attributes: - - allergen_information - - country_of_origin - - dietary_preferences -- id: fb-2-6-5-1 - name: Fresh Cream - children: [] - attributes: - - allergen_information - - country_of_origin - - dietary_preferences - - fat_content -- id: fb-2-6-5-2 - name: Whipping Cream - children: [] - attributes: - - allergen_information - - country_of_origin - - dietary_preferences - - fat_content -- id: fb-2-9-1-1 - name: Frozen Yogurt - children: [] - attributes: - - allergen_information - - country_of_origin - - dietary_preferences -- id: fb-2-9-1-2 - name: Gelato - children: [] - attributes: - - allergen_information - - country_of_origin - - dietary_preferences -- id: fb-2-9-1-3 - name: Ice Cream - children: [] - attributes: - - allergen_information - - country_of_origin - - dietary_preferences -- id: fb-2-9-1-4 - name: Sherbet - children: [] - attributes: - - allergen_information - - country_of_origin - - dietary_preferences -- id: fb-2-9-1-5 - name: Sorbet - children: [] - attributes: - - allergen_information - - country_of_origin - - dietary_preferences -- id: fb-2-12-2-2-1 - name: Beef - children: [] - attributes: - - cuisine - - allergen_information - - cooking_method - - dietary_preferences - - meat_cut - - food_product_form -- id: fb-2-12-2-2-2 - name: Game - children: [] - attributes: - - allergen_information - - cooking_method - - cuisine - - dietary_preferences - - meat_cut - - food_product_form -- id: fb-2-12-2-2-3 - name: Lamb - children: [] - attributes: - - cuisine - - allergen_information - - cooking_method - - dietary_preferences - - meat_cut - - food_product_form -- id: fb-2-12-2-2-4 - name: Pork - children: [] - attributes: - - cuisine - - allergen_information - - cooking_method - - dietary_preferences - - meat_cut - - food_product_form -- id: fb-2-12-2-2-5 - name: Poultry - children: - - fb-2-12-2-2-5-1 - - fb-2-12-2-2-5-2 - attributes: - - cuisine - - dietary_preferences - - meat_cut - - allergen_information - - cooking_method - - food_product_form -- id: fb-2-12-2-2-5-1 - name: Chicken - children: [] - attributes: - - cuisine - - allergen_information - - cooking_method - - dietary_preferences - - meat_cut - - food_product_form -- id: fb-2-12-2-2-5-2 - name: Turkey - children: [] - attributes: - - allergen_information - - cooking_method - - cuisine - - dietary_preferences - - meat_cut - - food_product_form -- id: fb-3-7-1 - name: E-Liquid - children: [] - attributes: - - e_liquid_flavor - - e_liquid_variety - - vg_pg_ratio + - vaping_style diff --git a/data/categories/fr_furniture.yml b/data/categories/fr_furniture.yml index d87fce8d..89f38274 100644 --- a/data/categories/fr_furniture.yml +++ b/data/categories/fr_furniture.yml @@ -9,6 +9,7 @@ - fr-5 - fr-6 - fr-7 + - fr-8 - fr-9 - fr-10 - fr-11 @@ -25,7 +26,6 @@ - fr-22 - fr-23 - fr-24 - - fr-8 attributes: - color - id: fr-1 @@ -53,8 +53,8 @@ name: Bassinet & Cradle Accessories children: [] attributes: - - material - color + - material - id: fr-1-3 name: Bassinets & Cradles children: @@ -71,6 +71,69 @@ - age_group - color - furniture_fixture_material +- id: fr-1-3-1 + name: Bassinet Playards + children: [] + attributes: + - age_group + - color + - furniture_fixture_material +- id: fr-1-3-2 + name: Bassinets + children: [] + attributes: + - age_group + - color + - furniture_fixture_material +- id: fr-1-3-3 + name: Bedside Bassinets + children: [] + attributes: + - age_group + - color + - furniture_fixture_material +- id: fr-1-3-5 + name: Convertible Bassinets + children: [] + attributes: + - age_group + - color + - furniture_fixture_material +- id: fr-1-3-6 + name: Cradles + children: [] + attributes: + - age_group + - color + - furniture_fixture_material +- id: fr-1-3-7 + name: Folding Bassinets + children: [] + attributes: + - age_group + - color + - furniture_fixture_material +- id: fr-1-3-8 + name: Hanging Bassinets + children: [] + attributes: + - age_group + - color + - furniture_fixture_material +- id: fr-1-3-10 + name: Rocking Bassinets + children: [] + attributes: + - age_group + - color + - furniture_fixture_material +- id: fr-1-3-11 + name: Travel Bassinets + children: [] + attributes: + - age_group + - color + - furniture_fixture_material - id: fr-1-4 name: Changing Tables children: [] @@ -84,8 +147,8 @@ - fr-1-5-1 - fr-1-5-2 attributes: - - material - color + - material - id: fr-1-5-1 name: Crib Bumpers & Liners children: @@ -98,12 +161,48 @@ attributes: - color - fabric +- id: fr-1-5-1-1 + name: Crib Liners + children: [] + attributes: + - color + - fabric +- id: fr-1-5-1-2 + name: Crib Rail Covers + children: [] + attributes: + - color + - fabric +- id: fr-1-5-1-3 + name: Crib Skirts + children: [] + attributes: + - color + - fabric +- id: fr-1-5-1-4 + name: Mesh Crib Bumpers + children: [] + attributes: + - color + - fabric +- id: fr-1-5-1-5 + name: Padded Crib Bumpers + children: [] + attributes: + - color + - fabric +- id: fr-1-5-1-6 + name: Teething Rail Covers + children: [] + attributes: + - color + - fabric - id: fr-1-5-2 name: Crib Conversion Kits children: [] attributes: - - material - color + - material - id: fr-1-6 name: Cribs & Toddler Beds children: @@ -118,12 +217,60 @@ attributes: - color - furniture_fixture_material +- id: fr-1-6-4 + name: Bunk Toddler Beds + children: [] + attributes: + - color + - furniture_fixture_material +- id: fr-1-6-5 + name: Canopy Toddler Beds + children: [] + attributes: + - color + - furniture_fixture_material +- id: fr-1-6-6 + name: Loft Toddler Beds + children: [] + attributes: + - color + - furniture_fixture_material +- id: fr-1-6-7 + name: Mini Cribs + children: [] + attributes: + - color + - furniture_fixture_material +- id: fr-1-6-9 + name: Sleigh Toddler Beds + children: [] + attributes: + - color + - furniture_fixture_material +- id: fr-1-6-10 + name: Standard Cribs + children: [] + attributes: + - color + - furniture_fixture_material +- id: fr-1-6-11 + name: Toddler Beds + children: [] + attributes: + - color + - furniture_fixture_material +- id: fr-1-6-12 + name: Travel Cribs + children: [] + attributes: + - color + - furniture_fixture_material - id: fr-1-7 name: High Chair & Booster Seat Accessories children: [] attributes: - - material - color + - material - id: fr-1-8 name: High Chairs & Booster Seats children: @@ -134,15 +281,45 @@ attributes: - color - furniture_fixture_material +- id: fr-1-8-2 + name: Booster Feeding Seats + children: [] + attributes: + - color + - upholstery_material +- id: fr-1-8-3 + name: Convertible High Chairs + children: [] + attributes: + - color + - upholstery_material +- id: fr-1-8-4 + name: High Chairs + children: [] + attributes: + - color + - upholstery_material +- id: fr-1-8-5 + name: Hook-On Seats + children: [] + attributes: + - color + - upholstery_material +- id: fr-1-9 + name: Play Sofas + children: [] + attributes: + - color + - upholstery_material - id: fr-2 name: Beds & Accessories children: - fr-2-1 - fr-2-2 - - fr-2-5 - - fr-2-6 - fr-2-3 - fr-2-4 + - fr-2-5 + - fr-2-6 attributes: - bedding_size - color @@ -177,2255 +354,1718 @@ - color - compatible_mattress_size - furniture_fixture_material -- id: fr-2-5 - name: Mattress Foundations - children: - - fr-2-5-1 - - fr-2-5-2 - - fr-2-5-3 - - fr-2-5-4 - - fr-2-5-5 - - fr-2-5-7 - - fr-2-5-8 +- id: fr-2-2-1 + name: Air Beds + children: [] attributes: - bedding_size - color - - firmness - - frame_material - - slat_material - - foundation_material -- id: fr-2-6 - name: Mattresses - children: - - fr-2-6-1 - - fr-2-6-2 - - fr-2-6-3 - - fr-2-6-4 - - fr-2-6-5 - - fr-2-6-6 - - fr-2-6-7 + - compatible_mattress_size + - material +- id: fr-2-2-2 + name: Bunk Beds & Bed Frames + children: [] attributes: - bedding_size - color - - firmness -- id: fr-3 - name: Benches - children: - - fr-3-1 - - fr-3-2 - - fr-3-3 + - compatible_mattress_size + - furniture_fixture_material +- id: fr-2-2-3 + name: Cabin Beds & Bed Frames + children: [] attributes: + - bedding_size - color + - compatible_mattress_size - furniture_fixture_material -- id: fr-3-1 - name: Kitchen & Dining Benches - children: - - fr-3-1-1 - - fr-3-1-2 - - fr-3-1-3 - - fr-3-1-4 - - fr-3-1-5 - - fr-3-1-6 - - fr-3-1-7 - - fr-3-1-8 - - fr-3-1-9 - - fr-3-1-10 - - fr-3-1-11 - - fr-3-1-13 - - fr-3-1-14 - - fr-3-1-15 - attributes: - - frame_color - - frame_material - - seat_color - - seat_type - - upholstery_material -- id: fr-3-2 - name: Storage & Entryway Benches - children: - - fr-3-2-1 - - fr-3-2-2 - - fr-3-2-3 - - fr-3-2-4 - - fr-3-2-5 - - fr-3-2-6 - - fr-3-2-7 - - fr-3-2-8 - - fr-3-2-9 - - fr-3-2-10 - - fr-3-2-12 - - fr-3-2-13 - - fr-3-2-14 - attributes: - - color - - furniture_fixture_material -- id: fr-3-3 - name: Vanity Benches +- id: fr-2-2-4 + name: Canopy Beds & Bed Frames children: [] attributes: + - bedding_size - color + - compatible_mattress_size - furniture_fixture_material -- id: fr-4 - name: Cabinets & Storage - children: - - fr-4-1 - - fr-4-3 - - fr-4-5 - - fr-4-6 - - fr-4-7 - - fr-4-8 - - fr-4-9 - - fr-4-10 - - fr-4-12 - - fr-4-13 - - fr-4-14 - - fr-4-15 - - fr-4-16 - - fr-4-2 - - fr-4-4 - - fr-4-11 +- id: fr-2-2-5 + name: Cot Beds & Bed Frames + children: [] attributes: + - bedding_size - color + - compatible_mattress_size - furniture_fixture_material -- id: fr-4-1 - name: Armoires & Wardrobes - children: - - fr-4-1-1 - - fr-4-1-2 - - fr-4-1-3 - - fr-4-1-4 - - fr-4-1-5 - - fr-4-1-6 - - fr-4-1-7 - - fr-4-1-8 - - fr-4-1-9 - - fr-4-1-10 - - fr-4-1-11 - - fr-4-1-12 - - fr-4-1-13 - - fr-4-1-14 - - fr-4-1-15 - - fr-4-1-16 - - fr-4-1-17 +- id: fr-2-2-6 + name: Divan Beds & Bed Frames + children: [] attributes: + - bedding_size - color + - compatible_mattress_size - furniture_fixture_material -- id: fr-4-3 - name: China Cabinets & Hutches - children: - - fr-4-3-1 - - fr-4-3-2 - - fr-4-3-3 - - fr-4-3-4 - - fr-4-3-5 - - fr-4-3-6 - - fr-4-3-7 - - fr-4-3-8 - - fr-4-3-9 - - fr-4-3-10 - - fr-4-3-11 - - fr-4-3-12 - - fr-4-3-13 - - fr-4-3-14 +- id: fr-2-2-7 + name: Four Posters + children: [] attributes: + - bedding_size - color + - compatible_mattress_size - furniture_fixture_material -- id: fr-4-5 - name: Dressers +- id: fr-2-2-8 + name: Loft Beds & Bed Frames children: [] attributes: + - bedding_size - color + - compatible_mattress_size - furniture_fixture_material -- id: fr-4-6 - name: File Cabinets +- id: fr-2-2-9 + name: Mid-Century Beds & Bed Frames children: [] attributes: + - bedding_size - color + - compatible_mattress_size - furniture_fixture_material -- id: fr-4-7 - name: Ironing Centers +- id: fr-2-2-10 + name: Panel Beds & Bed Frames children: [] attributes: + - bedding_size - color + - compatible_mattress_size - furniture_fixture_material -- id: fr-4-8 - name: Kitchen Cabinets - children: - - fr-4-8-1 - - fr-4-8-2 - - fr-4-8-3 - - fr-4-8-4 - - fr-4-8-5 - - fr-4-8-6 - - fr-4-8-7 - - fr-4-8-8 - - fr-4-8-9 - - fr-4-8-10 - - fr-4-8-11 - - fr-4-8-12 - - fr-4-8-13 - - fr-4-8-14 - - fr-4-8-15 - - fr-4-8-16 +- id: fr-2-2-11 + name: Platform Beds & Bed Frames + children: [] attributes: + - bedding_size - color + - compatible_mattress_size - furniture_fixture_material -- id: fr-4-9 - name: Magazine Racks +- id: fr-2-2-12 + name: Slat Beds & Bed Frames children: [] attributes: + - bedding_size - color + - compatible_mattress_size - furniture_fixture_material -- id: fr-4-10 - name: Media Storage Cabinets & Racks +- id: fr-2-2-13 + name: Sleigh Beds & Bed Frames children: [] attributes: + - bedding_size - color + - compatible_mattress_size - furniture_fixture_material -- id: fr-4-12 - name: Storage Cabinets & Lockers +- id: fr-2-2-14 + name: Trundle Beds & Bed Frames children: [] attributes: + - bedding_size - color + - compatible_mattress_size - furniture_fixture_material -- id: fr-4-13 - name: Storage Chests - children: - - fr-4-13-1 - - fr-4-13-2 +- id: fr-2-2-15 + name: Wall Beds & Bed Frames + children: [] attributes: + - bedding_size - color + - compatible_mattress_size - furniture_fixture_material -- id: fr-4-13-1 - name: Hope Chests +- id: fr-2-2-16 + name: Water Beds children: [] attributes: + - bedding_size - color - - furniture_fixture_material -- id: fr-4-13-2 - name: Toy Chests + - compatible_mattress_size + - material +- id: fr-2-3 + name: Footboards children: [] attributes: - - color - furniture_fixture_material -- id: fr-4-14 - name: Vanities - children: - - fr-4-14-1 - - fr-4-14-2 +- id: fr-2-4 + name: Headboards + children: [] attributes: - color - furniture_fixture_material -- id: fr-4-14-1 - name: Bathroom Vanities +- id: fr-2-5 + name: Mattress Foundations children: - - fr-4-14-1-1 - - fr-4-14-1-2 - - fr-4-14-1-3 - - fr-4-14-1-4 - - fr-4-14-1-5 - - fr-4-14-1-6 - - fr-4-14-1-7 - - fr-4-14-1-8 - - fr-4-14-1-9 - - fr-4-14-1-10 - - fr-4-14-1-11 + - fr-2-5-1 + - fr-2-5-2 + - fr-2-5-3 + - fr-2-5-4 + - fr-2-5-5 + - fr-2-5-7 + - fr-2-5-8 attributes: + - bedding_size - color - - furniture_fixture_material -- id: fr-4-14-2 - name: Bedroom Vanities - children: - - fr-4-14-2-1 - - fr-4-14-2-3 - - fr-4-14-2-4 - - fr-4-14-2-5 - - fr-4-14-2-6 - - fr-4-14-2-7 - - fr-4-14-2-8 + - foundation_material + - firmness + - frame_material + - slat_material +- id: fr-2-5-1 + name: Adjustable Bases + children: [] attributes: + - bedding_size - color - - furniture_fixture_material -- id: fr-4-15 - name: Wine & Liquor Cabinets + - foundation_material + - firmness + - frame_material + - slat_material +- id: fr-2-5-2 + name: Box Springs children: [] attributes: + - bedding_size - color - - furniture_fixture_material -- id: fr-4-16 - name: Wine Racks + - foundation_material + - firmness + - frame_material + - slat_material +- id: fr-2-5-3 + name: Bunkie Boards children: [] attributes: + - bedding_size - color - - wine_rack_design - - furniture_fixture_material -- id: fr-5 - name: Carts & Islands - children: - - fr-5-1 - - fr-5-2 - attributes: - - color - - furniture_fixture_material -- id: fr-6 - name: Chair Accessories - children: - - fr-6-1 - attributes: - - color - - material -- id: fr-6-1 - name: Hanging Chair Replacement Parts - children: [] - attributes: - - color - - material -- id: fr-7 - name: Chairs - children: - - fr-7-2 - - fr-7-3 - - fr-7-4 - - fr-7-5 - - fr-7-6 - - fr-7-7 - - fr-7-8 - - fr-7-9 - - fr-7-10 - - fr-7-11 - - fr-7-12 - - fr-7-1 - attributes: - - seat_type - - backrest_type - - color - - upholstery_material -- id: fr-7-2 - name: Bean Bag Chairs - children: [] - attributes: - - color - - filler_material - - upholstery_material -- id: fr-7-3 - name: Chaises - children: - - fr-7-3-1 - - fr-7-3-2 - - fr-7-3-3 - - fr-7-3-5 - attributes: - - backrest_type - - color - - seat_type - - upholstery_material -- id: fr-7-4 - name: Electric Massaging Chairs - children: [] - attributes: - - color - - massage_technique - - power_source - - treatment_area - - upholstery_material -- id: fr-7-5 - name: Floor Chairs - children: [] - attributes: - - seat_type - - backrest_type - - color - - upholstery_material -- id: fr-7-6 - name: Folding Chairs & Stools - children: - - fr-7-6-1 - - fr-7-6-2 - attributes: - - backrest_type - - color - - seat_type - - upholstery_material -- id: fr-7-7 - name: Gaming Chairs - children: [] - attributes: - - backrest_type - - color - - seat_type - - upholstery_material -- id: fr-7-8 - name: Hanging Chairs - children: [] - attributes: - - color - - hanging_chair_design - - suitable_space - - upholstery_material -- id: fr-7-9 - name: Kitchen & Dining Room Chairs - children: [] - attributes: - - backrest_type - - color - - seat_type - - upholstery_material -- id: fr-7-10 - name: Rocking Chairs - children: - - fr-7-10-1 - - fr-7-10-4 - - fr-7-10-5 - attributes: - - color - - seat_type - - suitable_space - - upholstery_material -- id: fr-7-11 - name: Slipper Chairs - children: [] - attributes: - - backrest_type - - color - - seat_type - - upholstery_material -- id: fr-7-12 - name: Table & Bar Stools - children: - - fr-7-12-1 - - fr-7-12-2 - attributes: - - back_type - - color - - seat_type - - furniture_fixture_material -- id: fr-9 - name: Entertainment Centers & TV Stands - children: [] - attributes: - - frame_color - - frame_material - - leg_color - - leg_material - - top_color - - top_material -- id: fr-10 - name: Furniture Sets - children: - - fr-10-1 - - fr-10-2 - - fr-10-3 - - fr-10-4 - attributes: - - color - - pattern -- id: fr-10-1 - name: Bathroom Furniture Sets - children: [] - attributes: - - color - - pattern - - tabletop_shape -- id: fr-10-2 - name: Bedroom Furniture Sets - children: [] - attributes: - - color - - mounting_type - - pattern - - furniture_fixture_material -- id: fr-10-3 - name: Kitchen & Dining Furniture Sets - children: [] - attributes: - - color - - pattern - - tabletop_shape -- id: fr-10-4 - name: Living Room Furniture Sets - children: [] - attributes: - - backrest_type - - frame_color - - frame_material - - pattern - - seat_color - - seat_pattern - - seat_type - - upholstery_material -- id: fr-11 - name: Futons - children: - - fr-11-1 - - fr-11-2 - attributes: - - color - - pattern - - suitable_space -- id: fr-12 - name: Office Furniture - children: - - fr-12-1 - - fr-12-2 - - fr-12-3 - - fr-12-4 - - fr-12-5 - attributes: - - color - - pattern -- id: fr-12-1 - name: Desks - children: [] - attributes: - - leg_color - - leg_material - - tabletop_color - - tabletop_material - - tabletop_shape - - frame_color - - frame_material -- id: fr-12-2 - name: Office Chairs - children: [] - attributes: - - color - - pattern - - furniture_fixture_material -- id: fr-12-3 - name: Office Furniture Sets - children: [] - attributes: - - color - - pattern -- id: fr-12-4 - name: Workspace Tables - children: - - fr-12-4-1 - - fr-12-4-2 - attributes: - - color - - pattern - - furniture_fixture_material -- id: fr-12-4-1 - name: Art & Drafting Tables - children: [] - attributes: - - frame_color - - frame_material - - pattern - - tabletop_color - - tabletop_material - - tabletop_pattern -- id: fr-12-4-2 - name: Conference Room Tables - children: [] - attributes: - - color - - pattern - - furniture_fixture_material -- id: fr-12-5 - name: Workstations & Cubicles - children: [] - attributes: - - color - - pattern - - furniture_fixture_material -- id: fr-13 - name: Office Furniture Accessories - children: - - fr-13-1 - - fr-13-2 - - fr-13-3 - attributes: - - color -- id: fr-13-1 - name: Desk Parts & Accessories - children: [] - attributes: - - color -- id: fr-13-2 - name: Office Chair Accessories - children: [] - attributes: - - color -- id: fr-13-3 - name: Workstation & Cubicle Accessories - children: [] - attributes: - - color -- id: fr-14 - name: Ottomans - children: [] - attributes: - - color - - pattern - - upholstery_material -- id: fr-15 - name: Outdoor Furniture - children: - - fr-15-1 - - fr-15-2 - - fr-15-3 - - fr-15-4 - - fr-15-5 - - fr-15-6 - attributes: - - color - - pattern -- id: fr-15-1 - name: Outdoor Beds - children: - - fr-15-1-1 - - fr-15-1-2 - - fr-15-1-3 - - fr-15-1-4 - - fr-15-1-5 - - fr-15-1-7 - - fr-15-1-8 - - fr-15-1-9 - attributes: - - bedding_size - - color - - firmness - - mounting_type - - pattern -- id: fr-15-2 - name: Outdoor Furniture Sets - children: [] - attributes: - - pattern - - color - - furniture_fixture_material -- id: fr-15-3 - name: Outdoor Ottomans - children: - - fr-15-3-1 - - fr-15-3-2 - - fr-15-3-3 - - fr-15-3-4 - - fr-15-3-5 - - fr-15-3-6 - - fr-15-3-7 - - fr-15-3-8 - - fr-15-3-9 - - fr-15-3-10 - - fr-15-3-11 - - fr-15-3-12 - - fr-15-3-13 - - fr-15-3-14 - - fr-15-3-15 - - fr-15-3-16 - attributes: - - color - - pattern - - upholstery_material -- id: fr-15-4 - name: Outdoor Seating - children: - - fr-15-4-1 - - fr-15-4-2 - - fr-15-4-3 - - fr-15-4-4 - - fr-15-4-5 - attributes: - - color - - pattern -- id: fr-15-4-1 - name: Outdoor Benches - children: - - fr-15-4-1-10 - - fr-15-4-1-11 - - fr-15-4-1-12 - attributes: - - color - - pattern - - seat_structure - - furniture_fixture_material -- id: fr-15-4-2 - name: Outdoor Chairs - children: - - fr-15-4-2-5 - - fr-15-4-2-9 - - fr-15-4-2-15 - - fr-15-4-2-16 - - fr-15-4-2-18 - attributes: - - backrest_type - - color - - seat_type - - pattern - - seat_structure - - furniture_fixture_material -- id: fr-15-4-3 - name: Outdoor Sectional Sofa Units - children: [] - attributes: - - color - - pattern -- id: fr-15-4-4 - name: Outdoor Sofas - children: - - fr-15-4-4-1 - - fr-15-4-4-2 - attributes: - - color - - pattern -- id: fr-15-4-5 - name: Sunloungers - children: [] - attributes: - - color - - pattern -- id: fr-15-5 - name: Outdoor Storage Boxes - children: [] - attributes: - - color - - pattern - - shape - - suitable_for_storage_type - - furniture_fixture_material -- id: fr-15-6 - name: Outdoor Tables - children: - - fr-15-6-1 - - fr-15-6-2 - - fr-15-6-3 - - fr-15-6-4 - - fr-15-6-5 - - fr-15-6-7 - - fr-15-6-9 - - fr-15-6-11 - attributes: - - color - - pattern - - tabletop_shape - - furniture_fixture_material -- id: fr-16 - name: Outdoor Furniture Accessories - children: - - fr-16-1 - attributes: - - color - - pattern -- id: fr-16-1 - name: Outdoor Furniture Covers - children: [] - attributes: - - color - - pattern - - cover_material -- id: fr-17 - name: Room Divider Accessories - children: [] - attributes: - - color -- id: fr-18 - name: Room Dividers - children: [] - attributes: - - color - - pattern - - style -- id: fr-19 - name: Shelving - children: - - fr-19-1 - - fr-19-2 - attributes: - - color - - suitable_location - - mounting_type - - pattern - - furniture_fixture_material -- id: fr-19-1 - name: Bookcases & Standing Shelves - children: - - fr-19-1-1 - - fr-19-1-2 - - fr-19-1-3 - - fr-19-1-4 - - fr-19-1-5 - attributes: - - color - - mounting_type - - pattern - - suitable_location - - furniture_fixture_material -- id: fr-19-2 - name: Wall Shelves & Ledges - children: - - fr-19-2-1 - - fr-19-2-2 - - fr-19-2-3 - - fr-19-2-4 - - fr-19-2-5 - attributes: - - mounting_type - - pattern - - suitable_location - - color - - furniture_fixture_material -- id: fr-20 - name: Shelving Accessories - children: - - fr-20-1 - attributes: - - color -- id: fr-20-1 - name: Replacement Shelves - children: [] - attributes: - - color -- id: fr-21 - name: Sofa Accessories - children: - - fr-21-1 - - fr-21-2 - attributes: - - color -- id: fr-21-1 - name: Chair & Sofa Supports - children: [] - attributes: - - color -- id: fr-21-2 - name: Sectional Sofa Units - children: [] - attributes: - - color -- id: fr-22 - name: Sofas - children: - - fr-22-1 - - fr-22-3 - - fr-22-4 - - fr-22-6 - attributes: - - backrest_upholstery_material - - color + - foundation_material - firmness - - pattern - - seat_upholstery_material -- id: fr-23 - name: Table Accessories - children: - - fr-23-1 - - fr-23-2 - attributes: - - color -- id: fr-23-1 - name: Table Legs - children: [] - attributes: - - color - - furniture_fixture_material -- id: fr-23-2 - name: Table Tops - children: [] - attributes: - - color - - furniture_fixture_material -- id: fr-24 - name: Tables - children: - - fr-24-1 - - fr-24-2 - - fr-24-3 - - fr-24-4 - - fr-24-5 - - fr-24-6 - - fr-24-7 - - fr-24-8 - attributes: - - leg_material - - pattern - - tabletop_material - - tabletop_shape - - color -- id: fr-24-1 - name: Accent Tables - children: - - fr-24-1-1 - - fr-24-1-2 - - fr-24-1-3 - attributes: - - color - - leg_material - - pattern - - tabletop_material - - tabletop_shape -- id: fr-24-1-1 - name: Coffee Tables - children: [] - attributes: - - color - - leg_material - - pattern - - tabletop_material - - tabletop_shape -- id: fr-24-1-2 - name: End Tables - children: [] - attributes: - - color - - leg_material - - pattern - - tabletop_material - - tabletop_shape -- id: fr-24-1-3 - name: Sofa Tables - children: [] - attributes: - - color - - leg_material - - pattern - - tabletop_material - - tabletop_shape -- id: fr-24-2 - name: Activity Tables - children: [] - attributes: - - leg_material - - pattern - - tabletop_color - - tabletop_material - - leg_color -- id: fr-24-3 - name: Folding Tables + - frame_material + - slat_material +- id: fr-2-5-4 + name: Foldable Metal Foundations children: [] attributes: + - bedding_size - color + - foundation_material + - firmness - frame_material - - leg_material - - pattern - - tabletop_material -- id: fr-24-4 - name: Kitchen & Dining Room Tables - children: - - fr-24-4-1 - attributes: - - color - - leg_material - - pattern - - tabletop_material -- id: fr-24-5 - name: Kotatsu + - slat_material +- id: fr-2-5-5 + name: Foundations & Frames-in-One children: [] attributes: + - bedding_size - color - - leg_material - - leg_pattern - - tabletop_material - - tabletop_shape -- id: fr-24-6 - name: Nightstands - children: [] - attributes: - - frame_color + - foundation_material + - firmness - frame_material - - leg_color - - leg_material - - pattern - - tabletop_shape - - top_color - - top_material -- id: fr-24-7 - name: Poker & Game Tables + - slat_material +- id: fr-2-5-7 + name: Panel Bases children: [] attributes: + - bedding_size - color - - leg_material - - pattern - - tabletop_material - - tabletop_shape -- id: fr-24-8 - name: Sewing Machine Tables + - foundation_material + - firmness + - frame_material + - slat_material +- id: fr-2-5-8 + name: Platform Bases children: [] attributes: + - bedding_size - color - - leg_material - - leg_pattern - - pattern - - tabletop_material - - tabletop_shape -- id: fr-1-3-1 - name: Bassinet Playards - children: [] + - foundation_material + - firmness + - frame_material + - slat_material +- id: fr-2-6 + name: Mattresses + children: + - fr-2-6-1 + - fr-2-6-2 + - fr-2-6-3 + - fr-2-6-4 + - fr-2-6-5 + - fr-2-6-6 + - fr-2-6-7 attributes: - - age_group + - bedding_size - color - - furniture_fixture_material -- id: fr-1-3-2 - name: Bassinets + - firmness +- id: fr-2-6-1 + name: Gel Foam Mattresses children: [] attributes: - - age_group + - bedding_size - color - - furniture_fixture_material -- id: fr-1-3-3 - name: Bedside Bassinets + - firmness +- id: fr-2-6-2 + name: High Resilience Foam Mattresses children: [] attributes: - - age_group + - bedding_size - color - - furniture_fixture_material -- id: fr-1-3-5 - name: Convertible Bassinets + - firmness +- id: fr-2-6-3 + name: Innerspring Mattresses children: [] attributes: - - age_group + - bedding_size - color - - furniture_fixture_material -- id: fr-1-3-6 - name: Cradles + - firmness +- id: fr-2-6-4 + name: Latex Mattresses children: [] attributes: - - age_group + - bedding_size - color - - furniture_fixture_material -- id: fr-1-3-7 - name: Folding Bassinets + - firmness +- id: fr-2-6-5 + name: Memory Foam Mattresses children: [] attributes: - - age_group + - bedding_size - color - - furniture_fixture_material -- id: fr-1-3-8 - name: Hanging Bassinets + - firmness +- id: fr-2-6-6 + name: Rolled Mattresses children: [] attributes: - - age_group + - bedding_size - color - - furniture_fixture_material -- id: fr-1-3-10 - name: Rocking Bassinets + - firmness +- id: fr-2-6-7 + name: Water Mattresses children: [] attributes: - - age_group + - bedding_size - color - - furniture_fixture_material -- id: fr-1-3-11 - name: Travel Bassinets - children: [] + - firmness +- id: fr-3 + name: Benches + children: + - fr-3-1 + - fr-3-2 + - fr-3-3 attributes: - - age_group - color - furniture_fixture_material -- id: fr-1-5-1-1 - name: Crib Liners - children: [] +- id: fr-3-1 + name: Kitchen & Dining Benches + children: + - fr-3-1-1 + - fr-3-1-2 + - fr-3-1-3 + - fr-3-1-4 + - fr-3-1-5 + - fr-3-1-6 + - fr-3-1-7 + - fr-3-1-8 + - fr-3-1-9 + - fr-3-1-10 + - fr-3-1-11 + - fr-3-1-13 + - fr-3-1-14 + - fr-3-1-15 attributes: - - color - - fabric -- id: fr-1-5-1-2 - name: Crib Rail Covers + - frame_color + - frame_material + - seat_color + - upholstery_material + - seat_type +- id: fr-3-1-1 + name: Backed Benches children: [] attributes: - - color - - fabric -- id: fr-1-5-1-3 - name: Crib Skirts + - frame_color + - frame_material + - seat_color + - upholstery_material + - seat_type +- id: fr-3-1-2 + name: Backless Benches children: [] attributes: - - color - - fabric -- id: fr-1-5-1-4 - name: Mesh Crib Bumpers + - frame_color + - frame_material + - seat_color + - upholstery_material + - seat_type +- id: fr-3-1-3 + name: Banquettes children: [] attributes: - - color - - fabric -- id: fr-1-5-1-5 - name: Padded Crib Bumpers + - frame_color + - frame_material + - seat_color + - upholstery_material + - seat_type +- id: fr-3-1-4 + name: Booths children: [] attributes: - - color - - fabric -- id: fr-1-5-1-6 - name: Teething Rail Covers + - frame_color + - frame_material + - seat_color + - upholstery_material + - seat_type +- id: fr-3-1-5 + name: Corner Benches children: [] attributes: - - color - - fabric -- id: fr-1-6-4 - name: Bunk Toddler Beds + - frame_color + - frame_material + - seat_color + - upholstery_material + - seat_type +- id: fr-3-1-6 + name: Counter Height Benches children: [] attributes: - - color - - furniture_fixture_material -- id: fr-1-6-5 - name: Canopy Toddler Beds + - frame_color + - frame_material + - seat_color + - upholstery_material + - seat_type +- id: fr-3-1-7 + name: Dining Benches children: [] attributes: - - color - - furniture_fixture_material -- id: fr-1-6-6 - name: Loft Toddler Beds + - frame_color + - frame_material + - seat_color + - upholstery_material + - seat_type +- id: fr-3-1-8 + name: Farmhouse Benches children: [] attributes: - - color - - furniture_fixture_material -- id: fr-1-6-7 - name: Mini Cribs + - frame_color + - frame_material + - seat_color + - upholstery_material + - seat_type +- id: fr-3-1-9 + name: Kitchen Nook Benches children: [] attributes: - - color - - furniture_fixture_material -- id: fr-1-6-9 - name: Sleigh Toddler Beds + - frame_color + - frame_material + - seat_color + - upholstery_material + - seat_type +- id: fr-3-1-10 + name: L-Shaped Benches children: [] attributes: - - color - - furniture_fixture_material -- id: fr-1-6-10 - name: Standard Cribs + - frame_color + - frame_material + - seat_color + - upholstery_material + - seat_type +- id: fr-3-1-11 + name: Saddle Benches children: [] attributes: - - color - - furniture_fixture_material -- id: fr-1-6-11 - name: Toddler Beds + - frame_color + - frame_material + - seat_color + - upholstery_material + - seat_type +- id: fr-3-1-13 + name: Storage Benches children: [] attributes: - - color - - furniture_fixture_material -- id: fr-1-6-12 - name: Travel Cribs + - frame_color + - frame_material + - seat_color + - upholstery_material + - seat_type +- id: fr-3-1-14 + name: Trestles children: [] attributes: - - color - - furniture_fixture_material -- id: fr-1-8-2 - name: Booster Feeding Seats + - frame_color + - frame_material + - seat_color + - upholstery_material + - seat_type +- id: fr-3-1-15 + name: Upholstered Benches children: [] attributes: - - color + - frame_color + - frame_material + - seat_color - upholstery_material -- id: fr-1-8-3 - name: Convertible High Chairs + - seat_type +- id: fr-3-2 + name: Storage & Entryway Benches + children: + - fr-3-2-1 + - fr-3-2-2 + - fr-3-2-3 + - fr-3-2-4 + - fr-3-2-5 + - fr-3-2-6 + - fr-3-2-7 + - fr-3-2-8 + - fr-3-2-9 + - fr-3-2-10 + - fr-3-2-12 + - fr-3-2-13 + - fr-3-2-14 + attributes: + - color + - furniture_fixture_material +- id: fr-3-2-1 + name: Basket Benches children: [] attributes: - color - - upholstery_material -- id: fr-1-8-4 - name: High Chairs + - furniture_fixture_material +- id: fr-3-2-2 + name: Coat Racks children: [] attributes: - color - - upholstery_material -- id: fr-1-8-5 - name: Hook-On Seats + - furniture_fixture_material +- id: fr-3-2-3 + name: Cubby Benches children: [] attributes: - color - - upholstery_material -- id: fr-1-9 - name: Play Sofas + - furniture_fixture_material +- id: fr-3-2-4 + name: Drawer Storage Benches children: [] attributes: - color - - upholstery_material -- id: fr-2-2-1 - name: Air Beds + - furniture_fixture_material +- id: fr-3-2-5 + name: Entryway Benches children: [] attributes: - - bedding_size - color - - compatible_mattress_size - - material -- id: fr-2-2-2 - name: Bunk Beds & Bed Frames + - furniture_fixture_material +- id: fr-3-2-6 + name: Hall Trees children: [] attributes: - - bedding_size - color - - compatible_mattress_size - furniture_fixture_material -- id: fr-2-2-3 - name: Cabin Beds & Bed Frames +- id: fr-3-2-7 + name: Hook Benches children: [] attributes: - - bedding_size - color - - compatible_mattress_size - furniture_fixture_material -- id: fr-2-2-4 - name: Canopy Beds & Bed Frames +- id: fr-3-2-8 + name: Lidded Storage Benches children: [] attributes: - color - - compatible_mattress_size - - bedding_size - furniture_fixture_material -- id: fr-2-2-5 - name: Cot Beds & Bed Frames +- id: fr-3-2-9 + name: Lift-Top Storage Benches children: [] attributes: - color - - compatible_mattress_size - - bedding_size - furniture_fixture_material -- id: fr-2-2-6 - name: Divan Beds & Bed Frames +- id: fr-3-2-10 + name: Locker Benches children: [] attributes: - - bedding_size - color - - compatible_mattress_size - furniture_fixture_material -- id: fr-2-2-7 - name: Four Posters +- id: fr-3-2-12 + name: Shoe Storage Benches children: [] attributes: - - bedding_size - color - - compatible_mattress_size - furniture_fixture_material -- id: fr-2-2-8 - name: Loft Beds & Bed Frames +- id: fr-3-2-13 + name: Upholstered Storage Benches children: [] attributes: - - bedding_size - color - - compatible_mattress_size - furniture_fixture_material -- id: fr-2-2-9 - name: Mid-Century Beds & Bed Frames +- id: fr-3-2-14 + name: Window Seats children: [] attributes: - - bedding_size - color - - compatible_mattress_size - furniture_fixture_material -- id: fr-2-2-10 - name: Panel Beds & Bed Frames +- id: fr-3-3 + name: Vanity Benches children: [] attributes: - - bedding_size - color - - compatible_mattress_size - furniture_fixture_material -- id: fr-2-2-11 - name: Platform Beds & Bed Frames - children: [] +- id: fr-4 + name: Cabinets & Storage + children: + - fr-4-1 + - fr-4-2 + - fr-4-3 + - fr-4-4 + - fr-4-5 + - fr-4-6 + - fr-4-7 + - fr-4-8 + - fr-4-9 + - fr-4-10 + - fr-4-11 + - fr-4-12 + - fr-4-13 + - fr-4-14 + - fr-4-15 + - fr-4-16 attributes: - - bedding_size - color - - compatible_mattress_size - furniture_fixture_material -- id: fr-2-2-12 - name: Slat Beds & Bed Frames - children: [] +- id: fr-4-1 + name: Armoires & Wardrobes + children: + - fr-4-1-1 + - fr-4-1-2 + - fr-4-1-3 + - fr-4-1-4 + - fr-4-1-5 + - fr-4-1-6 + - fr-4-1-7 + - fr-4-1-8 + - fr-4-1-9 + - fr-4-1-10 + - fr-4-1-11 + - fr-4-1-12 + - fr-4-1-13 + - fr-4-1-14 + - fr-4-1-15 + - fr-4-1-16 + - fr-4-1-17 attributes: - - bedding_size - color - - compatible_mattress_size - furniture_fixture_material -- id: fr-2-2-13 - name: Sleigh Beds & Bed Frames +- id: fr-4-1-1 + name: Computer Armoires children: [] attributes: - - bedding_size - color - - compatible_mattress_size - furniture_fixture_material -- id: fr-2-2-14 - name: Trundle Beds & Bed Frames +- id: fr-4-1-2 + name: Corner Armoires children: [] attributes: - - bedding_size - color - - compatible_mattress_size - furniture_fixture_material -- id: fr-2-2-15 - name: Wall Beds & Bed Frames +- id: fr-4-1-3 + name: Corner Wardrobes children: [] attributes: - - bedding_size - color - - compatible_mattress_size - furniture_fixture_material -- id: fr-2-2-16 - name: Water Beds +- id: fr-4-1-4 + name: Double Wardrobes children: [] attributes: - color - - compatible_mattress_size - - bedding_size - - material -- id: fr-2-3 - name: Footboards + - furniture_fixture_material +- id: fr-4-1-5 + name: Hanging Rail Wardrobes children: [] attributes: + - color - furniture_fixture_material -- id: fr-2-4 - name: Headboards +- id: fr-4-1-6 + name: Hinged Door Wardrobes children: [] attributes: - color - furniture_fixture_material -- id: fr-2-5-1 - name: Adjustable Bases +- id: fr-4-1-7 + name: Jewelry Armoires children: [] attributes: - - bedding_size - color - - firmness - - frame_material - - slat_material - - foundation_material -- id: fr-2-5-2 - name: Box Springs + - furniture_fixture_material +- id: fr-4-1-8 + name: Kids' Armoires children: [] attributes: - - bedding_size - color - - firmness - - frame_material - - slat_material - - foundation_material -- id: fr-2-5-3 - name: Bunkie Boards + - furniture_fixture_material +- id: fr-4-1-9 + name: Kids' Wardrobes children: [] attributes: - - bedding_size - color - - firmness - - frame_material - - slat_material - - foundation_material -- id: fr-2-5-4 - name: Foldable Metal Foundations + - furniture_fixture_material +- id: fr-4-1-10 + name: Mirrored Armoires children: [] attributes: - - bedding_size - color - - firmness - - frame_material - - slat_material - - foundation_material -- id: fr-2-5-5 - name: Foundations & Frames-in-One + - furniture_fixture_material +- id: fr-4-1-11 + name: Mirrored Wardrobes children: [] attributes: - - bedding_size - color - - firmness - - frame_material - - slat_material - - foundation_material -- id: fr-2-5-7 - name: Panel Bases + - furniture_fixture_material +- id: fr-4-1-12 + name: Office Armoires children: [] attributes: - - bedding_size - color - - firmness - - frame_material - - slat_material - - foundation_material -- id: fr-2-5-8 - name: Platform Bases + - furniture_fixture_material +- id: fr-4-1-13 + name: Portable Wardrobes children: [] attributes: - - bedding_size - color - - firmness - - frame_material - - slat_material - - foundation_material -- id: fr-2-6-1 - name: Gel Foam Mattresses + - furniture_fixture_material +- id: fr-4-1-14 + name: Shelved Armoires children: [] attributes: - - bedding_size - color - - firmness -- id: fr-2-6-2 - name: High Resilience Foam Mattresses + - furniture_fixture_material +- id: fr-4-1-15 + name: Sliding Door Wardrobes children: [] attributes: - color - - firmness - - bedding_size -- id: fr-2-6-3 - name: Innerspring Mattresses + - furniture_fixture_material +- id: fr-4-1-16 + name: Triple Wardrobes children: [] attributes: - - bedding_size - color - - firmness -- id: fr-2-6-4 - name: Latex Mattresses + - furniture_fixture_material +- id: fr-4-1-17 + name: TV Armoires children: [] attributes: - - bedding_size - color - - firmness -- id: fr-2-6-5 - name: Memory Foam Mattresses + - furniture_fixture_material +- id: fr-4-2 + name: Buffets children: [] attributes: - - bedding_size + - door_color + - door_material + - door_type + - frame_color + - frame_material + - top_color + - top_material +- id: fr-4-3 + name: China Cabinets & Hutches + children: + - fr-4-3-1 + - fr-4-3-2 + - fr-4-3-3 + - fr-4-3-4 + - fr-4-3-5 + - fr-4-3-6 + - fr-4-3-7 + - fr-4-3-8 + - fr-4-3-9 + - fr-4-3-10 + - fr-4-3-11 + - fr-4-3-12 + - fr-4-3-13 + - fr-4-3-14 + attributes: - color - - firmness -- id: fr-2-6-6 - name: Rolled Mattresses + - furniture_fixture_material +- id: fr-4-3-1 + name: Buffets with Hutch children: [] attributes: - - bedding_size - color - - firmness -- id: fr-2-6-7 - name: Water Mattresses + - furniture_fixture_material +- id: fr-4-3-2 + name: Cabinet Hutches children: [] attributes: - - bedding_size - color - - firmness -- id: fr-3-1-1 - name: Backed Benches + - furniture_fixture_material +- id: fr-4-3-3 + name: China Cabinets children: [] attributes: - - frame_color - - frame_material - - seat_color - - seat_type - - upholstery_material -- id: fr-3-1-2 - name: Backless Benches + - color + - furniture_fixture_material +- id: fr-4-3-4 + name: Corner Display Cabinets children: [] attributes: - - frame_color - - frame_material - - seat_color - - seat_type - - upholstery_material -- id: fr-3-1-3 - name: Banquettes + - color + - furniture_fixture_material +- id: fr-4-3-5 + name: Corner Hutches children: [] attributes: - - frame_material - - seat_color - - seat_type - - frame_color - - upholstery_material -- id: fr-3-1-4 - name: Booths + - color + - furniture_fixture_material +- id: fr-4-3-6 + name: Credenza Hutches children: [] attributes: - - frame_color - - frame_material - - seat_color - - seat_type - - upholstery_material -- id: fr-3-1-5 - name: Corner Benches + - color + - furniture_fixture_material +- id: fr-4-3-7 + name: Dining Room Hutches children: [] attributes: - - frame_color - - frame_material - - seat_color - - seat_type - - upholstery_material -- id: fr-3-1-6 - name: Counter Height Benches + - color + - furniture_fixture_material +- id: fr-4-3-8 + name: Display Hutches children: [] attributes: - - seat_type - - frame_color - - frame_material - - seat_color - - upholstery_material -- id: fr-3-1-7 - name: Dining Benches + - color + - furniture_fixture_material +- id: fr-4-3-9 + name: Kitchen Hutches children: [] attributes: - - frame_color - - frame_material - - seat_color - - seat_type - - upholstery_material -- id: fr-3-1-8 - name: Farmhouse Benches + - color + - furniture_fixture_material +- id: fr-4-3-10 + name: Secretary Desks with Hutch children: [] attributes: - - frame_color - - frame_material - - seat_color - - seat_type - - upholstery_material -- id: fr-3-1-9 - name: Kitchen Nook Benches + - color + - furniture_fixture_material +- id: fr-4-3-11 + name: Server Hutches children: [] attributes: - - frame_color - - frame_material - - seat_color - - seat_type - - upholstery_material -- id: fr-3-1-10 - name: L-Shaped Benches + - color + - furniture_fixture_material +- id: fr-4-3-12 + name: Sideboards with Hutch children: [] attributes: - - seat_color - - seat_type - - frame_color - - frame_material - - upholstery_material -- id: fr-3-1-11 - name: Saddle Benches + - color + - furniture_fixture_material +- id: fr-4-3-13 + name: Tall Display Cabinets children: [] attributes: - - frame_color - - frame_material - - seat_color - - seat_type - - upholstery_material -- id: fr-3-1-13 - name: Storage Benches + - color + - furniture_fixture_material +- id: fr-4-3-14 + name: Wall-Mounted Hutches children: [] attributes: - - frame_color - - frame_material - - seat_color - - seat_type - - upholstery_material -- id: fr-3-1-14 - name: Trestles - children: [] + - color + - furniture_fixture_material +- id: fr-4-4 + name: Closets + children: + - fr-4-4-1 + - fr-4-4-2 + - fr-4-4-3 + - fr-4-4-4 + - fr-4-4-5 + - fr-4-4-6 + - fr-4-4-7 + - fr-4-4-8 + - fr-4-4-9 attributes: - - frame_color - - frame_material - - seat_color - - seat_type - - upholstery_material -- id: fr-3-1-15 - name: Upholstered Benches + - color + - furniture_fixture_material +- id: fr-4-4-1 + name: Closet Baskets children: [] attributes: - - frame_color - - frame_material - - seat_color - - seat_type - - upholstery_material -- id: fr-3-2-1 - name: Basket Benches + - color + - basket_material +- id: fr-4-4-2 + name: Closet Bins children: [] attributes: - color - - furniture_fixture_material -- id: fr-3-2-2 - name: Coat Racks + - material +- id: fr-4-4-3 + name: Closet Doors children: [] attributes: - color - furniture_fixture_material -- id: fr-3-2-3 - name: Cubby Benches +- id: fr-4-4-4 + name: Closet Drawers children: [] attributes: - color - furniture_fixture_material -- id: fr-3-2-4 - name: Drawer Storage Benches +- id: fr-4-4-5 + name: Closet Rods children: [] attributes: - color - furniture_fixture_material -- id: fr-3-2-5 - name: Entryway Benches +- id: fr-4-4-6 + name: Closet Shelves children: [] attributes: - color - furniture_fixture_material -- id: fr-3-2-6 - name: Hall Trees +- id: fr-4-4-7 + name: Kids' Closets children: [] attributes: - color - furniture_fixture_material -- id: fr-3-2-7 - name: Hook Benches +- id: fr-4-4-8 + name: Reach-In Closets children: [] attributes: - color - furniture_fixture_material -- id: fr-3-2-8 - name: Lidded Storage Benches +- id: fr-4-4-9 + name: Walk-In Closets children: [] attributes: - color - furniture_fixture_material -- id: fr-3-2-9 - name: Lift-Top Storage Benches +- id: fr-4-5 + name: Dressers children: [] attributes: - color - furniture_fixture_material -- id: fr-3-2-10 - name: Locker Benches +- id: fr-4-6 + name: File Cabinets children: [] attributes: - color - furniture_fixture_material -- id: fr-3-2-12 - name: Shoe Storage Benches +- id: fr-4-7 + name: Ironing Centers children: [] attributes: - color - furniture_fixture_material -- id: fr-3-2-13 - name: Upholstered Storage Benches - children: [] +- id: fr-4-8 + name: Kitchen Cabinets + children: + - fr-4-8-1 + - fr-4-8-2 + - fr-4-8-3 + - fr-4-8-4 + - fr-4-8-5 + - fr-4-8-6 + - fr-4-8-7 + - fr-4-8-8 + - fr-4-8-9 + - fr-4-8-10 + - fr-4-8-11 + - fr-4-8-12 + - fr-4-8-13 + - fr-4-8-14 + - fr-4-8-15 + - fr-4-8-16 attributes: - color - furniture_fixture_material -- id: fr-3-2-14 - name: Window Seats +- id: fr-4-8-1 + name: Base Kitchen Cabinets children: [] attributes: - color - furniture_fixture_material -- id: fr-4-1-1 - name: Computer Armoires +- id: fr-4-8-2 + name: Corner Kitchen Cabinets children: [] attributes: - color - furniture_fixture_material -- id: fr-4-1-2 - name: Corner Armoires +- id: fr-4-8-3 + name: Double Doors children: [] attributes: - color - furniture_fixture_material -- id: fr-4-1-3 - name: Corner Wardrobes +- id: fr-4-8-4 + name: Drawer Base Kitchen Cabinets children: [] attributes: - color - furniture_fixture_material -- id: fr-4-1-4 - name: Double Wardrobes +- id: fr-4-8-5 + name: Farmhouse Kitchen Cabinets children: [] attributes: - color - furniture_fixture_material -- id: fr-4-1-5 - name: Hanging Rail Wardrobes +- id: fr-4-8-6 + name: Glass-Front Kitchen Cabinets children: [] attributes: - color - furniture_fixture_material -- id: fr-4-1-6 - name: Hinged Door Wardrobes +- id: fr-4-8-7 + name: Hutch-Style Kitchen Cabinets children: [] attributes: - color - furniture_fixture_material -- id: fr-4-1-7 - name: Jewelry Armoires +- id: fr-4-8-8 + name: Microwave Cabinets children: [] attributes: - color - furniture_fixture_material -- id: fr-4-1-8 - name: Kids' Armoires +- id: fr-4-8-9 + name: Open Shelves children: [] attributes: - color - furniture_fixture_material -- id: fr-4-1-9 - name: Kids' Wardrobes +- id: fr-4-8-10 + name: Oven Cabinets children: [] attributes: - color - furniture_fixture_material -- id: fr-4-1-10 - name: Mirrored Armoires +- id: fr-4-8-11 + name: Pantries children: [] attributes: - color - furniture_fixture_material -- id: fr-4-1-11 - name: Mirrored Wardrobes +- id: fr-4-8-12 + name: Pull-Out Trash Cans children: [] attributes: - color - furniture_fixture_material -- id: fr-4-1-12 - name: Office Armoires +- id: fr-4-8-13 + name: Single Door Kitchen Cabinets children: [] attributes: - color - furniture_fixture_material -- id: fr-4-1-13 - name: Portable Wardrobes +- id: fr-4-8-14 + name: Sink Base Cabinets children: [] attributes: - color - furniture_fixture_material -- id: fr-4-1-14 - name: Shelved Armoires +- id: fr-4-8-15 + name: Tall Kitchen Cabinets children: [] attributes: - - color - furniture_fixture_material -- id: fr-4-1-15 - name: Sliding Door Wardrobes +- id: fr-4-8-16 + name: Wall Kitchen Cabinets children: [] attributes: - color - furniture_fixture_material -- id: fr-4-1-16 - name: Triple Wardrobes +- id: fr-4-9 + name: Magazine Racks children: [] attributes: - color - furniture_fixture_material -- id: fr-4-1-17 - name: TV Armoires +- id: fr-4-10 + name: Media Storage Cabinets & Racks children: [] attributes: - color - furniture_fixture_material -- id: fr-4-2 - name: Buffets +- id: fr-4-11 + name: Sideboards children: [] attributes: - - door_color - - door_material - door_type - frame_color - frame_material + - leg_color + - leg_material - top_color - top_material -- id: fr-4-3-1 - name: Buffets with Hutch +- id: fr-4-12 + name: Storage Cabinets & Lockers children: [] attributes: - color - furniture_fixture_material -- id: fr-4-3-2 - name: Cabinet Hutches - children: [] +- id: fr-4-13 + name: Storage Chests + children: + - fr-4-13-1 + - fr-4-13-2 attributes: - color - furniture_fixture_material -- id: fr-4-3-3 - name: China Cabinets +- id: fr-4-13-1 + name: Hope Chests children: [] attributes: - color - furniture_fixture_material -- id: fr-4-3-4 - name: Corner Display Cabinets +- id: fr-4-13-2 + name: Toy Chests children: [] attributes: - color - furniture_fixture_material -- id: fr-4-3-5 - name: Corner Hutches - children: [] +- id: fr-4-14 + name: Vanities + children: + - fr-4-14-1 + - fr-4-14-2 attributes: - color - furniture_fixture_material -- id: fr-4-3-6 - name: Credenza Hutches - children: [] +- id: fr-4-14-1 + name: Bathroom Vanities + children: + - fr-4-14-1-1 + - fr-4-14-1-2 + - fr-4-14-1-3 + - fr-4-14-1-4 + - fr-4-14-1-5 + - fr-4-14-1-6 + - fr-4-14-1-7 + - fr-4-14-1-8 + - fr-4-14-1-9 + - fr-4-14-1-10 + - fr-4-14-1-11 attributes: - color - furniture_fixture_material -- id: fr-4-3-7 - name: Dining Room Hutches +- id: fr-4-14-1-1 + name: Bathroom Cabinets children: [] attributes: - color - furniture_fixture_material -- id: fr-4-3-8 - name: Display Hutches +- id: fr-4-14-1-2 + name: Bathroom Vanity Sets children: [] attributes: - color - furniture_fixture_material -- id: fr-4-3-9 - name: Kitchen Hutches +- id: fr-4-14-1-3 + name: Corner Vanities children: [] attributes: - color - furniture_fixture_material -- id: fr-4-3-10 - name: Secretary Desks with Hutch +- id: fr-4-14-1-4 + name: Double Sinks children: [] attributes: - color - furniture_fixture_material -- id: fr-4-3-11 - name: Server Hutches +- id: fr-4-14-1-5 + name: Floating Vanities children: [] attributes: - color - furniture_fixture_material -- id: fr-4-3-12 - name: Sideboards with Hutch +- id: fr-4-14-1-6 + name: Free-Standing Vanities children: [] attributes: - color - furniture_fixture_material -- id: fr-4-3-13 - name: Tall Display Cabinets +- id: fr-4-14-1-7 + name: Pedestal Vanities children: [] attributes: - color - furniture_fixture_material -- id: fr-4-3-14 - name: Wall-Mounted Hutches +- id: fr-4-14-1-8 + name: Single Sink Vanities children: [] attributes: - color - furniture_fixture_material -- id: fr-4-4 - name: Closets & Closet Accessories - children: - - fr-4-4-1 - - fr-4-4-2 - - fr-4-4-3 - - fr-4-4-4 - - fr-4-4-5 - - fr-4-4-6 - - fr-4-4-7 - - fr-4-4-8 - - fr-4-4-9 - attributes: - - color - - furniture_fixture_material -- id: fr-4-4-1 - name: Closet Baskets - children: [] - attributes: - - color - - basket_material -- id: fr-4-4-2 - name: Closet Bins +- id: fr-4-14-1-9 + name: Topless Vanities children: [] attributes: - color - - material -- id: fr-4-4-3 - name: Closet Doors + - furniture_fixture_material +- id: fr-4-14-1-10 + name: Topped Vanities children: [] attributes: - color - furniture_fixture_material -- id: fr-4-4-4 - name: Closet Drawers +- id: fr-4-14-1-11 + name: Vanity Bases children: [] attributes: - color - furniture_fixture_material -- id: fr-4-4-5 - name: Closet Rods - children: [] +- id: fr-4-14-2 + name: Bedroom Vanities + children: + - fr-4-14-2-1 + - fr-4-14-2-3 + - fr-4-14-2-4 + - fr-4-14-2-5 + - fr-4-14-2-6 + - fr-4-14-2-7 + - fr-4-14-2-8 attributes: - color - furniture_fixture_material -- id: fr-4-4-6 - name: Closet Shelves +- id: fr-4-14-2-1 + name: Bedroom Vanity Sets children: [] attributes: - color - furniture_fixture_material -- id: fr-4-4-7 - name: Kids' Closets +- id: fr-4-14-2-3 + name: Desk Vanities children: [] attributes: - color - furniture_fixture_material -- id: fr-4-4-8 - name: Reach-In Closets +- id: fr-4-14-2-4 + name: Dressing Tables children: [] attributes: - color - furniture_fixture_material -- id: fr-4-4-9 - name: Walk-In Closets +- id: fr-4-14-2-5 + name: Lighted Vanities children: [] attributes: - color - furniture_fixture_material -- id: fr-4-8-1 - name: Base Kitchen Cabinets +- id: fr-4-14-2-6 + name: Makeup Vanities children: [] attributes: - color - furniture_fixture_material -- id: fr-4-8-2 - name: Corner Kitchen Cabinets +- id: fr-4-14-2-7 + name: Mirrored Vanities children: [] attributes: - color - furniture_fixture_material -- id: fr-4-8-3 - name: Double Doors +- id: fr-4-14-2-8 + name: Table Vanities children: [] attributes: - color - furniture_fixture_material -- id: fr-4-8-4 - name: Drawer Base Kitchen Cabinets +- id: fr-4-15 + name: Wine & Liquor Cabinets children: [] attributes: - color - furniture_fixture_material -- id: fr-4-8-5 - name: Farmhouse Kitchen Cabinets +- id: fr-4-16 + name: Wine Racks children: [] attributes: - color - furniture_fixture_material -- id: fr-4-8-6 - name: Glass-Front Kitchen Cabinets - children: [] + - wine_rack_design +- id: fr-5 + name: Carts & Islands + children: + - fr-5-1 + - fr-5-2 attributes: - color - furniture_fixture_material -- id: fr-4-8-7 - name: Hutch-Style Kitchen Cabinets +- id: fr-5-1 + name: Carts children: [] attributes: - color - furniture_fixture_material -- id: fr-4-8-8 - name: Microwave Cabinets +- id: fr-5-2 + name: Islands children: [] attributes: - color - - furniture_fixture_material -- id: fr-4-8-9 - name: Open Shelves +- id: fr-6 + name: Chair Accessories + children: + - fr-6-1 + attributes: + - color + - material +- id: fr-6-1 + name: Hanging Chair Replacement Parts children: [] attributes: - color - - furniture_fixture_material -- id: fr-4-8-10 - name: Oven Cabinets + - material +- id: fr-7 + name: Chairs + children: + - fr-7-1 + - fr-7-2 + - fr-7-3 + - fr-7-4 + - fr-7-5 + - fr-7-6 + - fr-7-7 + - fr-7-8 + - fr-7-9 + - fr-7-10 + - fr-7-11 + - fr-7-12 + attributes: + - backrest_type + - color + - upholstery_material + - seat_type +- id: fr-7-1 + name: Armchairs, Recliners & Sleeper Chairs + children: + - fr-7-1-1 + - fr-7-1-2 + - fr-7-1-3 + attributes: + - backrest_type + - color + - upholstery_material + - seat_type +- id: fr-7-1-1 + name: Armchairs children: [] attributes: + - backrest_type - color - - furniture_fixture_material -- id: fr-4-8-11 - name: Pantries + - upholstery_material + - seat_type +- id: fr-7-1-2 + name: Recliners children: [] attributes: + - backrest_type - color - - furniture_fixture_material -- id: fr-4-8-12 - name: Pull-Out Trash Cans + - upholstery_material + - seat_type +- id: fr-7-1-3 + name: Sleeper Chairs children: [] attributes: + - backrest_type - color - - furniture_fixture_material -- id: fr-4-8-13 - name: Single Door Kitchen Cabinets + - upholstery_material + - seat_type +- id: fr-7-2 + name: Bean Bag Chairs children: [] attributes: - color - - furniture_fixture_material -- id: fr-4-8-14 - name: Sink Base Cabinets + - upholstery_material + - filler_material +- id: fr-7-3 + name: Chaises + children: + - fr-7-3-1 + - fr-7-3-2 + - fr-7-3-3 + - fr-7-3-5 + attributes: + - backrest_type + - color + - upholstery_material + - seat_type +- id: fr-7-3-1 + name: Armless Chaises children: [] attributes: + - backrest_type - color - - furniture_fixture_material -- id: fr-4-8-15 - name: Tall Kitchen Cabinets + - upholstery_material + - seat_type +- id: fr-7-3-2 + name: Chaise Longues children: [] attributes: - - furniture_fixture_material -- id: fr-4-8-16 - name: Wall Kitchen Cabinets + - backrest_type + - color + - upholstery_material + - seat_type +- id: fr-7-3-3 + name: Double Chaises Longues children: [] attributes: + - backrest_type - color - - furniture_fixture_material -- id: fr-4-11 - name: Sideboards + - upholstery_material + - seat_type +- id: fr-7-3-5 + name: Reclining Chaises Longues children: [] attributes: - - door_type - - frame_color - - frame_material - - leg_color - - leg_material - - top_color - - top_material -- id: fr-4-14-1-1 - name: Bathroom Cabinets + - backrest_type + - color + - upholstery_material + - seat_type +- id: fr-7-4 + name: Electric Massaging Chairs children: [] attributes: - color - - furniture_fixture_material -- id: fr-4-14-1-2 - name: Bathroom Vanity Sets + - massage_technique + - upholstery_material + - power_source + - treatment_area +- id: fr-7-5 + name: Floor Chairs children: [] attributes: + - backrest_type + - color + - upholstery_material + - seat_type +- id: fr-7-6 + name: Folding Chairs & Stools + children: + - fr-7-6-1 + - fr-7-6-2 + attributes: + - backrest_type - color - - furniture_fixture_material -- id: fr-4-14-1-3 - name: Corner Vanities + - upholstery_material + - seat_type +- id: fr-7-6-1 + name: Folding Chairs children: [] attributes: + - backrest_type - color - - furniture_fixture_material -- id: fr-4-14-1-4 - name: Double Sinks + - upholstery_material + - seat_type +- id: fr-7-6-2 + name: Folding Stools children: [] attributes: + - backrest_type - color - - furniture_fixture_material -- id: fr-4-14-1-5 - name: Floating Vanities + - upholstery_material + - seat_type +- id: fr-7-7 + name: Gaming Chairs children: [] attributes: + - backrest_type - color - - furniture_fixture_material -- id: fr-4-14-1-6 - name: Free-Standing Vanities + - upholstery_material + - seat_type +- id: fr-7-8 + name: Hanging Chairs children: [] attributes: - color - - furniture_fixture_material -- id: fr-4-14-1-7 - name: Pedestal Vanities + - hanging_chair_design + - upholstery_material + - suitable_space +- id: fr-7-9 + name: Kitchen & Dining Room Chairs children: [] attributes: + - backrest_type - color - - furniture_fixture_material -- id: fr-4-14-1-8 - name: Single Sink Vanities + - upholstery_material + - seat_type +- id: fr-7-10 + name: Rocking Chairs + children: + - fr-7-10-1 + - fr-7-10-4 + - fr-7-10-5 + attributes: + - color + - upholstery_material + - seat_type + - suitable_space +- id: fr-7-10-1 + name: Classic Rocking Chairs children: [] attributes: - color - - furniture_fixture_material -- id: fr-4-14-1-9 - name: Topless Vanities + - upholstery_material + - suitable_space +- id: fr-7-10-4 + name: Kids' Rocking Chairs children: [] attributes: + - backrest_type - color - - furniture_fixture_material -- id: fr-4-14-1-10 - name: Topped Vanities + - upholstery_material + - seat_type +- id: fr-7-10-5 + name: Nursery Rocking Chairs children: [] attributes: + - backrest_type - color - - furniture_fixture_material -- id: fr-4-14-1-11 - name: Vanity Bases + - upholstery_material + - seat_type +- id: fr-7-11 + name: Slipper Chairs children: [] attributes: + - backrest_type - color - - furniture_fixture_material -- id: fr-4-14-2-1 - name: Bedroom Vanity Sets - children: [] + - upholstery_material + - seat_type +- id: fr-7-12 + name: Table & Bar Stools + children: + - fr-7-12-1 + - fr-7-12-2 attributes: + - back_type - color - furniture_fixture_material -- id: fr-4-14-2-3 - name: Desk Vanities + - seat_type +- id: fr-7-12-1 + name: Adjustable Bar Stools children: [] attributes: + - back_type - color - furniture_fixture_material -- id: fr-4-14-2-4 - name: Dressing Tables + - seat_type +- id: fr-7-12-2 + name: Bar Stools children: [] attributes: + - back_type - color - furniture_fixture_material -- id: fr-4-14-2-5 - name: Lighted Vanities + - seat_type +- id: fr-8 + name: Daybeds children: [] attributes: - color - furniture_fixture_material -- id: fr-4-14-2-6 - name: Makeup Vanities + - pattern +- id: fr-9 + name: Entertainment Centers & TV Stands children: [] attributes: + - frame_color + - frame_material + - leg_color + - leg_material + - top_color + - top_material +- id: fr-10 + name: Furniture Sets + children: + - fr-10-1 + - fr-10-2 + - fr-10-3 + - fr-10-4 + attributes: - color - - furniture_fixture_material -- id: fr-4-14-2-7 - name: Mirrored Vanities + - pattern +- id: fr-10-1 + name: Bathroom Furniture Sets children: [] attributes: - color - - furniture_fixture_material -- id: fr-4-14-2-8 - name: Table Vanities + - pattern + - tabletop_shape +- id: fr-10-2 + name: Bedroom Furniture Sets children: [] attributes: - color - furniture_fixture_material -- id: fr-5-1 - name: Carts + - mounting_type + - pattern +- id: fr-10-3 + name: Kitchen & Dining Furniture Sets children: [] attributes: - color - - furniture_fixture_material -- id: fr-5-2 - name: Islands + - pattern + - tabletop_shape +- id: fr-10-4 + name: Living Room Furniture Sets children: [] attributes: - - color -- id: fr-7-1 - name: Armchairs, Recliners & Sleeper Chairs + - backrest_type + - frame_color + - frame_material + - pattern + - seat_color + - upholstery_material + - seat_pattern + - seat_type +- id: fr-11 + name: Futons children: - - fr-7-1-1 - - fr-7-1-2 - - fr-7-1-3 + - fr-11-1 + - fr-11-2 attributes: - - backrest_type - color - - seat_type - - upholstery_material -- id: fr-7-1-1 - name: Armchairs + - pattern + - suitable_space +- id: fr-11-1 + name: Futon Frames children: [] attributes: - - backrest_type + - bedding_size - color - - seat_type - - upholstery_material -- id: fr-7-1-2 - name: Recliners + - furniture_fixture_material + - pattern + - suitable_space +- id: fr-11-2 + name: Futon Pads children: [] attributes: - - backrest_type - color - - seat_type + - firmness - upholstery_material -- id: fr-7-1-3 - name: Sleeper Chairs - children: [] + - pattern + - suitable_space +- id: fr-12 + name: Office Furniture + children: + - fr-12-1 + - fr-12-2 + - fr-12-3 + - fr-12-4 + - fr-12-5 attributes: - color - - backrest_type - - seat_type - - upholstery_material -- id: fr-7-3-1 - name: Armless Chaises + - pattern +- id: fr-12-1 + name: Desks children: [] attributes: - - backrest_type - - color - - seat_type - - upholstery_material -- id: fr-7-3-2 - name: Chaise Longues + - frame_color + - frame_material + - leg_color + - leg_material + - tabletop_color + - tabletop_material + - tabletop_shape +- id: fr-12-2 + name: Office Chairs children: [] attributes: - - backrest_type - color - - seat_type - - upholstery_material -- id: fr-7-3-3 - name: Double Chaises Longues + - furniture_fixture_material + - pattern +- id: fr-12-3 + name: Office Furniture Sets children: [] attributes: - - seat_type - - backrest_type - color - - upholstery_material -- id: fr-7-3-5 - name: Reclining Chaises Longues - children: [] + - pattern +- id: fr-12-4 + name: Workspace Tables + children: + - fr-12-4-1 + - fr-12-4-2 attributes: - - backrest_type - color - - seat_type - - upholstery_material -- id: fr-7-6-1 - name: Folding Chairs + - furniture_fixture_material + - pattern +- id: fr-12-4-1 + name: Art & Drafting Tables children: [] attributes: - - backrest_type - - color - - seat_type - - upholstery_material -- id: fr-7-6-2 - name: Folding Stools + - frame_color + - frame_material + - pattern + - tabletop_color + - tabletop_material + - tabletop_pattern +- id: fr-12-4-2 + name: Conference Room Tables children: [] attributes: - - backrest_type - color - - seat_type - - upholstery_material -- id: fr-7-10-1 - name: Classic Rocking Chairs + - furniture_fixture_material + - pattern +- id: fr-12-5 + name: Workstations & Cubicles children: [] attributes: - color - - suitable_space - - upholstery_material -- id: fr-7-10-4 - name: Kids' Rocking Chairs - children: [] + - furniture_fixture_material + - pattern +- id: fr-13 + name: Office Furniture Accessories + children: + - fr-13-1 + - fr-13-2 + - fr-13-3 attributes: - - backrest_type - color - - seat_type - - upholstery_material -- id: fr-7-10-5 - name: Nursery Rocking Chairs +- id: fr-13-1 + name: Desk Parts & Accessories children: [] attributes: - - seat_type - - backrest_type - color - - upholstery_material -- id: fr-7-12-1 - name: Adjustable Bar Stools +- id: fr-13-2 + name: Office Chair Accessories children: [] attributes: - - back_type - color - - seat_type - - furniture_fixture_material -- id: fr-7-12-2 - name: Bar Stools +- id: fr-13-3 + name: Workstation & Cubicle Accessories children: [] attributes: - - back_type - - color - - seat_type - - furniture_fixture_material -- id: fr-8 - name: Daybeds + - color +- id: fr-14 + name: Ottomans children: [] attributes: - color + - upholstery_material - pattern - - furniture_fixture_material -- id: fr-11-1 - name: Futon Frames - children: [] +- id: fr-15 + name: Outdoor Furniture + children: + - fr-15-1 + - fr-15-2 + - fr-15-3 + - fr-15-4 + - fr-15-5 + - fr-15-6 attributes: - - bedding_size - color - pattern - - suitable_space - - furniture_fixture_material -- id: fr-11-2 - name: Futon Pads - children: [] +- id: fr-15-1 + name: Outdoor Beds + children: + - fr-15-1-1 + - fr-15-1-2 + - fr-15-1-3 + - fr-15-1-4 + - fr-15-1-5 + - fr-15-1-7 + - fr-15-1-8 + - fr-15-1-9 attributes: + - bedding_size - color - firmness + - mounting_type - pattern - - suitable_space - - upholstery_material - id: fr-15-1-1 name: Bunk Beds children: [] @@ -2466,11 +2106,11 @@ name: Futons children: [] attributes: + - bedding_size - color - firmness - mounting_type - pattern - - bedding_size - id: fr-15-1-7 name: Poolside Beds children: [] @@ -2498,192 +2138,273 @@ - firmness - mounting_type - pattern +- id: fr-15-2 + name: Outdoor Furniture Sets + children: [] + attributes: + - color + - furniture_fixture_material + - pattern +- id: fr-15-3 + name: Outdoor Ottomans + children: + - fr-15-3-1 + - fr-15-3-2 + - fr-15-3-3 + - fr-15-3-4 + - fr-15-3-5 + - fr-15-3-6 + - fr-15-3-7 + - fr-15-3-8 + - fr-15-3-9 + - fr-15-3-10 + - fr-15-3-11 + - fr-15-3-12 + - fr-15-3-13 + - fr-15-3-14 + - fr-15-3-15 + - fr-15-3-16 + attributes: + - color + - upholstery_material + - pattern - id: fr-15-3-1 name: Cocktail Ottomans children: [] attributes: - color - - pattern - upholstery_material + - pattern - id: fr-15-3-2 name: Foldable Ottomans children: [] attributes: - color - - pattern - upholstery_material + - pattern - id: fr-15-3-3 name: Footstools children: [] attributes: - color - - pattern - upholstery_material + - pattern - id: fr-15-3-4 name: Glider Ottomans children: [] attributes: - color - - pattern - upholstery_material + - pattern - id: fr-15-3-5 name: Hassocks children: [] attributes: - color - - pattern - upholstery_material + - pattern - id: fr-15-3-6 name: Ottoman Benches children: [] attributes: - color - - pattern - upholstery_material + - pattern - id: fr-15-3-7 name: Ottoman Cubes children: [] attributes: - color - - pattern - upholstery_material + - pattern - id: fr-15-3-8 name: Poufs children: [] attributes: - color - - pattern - upholstery_material + - pattern - id: fr-15-3-9 name: Rectangle Ottomans children: [] attributes: - color - - pattern - upholstery_material + - pattern - id: fr-15-3-10 name: Round Ottomans children: [] attributes: - color - - pattern - upholstery_material + - pattern - id: fr-15-3-11 name: Shoe Storage Ottomans children: [] attributes: - color - - pattern - upholstery_material + - pattern - id: fr-15-3-12 name: Sleeper Ottomans children: [] attributes: - color - - pattern - upholstery_material + - pattern - id: fr-15-3-13 name: Square Ottomans children: [] attributes: - color - - pattern - upholstery_material + - pattern - id: fr-15-3-14 name: Storage Ottomans children: [] attributes: - color - - pattern - upholstery_material + - pattern - id: fr-15-3-15 name: Tray Top Ottomans children: [] attributes: - color - - pattern - upholstery_material + - pattern - id: fr-15-3-16 name: Tufted Ottomans children: [] attributes: - color - - pattern - upholstery_material + - pattern +- id: fr-15-4 + name: Outdoor Seating + children: + - fr-15-4-1 + - fr-15-4-2 + - fr-15-4-3 + - fr-15-4-4 + - fr-15-4-5 + attributes: + - color + - pattern +- id: fr-15-4-1 + name: Outdoor Benches + children: + - fr-15-4-1-10 + - fr-15-4-1-11 + - fr-15-4-1-12 + attributes: + - color + - furniture_fixture_material + - pattern + - seat_structure - id: fr-15-4-1-10 name: Picnic Benches children: [] attributes: - color + - furniture_fixture_material - pattern - seat_structure - - furniture_fixture_material - id: fr-15-4-1-11 name: Storage Benches children: [] attributes: - color + - furniture_fixture_material - pattern - seat_structure - - furniture_fixture_material - id: fr-15-4-1-12 name: Swing Benches children: [] attributes: - color + - furniture_fixture_material - pattern - seat_structure +- id: fr-15-4-2 + name: Outdoor Chairs + children: + - fr-15-4-2-5 + - fr-15-4-2-9 + - fr-15-4-2-15 + - fr-15-4-2-16 + - fr-15-4-2-18 + attributes: + - backrest_type + - color - furniture_fixture_material + - pattern + - seat_structure + - seat_type - id: fr-15-4-2-5 name: Club Chairs children: [] attributes: - backrest_type - color + - furniture_fixture_material - pattern - seat_structure - seat_type - - furniture_fixture_material - id: fr-15-4-2-9 name: Folding Chairs children: [] attributes: - backrest_type - color + - furniture_fixture_material - pattern - seat_structure - seat_type - - furniture_fixture_material - id: fr-15-4-2-15 name: Rocking Chairs children: [] attributes: - - pattern - - seat_structure - - seat_type - backrest_type - color - furniture_fixture_material + - pattern + - seat_structure + - seat_type - id: fr-15-4-2-16 name: Sling Chairs children: [] attributes: + - backrest_type - color + - furniture_fixture_material - pattern - seat_structure - seat_type - - backrest_type - - furniture_fixture_material - id: fr-15-4-2-18 name: Swing Chairs children: [] attributes: - backrest_type - color + - furniture_fixture_material - pattern - seat_structure - seat_type - - furniture_fixture_material +- id: fr-15-4-3 + name: Outdoor Sectional Sofa Units + children: [] + attributes: + - color + - pattern +- id: fr-15-4-4 + name: Outdoor Sofas + children: + - fr-15-4-4-1 + - fr-15-4-4-2 + attributes: + - color + - pattern - id: fr-15-4-4-1 name: Loveseat Sofas children: [] @@ -2696,160 +2417,297 @@ attributes: - color - pattern +- id: fr-15-4-5 + name: Sunloungers + children: [] + attributes: + - color + - pattern +- id: fr-15-5 + name: Outdoor Storage Boxes + children: [] + attributes: + - color + - furniture_fixture_material + - pattern + - shape + - suitable_for_storage_type +- id: fr-15-6 + name: Outdoor Tables + children: + - fr-15-6-1 + - fr-15-6-2 + - fr-15-6-3 + - fr-15-6-4 + - fr-15-6-5 + - fr-15-6-7 + - fr-15-6-9 + - fr-15-6-11 + attributes: + - color + - furniture_fixture_material + - pattern + - tabletop_shape - id: fr-15-6-1 name: Bar Tables children: [] attributes: - color + - furniture_fixture_material - pattern - tabletop_shape - - furniture_fixture_material - id: fr-15-6-2 name: Bistro Tables children: [] attributes: - color + - furniture_fixture_material - pattern - tabletop_shape - - furniture_fixture_material - id: fr-15-6-3 name: Coffee Tables children: [] attributes: - color + - furniture_fixture_material - pattern - tabletop_shape - - furniture_fixture_material - id: fr-15-6-4 name: Console Tables children: [] attributes: - color + - furniture_fixture_material - pattern - tabletop_shape - - furniture_fixture_material - id: fr-15-6-5 name: Dining Tables children: [] attributes: - color + - furniture_fixture_material - pattern - tabletop_shape - - furniture_fixture_material - id: fr-15-6-7 name: Fire Pits children: [] attributes: - color + - furniture_fixture_material + - pattern + - tabletop_shape +- id: fr-15-6-9 + name: Game Tables + children: [] + attributes: + - color + - furniture_fixture_material + - pattern + - tabletop_shape +- id: fr-15-6-11 + name: Poolside Tables + children: [] + attributes: + - color + - furniture_fixture_material + - pattern + - tabletop_shape +- id: fr-16 + name: Outdoor Furniture Accessories + children: + - fr-16-1 + attributes: + - color + - pattern +- id: fr-16-1 + name: Outdoor Furniture Covers + children: [] + attributes: + - color + - cover_material + - pattern +- id: fr-17 + name: Room Divider Accessories + children: [] + attributes: + - color +- id: fr-18 + name: Room Dividers + children: [] + attributes: + - color - pattern - - tabletop_shape - - furniture_fixture_material -- id: fr-15-6-9 - name: Game Tables - children: [] + - style +- id: fr-19 + name: Shelving + children: + - fr-19-1 + - fr-19-2 attributes: - color - - pattern - - tabletop_shape - furniture_fixture_material -- id: fr-15-6-11 - name: Poolside Tables - children: [] + - mounting_type + - pattern + - suitable_location +- id: fr-19-1 + name: Bookcases & Standing Shelves + children: + - fr-19-1-1 + - fr-19-1-2 + - fr-19-1-3 + - fr-19-1-4 + - fr-19-1-5 attributes: - color - - pattern - - tabletop_shape - furniture_fixture_material + - mounting_type + - pattern + - suitable_location - id: fr-19-1-1 name: Corner Bookcases & Shelves children: [] attributes: + - color + - furniture_fixture_material - mounting_type - pattern - suitable_location - - color - - furniture_fixture_material - id: fr-19-1-2 name: Floating Bookcases & Shelves children: [] attributes: + - color + - furniture_fixture_material - mounting_type - pattern - suitable_location - - color - - furniture_fixture_material - id: fr-19-1-3 name: Ladder Bookcases & Shelves children: [] attributes: - color + - furniture_fixture_material - mounting_type - pattern - suitable_location - - furniture_fixture_material - id: fr-19-1-4 name: Modular Bookcases & Shelves children: [] attributes: - color + - furniture_fixture_material - mounting_type - pattern - suitable_location - - furniture_fixture_material - id: fr-19-1-5 name: Rack Bookcases & Shelves children: [] attributes: - color + - furniture_fixture_material - mounting_type - pattern - suitable_location +- id: fr-19-2 + name: Wall Shelves & Ledges + children: + - fr-19-2-1 + - fr-19-2-2 + - fr-19-2-3 + - fr-19-2-4 + - fr-19-2-5 + attributes: + - color - furniture_fixture_material + - mounting_type + - pattern + - suitable_location - id: fr-19-2-1 name: Corner Wall Shelves & Ledges children: [] attributes: + - color + - furniture_fixture_material - mounting_type - pattern - suitable_location - - color - - furniture_fixture_material - id: fr-19-2-2 name: Floating Wall Shelves & Ledges children: [] attributes: + - color + - furniture_fixture_material - mounting_type - pattern - suitable_location - - color - - furniture_fixture_material - id: fr-19-2-3 name: Ladder Wall Shelves & Ledges children: [] attributes: - color + - furniture_fixture_material - mounting_type - pattern - suitable_location - - furniture_fixture_material - id: fr-19-2-4 name: Modular Wall Shelves & Ledges children: [] attributes: - color + - furniture_fixture_material - mounting_type - pattern - suitable_location - - furniture_fixture_material - id: fr-19-2-5 name: Rack Wall Shelves & Ledges children: [] attributes: - color + - furniture_fixture_material - mounting_type - pattern - suitable_location - - furniture_fixture_material +- id: fr-20 + name: Shelving Accessories + children: + - fr-20-1 + attributes: + - color +- id: fr-20-1 + name: Replacement Shelves + children: [] + attributes: + - color +- id: fr-21 + name: Sofa Accessories + children: + - fr-21-1 + - fr-21-2 + attributes: + - color +- id: fr-21-1 + name: Chair & Sofa Supports + children: [] + attributes: + - color +- id: fr-21-2 + name: Sectional Sofa Units + children: [] + attributes: + - color +- id: fr-22 + name: Sofas + children: + - fr-22-1 + - fr-22-3 + - fr-22-4 + - fr-22-6 + attributes: + - backrest_upholstery_material + - color + - firmness + - pattern + - seat_upholstery_material - id: fr-22-1 name: Chaise Longue Sofas children: [] @@ -2886,6 +2744,108 @@ - firmness - pattern - seat_upholstery_material +- id: fr-23 + name: Table Accessories + children: + - fr-23-1 + - fr-23-2 + attributes: + - color +- id: fr-23-1 + name: Table Legs + children: [] + attributes: + - color + - furniture_fixture_material +- id: fr-23-2 + name: Table Tops + children: [] + attributes: + - color + - furniture_fixture_material +- id: fr-24 + name: Tables + children: + - fr-24-1 + - fr-24-2 + - fr-24-3 + - fr-24-4 + - fr-24-5 + - fr-24-6 + - fr-24-7 + - fr-24-8 + attributes: + - color + - leg_material + - pattern + - tabletop_material + - tabletop_shape +- id: fr-24-1 + name: Accent Tables + children: + - fr-24-1-1 + - fr-24-1-2 + - fr-24-1-3 + attributes: + - color + - leg_material + - pattern + - tabletop_material + - tabletop_shape +- id: fr-24-1-1 + name: Coffee Tables + children: [] + attributes: + - color + - leg_material + - pattern + - tabletop_material + - tabletop_shape +- id: fr-24-1-2 + name: End Tables + children: [] + attributes: + - color + - leg_material + - pattern + - tabletop_material + - tabletop_shape +- id: fr-24-1-3 + name: Sofa Tables + children: [] + attributes: + - color + - leg_material + - pattern + - tabletop_material + - tabletop_shape +- id: fr-24-2 + name: Activity Tables + children: [] + attributes: + - leg_color + - leg_material + - pattern + - tabletop_color + - tabletop_material +- id: fr-24-3 + name: Folding Tables + children: [] + attributes: + - color + - frame_material + - leg_material + - pattern + - tabletop_material +- id: fr-24-4 + name: Kitchen & Dining Room Tables + children: + - fr-24-4-1 + attributes: + - color + - leg_material + - pattern + - tabletop_material - id: fr-24-4-1 name: Console Tables children: [] @@ -2894,3 +2854,43 @@ - leg_material - pattern - tabletop_material +- id: fr-24-5 + name: Kotatsu + children: [] + attributes: + - color + - leg_material + - leg_pattern + - tabletop_material + - tabletop_shape +- id: fr-24-6 + name: Nightstands + children: [] + attributes: + - frame_color + - frame_material + - leg_color + - leg_material + - pattern + - tabletop_shape + - top_color + - top_material +- id: fr-24-7 + name: Poker & Game Tables + children: [] + attributes: + - color + - leg_material + - pattern + - tabletop_material + - tabletop_shape +- id: fr-24-8 + name: Sewing Machine Tables + children: [] + attributes: + - color + - leg_material + - leg_pattern + - pattern + - tabletop_material + - tabletop_shape diff --git a/data/categories/ha_hardware.yml b/data/categories/ha_hardware.yml index 66f6be95..d95db457 100644 --- a/data/categories/ha_hardware.yml +++ b/data/categories/ha_hardware.yml @@ -158,6 +158,27 @@ - color - pattern - suitable_space +- id: ha-1-3-1 + name: Duct Tape + children: [] + attributes: + - color + - pattern + - suitable_space +- id: ha-1-3-2 + name: Electrical Tape + children: [] + attributes: + - color + - pattern + - suitable_space +- id: ha-1-3-3 + name: Masking Tape + children: [] + attributes: + - color + - pattern + - suitable_space - id: ha-1-4 name: Lubricants children: @@ -169,6 +190,30 @@ - lubricant_dispenser_type - pattern - suitable_for_material_type +- id: ha-1-4-1 + name: Dry Lubricants + children: [] + attributes: + - color + - lubricant_dispenser_type + - pattern + - suitable_for_material_type +- id: ha-1-4-2 + name: Grease + children: [] + attributes: + - color + - lubricant_dispenser_type + - pattern + - suitable_for_material_type +- id: ha-1-4-4 + name: Oil + children: [] + attributes: + - color + - lubricant_dispenser_type + - pattern + - suitable_for_material_type - id: ha-1-5 name: Masonry Consumables children: @@ -184,16 +229,16 @@ children: [] attributes: - color + - masonry_material - pattern - suitable_space - - masonry_material - id: ha-1-5-2 name: Cement, Mortar & Concrete Mixes children: - ha-1-5-2-1 - - ha-1-5-2-4 - ha-1-5-2-2 - ha-1-5-2-3 + - ha-1-5-2-4 - ha-1-5-2-5 - ha-1-5-2-6 - ha-1-5-2-7 @@ -203,6 +248,69 @@ - pattern - suitable_for_material_type - suitable_space +- id: ha-1-5-2-1 + name: Cement + children: [] + attributes: + - color + - masonry_product_form + - pattern + - suitable_for_material_type + - suitable_space +- id: ha-1-5-2-2 + name: Firestop Mortar + children: [] + attributes: + - color + - masonry_product_form + - pattern + - suitable_for_material_type + - suitable_space +- id: ha-1-5-2-3 + name: Mortar Mixes + children: [] + attributes: + - color + - masonry_product_form + - pattern + - suitable_for_material_type + - suitable_space +- id: ha-1-5-2-4 + name: Concrete Mixes + children: [] + attributes: + - color + - masonry_product_form + - pattern + - suitable_for_material_type + - suitable_space +- id: ha-1-5-2-5 + name: Polymer-Modified Mortar + children: [] + attributes: + - color + - masonry_product_form + - pattern + - suitable_for_material_type + - suitable_space +- id: ha-1-5-2-6 + name: Pozzolanic Mortar + children: [] + attributes: + - color + - masonry_product_form + - pattern + - suitable_for_material_type + - suitable_space +- id: ha-1-5-2-7 + name: Surkhi Mortar + children: [] + attributes: + - color + - masonry_product_form + - pattern + - suitable_for_material_type + - suitable_space - id: ha-1-5-3 name: Grout children: [] @@ -296,6 +404,60 @@ - pattern - suitable_for_material_type - suitable_space +- id: ha-1-8-1 + name: Concrete Sealers + children: [] + attributes: + - coating_sealant_application + - color + - pattern + - suitable_for_material_type + - suitable_space +- id: ha-1-8-2 + name: Protective Coatings + children: [] + attributes: + - coating_sealant_application + - color + - pattern + - suitable_for_material_type + - suitable_space +- id: ha-1-8-3 + name: Roll Roofing Glue + children: [] + attributes: + - coating_sealant_application + - color + - pattern + - suitable_for_material_type + - suitable_space +- id: ha-1-8-4 + name: Roof Sealants + children: [] + attributes: + - coating_sealant_application + - color + - pattern + - suitable_for_material_type + - suitable_space +- id: ha-1-8-5 + name: Rust Prevention Coatings + children: [] + attributes: + - coating_sealant_application + - color + - pattern + - suitable_for_material_type + - suitable_space +- id: ha-1-8-6 + name: Waterproofing Coatings + children: [] + attributes: + - coating_sealant_application + - color + - pattern + - suitable_for_material_type + - suitable_space - id: ha-1-9 name: Solder & Flux children: @@ -306,17 +468,62 @@ - color - pattern - solder_flux_application +- id: ha-1-9-1 + name: Lead-Based Solder + children: [] + attributes: + - color + - pattern + - solder_flux_application +- id: ha-1-9-2 + name: Lead-Free Solder + children: [] + attributes: + - color + - pattern + - solder_flux_application +- id: ha-1-9-3 + name: Rosin Flux + children: [] + attributes: + - color + - pattern + - solder_flux_application - id: ha-1-10 name: Solvents, Strippers & Thinners children: - ha-1-10-1 - - ha-1-10-3 - ha-1-10-2 + - ha-1-10-3 attributes: - color - pattern - solvent_thinner_application - suitable_space +- id: ha-1-10-1 + name: Solvents + children: [] + attributes: + - color + - pattern + - solvent_application + - suitable_space +- id: ha-1-10-2 + name: Thinners + children: [] + attributes: + - color + - pattern + - suitable_space + - thinner_application +- id: ha-1-10-3 + name: Strippers + children: [] + attributes: + - color + - pattern + - stripper_application + - suitable_space - id: ha-1-11 name: Wall Patching Compounds & Plaster children: @@ -337,45 +544,144 @@ - suitable_for_material_type - suitable_space - wall_patching_application -- id: ha-2 - name: Building Materials - children: - - ha-2-1 - - ha-2-2 - - ha-2-3 - - ha-2-4 - - ha-2-5 - - ha-2-6 - - ha-2-7 - - ha-2-8 - - ha-2-9 - - ha-2-10 - - ha-2-11 - - ha-2-12 - - ha-2-13 - - ha-2-14 - - ha-2-15 - - ha-2-16 - - ha-2-17 - - ha-2-18 - - ha-2-19 - - ha-2-20 - - ha-2-21 - - ha-2-22 +- id: ha-1-11-1 + name: Cement Plaster + children: [] attributes: + - building_consumable_form - color - pattern -- id: ha-2-1 - name: Countertops + - product_formulation + - suitable_for_material_type + - suitable_space + - wall_patching_application +- id: ha-1-11-2 + name: Gypsum Plaster children: [] attributes: + - building_consumable_form - color - - edge_style - - finish - - material - pattern -- id: ha-2-2 - name: Door Hardware + - product_formulation + - suitable_for_material_type + - suitable_space + - wall_patching_application +- id: ha-1-11-3 + name: Heat Resistant Plaster + children: [] + attributes: + - building_consumable_form + - color + - pattern + - product_formulation + - suitable_for_material_type + - suitable_space + - wall_patching_application +- id: ha-1-11-4 + name: Joint Compounds + children: [] + attributes: + - building_consumable_form + - color + - pattern + - product_formulation + - suitable_for_material_type + - suitable_space + - wall_patching_application +- id: ha-1-11-5 + name: Lime Plaster + children: [] + attributes: + - building_consumable_form + - color + - pattern + - product_formulation + - suitable_for_material_type + - suitable_space + - wall_patching_application +- id: ha-1-11-6 + name: Polymer Dispersion Plaster + children: [] + attributes: + - building_consumable_form + - color + - pattern + - product_formulation + - suitable_for_material_type + - suitable_space + - wall_patching_application +- id: ha-1-11-7 + name: Polyurethane Alkyds + children: [] + attributes: + - building_consumable_form + - color + - pattern + - product_formulation + - suitable_for_material_type + - suitable_space + - wall_patching_application +- id: ha-1-11-8 + name: Polyurethane Dispersions + children: [] + attributes: + - building_consumable_form + - color + - pattern + - product_formulation + - suitable_for_material_type + - suitable_space + - wall_patching_application +- id: ha-1-11-9 + name: Spackling Paste + children: [] + attributes: + - building_consumable_form + - color + - pattern + - product_formulation + - suitable_for_material_type + - suitable_space + - wall_patching_application +- id: ha-2 + name: Building Materials + children: + - ha-2-1 + - ha-2-2 + - ha-2-3 + - ha-2-4 + - ha-2-5 + - ha-2-6 + - ha-2-7 + - ha-2-8 + - ha-2-9 + - ha-2-10 + - ha-2-11 + - ha-2-12 + - ha-2-13 + - ha-2-14 + - ha-2-15 + - ha-2-16 + - ha-2-17 + - ha-2-18 + - ha-2-19 + - ha-2-20 + - ha-2-21 + - ha-2-22 + attributes: + - color + - pattern +- id: ha-2-1 + name: Countertops + children: [] + attributes: + - color + - edge_style + - finish + - material + - pattern +- id: ha-2-2 + name: Door Hardware children: - ha-2-2-1 - ha-2-2-2 @@ -388,18 +694,18 @@ - ha-2-2-9 attributes: - color - - pattern - hardware_material + - pattern - id: ha-2-2-1 name: Door Bells & Chimes children: [] attributes: - color - connection_method + - hardware_material - pattern - power_source - style - - hardware_material - id: ha-2-2-2 name: Door Closers children: [] @@ -409,11 +715,11 @@ - door_closer_design - hand_side - hardware_finish + - hardware_material - pattern - power_source - recommended_use - suitable_for_door_type - - hardware_material - id: ha-2-2-3 name: Door Frames children: [] @@ -428,44 +734,44 @@ children: [] attributes: - color + - hardware_material - pattern - shape - style - - hardware_material - id: ha-2-2-5 name: Door Knobs & Handles children: [] attributes: - color - door_knob_function + - handle_material - pattern - style - - handle_material - id: ha-2-2-6 name: Door Knockers children: [] attributes: - color - hardware_finish + - hardware_material - pattern - style - - hardware_material - id: ha-2-2-7 name: Door Push Plates children: [] attributes: - color + - hardware_material - pattern - style - - hardware_material - id: ha-2-2-8 name: Door Stops children: [] attributes: - color - door_stop_placement - - pattern - hardware_material + - pattern - id: ha-2-2-9 name: Door Strikes children: @@ -473,8 +779,22 @@ - ha-2-2-9-2 attributes: - color + - hardware_material + - pattern +- id: ha-2-2-9-1 + name: Deadbolt Strikes + children: [] + attributes: + - color + - hardware_material - pattern +- id: ha-2-2-9-2 + name: Latch Strikes + children: [] + attributes: + - color - hardware_material + - pattern - id: ha-2-3 name: Doors children: @@ -491,9 +811,33 @@ - ha-2-3-1-3 attributes: - color + - garage_door_material + - pattern + - recommended_use +- id: ha-2-3-1-1 + name: Roll-Up Garage Doors + children: [] + attributes: + - color + - garage_door_material + - pattern + - recommended_use +- id: ha-2-3-1-2 + name: Sectional Garage Doors + children: [] + attributes: + - color + - garage_door_material - pattern - recommended_use +- id: ha-2-3-1-3 + name: Side Hinged Garage Doors + children: [] + attributes: + - color - garage_door_material + - pattern + - recommended_use - id: ha-2-3-2 name: Home Doors children: [] @@ -503,16 +847,16 @@ - door_glass_finish - door_suitable_location - door_surface_finish + - door_material - pattern - style - - door_material - id: ha-2-4 name: Drywall children: [] attributes: + - building_board_material - color - pattern - - building_board_material - id: ha-2-5 name: Flooring & Carpet children: [] @@ -533,6 +877,30 @@ attributes: - color - pattern +- id: ha-2-6-1 + name: Float Glass + children: [] + attributes: + - color + - pattern +- id: ha-2-6-2 + name: Insulated Glass + children: [] + attributes: + - color + - pattern +- id: ha-2-6-3 + name: Laminated Glass + children: [] + attributes: + - color + - pattern +- id: ha-2-6-4 + name: Tempered Glass + children: [] + attributes: + - color + - pattern - id: ha-2-7 name: Handrails & Railing Systems children: @@ -542,6 +910,20 @@ - color - material - pattern +- id: ha-2-7-1 + name: Guardrails + children: [] + attributes: + - color + - material + - pattern +- id: ha-2-7-2 + name: Handrails + children: [] + attributes: + - color + - material + - pattern - id: ha-2-8 name: Hatches children: [] @@ -561,46 +943,130 @@ - ha-2-9-6 attributes: - color - - pattern - insulation_material -- id: ha-2-10 - name: Lumber & Sheet Stock - children: - - ha-2-10-1 - - ha-2-10-2 - - ha-2-10-3 - attributes: - - color - pattern - - lumber_wood_type -- id: ha-2-11 - name: Molding +- id: ha-2-9-1 + name: Batt Insulation children: [] attributes: - color - - material - - molding_application + - insulation_material - pattern - - style -- id: ha-2-12 - name: Rebar & Remesh - children: - - ha-2-12-1 - - ha-2-12-2 - - ha-2-12-3 +- id: ha-2-9-2 + name: Blown-In Insulation + children: [] attributes: - color + - insulation_material - pattern -- id: ha-2-13 - name: Roofing - children: - - ha-2-13-1 - - ha-2-13-2 - - ha-2-13-3 - - ha-2-13-4 +- id: ha-2-9-3 + name: Foam Board Insulation + children: [] attributes: - color - - material + - insulation_material + - pattern +- id: ha-2-9-4 + name: Loose-Fill Insulation + children: [] + attributes: + - color + - insulation_material + - pattern +- id: ha-2-9-5 + name: Roll Insulation + children: [] + attributes: + - color + - insulation_material + - pattern +- id: ha-2-9-6 + name: Spray Foam Insulation + children: [] + attributes: + - color + - insulation_material + - pattern +- id: ha-2-10 + name: Lumber & Sheet Stock + children: + - ha-2-10-1 + - ha-2-10-2 + - ha-2-10-3 + attributes: + - color + - lumber_wood_type + - pattern +- id: ha-2-10-1 + name: Hardwood Lumber + children: [] + attributes: + - color + - hardwood_lumber_grade + - lumber_wood_type + - pattern +- id: ha-2-10-2 + name: Plywood + children: [] + attributes: + - color + - lumber_wood_type + - pattern + - plywood_grade +- id: ha-2-10-3 + name: Softwood Lumber + children: [] + attributes: + - color + - lumber_wood_type + - pattern + - softwood_lumber_grade +- id: ha-2-11 + name: Molding + children: [] + attributes: + - color + - material + - molding_application + - pattern + - style +- id: ha-2-12 + name: Rebar & Remesh + children: + - ha-2-12-1 + - ha-2-12-2 + - ha-2-12-3 + attributes: + - color + - pattern +- id: ha-2-12-1 + name: Rebar + children: [] + attributes: + - color + - pattern +- id: ha-2-12-2 + name: Remesh + children: [] + attributes: + - color + - pattern +- id: ha-2-12-3 + name: Wire Mesh + children: [] + attributes: + - color + - pattern +- id: ha-2-13 + name: Roofing + children: + - ha-2-13-1 + - ha-2-13-2 + - ha-2-13-3 + - ha-2-13-4 + attributes: + - color + - material - pattern - id: ha-2-13-1 name: Gutter Accessories @@ -615,8 +1081,8 @@ children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-2-13-3 name: Roof Flashings children: @@ -626,8 +1092,36 @@ - ha-2-13-3-4 attributes: - color + - flashing_material + - pattern +- id: ha-2-13-3-1 + name: Drip Edges + children: [] + attributes: + - color + - flashing_material + - pattern +- id: ha-2-13-3-2 + name: Pipe Boots + children: [] + attributes: + - color + - flashing_material + - pattern +- id: ha-2-13-3-3 + name: Step Flashings + children: [] + attributes: + - color + - flashing_material - pattern +- id: ha-2-13-3-4 + name: Valley Flashings + children: [] + attributes: + - color - flashing_material + - pattern - id: ha-2-13-4 name: Roofing Shingles & Tiles children: @@ -636,8 +1130,29 @@ - ha-2-13-4-3 attributes: - color + - shingle_tile_material + - pattern +- id: ha-2-13-4-1 + name: 3-Tab Shingles + children: [] + attributes: + - color + - shingle_tile_material + - pattern +- id: ha-2-13-4-2 + name: Architectural Shingles + children: [] + attributes: + - color + - shingle_tile_material - pattern +- id: ha-2-13-4-3 + name: Shake-Style Shingles + children: [] + attributes: + - color - shingle_tile_material + - pattern - id: ha-2-14 name: Shutters children: @@ -649,13 +1164,37 @@ - material - pattern - shutter_finish +- id: ha-2-14-1 + name: Board & Batten Shutters + children: [] + attributes: + - color + - material + - pattern + - shutter_finish +- id: ha-2-14-2 + name: Louvered Shutters + children: [] + attributes: + - color + - material + - pattern + - shutter_finish +- id: ha-2-14-3 + name: Raised Panel Shutters + children: [] + attributes: + - color + - material + - pattern + - shutter_finish - id: ha-2-15 name: Siding children: [] attributes: - color - - pattern - siding_material + - pattern - id: ha-2-16 name: Sound Dampening Panels & Foam children: @@ -666,6 +1205,30 @@ attributes: - color - pattern +- id: ha-2-16-1 + name: Acoustic Panels + children: [] + attributes: + - color + - pattern +- id: ha-2-16-2 + name: Bass Traps + children: [] + attributes: + - color + - pattern +- id: ha-2-16-3 + name: Diffusers + children: [] + attributes: + - color + - pattern +- id: ha-2-16-4 + name: Foam Tiles + children: [] + attributes: + - color + - pattern - id: ha-2-17 name: Staircases children: @@ -679,6 +1242,46 @@ - material - pattern - suitable_space +- id: ha-2-17-1 + name: Curved Staircases + children: [] + attributes: + - color + - material + - pattern + - suitable_space +- id: ha-2-17-2 + name: Floating Staircases + children: [] + attributes: + - color + - material + - pattern + - suitable_space +- id: ha-2-17-3 + name: Spiral Staircases + children: [] + attributes: + - color + - material + - pattern + - suitable_space +- id: ha-2-17-4 + name: Straight Staircases + children: [] + attributes: + - color + - material + - pattern + - suitable_space +- id: ha-2-17-5 + name: Winder Staircases + children: [] + attributes: + - color + - material + - pattern + - suitable_space - id: ha-2-18 name: Wall & Ceiling Tile children: @@ -687,22 +1290,70 @@ attributes: - color - installation_method + - tile_material - pattern - tile_design - tile_look - tile_texture - - tile_material -- id: ha-2-19 - name: Wall Paneling - children: - - ha-2-19-1 - - ha-2-19-2 - - ha-2-19-3 - - ha-2-19-4 +- id: ha-2-18-1 + name: Ceiling Tiles + children: [] attributes: - color - - pattern + - installation_method + - tile_material + - pattern + - tile_look + - tile_texture +- id: ha-2-18-2 + name: Wall Tiles + children: [] + attributes: + - color + - installation_method + - tile_material + - pattern + - tile_design + - tile_look +- id: ha-2-19 + name: Wall Paneling + children: + - ha-2-19-1 + - ha-2-19-2 + - ha-2-19-3 + - ha-2-19-4 + attributes: + - building_board_material + - color + - pattern +- id: ha-2-19-1 + name: Beadboards + children: [] + attributes: + - building_board_material + - color + - pattern +- id: ha-2-19-2 + name: Board & Batten Paneling + children: [] + attributes: + - building_board_material + - color + - pattern +- id: ha-2-19-3 + name: Planks + children: [] + attributes: + - building_board_material + - color + - pattern +- id: ha-2-19-4 + name: Wainscoting Paneling + children: [] + attributes: - building_board_material + - color + - pattern - id: ha-2-20 name: Weather Stripping & Weatherization Supplies children: @@ -715,6 +1366,38 @@ - material - pattern - weatherization_application +- id: ha-2-20-1 + name: Door Sweeps + children: [] + attributes: + - color + - material + - pattern + - weatherization_application +- id: ha-2-20-2 + name: Foam Tape + children: [] + attributes: + - color + - pattern + - weatherization_application +- id: ha-2-20-3 + name: V Strips + children: [] + attributes: + - color + - material + - pattern + - weather_strip_design + - weatherization_application +- id: ha-2-20-4 + name: Weatherstrip Seal + children: [] + attributes: + - color + - material + - pattern + - weatherization_application - id: ha-2-21 name: Window Hardware children: @@ -722,15 +1405,15 @@ - ha-2-21-2 attributes: - color - - pattern - hardware_material + - pattern - id: ha-2-21-1 name: Window Cranks children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-2-21-2 name: Window Frames children: @@ -743,6 +1426,41 @@ - color - material - pattern +- id: ha-2-21-2-1 + name: Awning Window Frames + children: [] + attributes: + - color + - material + - pattern +- id: ha-2-21-2-2 + name: Casement Window Frames + children: [] + attributes: + - color + - material + - pattern +- id: ha-2-21-2-3 + name: Double Hung Window Frames + children: [] + attributes: + - color + - material + - pattern +- id: ha-2-21-2-4 + name: Picture Window Frames + children: [] + attributes: + - color + - material + - pattern +- id: ha-2-21-2-5 + name: Sliding Window Frames + children: [] + attributes: + - color + - material + - pattern - id: ha-2-22 name: Windows children: @@ -757,6 +1475,54 @@ - glazing_type - material - pattern +- id: ha-2-22-1 + name: Awning Windows + children: [] + attributes: + - color + - glazing_type + - material + - pattern +- id: ha-2-22-2 + name: Bay Windows + children: [] + attributes: + - color + - glazing_type + - material + - pattern +- id: ha-2-22-3 + name: Casement Windows + children: [] + attributes: + - color + - glazing_type + - material + - pattern +- id: ha-2-22-4 + name: Double Hung Windows + children: [] + attributes: + - color + - glazing_type + - material + - pattern +- id: ha-2-22-5 + name: Picture Windows + children: [] + attributes: + - color + - glazing_type + - material + - pattern +- id: ha-2-22-6 + name: Sliding Windows + children: [] + attributes: + - color + - glazing_type + - material + - pattern - id: ha-3 name: Fencing & Barriers children: @@ -788,16 +1554,48 @@ attributes: - color - fencing_components + - furniture_fixture_material + - pattern +- id: ha-3-2-1 + name: Decorative Panels + children: [] + attributes: + - color + - fencing_components + - furniture_fixture_material + - pattern +- id: ha-3-2-2 + name: Pickets + children: [] + attributes: + - color + - fencing_components + - furniture_fixture_material + - pattern +- id: ha-3-2-3 + name: Privacy Panels + children: [] + attributes: + - color + - fencing_components + - furniture_fixture_material - pattern +- id: ha-3-2-4 + name: Security Panels + children: [] + attributes: + - color + - fencing_components - furniture_fixture_material + - pattern - id: ha-3-3 name: Fence Pickets children: [] attributes: - color - fencing_components - - pattern - furniture_fixture_material + - pattern - id: ha-3-4 name: Fence Posts & Rails children: @@ -806,8 +1604,29 @@ - ha-3-4-3 attributes: - color + - furniture_fixture_material + - pattern +- id: ha-3-4-1 + name: End Posts + children: [] + attributes: + - color + - furniture_fixture_material + - pattern +- id: ha-3-4-2 + name: Line Posts + children: [] + attributes: + - color + - furniture_fixture_material - pattern +- id: ha-3-4-3 + name: Rails + children: [] + attributes: + - color - furniture_fixture_material + - pattern - id: ha-3-5 name: Garden Borders & Edging children: @@ -817,6 +1636,20 @@ - color - material - pattern +- id: ha-3-5-1 + name: Border Fences + children: [] + attributes: + - color + - furniture_fixture_material + - pattern +- id: ha-3-5-2 + name: Edging + children: [] + attributes: + - color + - material + - pattern - id: ha-3-6 name: Gates children: @@ -827,21 +1660,70 @@ - color - material - pattern -- id: ha-3-7 - name: Lattice +- id: ha-3-6-1 + name: Driveway Gates children: [] attributes: - color - material - pattern - - trellis_design -- id: ha-3-8 - name: Safety & Crowd Control Barriers - children: - - ha-3-8-1 - - ha-3-8-2 - - ha-3-8-3 - - ha-3-8-4 +- id: ha-3-6-2 + name: Garden Gates + children: [] + attributes: + - color + - material + - pattern +- id: ha-3-6-3 + name: Security Gates + children: [] + attributes: + - color + - material + - pattern +- id: ha-3-7 + name: Lattice + children: [] + attributes: + - color + - material + - pattern + - trellis_design +- id: ha-3-8 + name: Safety & Crowd Control Barriers + children: + - ha-3-8-1 + - ha-3-8-2 + - ha-3-8-3 + - ha-3-8-4 + attributes: + - color + - material + - pattern +- id: ha-3-8-1 + name: Articulating Panels + children: [] + attributes: + - color + - material + - pattern +- id: ha-3-8-2 + name: Auto Barriers + children: [] + attributes: + - color + - material + - pattern +- id: ha-3-8-3 + name: Parking Locks + children: [] + attributes: + - color + - material + - pattern +- id: ha-3-8-4 + name: Retractable Belts + children: [] attributes: - color - material @@ -922,6 +1804,46 @@ - material - pattern - recommended_use +- id: ha-5-1 + name: Diesel Cans + children: [] + attributes: + - color + - material + - pattern + - recommended_use +- id: ha-5-2 + name: Fuel Transfer Tanks + children: [] + attributes: + - color + - material + - pattern + - recommended_use +- id: ha-5-3 + name: Gas Cans + children: [] + attributes: + - color + - material + - pattern + - recommended_use +- id: ha-5-4 + name: Kerosene Cans + children: [] + attributes: + - color + - material + - pattern + - recommended_use +- id: ha-5-5 + name: Propane Tanks + children: [] + attributes: + - color + - material + - pattern + - recommended_use - id: ha-6 name: Hardware Accessories children: @@ -971,16 +1893,16 @@ - ha-6-2-5 attributes: - color - - pattern - hardware_material + - pattern - id: ha-6-2-1 name: Cabinet & Furniture Keyhole Escutcheons children: [] attributes: - color + - furniture_fixture_material - pattern - style - - furniture_fixture_material - id: ha-6-2-2 name: Cabinet Backplates children: [] @@ -1001,9 +1923,9 @@ children: [] attributes: - color + - furniture_fixture_material - pattern - style - - furniture_fixture_material - id: ha-6-2-5 name: Cabinet Knobs & Handles children: [] @@ -1011,9 +1933,9 @@ - color - hardware_finish - knob_handle_design + - handle_material - pattern - style - - handle_material - id: ha-6-3 name: Casters children: [] @@ -1034,30 +1956,30 @@ - ha-6-4-7 attributes: - color - - pattern - wire_rope_material + - pattern - id: ha-6-4-1 name: Bungee Cords children: [] attributes: - color - cord_fastening_system - - pattern - wire_rope_material + - pattern - id: ha-6-4-2 name: Chains children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-6-4-3 name: Pull Chains children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-6-4-4 name: Ropes & Hardware Cable children: [] @@ -1077,15 +1999,15 @@ children: [] attributes: - color - - pattern - wire_rope_material + - pattern - id: ha-6-4-7 name: Utility Wire children: [] attributes: - color - - pattern - wire_rope_material + - pattern - id: ha-6-5 name: Coils children: @@ -1094,8 +2016,29 @@ - ha-6-5-3 attributes: - color + - hardware_material + - pattern +- id: ha-6-5-1 + name: Compression Coils + children: [] + attributes: + - color + - hardware_material + - pattern +- id: ha-6-5-2 + name: Extension Coils + children: [] + attributes: + - color + - hardware_material - pattern +- id: ha-6-5-3 + name: Torsion Coils + children: [] + attributes: + - color - hardware_material + - pattern - id: ha-6-6 name: Concrete Molds children: [] @@ -1123,8 +2066,8 @@ children: [] attributes: - color - - pattern - fabric + - pattern - id: ha-6-10 name: Filters & Screens children: [] @@ -1140,24 +2083,45 @@ - ha-6-11-3 attributes: - color + - tape_material + - pattern +- id: ha-6-11-1 + name: Barricade Tape + children: [] + attributes: + - color + - tape_material + - pattern +- id: ha-6-11-2 + name: Flagging Tape + children: [] + attributes: + - color + - tape_material - pattern +- id: ha-6-11-3 + name: Marking Tape + children: [] + attributes: + - color - tape_material + - pattern - id: ha-6-12 name: Gas Hoses children: [] attributes: - color + - hose_material - pattern - suitable_for_gas_type - - hose_material - id: ha-6-13 name: Ground Spikes children: [] attributes: - color + - hardware_material - pattern - spike_design - - hardware_material - id: ha-6-14 name: Hardware Fasteners children: @@ -1172,17 +2136,17 @@ attributes: - color - fastener_finish - - pattern - hardware_material + - pattern - id: ha-6-14-1 name: Drywall Anchors children: [] attributes: - color - fastener_finish + - hardware_material - pattern - suitable_for_material_type - - hardware_material - id: ha-6-14-2 name: Nails children: @@ -1203,6393 +2167,3565 @@ attributes: - color - fastener_finish + - hardware_material - pattern - suitable_for_material_type - - hardware_material -- id: ha-6-14-3 - name: Nuts & Bolts +- id: ha-6-14-2-1 + name: Boat Nails children: [] attributes: - - bolt_form - color - fastener_finish - - nut_form - - pattern - hardware_material -- id: ha-6-14-4 - name: Rivets + - pattern + - suitable_for_material_type +- id: ha-6-14-2-2 + name: Brad Nails children: [] attributes: - color - fastener_finish - - pattern - - rivet_form - hardware_material -- id: ha-6-14-5 - name: Screw Posts + - pattern + - suitable_for_material_type +- id: ha-6-14-2-3 + name: Cap Nails children: [] attributes: - color - fastener_finish + - hardware_material - pattern - suitable_for_material_type - - hardware_material -- id: ha-6-14-6 - name: Screws - children: - - ha-6-14-6-2 - - ha-6-14-6-3 - - ha-6-14-6-6 - - ha-6-14-6-7 - - ha-6-14-6-8 - - ha-6-14-6-9 - - ha-6-14-6-4 - - ha-6-14-6-10 - - ha-6-14-6-11 - - ha-6-14-6-12 - - ha-6-14-6-13 - - ha-6-14-6-14 - - ha-6-14-6-15 +- id: ha-6-14-2-4 + name: Decorative Nails + children: [] attributes: - color - fastener_finish + - hardware_material - pattern - suitable_for_material_type - - hardware_material -- id: ha-6-14-7 - name: Threaded Rods +- id: ha-6-14-2-5 + name: Fiber Cement Nails children: [] attributes: - color - fastener_finish - - pattern - - thread_direction - - threaded_rod_size - hardware_material -- id: ha-6-14-8 - name: Washers + - pattern + - suitable_for_material_type +- id: ha-6-14-2-6 + name: Finishing Nails children: [] attributes: - color - fastener_finish - - pattern - - washer_form - hardware_material -- id: ha-6-15 - name: Hinges + - pattern + - suitable_for_material_type +- id: ha-6-14-2-7 + name: Horseshoe Nails children: [] attributes: - color - - door_application - - hardware_finish - - pattern + - fastener_finish - hardware_material -- id: ha-6-16 - name: Hooks, Buckles & Fasteners - children: - - ha-6-16-1 - - ha-6-16-2 - - ha-6-16-3 - - ha-6-16-4 - attributes: - - color - pattern - - hardware_material -- id: ha-6-16-1 - name: Chain Connectors & Links + - suitable_for_material_type +- id: ha-6-14-2-8 + name: Masonry Nails children: [] attributes: - color - - connector_design - - hook_design - - pattern + - fastener_finish - hardware_material -- id: ha-6-16-2 - name: Gear Ties - children: [] - attributes: - - color - - pattern - - hardware_material -- id: ha-6-16-3 - name: Lifting Hooks, Clamps & Shackles - children: [] - attributes: - - color - - pattern - - hardware_material -- id: ha-6-16-4 - name: Utility Buckles - children: [] - attributes: - - color - - pattern - - hardware_material -- id: ha-6-17 - name: Lubrication Hoses - children: [] - attributes: - - color - - pattern - - hose_material -- id: ha-6-18 - name: Metal Casting Molds - children: [] - attributes: - - color - - material - - metal_molding_application - - pattern -- id: ha-6-19 - name: Moving & Soundproofing Blankets & Covers - children: - - ha-6-19-1 - - ha-6-19-2 - attributes: - - color - - pattern - - cover_material -- id: ha-6-20 - name: Pneumatic Hoses - children: - - ha-6-20-1 - - ha-6-20-2 - attributes: - - color - - pattern - - hose_material -- id: ha-6-21 - name: Post Base Plates - children: [] - attributes: - - color - - material - - pattern -- id: ha-6-22 - name: Springs - children: - - ha-6-22-1 - - ha-6-22-2 - - ha-6-22-3 - attributes: - - color - - pattern - - hardware_material -- id: ha-6-23 - name: Tarps - children: [] - attributes: - - color - - material - - pattern -- id: ha-6-24 - name: Tool Storage & Organization - children: - - ha-6-24-1 - - ha-6-24-2 - - ha-6-24-3 - - ha-6-24-4 - - ha-6-24-5 - - ha-6-24-6 - - ha-6-24-7 - - ha-6-24-8 - attributes: - - color - - material - - pattern -- id: ha-6-24-1 - name: Garden Hose Storage - children: - - ha-6-24-1-1 - - ha-6-24-1-2 - - ha-6-24-1-3 - attributes: - - color - - material - - pattern -- id: ha-6-24-2 - name: Tool & Equipment Belts - children: - - ha-6-24-2-1 - - ha-6-24-2-2 - - ha-6-24-2-3 - attributes: - - color - - pattern - - clothing_accessory_material -- id: ha-6-24-3 - name: Tool Bags - children: [] - attributes: - - color - - lock_type - - pattern - - bag_case_material -- id: ha-6-24-4 - name: Tool Boxes - children: - - ha-6-24-4-1 - - ha-6-24-4-2 - - ha-6-24-4-3 - attributes: - - color - - lock_type - - material - - pattern -- id: ha-6-24-5 - name: Tool Cabinets & Chests - children: - - ha-6-24-5-1 - - ha-6-24-5-2 - attributes: - - color - - material - - pattern -- id: ha-6-24-6 - name: Tool Organizer Liners & Inserts - children: - - ha-6-24-6-1 - - ha-6-24-6-2 - attributes: - - color - - hardware_mounting_type - - material - - pattern -- id: ha-6-24-7 - name: Tool Sheaths - children: [] - attributes: - - color - - material - - pattern -- id: ha-6-24-8 - name: Work Benches - children: - - ha-6-24-8-1 - - ha-6-24-8-2 - attributes: - - color - - material - - pattern -- id: ha-6-25 - name: Wall Jacks & Braces - children: [] - attributes: - - color - - material - - pattern -- id: ha-7 - name: Hardware Pumps - children: - - ha-7-1 - - ha-7-2 - - ha-7-3 - - ha-7-4 - - ha-7-5 - - ha-7-6 - attributes: - - color - - pattern -- id: ha-7-1 - name: Home Appliance Pumps - children: - - ha-7-1-1 - - ha-7-1-2 - - ha-7-1-3 - attributes: - - color - - pattern - - power_source - - hardware_material -- id: ha-7-2 - name: Pool, Fountain & Pond Pumps - children: - - ha-7-2-1 - - ha-7-2-2 - - ha-7-2-3 - attributes: - - color - - pattern - - power_source - - hardware_material -- id: ha-7-3 - name: Sprinkler, Booster & Irrigation System Pumps - children: - - ha-7-3-1 - - ha-7-3-2 - - ha-7-3-5 - attributes: - - color - - pattern - - power_source - - suitable_for_water_feature_type - - hardware_material -- id: ha-7-4 - name: Sump, Sewage & Effluent Pumps - children: - - ha-7-4-1 - - ha-7-4-2 - - ha-7-4-3 - attributes: - - color - - pattern - - power_source - - hardware_material -- id: ha-7-5 - name: Utility Pumps - children: - - ha-7-5-1 - - ha-7-5-2 - - ha-7-5-3 - attributes: - - color - - pattern - - power_source - - hardware_material -- id: ha-7-6 - name: Well Pumps & Systems - children: [] - attributes: - - color - - pattern - - power_source - - hardware_material -- id: ha-8 - name: Heating, Ventilation & Air Conditioning - children: - - ha-8-1 - - ha-8-2 - - ha-8-3 - - ha-8-4 - attributes: - - color - - pattern -- id: ha-8-1 - name: Air & Filter Dryers - children: [] - attributes: - - color - - dryer_technology - - material - - pattern - - power_source -- id: ha-8-2 - name: Air Ducts - children: [] - attributes: - - color - - duct_shape - - material - - pattern -- id: ha-8-3 - name: HVAC Controls - children: - - ha-8-3-1 - - ha-8-3-2 - - ha-8-3-3 - attributes: - - housing_color - - hvac_control_type - - pattern - - power_source -- id: ha-8-3-1 - name: Control Panels - children: [] - attributes: - - housing_color - - hvac_control_type - - pattern - - power_source -- id: ha-8-3-2 - name: Humidistats - children: [] - attributes: - - housing_color - - hvac_control_type - - pattern - - power_source -- id: ha-8-3-3 - name: Thermostats - children: [] - attributes: - - display_technology - - housing_color - - hvac_control_type - - pattern - - power_source -- id: ha-8-4 - name: Vents & Flues - children: [] - attributes: - - color - - material - - pattern -- id: ha-9 - name: Locks & Keys - children: - - ha-9-1 - - ha-9-2 - - ha-9-3 - - ha-9-4 - attributes: - - color - - pattern -- id: ha-9-1 - name: Key Blanks - children: [] - attributes: - - color - - key_purpose - - material - - pattern -- id: ha-9-2 - name: Key Caps - children: [] - attributes: - - color - - material - - pattern -- id: ha-9-3 - name: Key Card Entry Systems - children: - - ha-9-3-3 - - ha-9-3-1 - attributes: - - color - - pattern - - recommended_use -- id: ha-9-4 - name: Locks & Latches - children: - - ha-9-4-1 - - ha-9-4-2 - - ha-9-4-3 - - ha-9-4-5 - attributes: - - color - - material - - pattern - - security_level -- id: ha-10 - name: Plumbing - children: - - ha-10-1 - - ha-10-2 - - ha-10-3 - - ha-10-4 - - ha-10-5 - - ha-10-6 - - ha-10-7 - - ha-10-8 - - ha-10-9 - - ha-10-10 - attributes: - - color - - pattern -- id: ha-10-1 - name: Plumbing Fittings & Supports - children: - - ha-10-1-1 - - ha-10-1-2 - - ha-10-1-3 - - ha-10-1-4 - - ha-10-1-5 - - ha-10-1-6 - - ha-10-1-7 - - ha-10-1-8 - - ha-10-1-9 - - ha-10-1-10 - attributes: - - color - - material - - pattern -- id: ha-10-1-1 - name: Gaskets & O-Rings - children: [] - attributes: - - color - - material - - pattern -- id: ha-10-1-2 - name: In-Wall Carriers & Mounting Frames - children: - - ha-10-1-2-1 - - ha-10-1-2-2 - attributes: - - color - - material - - pattern -- id: ha-10-1-3 - name: Nozzles - children: [] - attributes: - - color - - material - - pattern -- id: ha-10-1-4 - name: Pipe Adapters & Bushings - children: - - ha-10-1-4-1 - - ha-10-1-4-2 - attributes: - - color - - material - - pattern -- id: ha-10-1-5 - name: Pipe Caps & Plugs - children: - - ha-10-1-5-1 - - ha-10-1-5-2 - attributes: - - color - - material - - pattern -- id: ha-10-1-6 - name: Pipe Connectors - children: - - ha-10-1-6-1 - - ha-10-1-6-2 - attributes: - - color - - material - - pattern -- id: ha-10-1-7 - name: Plumbing Flanges - children: [] - attributes: - - color - - material - - pattern -- id: ha-10-1-8 - name: Plumbing Pipe Clamps - children: [] - attributes: - - color - - material - - pattern - - pipe_clamp_design -- id: ha-10-1-9 - name: Plumbing Regulators - children: - - ha-10-1-9-1 - - ha-10-1-9-2 - attributes: - - color - - material - - pattern -- id: ha-10-1-10 - name: Plumbing Valves - children: - - ha-10-1-10-1 - - ha-10-1-10-2 - - ha-10-1-10-3 - - ha-10-1-10-4 - - ha-10-1-10-5 - attributes: - - color - - material - - pattern -- id: ha-10-2 - name: Plumbing Fixture Hardware & Parts - children: - - ha-10-2-1 - - ha-10-2-2 - - ha-10-2-3 - - ha-10-2-4 - - ha-10-2-5 - - ha-10-2-6 - - ha-10-2-7 - - ha-10-2-8 - attributes: - - color - - pattern - - hardware_material -- id: ha-10-2-1 - name: Bathtub Accessories - children: - - ha-10-2-1-1 - - ha-10-2-1-2 - - ha-10-2-1-3 - attributes: - - color - - material - - pattern -- id: ha-10-2-1-1 - name: Bathtub Bases & Feet - children: [] - attributes: - - bathtub_base_design - - color - - material - - pattern -- id: ha-10-2-1-2 - name: Bathtub Skirts - children: [] - attributes: - - bathtub_skirt_shape - - color - - material - - pattern -- id: ha-10-2-1-3 - name: Bathtub Spouts - children: - - ha-10-2-1-3-1 - - ha-10-2-1-3-2 - attributes: - - color - - material - - pattern -- id: ha-10-2-2 - name: Drain Components - children: - - ha-10-2-2-1 - - ha-10-2-2-2 - - ha-10-2-2-3 - - ha-10-2-2-4 - - ha-10-2-2-5 - - ha-10-2-2-6 - - ha-10-2-2-7 - attributes: - - color - - pattern - - hardware_material -- id: ha-10-2-2-1 - name: Drain Covers & Strainers - children: - - ha-10-2-2-1-1 - - ha-10-2-2-1-2 - attributes: - - color - - material - - pattern -- id: ha-10-2-2-2 - name: Drain Frames - children: [] - attributes: - - color - - pattern - - hardware_material -- id: ha-10-2-2-3 - name: Drain Liners - children: [] - attributes: - - color - - pattern - - hardware_material -- id: ha-10-2-2-4 - name: Drain Openers - children: [] - attributes: - - color - - pattern - - recommended_use - - hardware_material -- id: ha-10-2-2-5 - name: Drain Rods - children: [] - attributes: - - color - - pattern - - hardware_material -- id: ha-10-2-2-6 - name: Plumbing Traps - children: [] - attributes: - - color - - pattern - - plumbing_trap_design - - hardware_material -- id: ha-10-2-2-7 - name: Plumbing Wastes - children: [] - attributes: - - color - - pattern - - hardware_material -- id: ha-10-2-3 - name: Drains - children: - - ha-10-2-3-1 - - ha-10-2-3-2 - - ha-10-2-3-3 - attributes: - - color - - pattern - - hardware_material -- id: ha-10-2-4 - name: Faucet Accessories - children: - - ha-10-2-4-1 - - ha-10-2-4-2 - attributes: - - color - - connecting_thread - - material - - pattern -- id: ha-10-2-4-1 - name: Faucet Aerators - children: [] - attributes: - - color - - connecting_thread - - faucet_thread - - material - - pattern -- id: ha-10-2-4-2 - name: Faucet Handles & Controls - children: - - ha-10-2-4-2-1 - - ha-10-2-4-2-2 - - ha-10-2-4-2-3 - attributes: - - color - - connecting_thread - - pattern - - handle_material -- id: ha-10-2-5 - name: Fixture Plates - children: - - ha-10-2-5-1 - - ha-10-2-5-2 - - ha-10-2-5-3 - attributes: - - color - - pattern - - hardware_material -- id: ha-10-2-6 - name: Shower Parts - children: - - ha-10-2-6-1 - - ha-10-2-6-2 - - ha-10-2-6-3 - - ha-10-2-6-4 - - ha-10-2-6-5 - - ha-10-2-6-6 - - ha-10-2-6-7 - - ha-10-2-6-8 - - ha-10-2-6-9 - attributes: - - color - - pattern - - hardware_material -- id: ha-10-2-6-1 - name: Bathtub & Shower Jets - children: - - ha-10-2-6-1-1 - - ha-10-2-6-1-2 - attributes: - - color - - drain_location - - pattern - - shape - - hardware_material -- id: ha-10-2-6-2 - name: Electric & Power Showers - children: - - ha-10-2-6-2-1 - - ha-10-2-6-2-2 - attributes: - - color - - pattern - - power_source - - hardware_material -- id: ha-10-2-6-3 - name: Shower Arms & Connectors - children: - - ha-10-2-6-3-1 - - ha-10-2-6-3-2 - attributes: - - color - - connecting_thread - - pattern - - hardware_material -- id: ha-10-2-6-4 - name: Shower Bases - children: [] - attributes: - - color - - pattern - - shower_base_design - - hardware_material -- id: ha-10-2-6-5 - name: Shower Columns - children: [] - attributes: - - color - - pattern - - hardware_material -- id: ha-10-2-6-6 - name: Shower Doors & Enclosures - children: - - ha-10-2-6-6-1 - - ha-10-2-6-6-2 - - ha-10-2-6-6-3 - attributes: - - color - - pattern - - furniture_fixture_material -- id: ha-10-2-6-7 - name: Shower Heads - children: - - ha-10-2-6-7-1 - - ha-10-2-6-7-2 - attributes: - - color - - pattern - - hardware_material -- id: ha-10-2-6-8 - name: Shower Walls & Surrounds - children: - - ha-10-2-6-8-1 - - ha-10-2-6-8-2 - attributes: - - color - - pattern - - hardware_material -- id: ha-10-2-6-9 - name: Shower Water Filters - children: [] - attributes: - - color - - pattern - - hardware_material -- id: ha-10-2-7 - name: Sink Accessories - children: - - ha-10-2-7-1 - attributes: - - color - - material - - pattern -- id: ha-10-2-7-1 - name: Sink Legs - children: [] - attributes: - - color - - material - - pattern -- id: ha-10-2-8 - name: Toilet & Bidet Accessories - children: - - ha-10-2-8-1 - - ha-10-2-8-2 - - ha-10-2-8-3 - - ha-10-2-8-4 - - ha-10-2-8-5 - - ha-10-2-8-6 - - ha-10-2-8-7 - - ha-10-2-8-8 - - ha-10-2-8-9 - attributes: - - color - - material - - pattern -- id: ha-10-2-8-1 - name: Ballcocks & Flappers - children: - - ha-10-2-8-1-1 - - ha-10-2-8-1-2 - attributes: - - color - - material - - pattern -- id: ha-10-2-8-2 - name: Bidet Faucets & Sprayers - children: - - ha-10-2-8-2-1 - - ha-10-2-8-2-2 - attributes: - - color - - pattern - - hardware_material -- id: ha-10-2-8-3 - name: Toilet & Bidet Seats - children: [] - attributes: - - color - - material - - material_firmness - - pattern - - toilet_cover_design -- id: ha-10-2-8-4 - name: Toilet Seat Covers - children: [] - attributes: - - color - - material - - pattern - - toilet_cover_design -- id: ha-10-2-8-5 - name: Toilet Seat Lid Covers - children: [] - attributes: - - color - - material - - pattern - - toilet_cover_design -- id: ha-10-2-8-6 - name: Toilet Tank Covers - children: [] - attributes: - - color - - material - - pattern -- id: ha-10-2-8-7 - name: Toilet Tank Levers - children: - - ha-10-2-8-7-1 - - ha-10-2-8-7-2 - attributes: - - color - - material - - pattern -- id: ha-10-2-8-8 - name: Toilet Tanks - children: - - ha-10-2-8-8-1 - - ha-10-2-8-8-2 - attributes: - - flush_plate_color - - material - - pattern - - tank_color -- id: ha-10-2-8-9 - name: Toilet Trim - children: [] - attributes: - - color - - material - - pattern -- id: ha-10-3 - name: Plumbing Fixtures - children: - - ha-10-3-1 - - ha-10-3-2 - - ha-10-3-3 - - ha-10-3-4 - - ha-10-3-5 - - ha-10-3-6 - attributes: - - color - - material - - pattern -- id: ha-10-3-1 - name: Bathroom Suites - children: [] - attributes: - - color - - material - - pattern -- id: ha-10-3-2 - name: Bathtubs - children: - - ha-10-3-2-1 - - ha-10-3-2-2 - - ha-10-3-2-3 - attributes: - - color - - drain_location - - material - - pattern - - shape -- id: ha-10-3-3 - name: Faucets - children: - - ha-10-3-3-1 - - ha-10-3-3-2 - - ha-10-3-3-3 - attributes: - - color - - material - - pattern -- id: ha-10-3-4 - name: Shower Stalls & Kits - children: [] - attributes: - - color - - material - - pattern - - shower_design -- id: ha-10-3-5 - name: Sinks - children: - - ha-10-3-5-1 - - ha-10-3-5-2 - attributes: - - color - - material - - pattern -- id: ha-10-3-5-1 - name: Bathroom Sinks - children: - - ha-10-3-5-1-1 - - ha-10-3-5-1-2 - - ha-10-3-5-1-3 - attributes: - - color - - material - - pattern - - sink_shape -- id: ha-10-3-5-2 - name: Kitchen & Utility Sinks - children: - - ha-10-3-5-2-1 - - ha-10-3-5-2-2 - - ha-10-3-5-2-3 - attributes: - - color - - material - - pattern - - sink_shape - - sink_type -- id: ha-10-3-6 - name: Toilets & Bidets - children: - - ha-10-3-6-1 - - ha-10-3-6-2 - - ha-10-3-6-3 - attributes: - - color - - material - - pattern -- id: ha-10-3-6-1 - name: Bidets - children: [] - attributes: - - bidet_mounting_type - - color - - material - - pattern -- id: ha-10-3-6-2 - name: Toilets - children: - - ha-10-3-6-2-1 - - ha-10-3-6-2-2 - - ha-10-3-6-2-3 - attributes: - - color - - flush_system - - material - - pattern - - toilet_mounting_type - - toilet_shape -- id: ha-10-3-6-3 - name: Urinals - children: [] - attributes: - - color - - material - - pattern - - urinal_mounting_type -- id: ha-10-4 - name: Plumbing Hoses & Supply Lines - children: - - ha-10-4-1 - - ha-10-4-2 - - ha-10-4-3 - attributes: - - color - - pattern - - hose_material -- id: ha-10-5 - name: Plumbing Pipes - children: - - ha-10-5-1 - - ha-10-5-2 - - ha-10-5-3 - attributes: - - color - - material - - pattern -- id: ha-10-6 - name: Plumbing Repair Kits - children: - - ha-10-6-1 - - ha-10-6-2 - - ha-10-6-3 - attributes: - - color - - material - - pattern -- id: ha-10-7 - name: Water Dispensing & Filtration - children: - - ha-10-7-1 - - ha-10-7-2 - - ha-10-7-3 - - ha-10-7-4 - - ha-10-7-5 - - ha-10-7-6 - attributes: - - color - - pattern -- id: ha-10-7-1 - name: In-Line Water Filters - children: [] - attributes: - - color - - material - - pattern -- id: ha-10-7-2 - name: Water Dispensers - children: - - ha-10-7-2-1 - - ha-10-7-2-2 - attributes: - - color - - hardware_mounting_type - - pattern -- id: ha-10-7-2-1 - name: Drinking Fountains - children: [] - attributes: - - color - - hardware_mounting_type - - material - - pattern - - placement_supported - - suitable_space -- id: ha-10-7-2-2 - name: Water Chillers - children: [] - attributes: - - color - - hardware_mounting_type - - pattern -- id: ha-10-7-3 - name: Water Distillers - children: [] - attributes: - - color - - pattern -- id: ha-10-7-4 - name: Water Filtration Accessories - children: - - ha-10-7-4-1 - - ha-10-7-4-2 - attributes: - - color - - pattern -- id: ha-10-7-4-1 - name: Water Filter Cartridges - children: [] - attributes: - - color - - material - - pattern -- id: ha-10-7-4-2 - name: Water Filter Housings - children: [] - attributes: - - color - - material - - pattern -- id: ha-10-7-5 - name: Water Softener Salt - children: [] - attributes: - - color - - pattern -- id: ha-10-7-6 - name: Water Softeners - children: - - ha-10-7-6-1 - - ha-10-7-6-2 - attributes: - - color - - pattern -- id: ha-10-8 - name: Water Levelers - children: [] - attributes: - - color - - pattern -- id: ha-10-9 - name: Water Timers - children: [] - attributes: - - color - - pattern -- id: ha-10-10 - name: Well Supplies - children: [] - attributes: - - color - - pattern -- id: ha-11 - name: Power & Electrical Supplies - children: - - ha-11-1 - - ha-11-2 - - ha-11-3 - - ha-11-4 - - ha-11-6 - - ha-11-7 - - ha-11-8 - - ha-11-9 - - ha-11-10 - - ha-11-11 - - ha-11-12 - - ha-11-13 - - ha-11-14 - - ha-11-15 - - ha-11-16 - - ha-11-17 - - ha-11-18 - - ha-11-19 - - ha-11-20 - - ha-11-21 - - ha-11-22 - - ha-11-23 - - ha-11-24 - - ha-11-25 - - ha-11-26 - - ha-11-27 - - ha-11-28 - - ha-11-5 - attributes: - - color - - pattern -- id: ha-11-1 - name: Armatures, Rotors & Stators - children: - - ha-11-1-1 - - ha-11-1-2 - - ha-11-1-3 - attributes: - - color - - material - - motor_starting_method - - pattern -- id: ha-11-2 - name: Ballasts & Starters - children: - - ha-11-2-1 - - ha-11-2-2 - - ha-11-2-3 - attributes: - - color - - pattern -- id: ha-11-3 - name: Carbon Brushes - children: [] - attributes: - - color - - pattern - - brush_material -- id: ha-11-4 - name: Circuit Breaker Panels - children: - - ha-11-4-1 - - ha-11-4-2 - attributes: - - circuit_breaker_panel_form - - color - - pattern -- id: ha-11-6 - name: Conduit & Housings - children: - - ha-11-6-1 - - ha-11-6-2 - attributes: - - color - - material - - pattern -- id: ha-11-6-1 - name: Electrical Conduit - children: - - ha-11-6-1-1 - - ha-11-6-1-2 - attributes: - - color - - material - - pattern -- id: ha-11-6-2 - name: Heat-Shrink Tubing - children: [] - attributes: - - color - - material - - pattern - - shrink_ratio -- id: ha-11-7 - name: Electrical Motors - children: - - ha-11-7-1 - - ha-11-7-2 - - ha-11-7-3 - attributes: - - color - - motor_starting_method - - pattern - - power_source -- id: ha-11-8 - name: Electrical Mount Boxes & Brackets - children: - - ha-11-8-1 - - ha-11-8-2 - attributes: - - color - - material - - pattern -- id: ha-11-9 - name: Electrical Plug Caps - children: [] - attributes: - - color - - material - - pattern -- id: ha-11-10 - name: Electrical Switches - children: - - ha-11-10-1 - - ha-11-10-2 - attributes: - - color - - pattern -- id: ha-11-10-1 - name: Light Switches - children: - - ha-11-10-1-1 - - ha-11-10-1-2 - - ha-11-10-1-3 - attributes: - - color - - pattern - - switch_control_type -- id: ha-11-10-2 - name: Specialty Electrical Switches & Relays - children: - - ha-11-10-2-1 - - ha-11-10-2-2 - - ha-11-10-2-3 - attributes: - - color - - pattern -- id: ha-11-11 - name: Electrical Wires & Cable - children: [] - attributes: - - color - - pattern - - wire_rope_material -- id: ha-11-12 - name: Extension Cord Accessories - children: [] - attributes: - - color - - pattern -- id: ha-11-13 - name: Extension Cords - children: [] - attributes: - - color - - pattern - - suitable_space -- id: ha-11-14 - name: Generator Accessories - children: [] - attributes: - - color - - pattern -- id: ha-11-15 - name: Generators - children: - - ha-11-15-1 - - ha-11-15-2 - - ha-11-15-3 - attributes: - - color - - ignition_system - - pattern - - power_source -- id: ha-11-16 - name: Home Automation Kits - children: - - ha-11-16-1 - - ha-11-16-2 - - ha-11-16-3 - attributes: - - color - - pattern -- id: ha-11-17 - name: Phone & Data Jacks - children: - - ha-11-17-1 - - ha-11-17-2 - attributes: - - color - - pattern -- id: ha-11-18 - name: Power Converters - children: - - ha-11-18-1 - - ha-11-18-2 - attributes: - - color - - pattern -- id: ha-11-19 - name: Power Inlets - children: [] - attributes: - - color - - material - - pattern -- id: ha-11-20 - name: Power Inverters - children: [] - attributes: - - color - - pattern - - suitable_space -- id: ha-11-21 - name: Power Outlets & Sockets - children: - - ha-11-21-1 - - ha-11-21-2 - - ha-11-21-3 - attributes: - - color - - pattern - - socket_type -- id: ha-11-22 - name: Solar Energy Kits - children: - - ha-11-22-1 - - ha-11-22-2 - - ha-11-22-3 - attributes: - - color - - pattern - - solar_panel_design -- id: ha-11-23 - name: Solar Panels - children: - - ha-11-23-1 - - ha-11-23-2 - - ha-11-23-3 - attributes: - - color - - pattern - - solar_cell_type - - solar_panel_connections -- id: ha-11-24 - name: Voltage Transformers & Regulators - children: - - ha-11-24-1 - - ha-11-24-2 - attributes: - - color - - pattern -- id: ha-11-25 - name: Wall Plates & Covers - children: - - ha-11-25-1 - - ha-11-25-2 - - ha-11-25-3 - attributes: - - color - - material - - pattern - - wall_plate_style -- id: ha-11-26 - name: Wall Socket Controls & Sensors - children: - - ha-11-26-1 - - ha-11-26-2 - attributes: - - color - - pattern -- id: ha-11-27 - name: Wire Caps & Nuts - children: - - ha-11-27-1 - - ha-11-27-2 - attributes: - - color - - material - - pattern -- id: ha-11-28 - name: Wire Terminals & Connectors - children: - - ha-11-28-1 - - ha-11-28-2 - - ha-11-28-3 - attributes: - - color - - material - - pattern -- id: ha-12 - name: Small Engines - children: [] - attributes: - - color - - engine_design - - engine_purpose - - fuel_supply - - pattern - - shaft_orientation - - start_type -- id: ha-13 - name: Storage Tanks - children: [] - attributes: - - color - - material - - orientation - - pattern - - storage_tank_application - - suitable_space -- id: ha-14 - name: Tool Accessories - children: - - ha-14-1 - - ha-14-2 - - ha-14-3 - - ha-14-4 - - ha-14-5 - - ha-14-6 - - ha-14-7 - - ha-14-8 - - ha-14-9 - - ha-14-10 - - ha-14-11 - - ha-14-12 - - ha-14-13 - - ha-14-14 - - ha-14-15 - - ha-14-16 - - ha-14-17 - - ha-14-18 - - ha-14-19 - - ha-14-20 - - ha-14-21 - - ha-14-22 - - ha-14-23 - - ha-14-24 - - ha-14-25 - - ha-14-26 - - ha-14-27 - - ha-14-28 - - ha-14-29 - attributes: - - color - - pattern -- id: ha-14-1 - name: Abrasive Blaster Accessories - children: - - ha-14-1-1 - attributes: - - color - - pattern -- id: ha-14-1-1 - name: Sandblasting Cabinets - children: - - ha-14-1-1-1 - - ha-14-1-1-2 - attributes: - - color - - pattern - - sandblaster_application - - sander_type - - suitable_for_material_type - - furniture_fixture_material -- id: ha-14-2 - name: Axe Accessories - children: - - ha-14-2-1 - - ha-14-2-2 - attributes: - - color - - material - - pattern -- id: ha-14-2-1 - name: Axe Handles - children: [] - attributes: - - color - - pattern - - handle_material -- id: ha-14-2-2 - name: Axe Heads - children: [] - attributes: - - color - - pattern - - blade_material -- id: ha-14-3 - name: Cutter Accessories - children: - - ha-14-3-1 - attributes: - - color - - pattern -- id: ha-14-3-1 - name: Nibbler Dies - children: [] - attributes: - - color - - pattern - - hardware_material -- id: ha-14-4 - name: Drill & Screwdriver Accessories - children: - - ha-14-4-1 - - ha-14-4-2 - - ha-14-4-3 - - ha-14-4-4 - - ha-14-4-5 - - ha-14-4-6 - attributes: - - color - - pattern -- id: ha-14-4-1 - name: Drill & Screwdriver Bits - children: - - ha-14-4-1-1 - - ha-14-4-1-2 - - ha-14-4-1-3 - attributes: - - color - - pattern - - rotating_direction - - suitable_for_material_type - - hardware_material -- id: ha-14-4-2 - name: Drill Bit Extensions - children: [] - attributes: - - color - - pattern - - hardware_material -- id: ha-14-4-3 - name: Drill Bit Sharpeners - children: - - ha-14-4-3-2 - - ha-14-4-3-1 - attributes: - - color - - pattern - - hardware_material -- id: ha-14-4-4 - name: Drill Chucks - children: - - ha-14-4-4-1 - - ha-14-4-4-2 - attributes: - - color - - pattern - - hardware_material -- id: ha-14-4-5 - name: Drill Stands & Guides - children: - - ha-14-4-5-1 - - ha-14-4-5-2 - attributes: - - color - - material - - pattern -- id: ha-14-4-6 - name: Hole Saws - children: [] - attributes: - - color - - pattern - - suitable_for_material_type - - hardware_material -- id: ha-14-5 - name: Driver Accessories - children: [] - attributes: - - color - - pattern -- id: ha-14-6 - name: Flashlight Accessories - children: [] - attributes: - - color - - pattern -- id: ha-14-7 - name: Grinder Accessories - children: - - ha-14-7-1 - attributes: - - color - - pattern -- id: ha-14-7-1 - name: Grinding Wheels & Points - children: [] - attributes: - - color - - pattern -- id: ha-14-8 - name: Hammer Accessories - children: - - ha-14-8-1 - - ha-14-8-2 - - ha-14-8-3 - attributes: - - color - - pattern -- id: ha-14-8-1 - name: Air Hammer Accessories - children: [] - attributes: - - color - - pattern -- id: ha-14-8-2 - name: Hammer Handles - children: [] - attributes: - - color - - pattern - - handle_material -- id: ha-14-8-3 - name: Hammer Heads - children: [] - attributes: - - color - - pattern - - hardware_material -- id: ha-14-9 - name: Industrial Staples - children: [] - attributes: - - color - - pattern - - hardware_material -- id: ha-14-10 - name: Jigs - children: - - ha-14-10-1 - - ha-14-10-2 - - ha-14-10-3 - attributes: - - color - - pattern -- id: ha-14-11 - name: Magnetizers & Demagnetizers - children: [] - attributes: - - color - - pattern -- id: ha-14-12 - name: Mattock & Pickaxe Accessories - children: - - ha-14-12-1 - attributes: - - color - - pattern -- id: ha-14-12-1 - name: Mattock & Pickaxe Handles - children: [] - attributes: - - color - - pattern - - handle_material -- id: ha-14-13 - name: Measuring Tool & Sensor Accessories - children: - - ha-14-13-1 - - ha-14-13-2 - - ha-14-13-3 - - ha-14-13-4 - attributes: - - color - - pattern -- id: ha-14-13-1 - name: Electrical Testing Tool Accessories - children: [] - attributes: - - color - - pattern -- id: ha-14-13-2 - name: Gas Detector Accessories - children: [] - attributes: - - color - - pattern -- id: ha-14-13-3 - name: Measuring Scale Accessories - children: [] - attributes: - - color - - pattern -- id: ha-14-13-4 - name: Multimeter Accessories - children: [] - attributes: - - color - - pattern -- id: ha-14-14 - name: Mixing Tool Paddles - children: [] - attributes: - - color - - material - - pattern -- id: ha-14-15 - name: Paint Tool Accessories - children: - - ha-14-15-1 - - ha-14-15-2 - - ha-14-15-3 - attributes: - - color - - pattern -- id: ha-14-15-1 - name: Airbrush Accessories - children: [] - attributes: - - color - - pattern -- id: ha-14-15-2 - name: Paint Brush Cleaning Solutions - children: - - ha-14-15-2-1 - - ha-14-15-2-2 - attributes: - - color - - pattern -- id: ha-14-15-3 - name: Paint Roller Accessories - children: [] - attributes: - - color - - pattern -- id: ha-14-16 - name: Power Tool Batteries - children: [] - attributes: - - battery_technology - - color - - pattern -- id: ha-14-17 - name: Power Tool Chargers - children: [] - attributes: - - battery_technology - - color - - pattern -- id: ha-14-18 - name: Router Accessories - children: - - ha-14-18-1 - - ha-14-18-2 - attributes: - - color - - pattern -- id: ha-14-18-1 - name: Router Bits - children: - - ha-14-18-1-1 - - ha-14-18-1-2 - - ha-14-18-1-3 - attributes: - - color - - pattern - - hardware_material -- id: ha-14-18-2 - name: Router Tables - children: [] - attributes: - - color - - hardware_mounting_type - - material - - pattern -- id: ha-14-19 - name: Sanding Accessories - children: - - ha-14-19-1 - attributes: - - color - - pattern -- id: ha-14-19-1 - name: Sandpaper & Sanding Sponges - children: - - ha-14-19-1-1 - - ha-14-19-1-2 - - ha-14-19-1-3 - - ha-14-19-1-4 - - ha-14-19-1-5 - - ha-14-19-1-6 - - ha-14-19-1-7 - - ha-14-19-1-8 - - ha-14-19-1-9 - attributes: - - abrasive_material - - backing_material - - color - - grit_type - - pattern - - sanding_application - - suitable_for_material_type -- id: ha-14-20 - name: Saw Accessories - children: - - ha-14-20-1 - - ha-14-20-2 - - ha-14-20-3 - - ha-14-20-4 - - ha-14-20-5 - attributes: - - color - - pattern -- id: ha-14-20-1 - name: Band Saw Accessories - children: [] - attributes: - - color - - pattern -- id: ha-14-20-2 - name: Handheld Circular Saw Accessories - children: [] - attributes: - - color - - pattern -- id: ha-14-20-3 - name: Jigsaw Accessories - children: [] - attributes: - - color - - pattern -- id: ha-14-20-4 - name: Miter Saw Accessories - children: [] - attributes: - - color - - pattern -- id: ha-14-20-5 - name: Table Saw Accessories - children: [] - attributes: - - color - - pattern -- id: ha-14-21 - name: Shaper Accessories - children: - - ha-14-21-1 - attributes: - - color - - pattern -- id: ha-14-21-1 - name: Shaper Cutters - children: - - ha-14-21-1-1 - - ha-14-21-1-2 - - ha-14-21-1-3 - attributes: - - color - - pattern - - blade_material -- id: ha-14-22 - name: Soldering Iron Accessories - children: - - ha-14-22-1 - - ha-14-22-2 - attributes: - - color - - pattern -- id: ha-14-22-1 - name: Soldering Iron Stands - children: [] - attributes: - - color - - material - - pattern -- id: ha-14-22-2 - name: Soldering Iron Tips - children: - - ha-14-22-2-1 - - ha-14-22-2-2 - - ha-14-22-2-3 - attributes: - - color - - pattern - - hardware_material -- id: ha-14-23 - name: Tool Blades - children: - - ha-14-23-1 - - ha-14-23-2 - attributes: - - color - - pattern - - blade_material -- id: ha-14-23-1 - name: Cutter & Scraper Blades - children: - - ha-14-23-1-1 - - ha-14-23-1-2 - attributes: - - color - - pattern - - blade_material -- id: ha-14-23-2 - name: Saw Blades - children: - - ha-14-23-2-1 - - ha-14-23-2-2 - - ha-14-23-2-3 - attributes: - - color - - pattern - - suitable_for_material_type - - blade_material -- id: ha-14-24 - name: Tool Handle Wedges - children: - - ha-14-24-1 - - ha-14-24-2 - attributes: - - color - - material - - pattern -- id: ha-14-25 - name: Tool Safety Tethers - children: [] - attributes: - - color - - material - - pattern -- id: ha-14-26 - name: Tool Sockets - children: [] - attributes: - - color - - pattern -- id: ha-14-27 - name: Tool Stands - children: - - ha-14-27-1 - attributes: - - color - - material - - pattern -- id: ha-14-27-1 - name: Saw Stands - children: - - ha-14-27-1-1 - - ha-14-27-1-2 - - ha-14-27-1-3 - attributes: - - color - - material - - pattern -- id: ha-14-28 - name: Wedge Tools - children: - - ha-14-28-1 - - ha-14-28-2 - - ha-14-28-3 - attributes: - - color - - pattern - - hardware_material -- id: ha-14-29 - name: Welding Accessories - children: [] - attributes: - - color - - pattern -- id: ha-15 - name: Tools - children: - - ha-15-1 - - ha-15-2 - - ha-15-3 - - ha-15-4 - - ha-15-5 - - ha-15-6 - - ha-15-7 - - ha-15-8 - - ha-15-9 - - ha-15-10 - - ha-15-11 - - ha-15-12 - - ha-15-13 - - ha-15-14 - - ha-15-15 - - ha-15-16 - - ha-15-17 - - ha-15-18 - - ha-15-19 - - ha-15-20 - - ha-15-21 - - ha-15-22 - - ha-15-23 - - ha-15-24 - - ha-15-25 - - ha-15-26 - - ha-15-27 - - ha-15-28 - - ha-15-29 - - ha-15-30 - - ha-15-31 - - ha-15-32 - - ha-15-33 - - ha-15-34 - - ha-15-35 - - ha-15-36 - - ha-15-37 - - ha-15-38 - - ha-15-39 - - ha-15-40 - - ha-15-41 - - ha-15-42 - - ha-15-43 - - ha-15-44 - - ha-15-45 - - ha-15-46 - - ha-15-47 - - ha-15-48 - - ha-15-49 - - ha-15-50 - - ha-15-51 - - ha-15-52 - - ha-15-53 - - ha-15-54 - - ha-15-55 - - ha-15-56 - - ha-15-57 - - ha-15-58 - - ha-15-59 - - ha-15-60 - - ha-15-61 - - ha-15-62 - - ha-15-63 - - ha-15-64 - - ha-15-65 - - ha-15-66 - - ha-15-67 - - ha-15-68 - - ha-15-69 - - ha-15-70 - - ha-15-71 - - ha-15-72 - - ha-15-73 - - ha-15-74 - - ha-15-75 - - ha-15-77 - - ha-15-78 - - ha-15-79 - - ha-15-80 - - ha-15-76 - attributes: - - color - - pattern -- id: ha-15-1 - name: Abrasive Blasters - children: - - ha-15-1-1 - - ha-15-1-2 - - ha-15-1-3 - attributes: - - color - - pattern - - power_source -- id: ha-15-2 - name: Anvils - children: [] - attributes: - - color - - pattern - - hardware_material -- id: ha-15-3 - name: Axes - children: - - ha-15-3-1 - - ha-15-3-2 - - ha-15-3-3 - attributes: - - color - - pattern -- id: ha-15-4 - name: Carpentry Jointers - children: - - ha-15-4-1 - - ha-15-4-2 - attributes: - - color - - pattern -- id: ha-15-5 - name: Carving Chisels & Gouges - children: - - ha-15-5-1 - - ha-15-5-2 - - ha-15-5-3 - attributes: - - blade_material - - color - - handle_material - - pattern -- id: ha-15-6 - name: Caulking Tools - children: - - ha-15-6-1 - - ha-15-6-2 - - ha-15-6-3 - attributes: - - color - - pattern -- id: ha-15-7 - name: Chimney Brushes - children: [] - attributes: - - color - - pattern - - brush_material -- id: ha-15-8 - name: Compactors - children: - - ha-15-8-1 - - ha-15-8-2 - attributes: - - color - - pattern - - power_source -- id: ha-15-9 - name: Compressors - children: [] - attributes: - - color - - pattern - - power_source -- id: ha-15-10 - name: Concrete Brooms - children: [] - attributes: - - bristle_material - - color - - handle_material - - pattern -- id: ha-15-11 - name: Cutters - children: - - ha-15-11-1 - - ha-15-11-2 - - ha-15-11-3 - - ha-15-11-4 - - ha-15-11-5 - - ha-15-11-6 - - ha-15-11-7 - - ha-15-11-8 - attributes: - - color - - pattern -- id: ha-15-11-1 - name: Bolt Cutters - children: - - ha-15-11-1-2 - - ha-15-11-1-3 - attributes: - - color - - pattern - - hardware_material -- id: ha-15-11-2 - name: Glass Cutters - children: - - ha-15-11-2-1 - - ha-15-11-2-2 - - ha-15-11-2-3 - attributes: - - blade_material - - handle_color - - handle_material - - pattern -- id: ha-15-11-3 - name: Handheld Metal Shears & Nibblers - children: [] - attributes: - - color - - pattern - - power_source - - hardware_material -- id: ha-15-11-4 - name: Nippers - children: - - ha-15-11-4-1 - - ha-15-11-4-2 - attributes: - - color - - pattern - - hardware_material -- id: ha-15-11-5 - name: Pipe Cutters - children: [] - attributes: - - blade_material - - housing_color - - housing_material - - pattern -- id: ha-15-11-6 - name: Rebar Cutters - children: - - ha-15-11-6-2 - - ha-15-11-6-1 - attributes: - - color - - pattern -- id: ha-15-11-7 - name: Tile & Shingle Cutters - children: - - ha-15-11-7-1 - - ha-15-11-7-2 - attributes: - - color - - pattern -- id: ha-15-11-8 - name: Utility Knives - children: - - ha-15-11-8-1 - - ha-15-11-8-2 - attributes: - - blade_design - - color - - pattern - - hardware_material -- id: ha-15-12 - name: Deburrers - children: - - ha-15-12-1 - - ha-15-12-2 - attributes: - - color - - pattern - - suitable_for_pipe_type - - material -- id: ha-15-13 - name: Dollies & Hand Trucks - children: - - ha-15-13-1 - - ha-15-13-2 - - ha-15-13-3 - attributes: - - color - - pattern - - hardware_material -- id: ha-15-14 - name: Drills - children: - - ha-15-14-1 - - ha-15-14-2 - - ha-15-14-3 - - ha-15-14-4 - - ha-15-14-5 - attributes: - - chuck_type - - color - - pattern - - power_source -- id: ha-15-14-1 - name: Augers - children: - - ha-15-14-1-1 - - ha-15-14-1-2 - attributes: - - chuck_type - - color - - pattern - - power_source -- id: ha-15-14-2 - name: Drill Presses - children: [] - attributes: - - chuck_type - - color - - hardware_mounting_type - - pattern - - power_source -- id: ha-15-14-3 - name: Handheld Power Drills - children: - - ha-15-14-3-1 - - ha-15-14-3-2 - - ha-15-14-3-3 - attributes: - - chuck_type - - color - - pattern - - power_source -- id: ha-15-14-4 - name: Mortisers - children: [] - attributes: - - chuck_type - - color - - hardware_mounting_type - - pattern - - power_source -- id: ha-15-14-5 - name: Pneumatic Drills - children: - - ha-15-14-5-1 - - ha-15-14-5-2 - attributes: - - chuck_type - - color - - pattern - - power_source -- id: ha-15-15 - name: Electrician Fish Tape - children: [] - attributes: - - color - - pattern - - hardware_material -- id: ha-15-16 - name: Flashlights & Headlamps - children: - - ha-15-16-1 - - ha-15-16-2 - attributes: - - color - - housing_material - - light_source - - pattern - - power_source -- id: ha-15-16-1 - name: Flashlights - children: - - ha-15-16-1-1 - - ha-15-16-1-3 - attributes: - - color - - housing_material - - light_source - - pattern - - power_source -- id: ha-15-16-2 - name: Headlamps - children: [] - attributes: - - color - - housing_material - - light_source - - pattern - - power_source -- id: ha-15-17 - name: Grease Guns - children: - - ha-15-17-2 - - ha-15-17-3 - attributes: - - color - - pattern - - power_source -- id: ha-15-18 - name: Grinders - children: - - ha-15-18-1 - - ha-15-18-2 - - ha-15-18-3 - attributes: - - color - - pattern - - power_source -- id: ha-15-19 - name: Grips - children: - - ha-15-19-1 - - ha-15-19-2 - - ha-15-19-3 - attributes: - - color - - pattern - - hardware_material -- id: ha-15-20 - name: Hammers - children: - - ha-15-20-1 - - ha-15-20-2 - attributes: - - color - - handle_material - - pattern - - hammer_head_material -- id: ha-15-20-1 - name: Manual Hammers - children: - - ha-15-20-1-1 - - ha-15-20-1-2 - - ha-15-20-1-3 - attributes: - - color - - handle_material - - pattern - - hammer_head_material -- id: ha-15-20-2 - name: Powered Hammers - children: - - ha-15-20-2-1 - - ha-15-20-2-2 - attributes: - - color - - handle_material - - pattern - - power_source - - hammer_head_material -- id: ha-15-21 - name: Handheld Power Mixers - children: [] - attributes: - - color - - pattern - - power_source -- id: ha-15-22 - name: Hardware Torches - children: [] - attributes: - - color - - pattern - - power_source -- id: ha-15-23 - name: Heat Guns - children: - - ha-15-23-1 - - ha-15-23-2 - attributes: - - color - - pattern - - power_source -- id: ha-15-24 - name: Impact Wrenches & Drivers - children: - - ha-15-24-1 - - ha-15-24-2 - - ha-15-24-3 - attributes: - - color - - handle_design - - pattern - - power_source -- id: ha-15-25 - name: Industrial Vibrators - children: [] - attributes: - - color - - pattern - - power_source -- id: ha-15-26 - name: Inspection Mirrors - children: [] - attributes: - - handle_color - - pattern -- id: ha-15-27 - name: Ladders & Scaffolding - children: - - ha-15-27-1 - - ha-15-27-2 - - ha-15-27-3 - - ha-15-27-4 - - ha-15-27-5 - attributes: - - color - - pattern - - hardware_material -- id: ha-15-27-1 - name: Ladder Carts - children: [] - attributes: - - color - - pattern - - hardware_material -- id: ha-15-27-2 - name: Ladders - children: - - ha-15-27-2-1 - - ha-15-27-2-2 - - ha-15-27-2-3 - attributes: - - color - - pattern - - hardware_material -- id: ha-15-27-3 - name: Scaffolding - children: - - ha-15-27-3-3 - - ha-15-27-3-4 - attributes: - - color - - pattern - - hardware_material -- id: ha-15-27-4 - name: Step Stools - children: [] - attributes: - - color - - pattern - - hardware_material -- id: ha-15-27-5 - name: Work Platforms - children: [] - attributes: - - color - - pattern - - hardware_material -- id: ha-15-28 - name: Lathes - children: [] - attributes: - - color - - lathe_application - - pattern - - power_source - - hardware_material -- id: ha-15-29 - name: Light Bulb Changers - children: - - ha-15-29-1 - - ha-15-29-2 - attributes: - - bulb_type - - color - - pattern -- id: ha-15-30 - name: Lighters & Matches - children: - - ha-15-30-1 - - ha-15-30-3 - - ha-15-30-2 - attributes: - - color - - pattern - - hardware_material -- id: ha-15-31 - name: Log Splitters - children: - - ha-15-31-1 - - ha-15-31-2 - attributes: - - color - - pattern -- id: ha-15-32 - name: Magnetic Sweepers - children: - - ha-15-32-1 - - ha-15-32-2 - attributes: - - color - - pattern -- id: ha-15-33 - name: Marking Tools - children: [] - attributes: - - color - - pattern -- id: ha-15-34 - name: Masonry Tools - children: - - ha-15-34-1 - - ha-15-34-2 - - ha-15-34-3 - - ha-15-34-4 - - ha-15-34-5 - - ha-15-34-6 - - ha-15-34-7 - - ha-15-34-8 - - ha-15-34-9 - attributes: - - color - - pattern -- id: ha-15-34-1 - name: Brick Tools - children: [] - attributes: - - color - - pattern -- id: ha-15-34-2 - name: Cement Mixers - children: - - ha-15-34-2-1 - - ha-15-34-2-2 - attributes: - - color - - pattern - - power_source -- id: ha-15-34-3 - name: Construction Lines - children: [] - attributes: - - color - - pattern - - hardware_material -- id: ha-15-34-4 - name: Floats - children: - - ha-15-34-4-1 - - ha-15-34-4-2 - - ha-15-34-4-3 - attributes: - - color - - pattern - - hardware_material -- id: ha-15-34-5 - name: Grout Sponges - children: [] - attributes: - - color - - pattern - - sponge_shape - - hardware_material -- id: ha-15-34-6 - name: Masonry Edgers & Groovers - children: - - ha-15-34-6-1 - - ha-15-34-6-2 - attributes: - - color - - pattern - - hardware_material -- id: ha-15-34-7 - name: Masonry Jointers - children: - - ha-15-34-7-1 - - ha-15-34-7-2 - attributes: - - color - - pattern - - hardware_material -- id: ha-15-34-8 - name: Masonry Trowels - children: - - ha-15-34-8-1 - - ha-15-34-8-2 - - ha-15-34-8-3 - attributes: - - color - - pattern - - hardware_material -- id: ha-15-34-9 - name: Power Trowels - children: [] - attributes: - - color - - pattern - - power_source -- id: ha-15-35 - name: Mattocks & Pickaxes - children: - - ha-15-35-1 - - ha-15-35-2 - attributes: - - color - - pattern - - hardware_material -- id: ha-15-36 - name: Measuring Tools & Sensors - children: - - ha-15-36-1 - - ha-15-36-2 - - ha-15-36-3 - - ha-15-36-4 - - ha-15-36-5 - - ha-15-36-6 - - ha-15-36-7 - - ha-15-36-8 - - ha-15-36-9 - - ha-15-36-10 - - ha-15-36-11 - - ha-15-36-12 - - ha-15-36-13 - - ha-15-36-14 - - ha-15-36-15 - - ha-15-36-16 - - ha-15-36-17 - - ha-15-36-18 - - ha-15-36-19 - - ha-15-36-20 - - ha-15-36-22 - - ha-15-36-23 - - ha-15-36-24 - - ha-15-36-25 - - ha-15-36-26 - - ha-15-36-27 - - ha-15-36-28 - - ha-15-36-29 - - ha-15-36-30 - - ha-15-36-31 - - ha-15-36-32 - - ha-15-36-33 - - ha-15-36-34 - - ha-15-36-35 - - ha-15-36-36 - - ha-15-36-37 - - ha-15-36-38 - - ha-15-36-21 - attributes: - - color - - pattern -- id: ha-15-36-1 - name: Air Quality Meters - children: - - ha-15-36-1-1 - - ha-15-36-1-2 - - ha-15-36-1-3 - attributes: - - display_technology - - housing_color - - pattern -- id: ha-15-36-2 - name: Altimeters - children: [] - attributes: - - color - - device_technology - - display_technology - - pattern -- id: ha-15-36-3 - name: Anemometers - children: - - ha-15-36-3-1 - - ha-15-36-3-2 - - ha-15-36-3-3 - attributes: - - anemometer_application - - color - - display_technology - - pattern - - power_source - - units_of_measurement -- id: ha-15-36-4 - name: Barometers - children: - - ha-15-36-4-1 - - ha-15-36-4-2 - - ha-15-36-4-3 - attributes: - - color - - display_technology - - pattern - - suitable_space -- id: ha-15-36-5 - name: Calipers - children: - - ha-15-36-5-1 - - ha-15-36-5-2 - - ha-15-36-5-3 - attributes: - - color - - device_technology - - display_technology - - pattern - - system_of_measurement -- id: ha-15-36-6 - name: Cruising Rods - children: [] - attributes: - - color - - pattern - - hardware_material -- id: ha-15-36-7 - name: Distance Meters - children: [] - attributes: - - battery_size - - color - - display_technology - - pattern - - units_of_measurement -- id: ha-15-36-8 - name: Dividers - children: [] - attributes: - - color - - pattern - - hardware_material -- id: ha-15-36-9 - name: Electrical Testing Tools - children: - - ha-15-36-9-1 - - ha-15-36-9-2 - - ha-15-36-9-3 - attributes: - - color - - display_technology - - pattern -- id: ha-15-36-10 - name: Flow Meters & Controllers - children: - - ha-15-36-10-1 - - ha-15-36-10-2 - attributes: - - color - - display_technology - - pattern - - hardware_material -- id: ha-15-36-11 - name: Gas Detectors - children: - - ha-15-36-11-1 - - ha-15-36-11-2 - attributes: - - color - - detected_gases - - display_technology - - pattern - - power_source -- id: ha-15-36-12 - name: Gauges - children: - - ha-15-36-12-1 - - ha-15-36-12-2 - - ha-15-36-12-3 - attributes: - - color - - display_technology - - pattern -- id: ha-15-36-13 - name: Geiger Counters - children: - - ha-15-36-13-1 - - ha-15-36-13-2 - attributes: - - color - - display_technology - - pattern -- id: ha-15-36-14 - name: Hygrometers - children: [] - attributes: - - color - - device_technology - - display_technology - - pattern - - suitable_space -- id: ha-15-36-15 - name: Infrared Thermometers - children: [] - attributes: - - color - - display_technology - - pattern -- id: ha-15-36-16 - name: Knife Guides - children: - - ha-15-36-16-1 - - ha-15-36-16-2 - attributes: - - color - - pattern - - hardware_material -- id: ha-15-36-17 - name: Levels - children: - - ha-15-36-17-1 - - ha-15-36-17-2 - - ha-15-36-17-3 - attributes: - - color - - orientation - - pattern -- id: ha-15-36-17-1 - name: Bubble Levels - children: - - ha-15-36-17-1-1 - - ha-15-36-17-1-2 - - ha-15-36-17-1-3 - attributes: - - color - - orientation - - pattern -- id: ha-15-36-17-2 - name: Laser Levels - children: - - ha-15-36-17-2-1 - - ha-15-36-17-2-2 - - ha-15-36-17-2-3 - attributes: - - color - - display_technology - - orientation - - pattern -- id: ha-15-36-17-3 - name: Sight Levels - children: - - ha-15-36-17-3-1 - - ha-15-36-17-3-2 - attributes: - - color - - orientation - - pattern -- id: ha-15-36-18 - name: Measuring Scales - children: - - ha-15-36-18-1 - - ha-15-36-18-2 - attributes: - - color - - display_technology - - pattern -- id: ha-15-36-19 - name: Measuring Wheels - children: [] - attributes: - - color - - display_technology - - pattern - - units_of_measurement - - hardware_material -- id: ha-15-36-20 - name: Moisture Meters - children: - - ha-15-36-20-1 - - ha-15-36-20-2 - attributes: - - color - - display_technology - - pattern - - suitable_for_material_type -- id: ha-15-36-22 - name: Probes & Finders - children: - - ha-15-36-22-1 - - ha-15-36-22-2 - - ha-15-36-22-3 - attributes: - - color - - pattern -- id: ha-15-36-23 - name: Protractors - children: [] - attributes: - - color - - pattern - - hardware_material -- id: ha-15-36-24 - name: Rebar Locators - children: [] - attributes: - - color - - device_technology - - display_technology - pattern -- id: ha-15-36-25 - name: Rulers + - suitable_for_material_type +- id: ha-6-14-2-9 + name: Railroad Spikes children: [] attributes: - color - - pattern + - fastener_finish - hardware_material -- id: ha-15-36-26 - name: Seismometer - children: - - ha-15-36-26-1 - - ha-15-36-26-2 - - ha-15-36-26-3 - attributes: - - color - - display_technology - pattern -- id: ha-15-36-27 - name: Sound Meters + - suitable_for_material_type +- id: ha-6-14-2-10 + name: Roofing Nails children: [] attributes: - color - - connection_method - - device_technology - - display_technology - - frequency_weighting - - pattern - - time_weighting -- id: ha-15-36-28 - name: Squares - children: - - ha-15-36-28-1 - - ha-15-36-28-2 - - ha-15-36-28-3 - attributes: - - color - - pattern + - fastener_finish - hardware_material -- id: ha-15-36-29 - name: Straight Edges - children: [] - attributes: - - color - pattern - - hardware_material -- id: ha-15-36-30 - name: Stud Sensors + - suitable_for_material_type +- id: ha-6-14-2-11 + name: Survey Nails children: [] attributes: - color - - device_technology - - display_technology + - fastener_finish + - hardware_material - pattern -- id: ha-15-36-31 - name: Tape Measures + - suitable_for_material_type +- id: ha-6-14-2-12 + name: Twist Nails children: [] attributes: - color - - display_technology - - housing_material + - fastener_finish + - hardware_material - pattern - - system_of_measurement -- id: ha-15-36-32 - name: Theodolites + - suitable_for_material_type +- id: ha-6-14-2-13 + name: Upholstery Nails children: [] attributes: - color - - device_technology - - display_technology + - fastener_finish + - hardware_material - pattern -- id: ha-15-36-33 - name: Thermal Imaging Cameras + - suitable_for_material_type +- id: ha-6-14-2-14 + name: Wire Nails children: [] attributes: - color - - display_resolution - - display_technology - - housing_material - - pattern - - thermal_detector_type -- id: ha-15-36-34 - name: Thermocouples & Thermopiles - children: - - ha-15-36-34-2 - - ha-15-36-34-1 - attributes: - - color - - display_technology - - pattern -- id: ha-15-36-35 - name: Transducers - children: - - ha-15-36-35-1 - - ha-15-36-35-2 - - ha-15-36-35-3 - attributes: - - color + - fastener_finish + - hardware_material - pattern -- id: ha-15-36-36 - name: UV Light Meters + - suitable_for_material_type +- id: ha-6-14-3 + name: Nuts & Bolts children: [] attributes: + - bolt_form - color - - device_technology - - display_technology - - pattern -- id: ha-15-36-37 - name: Vibration Meters - children: - - ha-15-36-37-1 - - ha-15-36-37-2 - attributes: - - color - - display_technology + - fastener_finish + - hardware_material + - nut_form - pattern - - power_source -- id: ha-15-36-38 - name: Weather Forecasters & Stations +- id: ha-6-14-4 + name: Rivets children: [] attributes: - color - - connection_method - - device_technology - - display_technology - - pattern -- id: ha-15-36-21 - name: PH Meters - children: - - ha-15-36-21-1 - - ha-15-36-21-2 - attributes: - - color - - display_technology - - pattern -- id: ha-15-37 - name: Milling Machines - children: - - ha-15-37-1 - - ha-15-37-2 - attributes: - - color + - fastener_finish + - hardware_material - pattern - - power_source -- id: ha-15-38 - name: Multifunction Power Tools + - rivet_form +- id: ha-6-14-5 + name: Screw Posts children: [] attributes: - color + - fastener_finish + - hardware_material - pattern - - power_source -- id: ha-15-39 - name: Nail Pullers + - suitable_for_material_type +- id: ha-6-14-6 + name: Screws children: - - ha-15-39-1 - - ha-15-39-2 + - ha-6-14-6-2 + - ha-6-14-6-3 + - ha-6-14-6-4 + - ha-6-14-6-6 + - ha-6-14-6-7 + - ha-6-14-6-8 + - ha-6-14-6-9 + - ha-6-14-6-10 + - ha-6-14-6-11 + - ha-6-14-6-12 + - ha-6-14-6-13 + - ha-6-14-6-14 + - ha-6-14-6-15 attributes: - color - - pattern + - fastener_finish - hardware_material -- id: ha-15-40 - name: Nailers & Staplers - children: - - ha-15-40-1 - - ha-15-40-2 - - ha-15-40-4 - - ha-15-40-3 - attributes: - - color - pattern - - power_source -- id: ha-15-41 - name: Oil Filter Drains + - suitable_for_material_type +- id: ha-6-14-6-2 + name: Deck Screws children: [] attributes: - color - - pattern + - fastener_finish - hardware_material -- id: ha-15-42 - name: Paint Tools - children: - - ha-15-42-1 - - ha-15-42-2 - - ha-15-42-3 - - ha-15-42-4 - - ha-15-42-5 - - ha-15-42-6 - - ha-15-42-7 - - ha-15-42-8 - - ha-15-42-9 - attributes: - - color - - pattern -- id: ha-15-42-1 - name: Airbrushes - children: [] - attributes: - - color - - feed_type - pattern -- id: ha-15-42-2 - name: Paint Brushes + - suitable_for_material_type +- id: ha-6-14-6-3 + name: Drywall Screws children: [] attributes: - - bristle_material - - color - - paint_brush_design - - pattern -- id: ha-15-42-3 - name: Paint Edgers - children: - - ha-15-42-3-1 - - ha-15-42-3-2 - attributes: - - color - - pattern - - hardware_material -- id: ha-15-42-4 - name: Paint Rollers - children: - - ha-15-42-4-1 - - ha-15-42-4-2 - - ha-15-42-4-3 - attributes: - - color - - pattern - - material -- id: ha-15-42-5 - name: Paint Shakers - children: - - ha-15-42-5-2 - - ha-15-42-5-1 - attributes: - color + - fastener_finish + - hardware_material - pattern -- id: ha-15-42-6 - name: Paint Sponges + - suitable_for_material_type +- id: ha-6-14-6-4 + name: Screw Eyes & Hooks children: [] attributes: - color - - pattern - - sponge_shape + - fastener_finish - hardware_material -- id: ha-15-42-7 - name: Paint Sprayers - children: - - ha-15-42-7-1 - - ha-15-42-7-2 - - ha-15-42-7-3 - attributes: - - color - pattern - - power_source -- id: ha-15-42-8 - name: Paint Strainers - children: - - ha-15-42-8-1 - - ha-15-42-8-2 + - suitable_for_material_type +- id: ha-6-14-6-6 + name: Lag Screws + children: [] attributes: - color - - pattern + - fastener_finish - hardware_material -- id: ha-15-42-9 - name: Paint Trays + - pattern + - suitable_for_material_type +- id: ha-6-14-6-7 + name: Machine Screws children: [] attributes: - color - - pattern + - fastener_finish - hardware_material -- id: ha-15-43 - name: Pickup Tools - children: - - ha-15-43-1 - - ha-15-43-2 - attributes: - - color - pattern -- id: ha-15-44 - name: Pipe & Bar Benders - children: - - ha-15-44-1 - - ha-15-44-2 + - suitable_for_material_type +- id: ha-6-14-6-8 + name: Masonry Screws + children: [] attributes: - color - - pattern + - fastener_finish - hardware_material -- id: ha-15-45 - name: Pipe & Tube Cleaners - children: - - ha-15-45-1 - - ha-15-45-2 - attributes: - - color - pattern - - power_source -- id: ha-15-46 - name: Pipe Brushes + - suitable_for_material_type +- id: ha-6-14-6-9 + name: Roofing Screws children: [] attributes: - color + - fastener_finish + - hardware_material - pattern - - brush_material -- id: ha-15-47 - name: Planers - children: - - ha-15-47-1 - - ha-15-47-2 + - suitable_for_material_type +- id: ha-6-14-6-10 + name: Self-Drilling Screws + children: [] attributes: - color + - fastener_finish + - hardware_material - pattern - - power_source -- id: ha-15-48 - name: Planes - children: - - ha-15-48-1 - - ha-15-48-2 - - ha-15-48-3 + - suitable_for_material_type +- id: ha-6-14-6-11 + name: Set Screws + children: [] attributes: - color - - pattern + - fastener_finish - hardware_material -- id: ha-15-49 - name: Pliers - children: - - ha-15-49-1 - - ha-15-49-2 - - ha-15-49-3 + - pattern + - suitable_for_material_type +- id: ha-6-14-6-12 + name: Sheet Metal Screws + children: [] attributes: - color - - pattern + - fastener_finish - hardware_material -- id: ha-15-50 - name: Plungers - children: - - ha-15-50-2 - - ha-15-50-3 - attributes: - pattern - - plunger_shape - - shaft_color - - shaft_material - - suction_cup_color - - suction_cup_material -- id: ha-15-51 - name: Polishers & Buffers - children: - - ha-15-51-1 - - ha-15-51-2 + - suitable_for_material_type +- id: ha-6-14-6-13 + name: Socket Screws + children: [] attributes: - color + - fastener_finish + - hardware_material - pattern - - power_source -- id: ha-15-52 - name: Post Hole Diggers - children: - - ha-15-52-1 - - ha-15-52-2 + - suitable_for_material_type +- id: ha-6-14-6-14 + name: Thumb Screws + children: [] attributes: - color + - fastener_finish + - hardware_material - pattern - - power_source -- id: ha-15-53 - name: Pry Bars + - suitable_for_material_type +- id: ha-6-14-6-15 + name: Wood Screws children: [] attributes: - color - - pattern + - fastener_finish - hardware_material -- id: ha-15-54 - name: Punches & Awls - children: - - ha-15-54-1 - - ha-15-54-2 - - ha-15-54-3 + - pattern + - suitable_for_material_type +- id: ha-6-14-7 + name: Threaded Rods + children: [] attributes: - color - - pattern + - fastener_finish - hardware_material -- id: ha-15-55 - name: Putty Knives & Scrapers - children: - - ha-15-55-1 - - ha-15-55-3 - - ha-15-55-2 + - pattern + - thread_direction + - threaded_rod_size +- id: ha-6-14-8 + name: Washers + children: [] attributes: - - blade_material - color - - handle_material + - fastener_finish + - hardware_material - pattern -- id: ha-15-56 - name: Reamers - children: - - ha-15-56-1 - - ha-15-56-2 + - washer_form +- id: ha-6-15 + name: Hinges + children: [] attributes: - color - - pattern + - door_application + - hardware_finish - hardware_material -- id: ha-15-57 - name: Riveting Tools + - pattern +- id: ha-6-16 + name: Hooks, Buckles & Fasteners children: - - ha-15-57-1 - - ha-15-57-2 + - ha-6-16-1 + - ha-6-16-2 + - ha-6-16-3 + - ha-6-16-4 attributes: - color + - hardware_material - pattern -- id: ha-15-57-1 - name: Rivet Guns - children: - - ha-15-57-1-1 - - ha-15-57-1-2 +- id: ha-6-16-1 + name: Chain Connectors & Links + children: [] attributes: - color + - connector_design + - hook_design + - hardware_material - pattern -- id: ha-15-57-2 - name: Rivet Pliers +- id: ha-6-16-2 + name: Gear Ties children: [] attributes: - color - - pattern - hardware_material -- id: ha-15-58 - name: Routing Tools + - pattern +- id: ha-6-16-3 + name: Lifting Hooks, Clamps & Shackles children: [] attributes: - color + - hardware_material - pattern - - power_source -- id: ha-15-59 - name: Sanders - children: - - ha-15-59-1 - - ha-15-59-2 - - ha-15-59-3 +- id: ha-6-16-4 + name: Utility Buckles + children: [] attributes: - color + - hardware_material - pattern - - power_source -- id: ha-15-60 - name: Sanding Blocks +- id: ha-6-17 + name: Lubrication Hoses children: [] attributes: - color - - material_firmness + - hose_material - pattern - - hardware_material -- id: ha-15-61 - name: Saw Horses +- id: ha-6-18 + name: Metal Casting Molds children: [] attributes: - color + - material + - metal_molding_application - pattern - - hardware_material -- id: ha-15-62 - name: Saws +- id: ha-6-19 + name: Moving & Soundproofing Blankets & Covers children: - - ha-15-62-1 - - ha-15-62-2 - - ha-15-62-3 - - ha-15-62-4 - - ha-15-62-5 - - ha-15-62-6 - - ha-15-62-7 - - ha-15-62-8 - - ha-15-62-9 - - ha-15-62-10 - - ha-15-62-11 + - ha-6-19-1 + - ha-6-19-2 attributes: - color + - cover_material - pattern - - suitable_for_material_type -- id: ha-15-62-1 - name: Band Saws +- id: ha-6-19-1 + name: Moving Blankets & Covers children: [] attributes: - color - - hardware_mounting_type + - cover_material - pattern - - power_source - - suitable_for_material_type -- id: ha-15-62-2 - name: Cut-Off Saws +- id: ha-6-19-2 + name: Soundproofing Blankets & Covers children: [] attributes: - color + - cover_material - pattern - - power_source - - suitable_for_material_type -- id: ha-15-62-3 - name: Hand Saws +- id: ha-6-20 + name: Pneumatic Hoses children: - - ha-15-62-3-1 - - ha-15-62-3-2 - - ha-15-62-3-3 + - ha-6-20-1 + - ha-6-20-2 attributes: - color + - hose_material - pattern - - suitable_for_material_type -- id: ha-15-62-4 - name: Handheld Circular Saws +- id: ha-6-20-1 + name: Air Pneumatic Hoses children: [] attributes: - color + - hose_material - pattern - - power_source - - suitable_for_material_type -- id: ha-15-62-5 - name: Jigsaws +- id: ha-6-20-2 + name: Oil Pneumatic Hoses children: [] attributes: - color + - hose_material - pattern - - power_source - - suitable_for_material_type -- id: ha-15-62-6 - name: Masonry & Tile Saws +- id: ha-6-21 + name: Post Base Plates children: [] attributes: - color + - material - pattern - - power_source - - suitable_for_material_type -- id: ha-15-62-7 - name: Miter Saws - children: [] +- id: ha-6-22 + name: Springs + children: + - ha-6-22-1 + - ha-6-22-2 + - ha-6-22-3 attributes: - - bevel_type - color + - hardware_material - pattern - - power_source - - suitable_for_material_type -- id: ha-15-62-8 - name: Panel Saws +- id: ha-6-22-1 + name: Compression Springs children: [] attributes: - color + - hardware_material - pattern - - power_source - - suitable_for_material_type -- id: ha-15-62-9 - name: Reciprocating Saws +- id: ha-6-22-2 + name: Extension Springs children: [] attributes: - color + - hardware_material - pattern - - power_source - - suitable_for_material_type -- id: ha-15-62-10 - name: Scroll Saws - children: - - ha-15-62-10-1 - - ha-15-62-10-2 +- id: ha-6-22-3 + name: Torsion Springs + children: [] attributes: - color + - hardware_material - pattern - - power_source - - suitable_for_material_type -- id: ha-15-62-11 - name: Table Saws +- id: ha-6-23 + name: Tarps children: [] attributes: - color + - material - pattern - - power_source - - suitable_for_material_type -- id: ha-15-63 - name: Screwdrivers +- id: ha-6-24 + name: Tool Storage & Organization children: - - ha-15-63-1 - - ha-15-63-2 - - ha-15-63-3 + - ha-6-24-1 + - ha-6-24-2 + - ha-6-24-3 + - ha-6-24-4 + - ha-6-24-5 + - ha-6-24-6 + - ha-6-24-7 + - ha-6-24-8 attributes: - color + - material - pattern - - hardware_material -- id: ha-15-64 - name: Shapers - children: [] +- id: ha-6-24-1 + name: Garden Hose Storage + children: + - ha-6-24-1-1 + - ha-6-24-1-2 + - ha-6-24-1-3 attributes: - color + - material - pattern - - power_source - - suitable_for_material_type -- id: ha-15-65 - name: Sharpeners +- id: ha-6-24-1-1 + name: Hose Hangers children: [] attributes: - color + - material - pattern -- id: ha-15-66 - name: Socket Drivers +- id: ha-6-24-1-2 + name: Hose Pots children: [] attributes: - color + - material - pattern - - socket_driver_tip - - tool_operation - - hardware_material -- id: ha-15-67 - name: Soldering Irons +- id: ha-6-24-1-3 + name: Hose Reels children: [] attributes: - color + - material - pattern - - power_source -- id: ha-15-68 - name: Tap Reseaters +- id: ha-6-24-2 + name: Tool & Equipment Belts children: - - ha-15-68-1 - - ha-15-68-2 + - ha-6-24-2-1 + - ha-6-24-2-2 + - ha-6-24-2-3 attributes: - color + - clothing_accessory_material - pattern -- id: ha-15-69 - name: Taps & Dies - children: - - ha-15-69-1 - - ha-15-69-2 - - ha-15-69-3 +- id: ha-6-24-2-1 + name: Carpenter Belts + children: [] attributes: - color + - clothing_accessory_material - pattern - - hardware_material -- id: ha-15-70 - name: Threading Machines +- id: ha-6-24-2-2 + name: Electrician Belts children: [] attributes: - color + - clothing_accessory_material - pattern - - power_source -- id: ha-15-71 - name: Tool Clamps & Vises +- id: ha-6-24-2-3 + name: Framer Belts + children: [] + attributes: + - color + - clothing_accessory_material + - pattern +- id: ha-6-24-3 + name: Tool Bags + children: [] + attributes: + - color + - lock_type + - bag_case_material + - pattern +- id: ha-6-24-4 + name: Tool Boxes children: - - ha-15-71-1 - - ha-15-71-2 - - ha-15-71-3 + - ha-6-24-4-1 + - ha-6-24-4-2 + - ha-6-24-4-3 attributes: - color + - lock_type + - material - pattern - - hardware_material -- id: ha-15-72 - name: Tool Files +- id: ha-6-24-4-1 + name: Hand Carry Tool Boxes children: [] attributes: - color + - lock_type + - material - pattern - - hardware_material -- id: ha-15-73 - name: Tool Keys +- id: ha-6-24-4-2 + name: Rolling Tool Boxes children: [] attributes: - color + - lock_type + - material - pattern - - tool_key_tip - - hardware_material -- id: ha-15-74 - name: Tool Knives +- id: ha-6-24-4-3 + name: Truck Tool Boxes children: [] attributes: - color + - lock_type + - material - pattern - - hardware_material -- id: ha-15-75 - name: Tool Sets +- id: ha-6-24-5 + name: Tool Cabinets & Chests children: - - ha-15-75-1 - - ha-15-75-2 + - ha-6-24-5-1 + - ha-6-24-5-2 attributes: - color + - material - pattern -- id: ha-15-75-1 - name: Hand Tool Sets - children: - - ha-15-75-1-1 - - ha-15-75-1-2 - - ha-15-75-1-3 +- id: ha-6-24-5-1 + name: Rolling Cabinets & Chests + children: [] + attributes: + - color + - material + - pattern +- id: ha-6-24-5-2 + name: Stationary Cabinets & Chests + children: [] attributes: - color + - material - pattern -- id: ha-15-75-2 - name: Power Tool Combo Sets - children: [] +- id: ha-6-24-6 + name: Tool Organizer Liners & Inserts + children: + - ha-6-24-6-1 + - ha-6-24-6-2 attributes: - color + - hardware_mounting_type + - material - pattern - - power_source -- id: ha-15-77 - name: Welding Guns & Plasma Cutters - children: - - ha-15-77-1 - - ha-15-77-2 - - ha-15-77-3 +- id: ha-6-24-6-1 + name: Drawer Liners + children: [] attributes: - color + - hardware_mounting_type + - material - pattern - - power_source -- id: ha-15-78 - name: Wire & Cable Hand Tools - children: - - ha-15-78-1 - - ha-15-78-2 - - ha-15-78-3 +- id: ha-6-24-6-2 + name: Tool Box Inserts + children: [] attributes: - color + - hardware_mounting_type + - material - pattern - - hardware_material -- id: ha-15-79 - name: Work Lights +- id: ha-6-24-7 + name: Tool Sheaths children: [] attributes: - - bulb_type - color + - material - pattern - - power_source -- id: ha-15-80 - name: Wrenches +- id: ha-6-24-8 + name: Work Benches children: - - ha-15-80-1 - - ha-15-80-2 - - ha-15-80-3 + - ha-6-24-8-1 + - ha-6-24-8-2 attributes: - color + - material - pattern - - hardware_material -- id: ha-1-3-1 - name: Duct Tape +- id: ha-6-24-8-1 + name: Mobile Work Benches children: [] attributes: - color + - material - pattern - - suitable_space -- id: ha-1-3-2 - name: Electrical Tape +- id: ha-6-24-8-2 + name: Stationary Work Benches children: [] attributes: - color + - material - pattern - - suitable_space -- id: ha-1-3-3 - name: Masking Tape +- id: ha-6-25 + name: Wall Jacks & Braces children: [] attributes: - color + - material - pattern - - suitable_space -- id: ha-1-4-1 - name: Dry Lubricants - children: [] +- id: ha-7 + name: Hardware Pumps + children: + - ha-7-1 + - ha-7-2 + - ha-7-3 + - ha-7-4 + - ha-7-5 + - ha-7-6 attributes: - color - - lubricant_dispenser_type - pattern - - suitable_for_material_type -- id: ha-1-4-2 - name: Grease - children: [] +- id: ha-7-1 + name: Home Appliance Pumps + children: + - ha-7-1-1 + - ha-7-1-2 + - ha-7-1-3 attributes: - color - - lubricant_dispenser_type + - hardware_material - pattern - - suitable_for_material_type -- id: ha-1-4-4 - name: Oil + - power_source +- id: ha-7-1-1 + name: Condensate Pumps children: [] attributes: - color - - lubricant_dispenser_type + - hardware_material - pattern - - suitable_for_material_type -- id: ha-1-5-2-1 - name: Cement + - power_source +- id: ha-7-1-2 + name: Drain Pumps children: [] attributes: - color - - masonry_product_form + - hardware_material - pattern - - suitable_for_material_type - - suitable_space -- id: ha-1-5-2-4 - name: Concrete Mixes + - power_source +- id: ha-7-1-3 + name: Recirculating Pumps children: [] attributes: - color - - masonry_product_form + - hardware_material - pattern - - suitable_for_material_type - - suitable_space -- id: ha-1-5-2-2 - name: Firestop Mortar - children: [] + - power_source +- id: ha-7-2 + name: Pool, Fountain & Pond Pumps + children: + - ha-7-2-1 + - ha-7-2-2 + - ha-7-2-3 attributes: - color - - masonry_product_form + - hardware_material - pattern - - suitable_for_material_type - - suitable_space -- id: ha-1-5-2-3 - name: Mortar Mixes + - power_source +- id: ha-7-2-1 + name: Fountain Pumps children: [] attributes: - color - - masonry_product_form + - hardware_material - pattern - - suitable_for_material_type - - suitable_space -- id: ha-1-5-2-5 - name: Polymer-Modified Mortar + - power_source +- id: ha-7-2-2 + name: Pond Pumps children: [] attributes: - color - - masonry_product_form + - hardware_material - pattern - - suitable_for_material_type - - suitable_space -- id: ha-1-5-2-6 - name: Pozzolanic Mortar + - power_source +- id: ha-7-2-3 + name: Pool Pumps children: [] attributes: - color - - masonry_product_form + - hardware_material - pattern - - suitable_for_material_type - - suitable_space -- id: ha-1-5-2-7 - name: Surkhi Mortar - children: [] + - power_source +- id: ha-7-3 + name: Sprinkler, Booster & Irrigation System Pumps + children: + - ha-7-3-1 + - ha-7-3-2 + - ha-7-3-5 attributes: - color - - masonry_product_form + - hardware_material - pattern - - suitable_for_material_type - - suitable_space -- id: ha-1-8-1 - name: Concrete Sealers + - power_source + - suitable_for_water_feature_type +- id: ha-7-3-1 + name: Booster Pumps children: [] attributes: - - coating_sealant_application - color + - hardware_material - pattern - - suitable_for_material_type - - suitable_space -- id: ha-1-8-2 - name: Protective Coatings + - power_source + - suitable_for_water_feature_type +- id: ha-7-3-2 + name: Centrifugal Pumps children: [] attributes: - - coating_sealant_application - color + - hardware_material - pattern - - suitable_for_material_type - - suitable_space -- id: ha-1-8-3 - name: Roll Roofing Glue + - power_source + - suitable_for_water_feature_type +- id: ha-7-3-5 + name: Positive Displacement Pumps children: [] attributes: - - coating_sealant_application - color + - hardware_material - pattern - - suitable_for_material_type - - suitable_space -- id: ha-1-8-4 - name: Roof Sealants - children: [] + - power_source + - suitable_for_water_feature_type +- id: ha-7-4 + name: Sump, Sewage & Effluent Pumps + children: + - ha-7-4-1 + - ha-7-4-2 + - ha-7-4-3 attributes: - - coating_sealant_application - color + - hardware_material - pattern - - suitable_for_material_type - - suitable_space -- id: ha-1-8-5 - name: Rust Prevention Coatings + - power_source +- id: ha-7-4-1 + name: Effluent Pumps children: [] attributes: - - coating_sealant_application - color + - hardware_material - pattern - - suitable_for_material_type - - suitable_space -- id: ha-1-8-6 - name: Waterproofing Coatings + - power_source +- id: ha-7-4-2 + name: Sewage Pumps children: [] attributes: - - coating_sealant_application - color + - hardware_material - pattern - - suitable_for_material_type - - suitable_space -- id: ha-1-9-1 - name: Lead-Based Solder + - power_source +- id: ha-7-4-3 + name: Sump Pumps children: [] attributes: - color + - hardware_material - pattern - - solder_flux_application -- id: ha-1-9-2 - name: Lead-Free Solder - children: [] + - power_source +- id: ha-7-5 + name: Utility Pumps + children: + - ha-7-5-1 + - ha-7-5-2 + - ha-7-5-3 attributes: - color + - hardware_material - pattern - - solder_flux_application -- id: ha-1-9-3 - name: Rosin Flux + - power_source +- id: ha-7-5-1 + name: Drum Pumps children: [] attributes: - color + - hardware_material - pattern - - solder_flux_application -- id: ha-1-10-1 - name: Solvents + - power_source +- id: ha-7-5-2 + name: Submersible Pumps children: [] attributes: - color + - hardware_material - pattern - - solvent_application - - suitable_space -- id: ha-1-10-3 - name: Strippers + - power_source +- id: ha-7-5-3 + name: Transfer Pumps children: [] attributes: - color + - hardware_material - pattern - - stripper_application - - suitable_space -- id: ha-1-10-2 - name: Thinners + - power_source +- id: ha-7-6 + name: Well Pumps & Systems children: [] attributes: - color + - hardware_material - pattern - - suitable_space - - thinner_application -- id: ha-1-11-1 - name: Cement Plaster - children: [] + - power_source +- id: ha-8 + name: Heating, Ventilation & Air Conditioning + children: + - ha-8-1 + - ha-8-2 + - ha-8-3 + - ha-8-4 attributes: - - building_consumable_form - color - pattern - - product_formulation - - suitable_for_material_type - - suitable_space - - wall_patching_application -- id: ha-1-11-2 - name: Gypsum Plaster +- id: ha-8-1 + name: Air & Filter Dryers children: [] attributes: - - building_consumable_form - color + - dryer_technology + - material - pattern - - product_formulation - - suitable_for_material_type - - suitable_space - - wall_patching_application -- id: ha-1-11-3 - name: Heat Resistant Plaster + - power_source +- id: ha-8-2 + name: Air Ducts children: [] attributes: - - building_consumable_form - color + - duct_shape + - material - pattern - - product_formulation - - suitable_for_material_type - - suitable_space - - wall_patching_application -- id: ha-1-11-4 - name: Joint Compounds - children: [] +- id: ha-8-3 + name: HVAC Controls + children: + - ha-8-3-1 + - ha-8-3-2 + - ha-8-3-3 attributes: - - building_consumable_form - - color + - housing_color + - hvac_control_type - pattern - - product_formulation - - suitable_for_material_type - - suitable_space - - wall_patching_application -- id: ha-1-11-5 - name: Lime Plaster + - power_source +- id: ha-8-3-1 + name: Control Panels children: [] attributes: - - building_consumable_form - - color + - housing_color + - hvac_control_type - pattern - - product_formulation - - suitable_for_material_type - - suitable_space - - wall_patching_application -- id: ha-1-11-6 - name: Polymer Dispersion Plaster + - power_source +- id: ha-8-3-2 + name: Humidistats children: [] attributes: - - building_consumable_form - - color + - housing_color + - hvac_control_type - pattern - - product_formulation - - suitable_for_material_type - - suitable_space - - wall_patching_application -- id: ha-1-11-7 - name: Polyurethane Alkyds + - power_source +- id: ha-8-3-3 + name: Thermostats children: [] attributes: - - building_consumable_form - - color + - display_technology + - housing_color + - hvac_control_type - pattern - - product_formulation - - suitable_for_material_type - - suitable_space - - wall_patching_application -- id: ha-1-11-8 - name: Polyurethane Dispersions + - power_source +- id: ha-8-4 + name: Vents & Flues children: [] attributes: - - building_consumable_form - color + - material - pattern - - product_formulation - - suitable_for_material_type - - suitable_space - - wall_patching_application -- id: ha-1-11-9 - name: Spackling Paste - children: [] +- id: ha-9 + name: Locks & Keys + children: + - ha-9-1 + - ha-9-2 + - ha-9-3 + - ha-9-4 attributes: - - building_consumable_form - color - pattern - - product_formulation - - suitable_for_material_type - - suitable_space - - wall_patching_application -- id: ha-2-2-9-1 - name: Deadbolt Strikes +- id: ha-9-1 + name: Key Blanks children: [] attributes: - color + - key_purpose + - material - pattern - - hardware_material -- id: ha-2-2-9-2 - name: Latch Strikes +- id: ha-9-2 + name: Key Caps children: [] attributes: - color + - material - pattern - - hardware_material -- id: ha-2-3-1-1 - name: Roll-Up Garage Doors - children: [] +- id: ha-9-3 + name: Key Card Entry Systems + children: + - ha-9-3-1 + - ha-9-3-3 attributes: - color - pattern - recommended_use - - garage_door_material -- id: ha-2-3-1-2 - name: Sectional Garage Doors +- id: ha-9-3-1 + name: Magnetic Stripe Cards children: [] attributes: - color - pattern - recommended_use - - garage_door_material -- id: ha-2-3-1-3 - name: Side Hinged Garage Doors +- id: ha-9-3-3 + name: Contactless Cards children: [] attributes: - color - pattern - recommended_use - - garage_door_material -- id: ha-2-6-1 - name: Float Glass - children: [] +- id: ha-9-4 + name: Locks & Latches + children: + - ha-9-4-1 + - ha-9-4-2 + - ha-9-4-3 + - ha-9-4-5 attributes: - color + - material - pattern -- id: ha-2-6-2 - name: Insulated Glass + - security_level +- id: ha-9-4-1 + name: Barrel Bolts children: [] attributes: - color + - material - pattern -- id: ha-2-6-3 - name: Laminated Glass + - security_level +- id: ha-9-4-2 + name: Cam Locks children: [] attributes: - color + - material - pattern -- id: ha-2-6-4 - name: Tempered Glass + - security_level +- id: ha-9-4-3 + name: Deadbolts children: [] attributes: - color + - material - pattern -- id: ha-2-7-1 - name: Guardrails + - security_level +- id: ha-9-4-5 + name: Latches children: [] attributes: - color - material - pattern -- id: ha-2-7-2 - name: Handrails - children: [] + - security_level +- id: ha-10 + name: Plumbing + children: + - ha-10-1 + - ha-10-2 + - ha-10-3 + - ha-10-4 + - ha-10-5 + - ha-10-6 + - ha-10-7 + - ha-10-8 + - ha-10-9 + - ha-10-10 + attributes: + - color + - pattern +- id: ha-10-1 + name: Plumbing Fittings & Supports + children: + - ha-10-1-1 + - ha-10-1-2 + - ha-10-1-3 + - ha-10-1-4 + - ha-10-1-5 + - ha-10-1-6 + - ha-10-1-7 + - ha-10-1-8 + - ha-10-1-9 + - ha-10-1-10 attributes: - color - material - pattern -- id: ha-2-9-1 - name: Batt Insulation +- id: ha-10-1-1 + name: Gaskets & O-Rings children: [] attributes: - color + - material - pattern - - insulation_material -- id: ha-2-9-2 - name: Blown-In Insulation - children: [] +- id: ha-10-1-2 + name: In-Wall Carriers & Mounting Frames + children: + - ha-10-1-2-1 + - ha-10-1-2-2 attributes: - color + - material - pattern - - insulation_material -- id: ha-2-9-3 - name: Foam Board Insulation +- id: ha-10-1-2-1 + name: In-Wall Carriers children: [] attributes: - color + - material - pattern - - insulation_material -- id: ha-2-9-4 - name: Loose-Fill Insulation +- id: ha-10-1-2-2 + name: Mounting Frames children: [] attributes: - color + - material - pattern - - insulation_material -- id: ha-2-9-5 - name: Roll Insulation +- id: ha-10-1-3 + name: Nozzles children: [] attributes: - color + - material - pattern - - insulation_material -- id: ha-2-9-6 - name: Spray Foam Insulation - children: [] +- id: ha-10-1-4 + name: Pipe Adapters & Bushings + children: + - ha-10-1-4-1 + - ha-10-1-4-2 attributes: - color + - material - pattern - - insulation_material -- id: ha-2-10-1 - name: Hardwood Lumber +- id: ha-10-1-4-1 + name: Adapters children: [] attributes: - color - - hardwood_lumber_grade + - material - pattern - - lumber_wood_type -- id: ha-2-10-2 - name: Plywood +- id: ha-10-1-4-2 + name: Bushings children: [] attributes: - color + - material - pattern - - plywood_grade - - lumber_wood_type -- id: ha-2-10-3 - name: Softwood Lumber - children: [] +- id: ha-10-1-5 + name: Pipe Caps & Plugs + children: + - ha-10-1-5-1 + - ha-10-1-5-2 attributes: - color + - material - pattern - - softwood_lumber_grade - - lumber_wood_type -- id: ha-2-12-1 - name: Rebar +- id: ha-10-1-5-1 + name: Caps children: [] attributes: - color + - material - pattern -- id: ha-2-12-2 - name: Remesh +- id: ha-10-1-5-2 + name: Plugs children: [] attributes: - color + - material - pattern -- id: ha-2-12-3 - name: Wire Mesh - children: [] +- id: ha-10-1-6 + name: Pipe Connectors + children: + - ha-10-1-6-1 + - ha-10-1-6-2 attributes: - color + - material - pattern -- id: ha-2-13-3-1 - name: Drip Edges +- id: ha-10-1-6-1 + name: Couplings children: [] attributes: - color + - material - pattern - - flashing_material -- id: ha-2-13-3-2 - name: Pipe Boots +- id: ha-10-1-6-2 + name: Unions children: [] attributes: - color + - material - pattern - - flashing_material -- id: ha-2-13-3-3 - name: Step Flashings +- id: ha-10-1-7 + name: Plumbing Flanges children: [] attributes: - color + - material - pattern - - flashing_material -- id: ha-2-13-3-4 - name: Valley Flashings +- id: ha-10-1-8 + name: Plumbing Pipe Clamps children: [] attributes: - color + - material - pattern - - flashing_material -- id: ha-2-13-4-1 - name: 3-Tab Shingles - children: [] + - pipe_clamp_design +- id: ha-10-1-9 + name: Plumbing Regulators + children: + - ha-10-1-9-1 + - ha-10-1-9-2 attributes: - color + - material - pattern - - shingle_tile_material -- id: ha-2-13-4-2 - name: Architectural Shingles +- id: ha-10-1-9-1 + name: Pressure Regulators children: [] attributes: - color + - material - pattern - - shingle_tile_material -- id: ha-2-13-4-3 - name: Shake-Style Shingles +- id: ha-10-1-9-2 + name: Temperature Regulators children: [] attributes: - color + - material - pattern - - shingle_tile_material -- id: ha-2-14-1 - name: Board & Batten Shutters - children: [] +- id: ha-10-1-10 + name: Plumbing Valves + children: + - ha-10-1-10-1 + - ha-10-1-10-2 + - ha-10-1-10-3 + - ha-10-1-10-4 + - ha-10-1-10-5 attributes: - color - material - pattern - - shutter_finish -- id: ha-2-14-2 - name: Louvered Shutters +- id: ha-10-1-10-1 + name: Ball Valves children: [] attributes: - color - material - pattern - - shutter_finish -- id: ha-2-14-3 - name: Raised Panel Shutters +- id: ha-10-1-10-2 + name: Check Valves children: [] attributes: - color - material - pattern - - shutter_finish -- id: ha-2-16-1 - name: Acoustic Panels +- id: ha-10-1-10-3 + name: Gate Valves children: [] attributes: - color + - material - pattern -- id: ha-2-16-2 - name: Bass Traps +- id: ha-10-1-10-4 + name: Globe Valves children: [] attributes: - color + - material - pattern -- id: ha-2-16-3 - name: Diffusers +- id: ha-10-1-10-5 + name: Pressure Relief Valves children: [] attributes: - color + - material - pattern -- id: ha-2-16-4 - name: Foam Tiles - children: [] +- id: ha-10-2 + name: Plumbing Fixture Hardware & Parts + children: + - ha-10-2-1 + - ha-10-2-2 + - ha-10-2-3 + - ha-10-2-4 + - ha-10-2-5 + - ha-10-2-6 + - ha-10-2-7 + - ha-10-2-8 attributes: - color + - hardware_material - pattern -- id: ha-2-17-1 - name: Curved Staircases - children: [] +- id: ha-10-2-1 + name: Bathtub Accessories + children: + - ha-10-2-1-1 + - ha-10-2-1-2 + - ha-10-2-1-3 attributes: - color - material - pattern - - suitable_space -- id: ha-2-17-2 - name: Floating Staircases +- id: ha-10-2-1-1 + name: Bathtub Bases & Feet children: [] attributes: + - bathtub_base_design - color - material - pattern - - suitable_space -- id: ha-2-17-3 - name: Spiral Staircases +- id: ha-10-2-1-2 + name: Bathtub Skirts children: [] attributes: + - bathtub_skirt_shape - color - material - pattern - - suitable_space -- id: ha-2-17-4 - name: Straight Staircases - children: [] +- id: ha-10-2-1-3 + name: Bathtub Spouts + children: + - ha-10-2-1-3-1 + - ha-10-2-1-3-2 attributes: - color - material - pattern - - suitable_space -- id: ha-2-17-5 - name: Winder Staircases +- id: ha-10-2-1-3-1 + name: Diverter Spouts children: [] attributes: - color - material - pattern - - suitable_space -- id: ha-2-18-1 - name: Ceiling Tiles +- id: ha-10-2-1-3-2 + name: Non-Diverter Spouts children: [] attributes: - color - - installation_method + - material - pattern - - tile_look - - tile_texture - - tile_material -- id: ha-2-18-2 - name: Wall Tiles - children: [] +- id: ha-10-2-2 + name: Drain Components + children: + - ha-10-2-2-1 + - ha-10-2-2-2 + - ha-10-2-2-3 + - ha-10-2-2-4 + - ha-10-2-2-5 + - ha-10-2-2-6 + - ha-10-2-2-7 attributes: - - color - - installation_method - - pattern - - tile_design - - tile_look - - tile_material -- id: ha-2-19-1 - name: Beadboards - children: [] + - color + - hardware_material + - pattern +- id: ha-10-2-2-1 + name: Drain Covers & Strainers + children: + - ha-10-2-2-1-1 + - ha-10-2-2-1-2 attributes: - color + - material - pattern - - building_board_material -- id: ha-2-19-2 - name: Board & Batten Paneling +- id: ha-10-2-2-1-1 + name: Drain Covers children: [] attributes: - color + - material - pattern - - building_board_material -- id: ha-2-19-3 - name: Planks +- id: ha-10-2-2-1-2 + name: Drain Strainers children: [] attributes: - color + - material - pattern - - building_board_material -- id: ha-2-19-4 - name: Wainscoting Paneling +- id: ha-10-2-2-2 + name: Drain Frames children: [] attributes: - color + - hardware_material - pattern - - building_board_material -- id: ha-2-20-1 - name: Door Sweeps +- id: ha-10-2-2-3 + name: Drain Liners children: [] attributes: - color - - material + - hardware_material - pattern - - weatherization_application -- id: ha-2-20-2 - name: Foam Tape +- id: ha-10-2-2-4 + name: Drain Openers children: [] attributes: - color + - hardware_material - pattern - - weatherization_application -- id: ha-2-20-3 - name: V Strips + - recommended_use +- id: ha-10-2-2-5 + name: Drain Rods children: [] attributes: - color - - material + - hardware_material - pattern - - weather_strip_design - - weatherization_application -- id: ha-2-20-4 - name: Weatherstrip Seal +- id: ha-10-2-2-6 + name: Plumbing Traps children: [] attributes: - color - - material + - hardware_material - pattern - - weatherization_application -- id: ha-2-21-2-1 - name: Awning Window Frames + - plumbing_trap_design +- id: ha-10-2-2-7 + name: Plumbing Wastes children: [] attributes: - color - - material + - hardware_material - pattern -- id: ha-2-21-2-2 - name: Casement Window Frames - children: [] +- id: ha-10-2-3 + name: Drains + children: + - ha-10-2-3-1 + - ha-10-2-3-2 + - ha-10-2-3-3 attributes: - color - - material + - hardware_material - pattern -- id: ha-2-21-2-3 - name: Double Hung Window Frames +- id: ha-10-2-3-1 + name: Floor Drains children: [] attributes: - color - - material + - hardware_material - pattern -- id: ha-2-21-2-4 - name: Picture Window Frames +- id: ha-10-2-3-2 + name: Shower Drains children: [] attributes: - color - - material + - hardware_material - pattern -- id: ha-2-21-2-5 - name: Sliding Window Frames +- id: ha-10-2-3-3 + name: Sink Drains children: [] attributes: - color - - material + - hardware_material - pattern -- id: ha-2-22-1 - name: Awning Windows - children: [] +- id: ha-10-2-4 + name: Faucet Accessories + children: + - ha-10-2-4-1 + - ha-10-2-4-2 attributes: - color - - glazing_type + - connecting_thread - material - pattern -- id: ha-2-22-2 - name: Bay Windows +- id: ha-10-2-4-1 + name: Faucet Aerators children: [] attributes: - color - - glazing_type + - connecting_thread + - faucet_thread - material - pattern -- id: ha-2-22-3 - name: Casement Windows - children: [] +- id: ha-10-2-4-2 + name: Faucet Handles & Controls + children: + - ha-10-2-4-2-1 + - ha-10-2-4-2-2 + - ha-10-2-4-2-3 attributes: - color - - glazing_type - - material + - connecting_thread + - handle_material - pattern -- id: ha-2-22-4 - name: Double Hung Windows +- id: ha-10-2-4-2-1 + name: Cross Handles children: [] attributes: - color - - glazing_type - - material + - connecting_thread + - handle_material - pattern -- id: ha-2-22-5 - name: Picture Windows +- id: ha-10-2-4-2-2 + name: Knob Handles children: [] attributes: - color - - glazing_type - - material + - connecting_thread + - handle_material - pattern -- id: ha-2-22-6 - name: Sliding Windows +- id: ha-10-2-4-2-3 + name: Lever Handles children: [] attributes: - color - - glazing_type - - material + - connecting_thread + - handle_material - pattern -- id: ha-3-2-1 - name: Decorative Panels - children: [] +- id: ha-10-2-5 + name: Fixture Plates + children: + - ha-10-2-5-1 + - ha-10-2-5-2 + - ha-10-2-5-3 attributes: - color - - fencing_components + - hardware_material - pattern - - furniture_fixture_material -- id: ha-3-2-2 - name: Pickets +- id: ha-10-2-5-1 + name: Cover Plates children: [] attributes: - color - - fencing_components + - hardware_material - pattern - - furniture_fixture_material -- id: ha-3-2-3 - name: Privacy Panels +- id: ha-10-2-5-2 + name: Escutcheon Plates children: [] attributes: - color - - fencing_components + - hardware_material - pattern - - furniture_fixture_material -- id: ha-3-2-4 - name: Security Panels +- id: ha-10-2-5-3 + name: Flange Plates children: [] attributes: - color - - fencing_components + - hardware_material - pattern - - furniture_fixture_material -- id: ha-3-4-1 - name: End Posts - children: [] +- id: ha-10-2-6 + name: Shower Parts + children: + - ha-10-2-6-1 + - ha-10-2-6-2 + - ha-10-2-6-3 + - ha-10-2-6-4 + - ha-10-2-6-5 + - ha-10-2-6-6 + - ha-10-2-6-7 + - ha-10-2-6-8 + - ha-10-2-6-9 attributes: - color + - hardware_material - pattern - - furniture_fixture_material -- id: ha-3-4-2 - name: Line Posts - children: [] +- id: ha-10-2-6-1 + name: Bathtub & Shower Jets + children: + - ha-10-2-6-1-1 + - ha-10-2-6-1-2 attributes: - color + - drain_location + - hardware_material - pattern - - furniture_fixture_material -- id: ha-3-4-3 - name: Rails + - shape +- id: ha-10-2-6-1-1 + name: Body Jets children: [] attributes: - color + - drain_location + - hardware_material - pattern - - furniture_fixture_material -- id: ha-3-5-1 - name: Border Fences + - shape +- id: ha-10-2-6-1-2 + name: Whirlpool Jets children: [] attributes: - color + - drain_location + - hardware_material - pattern - - furniture_fixture_material -- id: ha-3-5-2 - name: Edging - children: [] + - shape +- id: ha-10-2-6-2 + name: Electric & Power Showers + children: + - ha-10-2-6-2-1 + - ha-10-2-6-2-2 attributes: - color - - material + - hardware_material - pattern -- id: ha-3-6-1 - name: Driveway Gates + - power_source +- id: ha-10-2-6-2-1 + name: Mixer Showers children: [] attributes: - color - - material + - hardware_material - pattern -- id: ha-3-6-2 - name: Garden Gates + - power_source +- id: ha-10-2-6-2-2 + name: Power Showers children: [] attributes: - color - - material + - hardware_material - pattern -- id: ha-3-6-3 - name: Security Gates - children: [] + - power_source +- id: ha-10-2-6-3 + name: Shower Arms & Connectors + children: + - ha-10-2-6-3-1 + - ha-10-2-6-3-2 attributes: - color - - material + - connecting_thread + - hardware_material - pattern -- id: ha-3-8-1 - name: Articulating Panels +- id: ha-10-2-6-3-1 + name: Shower Arms children: [] attributes: - color - - material + - connecting_thread + - hardware_material - pattern -- id: ha-3-8-2 - name: Auto Barriers +- id: ha-10-2-6-3-2 + name: Shower Connectors children: [] attributes: - color - - material + - connecting_thread + - hardware_material - pattern -- id: ha-3-8-3 - name: Parking Locks +- id: ha-10-2-6-4 + name: Shower Bases children: [] attributes: - color - - material + - hardware_material - pattern -- id: ha-3-8-4 - name: Retractable Belts + - shower_base_design +- id: ha-10-2-6-5 + name: Shower Columns children: [] attributes: - color - - material + - hardware_material - pattern -- id: ha-5-1 - name: Diesel Cans - children: [] +- id: ha-10-2-6-6 + name: Shower Doors & Enclosures + children: + - ha-10-2-6-6-1 + - ha-10-2-6-6-2 + - ha-10-2-6-6-3 attributes: - color - - material + - furniture_fixture_material - pattern - - recommended_use -- id: ha-5-2 - name: Fuel Transfer Tanks +- id: ha-10-2-6-6-1 + name: Hinged Doors children: [] attributes: - color - - material + - furniture_fixture_material - pattern - - recommended_use -- id: ha-5-3 - name: Gas Cans +- id: ha-10-2-6-6-2 + name: Pivot Doors children: [] attributes: - color - - material + - furniture_fixture_material - pattern - - recommended_use -- id: ha-5-4 - name: Kerosene Cans +- id: ha-10-2-6-6-3 + name: Sliding Doors children: [] attributes: - color - - material + - furniture_fixture_material - pattern - - recommended_use -- id: ha-5-5 - name: Propane Tanks - children: [] +- id: ha-10-2-6-7 + name: Shower Heads + children: + - ha-10-2-6-7-1 + - ha-10-2-6-7-2 attributes: - color - - material + - hardware_material - pattern - - recommended_use -- id: ha-6-5-1 - name: Compression Coils +- id: ha-10-2-6-7-1 + name: Fixed Shower Heads children: [] attributes: - color - - pattern - hardware_material -- id: ha-6-5-2 - name: Extension Coils + - pattern +- id: ha-10-2-6-7-2 + name: Handheld Shower Heads children: [] attributes: - color - - pattern - hardware_material -- id: ha-6-5-3 - name: Torsion Coils - children: [] + - pattern +- id: ha-10-2-6-8 + name: Shower Walls & Surrounds + children: + - ha-10-2-6-8-1 + - ha-10-2-6-8-2 attributes: - color - - pattern - hardware_material -- id: ha-6-11-1 - name: Barricade Tape + - pattern +- id: ha-10-2-6-8-1 + name: Shower Surrounds children: [] attributes: - color + - hardware_material - pattern - - tape_material -- id: ha-6-11-2 - name: Flagging Tape +- id: ha-10-2-6-8-2 + name: Shower Walls children: [] attributes: - color + - hardware_material - pattern - - tape_material -- id: ha-6-11-3 - name: Marking Tape +- id: ha-10-2-6-9 + name: Shower Water Filters children: [] attributes: - color + - hardware_material - pattern - - tape_material -- id: ha-6-14-2-1 - name: Boat Nails - children: [] +- id: ha-10-2-7 + name: Sink Accessories + children: + - ha-10-2-7-1 attributes: - color - - fastener_finish + - material - pattern - - suitable_for_material_type - - hardware_material -- id: ha-6-14-2-2 - name: Brad Nails +- id: ha-10-2-7-1 + name: Sink Legs children: [] attributes: - color - - fastener_finish + - material - pattern - - suitable_for_material_type - - hardware_material -- id: ha-6-14-2-3 - name: Cap Nails - children: [] +- id: ha-10-2-8 + name: Toilet & Bidet Accessories + children: + - ha-10-2-8-1 + - ha-10-2-8-2 + - ha-10-2-8-3 + - ha-10-2-8-4 + - ha-10-2-8-5 + - ha-10-2-8-6 + - ha-10-2-8-7 + - ha-10-2-8-8 + - ha-10-2-8-9 attributes: - color - - fastener_finish + - material - pattern - - suitable_for_material_type - - hardware_material -- id: ha-6-14-2-4 - name: Decorative Nails - children: [] +- id: ha-10-2-8-1 + name: Ballcocks & Flappers + children: + - ha-10-2-8-1-1 + - ha-10-2-8-1-2 attributes: - color - - fastener_finish + - material - pattern - - suitable_for_material_type - - hardware_material -- id: ha-6-14-2-5 - name: Fiber Cement Nails +- id: ha-10-2-8-1-1 + name: Ballcocks children: [] attributes: - color - - fastener_finish + - material - pattern - - suitable_for_material_type - - hardware_material -- id: ha-6-14-2-6 - name: Finishing Nails +- id: ha-10-2-8-1-2 + name: Flappers children: [] attributes: - color - - fastener_finish + - material - pattern - - suitable_for_material_type - - hardware_material -- id: ha-6-14-2-7 - name: Horseshoe Nails - children: [] +- id: ha-10-2-8-2 + name: Bidet Faucets & Sprayers + children: + - ha-10-2-8-2-1 + - ha-10-2-8-2-2 attributes: - color - - fastener_finish - - pattern - - suitable_for_material_type - hardware_material -- id: ha-6-14-2-8 - name: Masonry Nails + - pattern +- id: ha-10-2-8-2-1 + name: Bidet Faucets children: [] attributes: - color - - fastener_finish - - pattern - - suitable_for_material_type - hardware_material -- id: ha-6-14-2-9 - name: Railroad Spikes + - pattern +- id: ha-10-2-8-2-2 + name: Bidet Sprayers children: [] attributes: - color - - fastener_finish - - pattern - - suitable_for_material_type - hardware_material -- id: ha-6-14-2-10 - name: Roofing Nails + - pattern +- id: ha-10-2-8-3 + name: Toilet & Bidet Seats children: [] attributes: - color - - fastener_finish + - material + - material_firmness - pattern - - suitable_for_material_type - - hardware_material -- id: ha-6-14-2-11 - name: Survey Nails + - toilet_cover_design +- id: ha-10-2-8-4 + name: Toilet Seat Covers children: [] attributes: - color - - fastener_finish + - material - pattern - - suitable_for_material_type - - hardware_material -- id: ha-6-14-2-12 - name: Twist Nails + - toilet_cover_design +- id: ha-10-2-8-5 + name: Toilet Seat Lid Covers children: [] attributes: - color - - fastener_finish + - material - pattern - - suitable_for_material_type - - hardware_material -- id: ha-6-14-2-13 - name: Upholstery Nails + - toilet_cover_design +- id: ha-10-2-8-6 + name: Toilet Tank Covers children: [] attributes: - color - - fastener_finish + - material - pattern - - suitable_for_material_type - - hardware_material -- id: ha-6-14-2-14 - name: Wire Nails +- id: ha-10-2-8-7 + name: Toilet Tank Levers + children: + - ha-10-2-8-7-1 + - ha-10-2-8-7-2 + attributes: + - color + - material + - pattern +- id: ha-10-2-8-7-1 + name: Front Mount Levers children: [] attributes: - color - - fastener_finish + - material - pattern - - suitable_for_material_type - - hardware_material -- id: ha-6-14-6-2 - name: Deck Screws +- id: ha-10-2-8-7-2 + name: Side Mount Levers children: [] attributes: - color - - fastener_finish + - material - pattern - - suitable_for_material_type - - hardware_material -- id: ha-6-14-6-3 - name: Drywall Screws +- id: ha-10-2-8-8 + name: Toilet Tanks + children: + - ha-10-2-8-8-1 + - ha-10-2-8-8-2 + attributes: + - flush_plate_color + - material + - pattern + - tank_color +- id: ha-10-2-8-8-1 + name: Gravity-Fed Tanks children: [] attributes: - - color - - fastener_finish + - flush_plate_color + - material - pattern - - suitable_for_material_type - - hardware_material -- id: ha-6-14-6-6 - name: Lag Screws + - tank_color +- id: ha-10-2-8-8-2 + name: Pressure-Assisted Tanks children: [] attributes: - - color - - fastener_finish + - flush_plate_color + - material - pattern - - suitable_for_material_type - - hardware_material -- id: ha-6-14-6-7 - name: Machine Screws + - tank_color +- id: ha-10-2-8-9 + name: Toilet Trim children: [] attributes: - color - - fastener_finish + - material - pattern - - suitable_for_material_type - - hardware_material -- id: ha-6-14-6-8 - name: Masonry Screws - children: [] +- id: ha-10-3 + name: Plumbing Fixtures + children: + - ha-10-3-1 + - ha-10-3-2 + - ha-10-3-3 + - ha-10-3-4 + - ha-10-3-5 + - ha-10-3-6 attributes: - color - - fastener_finish + - material - pattern - - suitable_for_material_type - - hardware_material -- id: ha-6-14-6-9 - name: Roofing Screws +- id: ha-10-3-1 + name: Bathroom Suites children: [] attributes: - color - - fastener_finish + - material - pattern - - suitable_for_material_type - - hardware_material -- id: ha-6-14-6-4 - name: Screw Eyes & Hooks - children: [] +- id: ha-10-3-2 + name: Bathtubs + children: + - ha-10-3-2-1 + - ha-10-3-2-2 + - ha-10-3-2-3 attributes: - color - - fastener_finish + - drain_location + - material - pattern - - suitable_for_material_type - - hardware_material -- id: ha-6-14-6-10 - name: Self-Drilling Screws + - shape +- id: ha-10-3-2-1 + name: Alcove Bathtubs children: [] attributes: - color - - fastener_finish + - drain_location + - material - pattern - - suitable_for_material_type - - hardware_material -- id: ha-6-14-6-11 - name: Set Screws + - shape +- id: ha-10-3-2-2 + name: Drop-In Bathtubs children: [] attributes: - color - - fastener_finish + - drain_location + - material - pattern - - suitable_for_material_type - - hardware_material -- id: ha-6-14-6-12 - name: Sheet Metal Screws + - shape +- id: ha-10-3-2-3 + name: Freestanding Bathtubs children: [] attributes: - color - - fastener_finish + - drain_location + - material - pattern - - suitable_for_material_type - - hardware_material -- id: ha-6-14-6-13 - name: Socket Screws - children: [] + - shape +- id: ha-10-3-3 + name: Faucets + children: + - ha-10-3-3-1 + - ha-10-3-3-2 + - ha-10-3-3-3 attributes: - color - - fastener_finish + - material - pattern - - suitable_for_material_type - - hardware_material -- id: ha-6-14-6-14 - name: Thumb Screws +- id: ha-10-3-3-1 + name: Bathroom Sink Faucets children: [] attributes: - color - - fastener_finish + - material - pattern - - suitable_for_material_type - - hardware_material -- id: ha-6-14-6-15 - name: Wood Screws +- id: ha-10-3-3-2 + name: Bathtub & Shower Faucets children: [] attributes: - color - - fastener_finish + - material - pattern - - suitable_for_material_type - - hardware_material -- id: ha-6-19-1 - name: Moving Blankets & Covers +- id: ha-10-3-3-3 + name: Kitchen Sink Faucets children: [] attributes: - color + - material - pattern - - cover_material -- id: ha-6-19-2 - name: Soundproofing Blankets & Covers +- id: ha-10-3-4 + name: Shower Stalls & Kits children: [] attributes: - color + - material - pattern - - cover_material -- id: ha-6-20-1 - name: Air Pneumatic Hoses - children: [] + - shower_design +- id: ha-10-3-5 + name: Sinks + children: + - ha-10-3-5-1 + - ha-10-3-5-2 attributes: - color + - material - pattern - - hose_material -- id: ha-6-20-2 - name: Oil Pneumatic Hoses - children: [] +- id: ha-10-3-5-1 + name: Bathroom Sinks + children: + - ha-10-3-5-1-1 + - ha-10-3-5-1-2 + - ha-10-3-5-1-3 attributes: - color + - material - pattern - - hose_material -- id: ha-6-22-1 - name: Compression Springs + - sink_shape +- id: ha-10-3-5-1-1 + name: Pedestal Sinks children: [] attributes: - color + - material - pattern - - hardware_material -- id: ha-6-22-2 - name: Extension Springs + - sink_shape +- id: ha-10-3-5-1-2 + name: Undermount Sinks children: [] attributes: - color + - material - pattern - - hardware_material -- id: ha-6-22-3 - name: Torsion Springs + - sink_shape +- id: ha-10-3-5-1-3 + name: Vessel Sinks children: [] attributes: - color + - material - pattern - - hardware_material -- id: ha-6-24-1-1 - name: Hose Hangers - children: [] + - sink_mounting_type + - sink_shape +- id: ha-10-3-5-2 + name: Kitchen & Utility Sinks + children: + - ha-10-3-5-2-1 + - ha-10-3-5-2-2 + - ha-10-3-5-2-3 attributes: - color - material - pattern -- id: ha-6-24-1-2 - name: Hose Pots + - sink_shape + - sink_type +- id: ha-10-3-5-2-1 + name: Drop-In Sinks children: [] attributes: - color - material - pattern -- id: ha-6-24-1-3 - name: Hose Reels + - sink_shape + - sink_type +- id: ha-10-3-5-2-2 + name: Farmhouse Sinks children: [] attributes: - color - material - pattern -- id: ha-6-24-2-1 - name: Carpenter Belts + - sink_shape + - sink_type +- id: ha-10-3-5-2-3 + name: Undermount Sinks children: [] attributes: - color + - material - pattern - - clothing_accessory_material -- id: ha-6-24-2-2 - name: Electrician Belts - children: [] + - sink_shape + - sink_type +- id: ha-10-3-6 + name: Toilets & Bidets + children: + - ha-10-3-6-1 + - ha-10-3-6-2 + - ha-10-3-6-3 attributes: - color + - material - pattern - - clothing_accessory_material -- id: ha-6-24-2-3 - name: Framer Belts +- id: ha-10-3-6-1 + name: Bidets children: [] attributes: + - bidet_mounting_type - color + - material - pattern - - clothing_accessory_material -- id: ha-6-24-4-1 - name: Hand Carry Tool Boxes - children: [] +- id: ha-10-3-6-2 + name: Toilets + children: + - ha-10-3-6-2-1 + - ha-10-3-6-2-2 + - ha-10-3-6-2-3 attributes: - color - - lock_type + - flush_system - material - pattern -- id: ha-6-24-4-2 - name: Rolling Tool Boxes + - toilet_mounting_type + - toilet_shape +- id: ha-10-3-6-2-1 + name: One-Piece Toilets children: [] attributes: - color - - lock_type + - flush_system - material - pattern -- id: ha-6-24-4-3 - name: Truck Tool Boxes + - toilet_shape +- id: ha-10-3-6-2-2 + name: Two-Piece Toilets children: [] attributes: - color - - lock_type + - flush_system - material - pattern -- id: ha-6-24-5-1 - name: Rolling Cabinets & Chests + - toilet_shape +- id: ha-10-3-6-2-3 + name: Wall-Mounted Toilets children: [] attributes: - color + - flush_system - material - pattern -- id: ha-6-24-5-2 - name: Stationary Cabinets & Chests + - toilet_shape +- id: ha-10-3-6-3 + name: Urinals children: [] attributes: - color - material - pattern -- id: ha-6-24-6-1 - name: Drawer Liners - children: [] + - urinal_mounting_type +- id: ha-10-4 + name: Plumbing Hoses & Supply Lines + children: + - ha-10-4-1 + - ha-10-4-2 + - ha-10-4-3 attributes: - color - - hardware_mounting_type - - material + - hose_material - pattern -- id: ha-6-24-6-2 - name: Tool Box Inserts +- id: ha-10-4-1 + name: Faucet Supply Lines children: [] attributes: - color - - hardware_mounting_type - - material + - hose_material - pattern -- id: ha-6-24-8-1 - name: Mobile Work Benches +- id: ha-10-4-2 + name: Toilet Supply Lines children: [] attributes: - color - - material + - hose_material - pattern -- id: ha-6-24-8-2 - name: Stationary Work Benches +- id: ha-10-4-3 + name: Washing Machine Supply Lines children: [] attributes: - color + - hose_material + - pattern +- id: ha-10-5 + name: Plumbing Pipes + children: + - ha-10-5-1 + - ha-10-5-2 + - ha-10-5-3 + attributes: + - color - material - pattern -- id: ha-7-1-1 - name: Condensate Pumps +- id: ha-10-5-1 + name: Drain Pipes children: [] attributes: - color + - material - pattern - - power_source - - hardware_material -- id: ha-7-1-2 - name: Drain Pumps +- id: ha-10-5-2 + name: Supply Pipes children: [] attributes: - color + - material - pattern - - power_source - - hardware_material -- id: ha-7-1-3 - name: Recirculating Pumps +- id: ha-10-5-3 + name: Vent Pipes children: [] attributes: - color + - material - pattern - - power_source - - hardware_material -- id: ha-7-2-1 - name: Fountain Pumps - children: [] +- id: ha-10-6 + name: Plumbing Repair Kits + children: + - ha-10-6-1 + - ha-10-6-2 + - ha-10-6-3 attributes: - color + - material - pattern - - power_source - - hardware_material -- id: ha-7-2-2 - name: Pond Pumps +- id: ha-10-6-1 + name: Faucet Repair Kits children: [] attributes: - color + - material - pattern - - power_source - - hardware_material -- id: ha-7-2-3 - name: Pool Pumps +- id: ha-10-6-2 + name: Pipe Repair Kits children: [] attributes: - color + - material - pattern - - power_source - - hardware_material -- id: ha-7-3-1 - name: Booster Pumps +- id: ha-10-6-3 + name: Toilet Repair Kits children: [] attributes: - color + - material - pattern - - power_source - - suitable_for_water_feature_type - - hardware_material -- id: ha-7-3-2 - name: Centrifugal Pumps - children: [] +- id: ha-10-7 + name: Water Dispensing & Filtration + children: + - ha-10-7-1 + - ha-10-7-2 + - ha-10-7-3 + - ha-10-7-4 + - ha-10-7-5 + - ha-10-7-6 attributes: - color - pattern - - power_source - - suitable_for_water_feature_type - - hardware_material -- id: ha-7-3-5 - name: Positive Displacement Pumps +- id: ha-10-7-1 + name: In-Line Water Filters children: [] attributes: - color + - material - pattern - - power_source - - suitable_for_water_feature_type - - hardware_material -- id: ha-7-4-1 - name: Effluent Pumps - children: [] +- id: ha-10-7-2 + name: Water Dispensers + children: + - ha-10-7-2-1 + - ha-10-7-2-2 attributes: - color + - hardware_mounting_type - pattern - - power_source - - hardware_material -- id: ha-7-4-2 - name: Sewage Pumps +- id: ha-10-7-2-1 + name: Drinking Fountains children: [] attributes: - color + - hardware_mounting_type + - material - pattern - - power_source - - hardware_material -- id: ha-7-4-3 - name: Sump Pumps + - placement_supported + - suitable_space +- id: ha-10-7-2-2 + name: Water Chillers children: [] attributes: - color + - hardware_mounting_type - pattern - - power_source - - hardware_material -- id: ha-7-5-1 - name: Drum Pumps +- id: ha-10-7-3 + name: Water Distillers children: [] attributes: - color - pattern - - power_source - - hardware_material -- id: ha-7-5-2 - name: Submersible Pumps - children: [] +- id: ha-10-7-4 + name: Water Filtration Accessories + children: + - ha-10-7-4-1 + - ha-10-7-4-2 attributes: - color - pattern - - power_source - - hardware_material -- id: ha-7-5-3 - name: Transfer Pumps +- id: ha-10-7-4-1 + name: Water Filter Cartridges children: [] attributes: - color + - material - pattern - - power_source - - hardware_material -- id: ha-9-3-3 - name: Contactless Cards +- id: ha-10-7-4-2 + name: Water Filter Housings children: [] attributes: - color + - material - pattern - - recommended_use -- id: ha-9-3-1 - name: Magnetic Stripe Cards +- id: ha-10-7-5 + name: Water Softener Salt children: [] attributes: - color - pattern - - recommended_use -- id: ha-9-4-1 - name: Barrel Bolts - children: [] +- id: ha-10-7-6 + name: Water Softeners + children: + - ha-10-7-6-1 + - ha-10-7-6-2 attributes: - color - - material - pattern - - security_level -- id: ha-9-4-2 - name: Cam Locks +- id: ha-10-7-6-1 + name: Salt-Based Water Softeners children: [] attributes: - color - - material - pattern - - security_level -- id: ha-9-4-3 - name: Deadbolts +- id: ha-10-7-6-2 + name: Salt-Free Water Softeners children: [] attributes: - color - - material - pattern - - security_level -- id: ha-9-4-5 - name: Latches +- id: ha-10-8 + name: Water Levelers children: [] attributes: - color - - material - pattern - - security_level -- id: ha-10-1-2-1 - name: In-Wall Carriers +- id: ha-10-9 + name: Water Timers children: [] attributes: - color - - material - pattern -- id: ha-10-1-2-2 - name: Mounting Frames +- id: ha-10-10 + name: Well Supplies children: [] attributes: - color - - material - pattern -- id: ha-10-1-4-1 - name: Adapters - children: [] +- id: ha-11 + name: Power & Electrical Supplies + children: + - ha-11-1 + - ha-11-2 + - ha-11-3 + - ha-11-4 + - ha-11-5 + - ha-11-6 + - ha-11-7 + - ha-11-8 + - ha-11-9 + - ha-11-10 + - ha-11-11 + - ha-11-12 + - ha-11-13 + - ha-11-14 + - ha-11-15 + - ha-11-16 + - ha-11-17 + - ha-11-18 + - ha-11-19 + - ha-11-20 + - ha-11-21 + - ha-11-22 + - ha-11-23 + - ha-11-24 + - ha-11-25 + - ha-11-26 + - ha-11-27 + - ha-11-28 attributes: - color - - material - pattern -- id: ha-10-1-4-2 - name: Bushings - children: [] +- id: ha-11-1 + name: Armatures, Rotors & Stators + children: + - ha-11-1-1 + - ha-11-1-2 + - ha-11-1-3 attributes: - color - material + - motor_starting_method - pattern -- id: ha-10-1-5-1 - name: Caps +- id: ha-11-1-1 + name: Armatures children: [] attributes: - color - material + - motor_starting_method - pattern -- id: ha-10-1-5-2 - name: Plugs +- id: ha-11-1-2 + name: Rotors children: [] attributes: - color - material + - motor_starting_method - pattern -- id: ha-10-1-6-1 - name: Couplings +- id: ha-11-1-3 + name: Stators children: [] attributes: - color - material + - motor_starting_method - pattern -- id: ha-10-1-6-2 - name: Unions - children: [] +- id: ha-11-2 + name: Ballasts & Starters + children: + - ha-11-2-1 + - ha-11-2-2 + - ha-11-2-3 attributes: - color - - material - pattern -- id: ha-10-1-9-1 - name: Pressure Regulators +- id: ha-11-2-1 + name: Electronic Ballasts children: [] attributes: - color - - material - pattern -- id: ha-10-1-9-2 - name: Temperature Regulators +- id: ha-11-2-2 + name: Magnetic Ballasts children: [] attributes: - color - - material - pattern -- id: ha-10-1-10-1 - name: Ball Valves +- id: ha-11-2-3 + name: Starters children: [] attributes: - color - - material - pattern -- id: ha-10-1-10-2 - name: Check Valves +- id: ha-11-3 + name: Carbon Brushes children: [] attributes: - color - - material + - brush_material - pattern -- id: ha-10-1-10-3 - name: Gate Valves - children: [] +- id: ha-11-4 + name: Circuit Breaker Panels + children: + - ha-11-4-1 + - ha-11-4-2 attributes: + - circuit_breaker_panel_form - color - - material - pattern -- id: ha-10-1-10-4 - name: Globe Valves +- id: ha-11-4-1 + name: Main Breaker Panels children: [] attributes: + - circuit_breaker_panel_form - color - - material - pattern -- id: ha-10-1-10-5 - name: Pressure Relief Valves +- id: ha-11-4-2 + name: Sub-Panel Breaker Panels children: [] attributes: + - circuit_breaker_panel_form - color - - material - pattern -- id: ha-10-2-1-3-1 - name: Diverter Spouts +- id: ha-11-5 + name: Circuit Breakers children: [] attributes: + - circuit_breaker_design + - circuit_breaker_type - color - - material - pattern -- id: ha-10-2-1-3-2 - name: Non-Diverter Spouts - children: [] + - recommended_use + - trip_type +- id: ha-11-6 + name: Conduit & Housings + children: + - ha-11-6-1 + - ha-11-6-2 attributes: - color - material - pattern -- id: ha-10-2-2-1-1 - name: Drain Covers - children: [] +- id: ha-11-6-1 + name: Electrical Conduit + children: + - ha-11-6-1-1 + - ha-11-6-1-2 attributes: - color - material - pattern -- id: ha-10-2-2-1-2 - name: Drain Strainers +- id: ha-11-6-1-1 + name: Flexible Electrical Conduit children: [] attributes: - color - material - pattern -- id: ha-10-2-3-1 - name: Floor Drains +- id: ha-11-6-1-2 + name: Rigid Electrical Conduit children: [] attributes: - color + - material - pattern - - hardware_material -- id: ha-10-2-3-2 - name: Shower Drains +- id: ha-11-6-2 + name: Heat-Shrink Tubing children: [] attributes: - color + - material - pattern - - hardware_material -- id: ha-10-2-3-3 - name: Sink Drains - children: [] + - shrink_ratio +- id: ha-11-7 + name: Electrical Motors + children: + - ha-11-7-1 + - ha-11-7-2 + - ha-11-7-3 attributes: - color + - motor_starting_method - pattern - - hardware_material -- id: ha-10-2-4-2-1 - name: Cross Handles + - power_source +- id: ha-11-7-1 + name: Induction Motors children: [] attributes: - color - - connecting_thread + - motor_starting_method - pattern - - handle_material -- id: ha-10-2-4-2-2 - name: Knob Handles + - power_source +- id: ha-11-7-2 + name: Servo Motors children: [] attributes: - color - - connecting_thread + - motor_starting_method - pattern - - handle_material -- id: ha-10-2-4-2-3 - name: Lever Handles + - power_source +- id: ha-11-7-3 + name: Universal Motors children: [] attributes: - color - - connecting_thread + - motor_starting_method - pattern - - handle_material -- id: ha-10-2-5-1 - name: Cover Plates - children: [] + - power_source +- id: ha-11-8 + name: Electrical Mount Boxes & Brackets + children: + - ha-11-8-1 + - ha-11-8-2 attributes: - color + - material - pattern - - hardware_material -- id: ha-10-2-5-2 - name: Escutcheon Plates +- id: ha-11-8-1 + name: Mount Boxes children: [] attributes: - color + - material - pattern - - hardware_material -- id: ha-10-2-5-3 - name: Flange Plates +- id: ha-11-8-2 + name: Mount Brackets children: [] attributes: - color + - material - pattern - - hardware_material -- id: ha-10-2-6-1-1 - name: Body Jets +- id: ha-11-9 + name: Electrical Plug Caps children: [] attributes: - color - - drain_location + - material - pattern - - shape - - hardware_material -- id: ha-10-2-6-1-2 - name: Whirlpool Jets - children: [] +- id: ha-11-10 + name: Electrical Switches + children: + - ha-11-10-1 + - ha-11-10-2 attributes: - color - - drain_location - pattern - - shape - - hardware_material -- id: ha-10-2-6-2-1 - name: Mixer Showers - children: [] +- id: ha-11-10-1 + name: Light Switches + children: + - ha-11-10-1-1 + - ha-11-10-1-2 + - ha-11-10-1-3 attributes: - color - pattern - - power_source - - hardware_material -- id: ha-10-2-6-2-2 - name: Power Showers + - switch_control_type +- id: ha-11-10-1-1 + name: Dimmer Switches children: [] attributes: - color - pattern - - power_source - - hardware_material -- id: ha-10-2-6-3-1 - name: Shower Arms + - switch_control_type +- id: ha-11-10-1-2 + name: Single-Pole Switches children: [] attributes: - color - - connecting_thread - pattern - - hardware_material -- id: ha-10-2-6-3-2 - name: Shower Connectors + - switch_control_type +- id: ha-11-10-1-3 + name: Three-Way Switches children: [] attributes: - color - - connecting_thread - pattern - - hardware_material -- id: ha-10-2-6-6-1 - name: Hinged Doors - children: [] + - switch_control_type +- id: ha-11-10-2 + name: Specialty Electrical Switches & Relays + children: + - ha-11-10-2-1 + - ha-11-10-2-2 + - ha-11-10-2-3 attributes: - color - pattern - - furniture_fixture_material -- id: ha-10-2-6-6-2 - name: Pivot Doors +- id: ha-11-10-2-1 + name: Limit Switches children: [] attributes: - color - pattern - - furniture_fixture_material -- id: ha-10-2-6-6-3 - name: Sliding Doors +- id: ha-11-10-2-2 + name: Pressure Switches children: [] attributes: - color - pattern - - furniture_fixture_material -- id: ha-10-2-6-7-1 - name: Fixed Shower Heads +- id: ha-11-10-2-3 + name: Specialty Relays children: [] attributes: - color - pattern - - hardware_material -- id: ha-10-2-6-7-2 - name: Handheld Shower Heads +- id: ha-11-11 + name: Electrical Wires & Cable children: [] attributes: - color + - wire_rope_material - pattern - - hardware_material -- id: ha-10-2-6-8-1 - name: Shower Surrounds +- id: ha-11-12 + name: Extension Cord Accessories children: [] attributes: - color - pattern - - hardware_material -- id: ha-10-2-6-8-2 - name: Shower Walls +- id: ha-11-13 + name: Extension Cords children: [] attributes: - color - pattern - - hardware_material -- id: ha-10-2-8-1-1 - name: Ballcocks + - suitable_space +- id: ha-11-14 + name: Generator Accessories children: [] attributes: - color - - material - pattern -- id: ha-10-2-8-1-2 - name: Flappers - children: [] +- id: ha-11-15 + name: Generators + children: + - ha-11-15-1 + - ha-11-15-2 + - ha-11-15-3 attributes: - color - - material + - ignition_system - pattern -- id: ha-10-2-8-2-1 - name: Bidet Faucets + - power_source +- id: ha-11-15-1 + name: Inverter Generators children: [] attributes: - color + - ignition_system - pattern - - hardware_material -- id: ha-10-2-8-2-2 - name: Bidet Sprayers + - power_source +- id: ha-11-15-2 + name: Portable Generators children: [] attributes: - color + - ignition_system - pattern - - hardware_material -- id: ha-10-2-8-7-1 - name: Front Mount Levers + - power_source +- id: ha-11-15-3 + name: Standby Generators children: [] attributes: - color - - material + - ignition_system - pattern -- id: ha-10-2-8-7-2 - name: Side Mount Levers - children: [] + - power_source +- id: ha-11-16 + name: Home Automation Kits + children: + - ha-11-16-1 + - ha-11-16-2 + - ha-11-16-3 attributes: - color - - material - pattern -- id: ha-10-2-8-8-1 - name: Gravity-Fed Tanks +- id: ha-11-16-1 + name: Energy Management Kits children: [] attributes: - - flush_plate_color - - material + - color - pattern - - tank_color -- id: ha-10-2-8-8-2 - name: Pressure-Assisted Tanks +- id: ha-11-16-2 + name: Lighting Control Kits children: [] attributes: - - flush_plate_color - - material + - color - pattern - - tank_color -- id: ha-10-3-2-1 - name: Alcove Bathtubs +- id: ha-11-16-3 + name: Security Kits children: [] attributes: - color - - drain_location - - material - pattern - - shape -- id: ha-10-3-2-2 - name: Drop-In Bathtubs - children: [] +- id: ha-11-17 + name: Phone & Data Jacks + children: + - ha-11-17-1 + - ha-11-17-2 attributes: - color - - drain_location - - material - pattern - - shape -- id: ha-10-3-2-3 - name: Freestanding Bathtubs +- id: ha-11-17-1 + name: Ethernet Jacks children: [] attributes: - color - - drain_location - - material - pattern - - shape -- id: ha-10-3-3-1 - name: Bathroom Sink Faucets +- id: ha-11-17-2 + name: Phone Jacks children: [] attributes: - color - - material - pattern -- id: ha-10-3-3-2 - name: Bathtub & Shower Faucets - children: [] +- id: ha-11-18 + name: Power Converters + children: + - ha-11-18-1 + - ha-11-18-2 attributes: - color - - material - pattern -- id: ha-10-3-3-3 - name: Kitchen Sink Faucets +- id: ha-11-18-1 + name: Step-Down Converters children: [] attributes: - color - - material - pattern -- id: ha-10-3-5-1-1 - name: Pedestal Sinks +- id: ha-11-18-2 + name: Step-Up Converters children: [] attributes: - color - - material - pattern - - sink_shape -- id: ha-10-3-5-1-2 - name: Undermount Sinks +- id: ha-11-19 + name: Power Inlets children: [] attributes: - color - material - pattern - - sink_shape -- id: ha-10-3-5-1-3 - name: Vessel Sinks +- id: ha-11-20 + name: Power Inverters children: [] attributes: - color - - material - pattern - - sink_mounting_type - - sink_shape -- id: ha-10-3-5-2-1 - name: Drop-In Sinks - children: [] + - suitable_space +- id: ha-11-21 + name: Power Outlets & Sockets + children: + - ha-11-21-1 + - ha-11-21-2 + - ha-11-21-3 attributes: - color - - material - pattern - - sink_shape - - sink_type -- id: ha-10-3-5-2-2 - name: Farmhouse Sinks + - socket_type +- id: ha-11-21-1 + name: Floor Outlets children: [] attributes: - color - - material - pattern - - sink_shape - - sink_type -- id: ha-10-3-5-2-3 - name: Undermount Sinks + - socket_type +- id: ha-11-21-2 + name: Pop-Up Outlets children: [] attributes: - color - - material - pattern - - sink_shape - - sink_type -- id: ha-10-3-6-2-1 - name: One-Piece Toilets + - socket_type +- id: ha-11-21-3 + name: Wall Outlets children: [] attributes: - color - - flush_system - - material - pattern - - toilet_shape -- id: ha-10-3-6-2-2 - name: Two-Piece Toilets - children: [] + - socket_type +- id: ha-11-22 + name: Solar Energy Kits + children: + - ha-11-22-1 + - ha-11-22-2 + - ha-11-22-3 attributes: - color - - flush_system - - material - pattern - - toilet_shape -- id: ha-10-3-6-2-3 - name: Wall-Mounted Toilets + - solar_panel_design +- id: ha-11-22-1 + name: Backup Power Kits children: [] attributes: - color - - flush_system - - material - pattern - - toilet_shape -- id: ha-10-4-1 - name: Faucet Supply Lines + - solar_panel_design +- id: ha-11-22-2 + name: Grid-Tied Solar Kits children: [] attributes: - color - pattern - - hose_material -- id: ha-10-4-2 - name: Toilet Supply Lines + - solar_panel_design +- id: ha-11-22-3 + name: Off-Grid Solar Kits children: [] attributes: - color - pattern - - hose_material -- id: ha-10-4-3 - name: Washing Machine Supply Lines + - solar_panel_design +- id: ha-11-23 + name: Solar Panels + children: + - ha-11-23-1 + - ha-11-23-2 + - ha-11-23-3 + attributes: + - color + - pattern + - solar_cell_type + - solar_panel_connections +- id: ha-11-23-1 + name: Monocrystalline Solar Panels children: [] attributes: - color - pattern - - hose_material -- id: ha-10-5-1 - name: Drain Pipes + - solar_panel_connections +- id: ha-11-23-2 + name: Polycrystalline Solar Panels children: [] attributes: - color - - material - pattern -- id: ha-10-5-2 - name: Supply Pipes + - solar_panel_connections +- id: ha-11-23-3 + name: Thin-Film Solar Panels children: [] attributes: - color - - material - pattern -- id: ha-10-5-3 - name: Vent Pipes - children: [] + - solar_panel_connections +- id: ha-11-24 + name: Voltage Transformers & Regulators + children: + - ha-11-24-1 + - ha-11-24-2 attributes: - color - - material - pattern -- id: ha-10-6-1 - name: Faucet Repair Kits +- id: ha-11-24-1 + name: Voltage Regulators children: [] attributes: - color - - material - pattern -- id: ha-10-6-2 - name: Pipe Repair Kits +- id: ha-11-24-2 + name: Voltage Transformers children: [] attributes: - color - - material - pattern -- id: ha-10-6-3 - name: Toilet Repair Kits - children: [] +- id: ha-11-25 + name: Wall Plates & Covers + children: + - ha-11-25-1 + - ha-11-25-2 + - ha-11-25-3 attributes: - color - material - pattern -- id: ha-10-7-6-1 - name: Salt-Based Water Softeners + - wall_plate_style +- id: ha-11-25-1 + name: Blank Wall Plates children: [] attributes: - color + - material - pattern -- id: ha-10-7-6-2 - name: Salt-Free Water Softeners + - wall_plate_style +- id: ha-11-25-2 + name: Plug Socket Covers children: [] attributes: - color + - material - pattern -- id: ha-11-1-1 - name: Armatures + - wall_plate_style +- id: ha-11-25-3 + name: Toggle Switch Plates children: [] attributes: - color - material - - motor_starting_method - pattern -- id: ha-11-1-2 - name: Rotors - children: [] + - wall_plate_style +- id: ha-11-26 + name: Wall Socket Controls & Sensors + children: + - ha-11-26-1 + - ha-11-26-2 attributes: - color - - material - - motor_starting_method - pattern -- id: ha-11-1-3 - name: Stators +- id: ha-11-26-1 + name: Light Sensors children: [] attributes: - color - - material - - motor_starting_method - pattern -- id: ha-11-2-1 - name: Electronic Ballasts +- id: ha-11-26-2 + name: Timer Switches children: [] attributes: - color - pattern -- id: ha-11-2-2 - name: Magnetic Ballasts - children: [] +- id: ha-11-27 + name: Wire Caps & Nuts + children: + - ha-11-27-1 + - ha-11-27-2 attributes: - color + - material - pattern -- id: ha-11-2-3 - name: Starters +- id: ha-11-27-1 + name: Wire Caps children: [] attributes: - color + - material - pattern -- id: ha-11-4-1 - name: Main Breaker Panels +- id: ha-11-27-2 + name: Wire Nuts children: [] attributes: - - circuit_breaker_panel_form - color + - material - pattern -- id: ha-11-4-2 - name: Sub-Panel Breaker Panels - children: [] +- id: ha-11-28 + name: Wire Terminals & Connectors + children: + - ha-11-28-1 + - ha-11-28-2 + - ha-11-28-3 attributes: - - circuit_breaker_panel_form - color + - material - pattern -- id: ha-11-5 - name: Circuit Breakers +- id: ha-11-28-1 + name: Butt Connectors children: [] attributes: - - circuit_breaker_design - - circuit_breaker_type - color + - material - pattern - - recommended_use - - trip_type -- id: ha-11-6-1-1 - name: Flexible Electrical Conduit +- id: ha-11-28-2 + name: Ring Terminals children: [] attributes: - color - material - pattern -- id: ha-11-6-1-2 - name: Rigid Electrical Conduit +- id: ha-11-28-3 + name: Spade Terminals children: [] attributes: - color - material - pattern -- id: ha-11-7-1 - name: Induction Motors +- id: ha-12 + name: Small Engines children: [] attributes: - color - - motor_starting_method + - engine_design + - engine_purpose + - fuel_supply - pattern - - power_source -- id: ha-11-7-2 - name: Servo Motors + - shaft_orientation + - start_type +- id: ha-13 + name: Storage Tanks children: [] attributes: - color - - motor_starting_method + - material + - orientation - pattern - - power_source -- id: ha-11-7-3 - name: Universal Motors - children: [] + - storage_tank_application + - suitable_space +- id: ha-14 + name: Tool Accessories + children: + - ha-14-1 + - ha-14-2 + - ha-14-3 + - ha-14-4 + - ha-14-5 + - ha-14-6 + - ha-14-7 + - ha-14-8 + - ha-14-9 + - ha-14-10 + - ha-14-11 + - ha-14-12 + - ha-14-13 + - ha-14-14 + - ha-14-15 + - ha-14-16 + - ha-14-17 + - ha-14-18 + - ha-14-19 + - ha-14-20 + - ha-14-21 + - ha-14-22 + - ha-14-23 + - ha-14-24 + - ha-14-25 + - ha-14-26 + - ha-14-27 + - ha-14-28 + - ha-14-29 attributes: - color - - motor_starting_method - pattern - - power_source -- id: ha-11-8-1 - name: Mount Boxes - children: [] +- id: ha-14-1 + name: Abrasive Blaster Accessories + children: + - ha-14-1-1 attributes: - color - - material - pattern -- id: ha-11-8-2 - name: Mount Brackets - children: [] +- id: ha-14-1-1 + name: Sandblasting Cabinets + children: + - ha-14-1-1-1 + - ha-14-1-1-2 attributes: - color - - material + - furniture_fixture_material - pattern -- id: ha-11-10-1-1 - name: Dimmer Switches + - sandblaster_application + - sander_type + - suitable_for_material_type +- id: ha-14-1-1-1 + name: Benchtop Cabinets children: [] attributes: - color + - furniture_fixture_material - pattern - - switch_control_type -- id: ha-11-10-1-2 - name: Single-Pole Switches + - sandblaster_application + - sander_type + - suitable_for_material_type +- id: ha-14-1-1-2 + name: Stand-Up Cabinets children: [] attributes: - color + - furniture_fixture_material - pattern - - switch_control_type -- id: ha-11-10-1-3 - name: Three-Way Switches - children: [] + - sandblaster_application + - sander_type + - suitable_for_material_type +- id: ha-14-2 + name: Axe Accessories + children: + - ha-14-2-1 + - ha-14-2-2 attributes: - color + - material - pattern - - switch_control_type -- id: ha-11-10-2-1 - name: Limit Switches +- id: ha-14-2-1 + name: Axe Handles children: [] attributes: - color + - handle_material - pattern -- id: ha-11-10-2-2 - name: Pressure Switches +- id: ha-14-2-2 + name: Axe Heads children: [] attributes: - color + - blade_material + - pattern +- id: ha-14-3 + name: Cutter Accessories + children: + - ha-14-3-1 + attributes: + - color - pattern -- id: ha-11-10-2-3 - name: Specialty Relays +- id: ha-14-3-1 + name: Nibbler Dies children: [] attributes: - color + - hardware_material - pattern -- id: ha-11-15-1 - name: Inverter Generators - children: [] +- id: ha-14-4 + name: Drill & Screwdriver Accessories + children: + - ha-14-4-1 + - ha-14-4-2 + - ha-14-4-3 + - ha-14-4-4 + - ha-14-4-5 + - ha-14-4-6 attributes: - color - - ignition_system - pattern - - power_source -- id: ha-11-15-2 - name: Portable Generators - children: [] +- id: ha-14-4-1 + name: Drill & Screwdriver Bits + children: + - ha-14-4-1-1 + - ha-14-4-1-2 + - ha-14-4-1-3 attributes: - color - - ignition_system + - hardware_material - pattern - - power_source -- id: ha-11-15-3 - name: Standby Generators + - rotating_direction + - suitable_for_material_type +- id: ha-14-4-1-1 + name: Masonry Drill Bits children: [] attributes: - color - - ignition_system + - hardware_material - pattern - - power_source -- id: ha-11-16-1 - name: Energy Management Kits + - rotating_direction + - suitable_for_material_type +- id: ha-14-4-1-2 + name: Screwdriver Bits children: [] attributes: - color + - hardware_material - pattern -- id: ha-11-16-2 - name: Lighting Control Kits + - rotating_direction + - suitable_for_material_type +- id: ha-14-4-1-3 + name: Twist Drill Bits children: [] attributes: - color + - hardware_material - pattern -- id: ha-11-16-3 - name: Security Kits + - rotating_direction + - suitable_for_material_type +- id: ha-14-4-2 + name: Drill Bit Extensions children: [] attributes: - color + - hardware_material - pattern -- id: ha-11-17-1 - name: Ethernet Jacks - children: [] +- id: ha-14-4-3 + name: Drill Bit Sharpeners + children: + - ha-14-4-3-1 + - ha-14-4-3-2 attributes: - color + - hardware_material - pattern -- id: ha-11-17-2 - name: Phone Jacks +- id: ha-14-4-3-1 + name: Power Sharpeners children: [] attributes: - color + - hardware_material - pattern -- id: ha-11-18-1 - name: Step-Down Converters +- id: ha-14-4-3-2 + name: Manual Sharpeners children: [] attributes: - color + - hardware_material - pattern -- id: ha-11-18-2 - name: Step-Up Converters - children: [] +- id: ha-14-4-4 + name: Drill Chucks + children: + - ha-14-4-4-1 + - ha-14-4-4-2 attributes: - color + - hardware_material - pattern -- id: ha-11-21-1 - name: Floor Outlets +- id: ha-14-4-4-1 + name: Keyed Chucks children: [] attributes: - color + - hardware_material - pattern - - socket_type -- id: ha-11-21-2 - name: Pop-Up Outlets +- id: ha-14-4-4-2 + name: Keyless Chucks children: [] attributes: - color + - hardware_material - pattern - - socket_type -- id: ha-11-21-3 - name: Wall Outlets - children: [] +- id: ha-14-4-5 + name: Drill Stands & Guides + children: + - ha-14-4-5-1 + - ha-14-4-5-2 attributes: - color + - material - pattern - - socket_type -- id: ha-11-22-1 - name: Backup Power Kits +- id: ha-14-4-5-1 + name: Drill Guides children: [] attributes: - color + - material - pattern - - solar_panel_design -- id: ha-11-22-2 - name: Grid-Tied Solar Kits +- id: ha-14-4-5-2 + name: Drill Stands children: [] attributes: - color + - material - pattern - - solar_panel_design -- id: ha-11-22-3 - name: Off-Grid Solar Kits +- id: ha-14-4-6 + name: Hole Saws children: [] attributes: - color + - hardware_material - pattern - - solar_panel_design -- id: ha-11-23-1 - name: Monocrystalline Solar Panels + - suitable_for_material_type +- id: ha-14-5 + name: Driver Accessories children: [] attributes: - color - pattern - - solar_panel_connections -- id: ha-11-23-2 - name: Polycrystalline Solar Panels +- id: ha-14-6 + name: Flashlight Accessories children: [] attributes: - color - pattern - - solar_panel_connections -- id: ha-11-23-3 - name: Thin-Film Solar Panels - children: [] +- id: ha-14-7 + name: Grinder Accessories + children: + - ha-14-7-1 attributes: - color - pattern - - solar_panel_connections -- id: ha-11-24-1 - name: Voltage Regulators +- id: ha-14-7-1 + name: Grinding Wheels & Points children: [] attributes: - color - pattern -- id: ha-11-24-2 - name: Voltage Transformers - children: [] +- id: ha-14-8 + name: Hammer Accessories + children: + - ha-14-8-1 + - ha-14-8-2 + - ha-14-8-3 attributes: - color - pattern -- id: ha-11-25-1 - name: Blank Wall Plates +- id: ha-14-8-1 + name: Air Hammer Accessories children: [] attributes: - color - - material - pattern - - wall_plate_style -- id: ha-11-25-2 - name: Plug Socket Covers +- id: ha-14-8-2 + name: Hammer Handles children: [] attributes: - color - - material + - handle_material - pattern - - wall_plate_style -- id: ha-11-25-3 - name: Toggle Switch Plates +- id: ha-14-8-3 + name: Hammer Heads children: [] attributes: - color - - material + - hardware_material - pattern - - wall_plate_style -- id: ha-11-26-1 - name: Light Sensors +- id: ha-14-9 + name: Industrial Staples children: [] attributes: - color + - hardware_material - pattern -- id: ha-11-26-2 - name: Timer Switches - children: [] +- id: ha-14-10 + name: Jigs + children: + - ha-14-10-1 + - ha-14-10-2 + - ha-14-10-3 attributes: - color - pattern -- id: ha-11-27-1 - name: Wire Caps +- id: ha-14-10-1 + name: Drill Jigs children: [] attributes: - color - - material - pattern -- id: ha-11-27-2 - name: Wire Nuts +- id: ha-14-10-2 + name: Router Jigs children: [] attributes: - color - - material - pattern -- id: ha-11-28-1 - name: Butt Connectors +- id: ha-14-10-3 + name: Saw Jigs children: [] attributes: - color - - material - pattern -- id: ha-11-28-2 - name: Ring Terminals +- id: ha-14-11 + name: Magnetizers & Demagnetizers children: [] attributes: - color - - material - pattern -- id: ha-11-28-3 - name: Spade Terminals - children: [] +- id: ha-14-12 + name: Mattock & Pickaxe Accessories + children: + - ha-14-12-1 attributes: - color - - material - pattern -- id: ha-14-1-1-1 - name: Benchtop Cabinets +- id: ha-14-12-1 + name: Mattock & Pickaxe Handles children: [] attributes: - color + - handle_material - pattern - - sandblaster_application - - sander_type - - suitable_for_material_type - - furniture_fixture_material -- id: ha-14-1-1-2 - name: Stand-Up Cabinets - children: [] +- id: ha-14-13 + name: Measuring Tool & Sensor Accessories + children: + - ha-14-13-1 + - ha-14-13-2 + - ha-14-13-3 + - ha-14-13-4 attributes: - color - pattern - - sandblaster_application - - sander_type - - suitable_for_material_type - - furniture_fixture_material -- id: ha-14-4-1-1 - name: Masonry Drill Bits +- id: ha-14-13-1 + name: Electrical Testing Tool Accessories children: [] attributes: - color - pattern - - rotating_direction - - suitable_for_material_type - - hardware_material -- id: ha-14-4-1-2 - name: Screwdriver Bits +- id: ha-14-13-2 + name: Gas Detector Accessories children: [] attributes: - color - pattern - - rotating_direction - - suitable_for_material_type - - hardware_material -- id: ha-14-4-1-3 - name: Twist Drill Bits +- id: ha-14-13-3 + name: Measuring Scale Accessories children: [] attributes: - color - pattern - - rotating_direction - - suitable_for_material_type - - hardware_material -- id: ha-14-4-3-2 - name: Manual Sharpeners +- id: ha-14-13-4 + name: Multimeter Accessories children: [] attributes: - color - pattern - - hardware_material -- id: ha-14-4-3-1 - name: Power Sharpeners +- id: ha-14-14 + name: Mixing Tool Paddles children: [] attributes: - color + - material - pattern - - hardware_material -- id: ha-14-4-4-1 - name: Keyed Chucks - children: [] +- id: ha-14-15 + name: Paint Tool Accessories + children: + - ha-14-15-1 + - ha-14-15-2 + - ha-14-15-3 attributes: - color - pattern - - hardware_material -- id: ha-14-4-4-2 - name: Keyless Chucks +- id: ha-14-15-1 + name: Airbrush Accessories children: [] attributes: - color - pattern - - hardware_material -- id: ha-14-4-5-1 - name: Drill Guides - children: [] +- id: ha-14-15-2 + name: Paint Brush Cleaning Solutions + children: + - ha-14-15-2-1 + - ha-14-15-2-2 attributes: - color - - material - pattern -- id: ha-14-4-5-2 - name: Drill Stands +- id: ha-14-15-2-1 + name: Oil-Based Cleaners children: [] attributes: - color - - material - pattern -- id: ha-14-10-1 - name: Drill Jigs +- id: ha-14-15-2-2 + name: Water-Based Cleaners children: [] attributes: - color - pattern -- id: ha-14-10-2 - name: Router Jigs +- id: ha-14-15-3 + name: Paint Roller Accessories children: [] attributes: - color - pattern -- id: ha-14-10-3 - name: Saw Jigs +- id: ha-14-16 + name: Power Tool Batteries children: [] attributes: + - battery_technology - color - pattern -- id: ha-14-15-2-1 - name: Oil-Based Cleaners +- id: ha-14-17 + name: Power Tool Chargers children: [] attributes: + - battery_technology - color - pattern -- id: ha-14-15-2-2 - name: Water-Based Cleaners - children: [] +- id: ha-14-18 + name: Router Accessories + children: + - ha-14-18-1 + - ha-14-18-2 + attributes: + - color + - pattern +- id: ha-14-18-1 + name: Router Bits + children: + - ha-14-18-1-1 + - ha-14-18-1-2 + - ha-14-18-1-3 attributes: - color + - hardware_material - pattern - id: ha-14-18-1-1 name: Edge-Forming Bits children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-14-18-1-2 name: Flush-Trim Bits children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-14-18-1-3 name: Straight Bits children: [] attributes: - color - - pattern - hardware_material + - pattern +- id: ha-14-18-2 + name: Router Tables + children: [] + attributes: + - color + - hardware_mounting_type + - material + - pattern +- id: ha-14-19 + name: Sanding Accessories + children: + - ha-14-19-1 + attributes: + - color + - pattern +- id: ha-14-19-1 + name: Sandpaper & Sanding Sponges + children: + - ha-14-19-1-1 + - ha-14-19-1-2 + - ha-14-19-1-3 + - ha-14-19-1-4 + - ha-14-19-1-5 + - ha-14-19-1-6 + - ha-14-19-1-7 + - ha-14-19-1-8 + - ha-14-19-1-9 + attributes: + - abrasive_material + - backing_material + - color + - grit_type + - pattern + - sanding_application + - suitable_for_material_type - id: ha-14-19-1-1 name: Abrasive Rolls children: [] @@ -7689,100 +5825,252 @@ - pattern - sanding_application - suitable_for_material_type +- id: ha-14-20 + name: Saw Accessories + children: + - ha-14-20-1 + - ha-14-20-2 + - ha-14-20-3 + - ha-14-20-4 + - ha-14-20-5 + attributes: + - color + - pattern +- id: ha-14-20-1 + name: Band Saw Accessories + children: [] + attributes: + - color + - pattern +- id: ha-14-20-2 + name: Handheld Circular Saw Accessories + children: [] + attributes: + - color + - pattern +- id: ha-14-20-3 + name: Jigsaw Accessories + children: [] + attributes: + - color + - pattern +- id: ha-14-20-4 + name: Miter Saw Accessories + children: [] + attributes: + - color + - pattern +- id: ha-14-20-5 + name: Table Saw Accessories + children: [] + attributes: + - color + - pattern +- id: ha-14-21 + name: Shaper Accessories + children: + - ha-14-21-1 + attributes: + - color + - pattern +- id: ha-14-21-1 + name: Shaper Cutters + children: + - ha-14-21-1-1 + - ha-14-21-1-2 + - ha-14-21-1-3 + attributes: + - color + - blade_material + - pattern - id: ha-14-21-1-1 name: Molding Cutters children: [] attributes: - color - - pattern - blade_material + - pattern - id: ha-14-21-1-2 name: Profile Cutters children: [] attributes: - color - - pattern - blade_material + - pattern - id: ha-14-21-1-3 name: Straight Cutters children: [] attributes: - color - - pattern - blade_material + - pattern +- id: ha-14-22 + name: Soldering Iron Accessories + children: + - ha-14-22-1 + - ha-14-22-2 + attributes: + - color + - pattern +- id: ha-14-22-1 + name: Soldering Iron Stands + children: [] + attributes: + - color + - material + - pattern +- id: ha-14-22-2 + name: Soldering Iron Tips + children: + - ha-14-22-2-1 + - ha-14-22-2-2 + - ha-14-22-2-3 + attributes: + - color + - hardware_material + - pattern - id: ha-14-22-2-1 name: Bevel Tips children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-14-22-2-2 name: Chisel Tips children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-14-22-2-3 name: Conical Tips children: [] attributes: - color - - pattern - hardware_material + - pattern +- id: ha-14-23 + name: Tool Blades + children: + - ha-14-23-1 + - ha-14-23-2 + attributes: + - color + - blade_material + - pattern +- id: ha-14-23-1 + name: Cutter & Scraper Blades + children: + - ha-14-23-1-1 + - ha-14-23-1-2 + attributes: + - color + - blade_material + - pattern - id: ha-14-23-1-1 name: Cutter Blades children: [] attributes: - color - - pattern - blade_material + - pattern - id: ha-14-23-1-2 name: Scraper Blades children: [] attributes: - color - - pattern - blade_material + - pattern +- id: ha-14-23-2 + name: Saw Blades + children: + - ha-14-23-2-1 + - ha-14-23-2-2 + - ha-14-23-2-3 + attributes: + - color + - blade_material + - pattern + - suitable_for_material_type - id: ha-14-23-2-1 name: Circular Saw Blades children: [] attributes: - color + - blade_material - pattern - suitable_for_material_type - - blade_material - id: ha-14-23-2-2 name: Jigsaw Blades children: [] attributes: - color + - blade_material - pattern - suitable_for_material_type - - blade_material - id: ha-14-23-2-3 name: Reciprocating Saw Blades children: [] attributes: - color + - blade_material - pattern - suitable_for_material_type - - blade_material +- id: ha-14-24 + name: Tool Handle Wedges + children: + - ha-14-24-1 + - ha-14-24-2 + attributes: + - color + - material + - pattern - id: ha-14-24-1 name: Axe Handle Wedges children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-14-24-2 name: Hammer Handle Wedges children: [] attributes: - color - - pattern - hardware_material + - pattern +- id: ha-14-25 + name: Tool Safety Tethers + children: [] + attributes: + - color + - material + - pattern +- id: ha-14-26 + name: Tool Sockets + children: [] + attributes: + - color + - pattern +- id: ha-14-27 + name: Tool Stands + children: + - ha-14-27-1 + attributes: + - color + - material + - pattern +- id: ha-14-27-1 + name: Saw Stands + children: + - ha-14-27-1-1 + - ha-14-27-1-2 + - ha-14-27-1-3 + attributes: + - color + - material + - pattern - id: ha-14-27-1-1 name: Band Saw Stands children: [] @@ -7804,27 +6092,139 @@ - color - material - pattern +- id: ha-14-28 + name: Wedge Tools + children: + - ha-14-28-1 + - ha-14-28-2 + - ha-14-28-3 + attributes: + - color + - hardware_material + - pattern - id: ha-14-28-1 name: Felling Wedges children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-14-28-2 name: Flange Wedges children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-14-28-3 name: Splitting Wedges children: [] attributes: - color - - pattern - hardware_material + - pattern +- id: ha-14-29 + name: Welding Accessories + children: [] + attributes: + - color + - pattern +- id: ha-15 + name: Tools + children: + - ha-15-1 + - ha-15-2 + - ha-15-3 + - ha-15-4 + - ha-15-5 + - ha-15-6 + - ha-15-7 + - ha-15-8 + - ha-15-9 + - ha-15-10 + - ha-15-11 + - ha-15-12 + - ha-15-13 + - ha-15-14 + - ha-15-15 + - ha-15-16 + - ha-15-17 + - ha-15-18 + - ha-15-19 + - ha-15-20 + - ha-15-21 + - ha-15-22 + - ha-15-23 + - ha-15-24 + - ha-15-25 + - ha-15-26 + - ha-15-27 + - ha-15-28 + - ha-15-29 + - ha-15-30 + - ha-15-31 + - ha-15-32 + - ha-15-33 + - ha-15-34 + - ha-15-35 + - ha-15-36 + - ha-15-37 + - ha-15-38 + - ha-15-39 + - ha-15-40 + - ha-15-41 + - ha-15-42 + - ha-15-43 + - ha-15-44 + - ha-15-45 + - ha-15-46 + - ha-15-47 + - ha-15-48 + - ha-15-49 + - ha-15-50 + - ha-15-51 + - ha-15-52 + - ha-15-53 + - ha-15-54 + - ha-15-55 + - ha-15-56 + - ha-15-57 + - ha-15-58 + - ha-15-59 + - ha-15-60 + - ha-15-61 + - ha-15-62 + - ha-15-63 + - ha-15-64 + - ha-15-65 + - ha-15-66 + - ha-15-67 + - ha-15-68 + - ha-15-69 + - ha-15-70 + - ha-15-71 + - ha-15-72 + - ha-15-73 + - ha-15-74 + - ha-15-75 + - ha-15-76 + - ha-15-77 + - ha-15-78 + - ha-15-79 + - ha-15-80 + attributes: + - color + - pattern +- id: ha-15-1 + name: Abrasive Blasters + children: + - ha-15-1-1 + - ha-15-1-2 + - ha-15-1-3 + attributes: + - color + - pattern + - power_source - id: ha-15-1-1 name: Cabinet Blasters children: [] @@ -7846,6 +6246,22 @@ - color - pattern - power_source +- id: ha-15-2 + name: Anvils + children: [] + attributes: + - color + - hardware_material + - pattern +- id: ha-15-3 + name: Axes + children: + - ha-15-3-1 + - ha-15-3-2 + - ha-15-3-3 + attributes: + - color + - pattern - id: ha-15-3-1 name: Felling Axes children: [] @@ -7864,6 +6280,14 @@ attributes: - color - pattern +- id: ha-15-4 + name: Carpentry Jointers + children: + - ha-15-4-1 + - ha-15-4-2 + attributes: + - color + - pattern - id: ha-15-4-1 name: Bench Jointers children: [] @@ -7876,6 +6300,17 @@ attributes: - color - pattern +- id: ha-15-5 + name: Carving Chisels & Gouges + children: + - ha-15-5-1 + - ha-15-5-2 + - ha-15-5-3 + attributes: + - blade_material + - color + - handle_material + - pattern - id: ha-15-5-1 name: Straight Chisels children: [] @@ -7896,56 +6331,130 @@ name: V-Gouges children: [] attributes: - - blade_material + - blade_material + - color + - handle_material + - pattern +- id: ha-15-6 + name: Caulking Tools + children: + - ha-15-6-1 + - ha-15-6-2 + - ha-15-6-3 + attributes: + - color + - pattern +- id: ha-15-6-1 + name: Caulk Removers + children: [] + attributes: + - color + - pattern +- id: ha-15-6-2 + name: Caulk Smoothers + children: [] + attributes: + - color + - pattern +- id: ha-15-6-3 + name: Caulking Guns + children: [] + attributes: + - color + - pattern +- id: ha-15-7 + name: Chimney Brushes + children: [] + attributes: + - color + - brush_material + - pattern +- id: ha-15-8 + name: Compactors + children: + - ha-15-8-1 + - ha-15-8-2 + attributes: + - color + - pattern + - power_source +- id: ha-15-8-1 + name: Plate Compactors + children: [] + attributes: - color - - handle_material - pattern -- id: ha-15-6-1 - name: Caulk Removers + - power_source +- id: ha-15-8-2 + name: Rammer Compactors children: [] attributes: - color - pattern -- id: ha-15-6-2 - name: Caulk Smoothers + - power_source +- id: ha-15-9 + name: Compressors children: [] attributes: - color - pattern -- id: ha-15-6-3 - name: Caulking Guns + - power_source +- id: ha-15-10 + name: Concrete Brooms children: [] attributes: + - bristle_material - color + - handle_material - pattern -- id: ha-15-8-1 - name: Plate Compactors - children: [] +- id: ha-15-11 + name: Cutters + children: + - ha-15-11-1 + - ha-15-11-2 + - ha-15-11-3 + - ha-15-11-4 + - ha-15-11-5 + - ha-15-11-6 + - ha-15-11-7 + - ha-15-11-8 attributes: - color - pattern - - power_source -- id: ha-15-8-2 - name: Rammer Compactors - children: [] +- id: ha-15-11-1 + name: Bolt Cutters + children: + - ha-15-11-1-2 + - ha-15-11-1-3 attributes: - color + - hardware_material - pattern - - power_source - id: ha-15-11-1-2 name: Chain Cutters children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-11-1-3 name: Concrete Mesh Cutters children: [] attributes: - color - - pattern - hardware_material + - pattern +- id: ha-15-11-2 + name: Glass Cutters + children: + - ha-15-11-2-1 + - ha-15-11-2-2 + - ha-15-11-2-3 + attributes: + - blade_material + - handle_color + - handle_material + - pattern - id: ha-15-11-2-1 name: Custom Grip Cutters children: [] @@ -7970,24 +6479,51 @@ - handle_color - handle_material - pattern +- id: ha-15-11-3 + name: Handheld Metal Shears & Nibblers + children: [] + attributes: + - color + - hardware_material + - pattern + - power_source +- id: ha-15-11-4 + name: Nippers + children: + - ha-15-11-4-1 + - ha-15-11-4-2 + attributes: + - color + - hardware_material + - pattern - id: ha-15-11-4-1 name: End-Cutting Nippers children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-11-4-2 name: Side-Cutting Nippers children: [] attributes: - color - - pattern - hardware_material -- id: ha-15-11-6-2 - name: Manual Rebar Cutters + - pattern +- id: ha-15-11-5 + name: Pipe Cutters children: [] attributes: + - blade_material + - housing_color + - housing_material + - pattern +- id: ha-15-11-6 + name: Rebar Cutters + children: + - ha-15-11-6-1 + - ha-15-11-6-2 + attributes: - color - pattern - id: ha-15-11-6-1 @@ -7996,6 +6532,20 @@ attributes: - color - pattern +- id: ha-15-11-6-2 + name: Manual Rebar Cutters + children: [] + attributes: + - color + - pattern +- id: ha-15-11-7 + name: Tile & Shingle Cutters + children: + - ha-15-11-7-1 + - ha-15-11-7-2 + attributes: + - color + - pattern - id: ha-15-11-7-1 name: Manual Cutters children: [] @@ -8008,59 +6558,112 @@ attributes: - color - pattern +- id: ha-15-11-8 + name: Utility Knives + children: + - ha-15-11-8-1 + - ha-15-11-8-2 + attributes: + - blade_design + - color + - hardware_material + - pattern - id: ha-15-11-8-1 name: Fixed Blade Knives children: [] attributes: - blade_design - color - - pattern - hardware_material + - pattern - id: ha-15-11-8-2 name: Retractable Blade Knives children: [] attributes: - blade_design - color - - pattern - hardware_material + - pattern +- id: ha-15-12 + name: Deburrers + children: + - ha-15-12-1 + - ha-15-12-2 + attributes: + - material + - color + - pattern + - suitable_for_pipe_type - id: ha-15-12-1 name: Manual Deburrers children: [] attributes: + - material - color - pattern - suitable_for_pipe_type - - material - id: ha-15-12-2 name: Power Deburrers children: [] attributes: + - material - color - pattern - suitable_for_pipe_type - - material +- id: ha-15-13 + name: Dollies & Hand Trucks + children: + - ha-15-13-1 + - ha-15-13-2 + - ha-15-13-3 + attributes: + - color + - hardware_material + - pattern - id: ha-15-13-1 name: Appliance Dollies children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-13-2 name: Convertible Hand Trucks children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-13-3 name: Platform Dollies children: [] attributes: - color - - pattern - hardware_material + - pattern +- id: ha-15-14 + name: Drills + children: + - ha-15-14-1 + - ha-15-14-2 + - ha-15-14-3 + - ha-15-14-4 + - ha-15-14-5 + attributes: + - chuck_type + - color + - pattern + - power_source +- id: ha-15-14-1 + name: Augers + children: + - ha-15-14-1-1 + - ha-15-14-1-2 + attributes: + - chuck_type + - color + - pattern + - power_source - id: ha-15-14-1-1 name: Hand Augers children: [] @@ -8077,6 +6680,26 @@ - color - pattern - power_source +- id: ha-15-14-2 + name: Drill Presses + children: [] + attributes: + - chuck_type + - color + - hardware_mounting_type + - pattern + - power_source +- id: ha-15-14-3 + name: Handheld Power Drills + children: + - ha-15-14-3-1 + - ha-15-14-3-2 + - ha-15-14-3-3 + attributes: + - chuck_type + - color + - pattern + - power_source - id: ha-15-14-3-1 name: Hammer Drills children: [] @@ -8101,6 +6724,25 @@ - color - pattern - power_source +- id: ha-15-14-4 + name: Mortisers + children: [] + attributes: + - chuck_type + - color + - hardware_mounting_type + - pattern + - power_source +- id: ha-15-14-5 + name: Pneumatic Drills + children: + - ha-15-14-5-1 + - ha-15-14-5-2 + attributes: + - chuck_type + - color + - pattern + - power_source - id: ha-15-14-5-1 name: Pistol Grip Drills children: [] @@ -8117,6 +6759,35 @@ - color - pattern - power_source +- id: ha-15-15 + name: Electrician Fish Tape + children: [] + attributes: + - color + - hardware_material + - pattern +- id: ha-15-16 + name: Flashlights & Headlamps + children: + - ha-15-16-1 + - ha-15-16-2 + attributes: + - color + - housing_material + - light_source + - pattern + - power_source +- id: ha-15-16-1 + name: Flashlights + children: + - ha-15-16-1-1 + - ha-15-16-1-3 + attributes: + - color + - housing_material + - light_source + - pattern + - power_source - id: ha-15-16-1-1 name: Handheld Torches children: [] @@ -8126,8 +6797,17 @@ - light_source - pattern - power_source -- id: ha-15-16-1-3 - name: Lanterns +- id: ha-15-16-1-3 + name: Lanterns + children: [] + attributes: + - color + - housing_material + - light_source + - pattern + - power_source +- id: ha-15-16-2 + name: Headlamps children: [] attributes: - color @@ -8135,6 +6815,15 @@ - light_source - pattern - power_source +- id: ha-15-17 + name: Grease Guns + children: + - ha-15-17-2 + - ha-15-17-3 + attributes: + - color + - pattern + - power_source - id: ha-15-17-2 name: Lever Grease Guns children: [] @@ -8149,6 +6838,16 @@ - color - pattern - power_source +- id: ha-15-18 + name: Grinders + children: + - ha-15-18-1 + - ha-15-18-2 + - ha-15-18-3 + attributes: + - color + - pattern + - power_source - id: ha-15-18-1 name: Angle Grinders children: [] @@ -8170,69 +6869,134 @@ - color - pattern - power_source +- id: ha-15-19 + name: Grips + children: + - ha-15-19-1 + - ha-15-19-2 + - ha-15-19-3 + attributes: + - color + - hardware_material + - pattern - id: ha-15-19-1 name: Handlebar Grips children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-19-2 name: Pistol Grips children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-19-3 name: Pliers Grips children: [] attributes: - color - - pattern - hardware_material + - pattern +- id: ha-15-20 + name: Hammers + children: + - ha-15-20-1 + - ha-15-20-2 + attributes: + - color + - handle_material + - hammer_head_material + - pattern +- id: ha-15-20-1 + name: Manual Hammers + children: + - ha-15-20-1-1 + - ha-15-20-1-2 + - ha-15-20-1-3 + attributes: + - color + - handle_material + - hammer_head_material + - pattern - id: ha-15-20-1-1 name: Claw Hammers children: [] attributes: - color - handle_material - - pattern - hammer_head_material + - pattern - id: ha-15-20-1-2 name: Mallets children: [] attributes: - color - handle_material - - pattern - hammer_head_material + - pattern - id: ha-15-20-1-3 name: Sledge Hammers children: [] attributes: - color - handle_material + - hammer_head_material - pattern +- id: ha-15-20-2 + name: Powered Hammers + children: + - ha-15-20-2-1 + - ha-15-20-2-2 + attributes: + - color + - handle_material - hammer_head_material + - pattern + - power_source - id: ha-15-20-2-1 name: Demolition Hammers children: [] attributes: - color - handle_material + - hammer_head_material - pattern - power_source - - hammer_head_material - id: ha-15-20-2-2 name: Rotary Hammers children: [] attributes: - color - handle_material + - hammer_head_material + - pattern + - power_source +- id: ha-15-21 + name: Handheld Power Mixers + children: [] + attributes: + - color + - pattern + - power_source +- id: ha-15-22 + name: Hardware Torches + children: [] + attributes: + - color + - pattern + - power_source +- id: ha-15-23 + name: Heat Guns + children: + - ha-15-23-1 + - ha-15-23-2 + attributes: + - color - pattern - power_source - - hammer_head_material - id: ha-15-23-1 name: Hot Air Guns children: [] @@ -8247,6 +7011,17 @@ - color - pattern - power_source +- id: ha-15-24 + name: Impact Wrenches & Drivers + children: + - ha-15-24-1 + - ha-15-24-2 + - ha-15-24-3 + attributes: + - color + - handle_design + - pattern + - power_source - id: ha-15-24-1 name: Impact Drivers children: [] @@ -8271,42 +7046,125 @@ - handle_design - pattern - power_source +- id: ha-15-25 + name: Industrial Vibrators + children: [] + attributes: + - color + - pattern + - power_source +- id: ha-15-26 + name: Inspection Mirrors + children: [] + attributes: + - handle_color + - pattern +- id: ha-15-27 + name: Ladders & Scaffolding + children: + - ha-15-27-1 + - ha-15-27-2 + - ha-15-27-3 + - ha-15-27-4 + - ha-15-27-5 + attributes: + - color + - hardware_material + - pattern +- id: ha-15-27-1 + name: Ladder Carts + children: [] + attributes: + - color + - hardware_material + - pattern +- id: ha-15-27-2 + name: Ladders + children: + - ha-15-27-2-1 + - ha-15-27-2-2 + - ha-15-27-2-3 + attributes: + - color + - hardware_material + - pattern - id: ha-15-27-2-1 name: Extension Ladders children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-27-2-2 name: Multi-Position Ladders children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-27-2-3 name: Step Ladders children: [] attributes: - color + - hardware_material - pattern +- id: ha-15-27-3 + name: Scaffolding + children: + - ha-15-27-3-3 + - ha-15-27-3-4 + attributes: + - color - hardware_material + - pattern - id: ha-15-27-3-3 name: Supported Scaffolding children: [] attributes: - color + - hardware_material - pattern - scaffolding_mounting_type - - hardware_material - id: ha-15-27-3-4 name: Suspended Scaffolding children: [] attributes: - color + - hardware_material + - pattern +- id: ha-15-27-4 + name: Step Stools + children: [] + attributes: + - color + - hardware_material + - pattern +- id: ha-15-27-5 + name: Work Platforms + children: [] + attributes: + - color + - hardware_material - pattern +- id: ha-15-28 + name: Lathes + children: [] + attributes: + - color + - lathe_application - hardware_material + - pattern + - power_source +- id: ha-15-29 + name: Light Bulb Changers + children: + - ha-15-29-1 + - ha-15-29-2 + attributes: + - bulb_type + - color + - pattern - id: ha-15-29-1 name: Pole Changers children: [] @@ -8321,51 +7179,113 @@ - bulb_type - color - pattern +- id: ha-15-30 + name: Lighters & Matches + children: + - ha-15-30-1 + - ha-15-30-2 + - ha-15-30-3 + attributes: + - color + - hardware_material + - pattern - id: ha-15-30-1 name: Gas Lighters children: [] attributes: - color + - hardware_material - pattern +- id: ha-15-30-2 + name: Safety Matches + children: [] + attributes: + - color - hardware_material + - pattern - id: ha-15-30-3 name: Metal Lighters children: [] attributes: - color - - pattern - hardware_material -- id: ha-15-30-2 - name: Safety Matches + - pattern +- id: ha-15-31 + name: Log Splitters + children: + - ha-15-31-1 + - ha-15-31-2 + attributes: + - color + - pattern +- id: ha-15-31-1 + name: Manual Log Splitters + children: [] + attributes: + - color + - pattern +- id: ha-15-31-2 + name: Power Log Splitters + children: [] + attributes: + - color + - pattern +- id: ha-15-32 + name: Magnetic Sweepers + children: + - ha-15-32-1 + - ha-15-32-2 + attributes: + - color + - pattern +- id: ha-15-32-1 + name: Handheld Magnetic Sweepers + children: [] + attributes: + - color + - pattern +- id: ha-15-32-2 + name: Rolling Magnetic Sweepers children: [] attributes: - color - pattern - - hardware_material -- id: ha-15-31-1 - name: Manual Log Splitters +- id: ha-15-33 + name: Marking Tools children: [] attributes: - color - pattern -- id: ha-15-31-2 - name: Power Log Splitters - children: [] +- id: ha-15-34 + name: Masonry Tools + children: + - ha-15-34-1 + - ha-15-34-2 + - ha-15-34-3 + - ha-15-34-4 + - ha-15-34-5 + - ha-15-34-6 + - ha-15-34-7 + - ha-15-34-8 + - ha-15-34-9 attributes: - color - pattern -- id: ha-15-32-1 - name: Handheld Magnetic Sweepers +- id: ha-15-34-1 + name: Brick Tools children: [] attributes: - color - pattern -- id: ha-15-32-2 - name: Rolling Magnetic Sweepers - children: [] +- id: ha-15-34-2 + name: Cement Mixers + children: + - ha-15-34-2-1 + - ha-15-34-2-2 attributes: - color - pattern + - power_source - id: ha-15-34-2-1 name: Handheld Cement Mixers children: [] @@ -8380,90 +7300,213 @@ - color - pattern - power_source +- id: ha-15-34-3 + name: Construction Lines + children: [] + attributes: + - color + - hardware_material + - pattern +- id: ha-15-34-4 + name: Floats + children: + - ha-15-34-4-1 + - ha-15-34-4-2 + - ha-15-34-4-3 + attributes: + - color + - hardware_material + - pattern - id: ha-15-34-4-1 name: Bull Floats children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-34-4-2 name: Darby Floats children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-34-4-3 name: Hand Floats children: [] attributes: - color + - hardware_material + - pattern +- id: ha-15-34-5 + name: Grout Sponges + children: [] + attributes: + - color + - hardware_material - pattern + - sponge_shape +- id: ha-15-34-6 + name: Masonry Edgers & Groovers + children: + - ha-15-34-6-1 + - ha-15-34-6-2 + attributes: + - color - hardware_material + - pattern - id: ha-15-34-6-1 name: Edgers children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-34-6-2 name: Groovers children: [] attributes: - color + - hardware_material - pattern +- id: ha-15-34-7 + name: Masonry Jointers + children: + - ha-15-34-7-1 + - ha-15-34-7-2 + attributes: + - color - hardware_material + - pattern - id: ha-15-34-7-1 name: Block Jointers children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-34-7-2 name: Brick Jointers children: [] attributes: - color + - hardware_material - pattern +- id: ha-15-34-8 + name: Masonry Trowels + children: + - ha-15-34-8-1 + - ha-15-34-8-2 + - ha-15-34-8-3 + attributes: + - color - hardware_material + - pattern - id: ha-15-34-8-1 name: Brick Trowels children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-34-8-2 name: Gauging Trowels children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-34-8-3 name: Pointing Trowels children: [] attributes: - color + - hardware_material + - pattern +- id: ha-15-34-9 + name: Power Trowels + children: [] + attributes: + - color - pattern + - power_source +- id: ha-15-35 + name: Mattocks & Pickaxes + children: + - ha-15-35-1 + - ha-15-35-2 + attributes: + - color - hardware_material + - pattern - id: ha-15-35-1 name: Mattocks children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-35-2 name: Pickaxes children: [] attributes: - color - - pattern - hardware_material + - pattern +- id: ha-15-36 + name: Measuring Tools & Sensors + children: + - ha-15-36-1 + - ha-15-36-2 + - ha-15-36-3 + - ha-15-36-4 + - ha-15-36-5 + - ha-15-36-6 + - ha-15-36-7 + - ha-15-36-8 + - ha-15-36-9 + - ha-15-36-10 + - ha-15-36-11 + - ha-15-36-12 + - ha-15-36-13 + - ha-15-36-14 + - ha-15-36-15 + - ha-15-36-16 + - ha-15-36-17 + - ha-15-36-18 + - ha-15-36-19 + - ha-15-36-20 + - ha-15-36-21 + - ha-15-36-22 + - ha-15-36-23 + - ha-15-36-24 + - ha-15-36-25 + - ha-15-36-26 + - ha-15-36-27 + - ha-15-36-28 + - ha-15-36-29 + - ha-15-36-30 + - ha-15-36-31 + - ha-15-36-32 + - ha-15-36-33 + - ha-15-36-34 + - ha-15-36-35 + - ha-15-36-36 + - ha-15-36-37 + - ha-15-36-38 + attributes: + - color + - pattern +- id: ha-15-36-1 + name: Air Quality Meters + children: + - ha-15-36-1-1 + - ha-15-36-1-2 + - ha-15-36-1-3 + attributes: + - display_technology + - housing_color + - pattern - id: ha-15-36-1-1 name: CO2 Meters children: [] @@ -8485,6 +7528,27 @@ - display_technology - housing_color - pattern +- id: ha-15-36-2 + name: Altimeters + children: [] + attributes: + - color + - device_technology + - display_technology + - pattern +- id: ha-15-36-3 + name: Anemometers + children: + - ha-15-36-3-1 + - ha-15-36-3-2 + - ha-15-36-3-3 + attributes: + - anemometer_application + - color + - display_technology + - pattern + - power_source + - units_of_measurement - id: ha-15-36-3-1 name: Cup Anemometers children: [] @@ -8515,6 +7579,17 @@ - pattern - power_source - units_of_measurement +- id: ha-15-36-4 + name: Barometers + children: + - ha-15-36-4-1 + - ha-15-36-4-2 + - ha-15-36-4-3 + attributes: + - color + - display_technology + - pattern + - suitable_space - id: ha-15-36-4-1 name: Aneroid Barometers children: [] @@ -8539,6 +7614,18 @@ - display_technology - pattern - suitable_space +- id: ha-15-36-5 + name: Calipers + children: + - ha-15-36-5-1 + - ha-15-36-5-2 + - ha-15-36-5-3 + attributes: + - color + - device_technology + - display_technology + - pattern + - system_of_measurement - id: ha-15-36-5-1 name: Dial Calipers children: [] @@ -8566,6 +7653,39 @@ - display_technology - pattern - system_of_measurement +- id: ha-15-36-6 + name: Cruising Rods + children: [] + attributes: + - color + - hardware_material + - pattern +- id: ha-15-36-7 + name: Distance Meters + children: [] + attributes: + - battery_size + - color + - display_technology + - pattern + - units_of_measurement +- id: ha-15-36-8 + name: Dividers + children: [] + attributes: + - color + - hardware_material + - pattern +- id: ha-15-36-9 + name: Electrical Testing Tools + children: + - ha-15-36-9-1 + - ha-15-36-9-2 + - ha-15-36-9-3 + attributes: + - color + - display_technology + - pattern - id: ha-15-36-9-1 name: Circuit Testers children: [] @@ -8587,22 +7707,43 @@ - color - display_technology - pattern +- id: ha-15-36-10 + name: Flow Meters & Controllers + children: + - ha-15-36-10-1 + - ha-15-36-10-2 + attributes: + - color + - display_technology + - hardware_material + - pattern - id: ha-15-36-10-1 name: Gas Flow Meters children: [] attributes: - color - display_technology - - pattern - hardware_material + - pattern - id: ha-15-36-10-2 name: Liquid Flow Meters children: [] attributes: - color - display_technology - - pattern - hardware_material + - pattern +- id: ha-15-36-11 + name: Gas Detectors + children: + - ha-15-36-11-1 + - ha-15-36-11-2 + attributes: + - color + - detected_gases + - display_technology + - pattern + - power_source - id: ha-15-36-11-1 name: Combustible Gas Detectors children: [] @@ -8621,6 +7762,16 @@ - display_technology - pattern - power_source +- id: ha-15-36-12 + name: Gauges + children: + - ha-15-36-12-1 + - ha-15-36-12-2 + - ha-15-36-12-3 + attributes: + - color + - display_technology + - pattern - id: ha-15-36-12-1 name: Depth Gauges children: [] @@ -8642,6 +7793,15 @@ - color - display_technology - pattern +- id: ha-15-36-13 + name: Geiger Counters + children: + - ha-15-36-13-1 + - ha-15-36-13-2 + attributes: + - color + - display_technology + - pattern - id: ha-15-36-13-1 name: Desktop Geiger Counters children: [] @@ -8656,20 +7816,65 @@ - color - display_technology - pattern +- id: ha-15-36-14 + name: Hygrometers + children: [] + attributes: + - color + - device_technology + - display_technology + - pattern + - suitable_space +- id: ha-15-36-15 + name: Infrared Thermometers + children: [] + attributes: + - color + - display_technology + - pattern +- id: ha-15-36-16 + name: Knife Guides + children: + - ha-15-36-16-1 + - ha-15-36-16-2 + attributes: + - color + - hardware_material + - pattern - id: ha-15-36-16-1 name: Angle Guides children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-36-16-2 name: Height Guides children: [] attributes: - color - - pattern - hardware_material + - pattern +- id: ha-15-36-17 + name: Levels + children: + - ha-15-36-17-1 + - ha-15-36-17-2 + - ha-15-36-17-3 + attributes: + - color + - orientation + - pattern +- id: ha-15-36-17-1 + name: Bubble Levels + children: + - ha-15-36-17-1-1 + - ha-15-36-17-1-2 + - ha-15-36-17-1-3 + attributes: + - color + - orientation + - pattern - id: ha-15-36-17-1-1 name: Box Levels children: [] @@ -8691,6 +7896,17 @@ - color - orientation - pattern +- id: ha-15-36-17-2 + name: Laser Levels + children: + - ha-15-36-17-2-1 + - ha-15-36-17-2-2 + - ha-15-36-17-2-3 + attributes: + - color + - display_technology + - orientation + - pattern - id: ha-15-36-17-2-1 name: Dot Laser Levels children: [] @@ -8715,6 +7931,15 @@ - display_technology - orientation - pattern +- id: ha-15-36-17-3 + name: Sight Levels + children: + - ha-15-36-17-3-1 + - ha-15-36-17-3-2 + attributes: + - color + - orientation + - pattern - id: ha-15-36-17-3-1 name: Handheld Sight Levels children: [] @@ -8729,6 +7954,15 @@ - color - orientation - pattern +- id: ha-15-36-18 + name: Measuring Scales + children: + - ha-15-36-18-1 + - ha-15-36-18-2 + attributes: + - color + - display_technology + - pattern - id: ha-15-36-18-1 name: Digital Scales children: [] @@ -8743,6 +7977,25 @@ - color - display_technology - pattern +- id: ha-15-36-19 + name: Measuring Wheels + children: [] + attributes: + - color + - display_technology + - hardware_material + - pattern + - units_of_measurement +- id: ha-15-36-20 + name: Moisture Meters + children: + - ha-15-36-20-1 + - ha-15-36-20-2 + attributes: + - color + - display_technology + - pattern + - suitable_for_material_type - id: ha-15-36-20-1 name: Pin-Type Meters children: [] @@ -8759,6 +8012,15 @@ - display_technology - pattern - suitable_for_material_type +- id: ha-15-36-21 + name: PH Meters + children: + - ha-15-36-21-1 + - ha-15-36-21-2 + attributes: + - color + - display_technology + - pattern - id: ha-15-36-21-1 name: Digital pH Meters children: [] @@ -8773,6 +8035,15 @@ - color - display_technology - pattern +- id: ha-15-36-22 + name: Probes & Finders + children: + - ha-15-36-22-1 + - ha-15-36-22-2 + - ha-15-36-22-3 + attributes: + - color + - pattern - id: ha-15-36-22-1 name: Circuit Finders children: [] @@ -8791,6 +8062,38 @@ attributes: - color - pattern +- id: ha-15-36-23 + name: Protractors + children: [] + attributes: + - color + - hardware_material + - pattern +- id: ha-15-36-24 + name: Rebar Locators + children: [] + attributes: + - color + - device_technology + - display_technology + - pattern +- id: ha-15-36-25 + name: Rulers + children: [] + attributes: + - color + - hardware_material + - pattern +- id: ha-15-36-26 + name: Seismometer + children: + - ha-15-36-26-1 + - ha-15-36-26-2 + - ha-15-36-26-3 + attributes: + - color + - display_technology + - pattern - id: ha-15-36-26-1 name: Broadband Seismometers children: [] @@ -8812,27 +8115,106 @@ - color - display_technology - pattern +- id: ha-15-36-27 + name: Sound Meters + children: [] + attributes: + - color + - connection_method + - device_technology + - display_technology + - frequency_weighting + - pattern + - time_weighting +- id: ha-15-36-28 + name: Squares + children: + - ha-15-36-28-1 + - ha-15-36-28-2 + - ha-15-36-28-3 + attributes: + - color + - hardware_material + - pattern - id: ha-15-36-28-1 name: Framing Squares children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-36-28-2 name: Speed Squares children: [] attributes: - color + - hardware_material + - pattern +- id: ha-15-36-28-3 + name: Try Squares + children: [] + attributes: + - color + - hardware_material + - pattern +- id: ha-15-36-29 + name: Straight Edges + children: [] + attributes: + - color + - hardware_material + - pattern +- id: ha-15-36-30 + name: Stud Sensors + children: [] + attributes: + - color + - device_technology + - display_technology + - pattern +- id: ha-15-36-31 + name: Tape Measures + children: [] + attributes: + - color + - display_technology + - housing_material + - pattern + - system_of_measurement +- id: ha-15-36-32 + name: Theodolites + children: [] + attributes: + - color + - device_technology + - display_technology + - pattern +- id: ha-15-36-33 + name: Thermal Imaging Cameras + children: [] + attributes: + - color + - display_resolution + - display_technology + - housing_material - pattern - - hardware_material -- id: ha-15-36-28-3 - name: Try Squares + - thermal_detector_type +- id: ha-15-36-34 + name: Thermocouples & Thermopiles + children: + - ha-15-36-34-1 + - ha-15-36-34-2 + attributes: + - color + - display_technology + - pattern +- id: ha-15-36-34-1 + name: Thermopiles children: [] attributes: - color + - display_technology - pattern - - hardware_material - id: ha-15-36-34-2 name: Thermocouples children: [] @@ -8841,12 +8223,14 @@ - display_technology - pattern - thermocouple_type -- id: ha-15-36-34-1 - name: Thermopiles - children: [] +- id: ha-15-36-35 + name: Transducers + children: + - ha-15-36-35-1 + - ha-15-36-35-2 + - ha-15-36-35-3 attributes: - color - - display_technology - pattern - id: ha-15-36-35-1 name: Force Transducers @@ -8866,6 +8250,24 @@ attributes: - color - pattern +- id: ha-15-36-36 + name: UV Light Meters + children: [] + attributes: + - color + - device_technology + - display_technology + - pattern +- id: ha-15-36-37 + name: Vibration Meters + children: + - ha-15-36-37-1 + - ha-15-36-37-2 + attributes: + - color + - display_technology + - pattern + - power_source - id: ha-15-36-37-1 name: Fixed Vibration Meters children: [] @@ -8882,6 +8284,24 @@ - display_technology - pattern - power_source +- id: ha-15-36-38 + name: Weather Forecasters & Stations + children: [] + attributes: + - color + - connection_method + - device_technology + - display_technology + - pattern +- id: ha-15-37 + name: Milling Machines + children: + - ha-15-37-1 + - ha-15-37-2 + attributes: + - color + - pattern + - power_source - id: ha-15-37-1 name: Horizontal Milling Machines children: [] @@ -8896,20 +8316,47 @@ - color - pattern - power_source +- id: ha-15-38 + name: Multifunction Power Tools + children: [] + attributes: + - color + - pattern + - power_source +- id: ha-15-39 + name: Nail Pullers + children: + - ha-15-39-1 + - ha-15-39-2 + attributes: + - color + - hardware_material + - pattern - id: ha-15-39-1 name: Claw Pullers children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-39-2 name: Slide Hammer Pullers children: [] attributes: - color - - pattern - hardware_material + - pattern +- id: ha-15-40 + name: Nailers & Staplers + children: + - ha-15-40-1 + - ha-15-40-2 + - ha-15-40-3 + - ha-15-40-4 + attributes: + - color + - pattern + - power_source - id: ha-15-40-1 name: Finish Nailers children: [] @@ -8924,6 +8371,13 @@ - color - pattern - power_source +- id: ha-15-40-3 + name: Staple Guns + children: [] + attributes: + - color + - pattern + - power_source - id: ha-15-40-4 name: Heavy Duty Staplers children: [] @@ -8931,60 +8385,135 @@ - color - pattern - power_source -- id: ha-15-40-3 - name: Staple Guns +- id: ha-15-41 + name: Oil Filter Drains children: [] attributes: - color + - hardware_material + - pattern +- id: ha-15-42 + name: Paint Tools + children: + - ha-15-42-1 + - ha-15-42-2 + - ha-15-42-3 + - ha-15-42-4 + - ha-15-42-5 + - ha-15-42-6 + - ha-15-42-7 + - ha-15-42-8 + - ha-15-42-9 + attributes: + - color + - pattern +- id: ha-15-42-1 + name: Airbrushes + children: [] + attributes: + - color + - feed_type + - pattern +- id: ha-15-42-2 + name: Paint Brushes + children: [] + attributes: + - bristle_material + - color + - paint_brush_design + - pattern +- id: ha-15-42-3 + name: Paint Edgers + children: + - ha-15-42-3-1 + - ha-15-42-3-2 + attributes: + - color + - hardware_material - pattern - - power_source - id: ha-15-42-3-1 name: Pad Edgers children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-42-3-2 name: Roller Edgers children: [] attributes: - color - - pattern - hardware_material + - pattern +- id: ha-15-42-4 + name: Paint Rollers + children: + - ha-15-42-4-1 + - ha-15-42-4-2 + - ha-15-42-4-3 + attributes: + - color + - material + - pattern - id: ha-15-42-4-1 name: Mini Rollers children: [] attributes: - color - - pattern - material + - pattern - id: ha-15-42-4-2 name: Standard Rollers children: [] attributes: - color - - pattern - material + - pattern - id: ha-15-42-4-3 name: Texture Rollers children: [] attributes: - color - - pattern - material + - pattern +- id: ha-15-42-5 + name: Paint Shakers + children: + - ha-15-42-5-1 + - ha-15-42-5-2 + attributes: + - color + - pattern +- id: ha-15-42-5-1 + name: Power Shakers + children: [] + attributes: + - color + - pattern - id: ha-15-42-5-2 name: Manual Shakers children: [] attributes: - color - pattern -- id: ha-15-42-5-1 - name: Power Shakers +- id: ha-15-42-6 + name: Paint Sponges children: [] attributes: - color + - hardware_material + - pattern + - sponge_shape +- id: ha-15-42-7 + name: Paint Sprayers + children: + - ha-15-42-7-1 + - ha-15-42-7-2 + - ha-15-42-7-3 + attributes: + - color - pattern + - power_source - id: ha-15-42-7-1 name: Airless Sprayers children: [] @@ -9006,20 +8535,44 @@ - color - pattern - power_source +- id: ha-15-42-8 + name: Paint Strainers + children: + - ha-15-42-8-1 + - ha-15-42-8-2 + attributes: + - color + - hardware_material + - pattern - id: ha-15-42-8-1 name: Cone Strainers children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-42-8-2 name: Pan Strainers children: [] attributes: - color + - hardware_material - pattern +- id: ha-15-42-9 + name: Paint Trays + children: [] + attributes: + - color - hardware_material + - pattern +- id: ha-15-43 + name: Pickup Tools + children: + - ha-15-43-1 + - ha-15-43-2 + attributes: + - color + - pattern - id: ha-15-43-1 name: Grabber Pickup Tools children: [] @@ -9032,20 +8585,38 @@ attributes: - color - pattern +- id: ha-15-44 + name: Pipe & Bar Benders + children: + - ha-15-44-1 + - ha-15-44-2 + attributes: + - color + - hardware_material + - pattern - id: ha-15-44-1 name: Hydraulic Benders children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-44-2 name: Manual Benders children: [] attributes: - color - - pattern - hardware_material + - pattern +- id: ha-15-45 + name: Pipe & Tube Cleaners + children: + - ha-15-45-1 + - ha-15-45-2 + attributes: + - color + - pattern + - power_source - id: ha-15-45-1 name: Handheld Cleaners children: [] @@ -9060,6 +8631,22 @@ - color - pattern - power_source +- id: ha-15-46 + name: Pipe Brushes + children: [] + attributes: + - color + - brush_material + - pattern +- id: ha-15-47 + name: Planers + children: + - ha-15-47-1 + - ha-15-47-2 + attributes: + - color + - pattern + - power_source - id: ha-15-47-1 name: Benchtop Planers children: [] @@ -9074,48 +8661,80 @@ - color - pattern - power_source +- id: ha-15-48 + name: Planes + children: + - ha-15-48-1 + - ha-15-48-2 + - ha-15-48-3 + attributes: + - color + - hardware_material + - pattern - id: ha-15-48-1 name: Bench Planes children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-48-2 name: Block Planes children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-48-3 name: Router Planes children: [] attributes: - color + - hardware_material - pattern +- id: ha-15-49 + name: Pliers + children: + - ha-15-49-1 + - ha-15-49-2 + - ha-15-49-3 + attributes: + - color - hardware_material + - pattern - id: ha-15-49-1 name: Locking Pliers children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-49-2 name: Needle-Nose Pliers children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-49-3 name: Slip Joint Pliers children: [] attributes: - color - - pattern - hardware_material + - pattern +- id: ha-15-50 + name: Plungers + children: + - ha-15-50-2 + - ha-15-50-3 + attributes: + - pattern + - plunger_shape + - shaft_color + - shaft_material + - suction_cup_color + - suction_cup_material - id: ha-15-50-2 name: Sink Plungers children: [] @@ -9136,6 +8755,15 @@ - shaft_material - suction_cup_color - suction_cup_material +- id: ha-15-51 + name: Polishers & Buffers + children: + - ha-15-51-1 + - ha-15-51-2 + attributes: + - color + - pattern + - power_source - id: ha-15-51-1 name: Orbital Polishers & Buffers children: [] @@ -9150,6 +8778,15 @@ - color - pattern - power_source +- id: ha-15-52 + name: Post Hole Diggers + children: + - ha-15-52-1 + - ha-15-52-2 + attributes: + - color + - pattern + - power_source - id: ha-15-52-1 name: Manual Diggers children: [] @@ -9164,27 +8801,55 @@ - color - pattern - power_source +- id: ha-15-53 + name: Pry Bars + children: [] + attributes: + - color + - hardware_material + - pattern +- id: ha-15-54 + name: Punches & Awls + children: + - ha-15-54-1 + - ha-15-54-2 + - ha-15-54-3 + attributes: + - color + - hardware_material + - pattern - id: ha-15-54-1 name: Center Punches children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-54-2 name: Pin Punches children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-54-3 name: Scratch Awls children: [] attributes: - color - - pattern - hardware_material + - pattern +- id: ha-15-55 + name: Putty Knives & Scrapers + children: + - ha-15-55-1 + - ha-15-55-2 + - ha-15-55-3 + attributes: + - blade_material + - color + - handle_material + - pattern - id: ha-15-55-1 name: Flexible Putty Knives children: [] @@ -9193,6 +8858,14 @@ - color - handle_material - pattern +- id: ha-15-55-2 + name: Wallpaper & Paint Scrapers + children: [] + attributes: + - blade_material + - color + - handle_material + - pattern - id: ha-15-55-3 name: Stiff Putty Knives children: [] @@ -9201,81 +8874,241 @@ - color - handle_material - pattern -- id: ha-15-55-2 - name: Wallpaper & Paint Scrapers +- id: ha-15-56 + name: Reamers + children: + - ha-15-56-1 + - ha-15-56-2 + attributes: + - color + - hardware_material + - pattern +- id: ha-15-56-1 + name: Hand Reamers + children: [] + attributes: + - color + - hardware_material + - pattern +- id: ha-15-56-2 + name: Machine Reamers + children: [] + attributes: + - color + - hardware_material + - pattern +- id: ha-15-57 + name: Riveting Tools + children: + - ha-15-57-1 + - ha-15-57-2 + attributes: + - color + - pattern +- id: ha-15-57-1 + name: Rivet Guns + children: + - ha-15-57-1-1 + - ha-15-57-1-2 + attributes: + - color + - pattern +- id: ha-15-57-1-1 + name: Manual Rivet Guns + children: [] + attributes: + - color + - pattern +- id: ha-15-57-1-2 + name: Pneumatic Rivet Guns + children: [] + attributes: + - color + - pattern +- id: ha-15-57-2 + name: Rivet Pliers + children: [] + attributes: + - color + - hardware_material + - pattern +- id: ha-15-58 + name: Routing Tools + children: [] + attributes: + - color + - pattern + - power_source +- id: ha-15-59 + name: Sanders + children: + - ha-15-59-1 + - ha-15-59-2 + - ha-15-59-3 + attributes: + - color + - pattern + - power_source +- id: ha-15-59-1 + name: Belt Sanders + children: [] + attributes: + - color + - pattern + - power_source +- id: ha-15-59-2 + name: Disc Sanders + children: [] + attributes: + - color + - pattern + - power_source +- id: ha-15-59-3 + name: Orbital Sanders + children: [] + attributes: + - color + - pattern + - power_source +- id: ha-15-60 + name: Sanding Blocks + children: [] + attributes: + - color + - hardware_material + - material_firmness + - pattern +- id: ha-15-61 + name: Saw Horses + children: [] + attributes: + - color + - hardware_material + - pattern +- id: ha-15-62 + name: Saws + children: + - ha-15-62-1 + - ha-15-62-2 + - ha-15-62-3 + - ha-15-62-4 + - ha-15-62-5 + - ha-15-62-6 + - ha-15-62-7 + - ha-15-62-8 + - ha-15-62-9 + - ha-15-62-10 + - ha-15-62-11 + attributes: + - color + - pattern + - suitable_for_material_type +- id: ha-15-62-1 + name: Band Saws + children: [] + attributes: + - color + - hardware_mounting_type + - pattern + - power_source + - suitable_for_material_type +- id: ha-15-62-2 + name: Cut-Off Saws children: [] attributes: - - blade_material - color - - handle_material - pattern -- id: ha-15-56-1 - name: Hand Reamers + - power_source + - suitable_for_material_type +- id: ha-15-62-3 + name: Hand Saws + children: + - ha-15-62-3-1 + - ha-15-62-3-2 + - ha-15-62-3-3 + attributes: + - color + - pattern + - suitable_for_material_type +- id: ha-15-62-3-1 + name: Back Saws children: [] attributes: - color - pattern - - hardware_material -- id: ha-15-56-2 - name: Machine Reamers + - suitable_for_material_type +- id: ha-15-62-3-2 + name: Coping Saws children: [] attributes: - color - pattern - - hardware_material -- id: ha-15-57-1-1 - name: Manual Rivet Guns + - suitable_for_material_type +- id: ha-15-62-3-3 + name: Hacksaws children: [] attributes: - color - pattern -- id: ha-15-57-1-2 - name: Pneumatic Rivet Guns + - suitable_for_material_type +- id: ha-15-62-4 + name: Handheld Circular Saws children: [] attributes: - color - pattern -- id: ha-15-59-1 - name: Belt Sanders + - power_source + - suitable_for_material_type +- id: ha-15-62-5 + name: Jigsaws children: [] attributes: - color - pattern - power_source -- id: ha-15-59-2 - name: Disc Sanders + - suitable_for_material_type +- id: ha-15-62-6 + name: Masonry & Tile Saws children: [] attributes: - color - pattern - power_source -- id: ha-15-59-3 - name: Orbital Sanders + - suitable_for_material_type +- id: ha-15-62-7 + name: Miter Saws children: [] attributes: + - bevel_type - color - pattern - power_source -- id: ha-15-62-3-1 - name: Back Saws + - suitable_for_material_type +- id: ha-15-62-8 + name: Panel Saws children: [] attributes: - color - pattern + - power_source - suitable_for_material_type -- id: ha-15-62-3-2 - name: Coping Saws +- id: ha-15-62-9 + name: Reciprocating Saws children: [] attributes: - color - pattern + - power_source - suitable_for_material_type -- id: ha-15-62-3-3 - name: Hacksaws - children: [] +- id: ha-15-62-10 + name: Scroll Saws + children: + - ha-15-62-10-1 + - ha-15-62-10-2 attributes: - color - pattern + - power_source - suitable_for_material_type - id: ha-15-62-10-1 name: C-Arm Scroll Saws @@ -9293,27 +9126,83 @@ - pattern - power_source - suitable_for_material_type +- id: ha-15-62-11 + name: Table Saws + children: [] + attributes: + - color + - pattern + - power_source + - suitable_for_material_type +- id: ha-15-63 + name: Screwdrivers + children: + - ha-15-63-1 + - ha-15-63-2 + - ha-15-63-3 + attributes: + - color + - hardware_material + - pattern - id: ha-15-63-1 name: Flathead Screwdrivers children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-63-2 name: Phillips Screwdrivers children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-63-3 name: Torx Screwdrivers children: [] attributes: - color + - hardware_material + - pattern +- id: ha-15-64 + name: Shapers + children: [] + attributes: + - color - pattern + - power_source + - suitable_for_material_type +- id: ha-15-65 + name: Sharpeners + children: [] + attributes: + - color + - pattern +- id: ha-15-66 + name: Socket Drivers + children: [] + attributes: + - color - hardware_material + - pattern + - socket_driver_tip + - tool_operation +- id: ha-15-67 + name: Soldering Irons + children: [] + attributes: + - color + - pattern + - power_source +- id: ha-15-68 + name: Tap Reseaters + children: + - ha-15-68-1 + - ha-15-68-2 + attributes: + - color + - pattern - id: ha-15-68-1 name: Manual Tap Reseaters children: [] @@ -9326,48 +9215,114 @@ attributes: - color - pattern +- id: ha-15-69 + name: Taps & Dies + children: + - ha-15-69-1 + - ha-15-69-2 + - ha-15-69-3 + attributes: + - color + - hardware_material + - pattern - id: ha-15-69-1 name: Hex Dies children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-69-2 name: Spiral-Flute Taps children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-69-3 name: Straight-Flute Taps children: [] attributes: - color + - hardware_material + - pattern +- id: ha-15-70 + name: Threading Machines + children: [] + attributes: + - color - pattern + - power_source +- id: ha-15-71 + name: Tool Clamps & Vises + children: + - ha-15-71-1 + - ha-15-71-2 + - ha-15-71-3 + attributes: + - color - hardware_material + - pattern - id: ha-15-71-1 name: Bar Clamps children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-71-2 name: Bench Vises children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-71-3 name: C-Clamps children: [] attributes: - color + - hardware_material + - pattern +- id: ha-15-72 + name: Tool Files + children: [] + attributes: + - color + - hardware_material + - pattern +- id: ha-15-73 + name: Tool Keys + children: [] + attributes: + - color + - hardware_material - pattern + - tool_key_tip +- id: ha-15-74 + name: Tool Knives + children: [] + attributes: + - color - hardware_material + - pattern +- id: ha-15-75 + name: Tool Sets + children: + - ha-15-75-1 + - ha-15-75-2 + attributes: + - color + - pattern +- id: ha-15-75-1 + name: Hand Tool Sets + children: + - ha-15-75-1-1 + - ha-15-75-1-2 + - ha-15-75-1-3 + attributes: + - color + - pattern - id: ha-15-75-1-1 name: Electrician Tool Sets children: [] @@ -9386,6 +9341,13 @@ attributes: - color - pattern +- id: ha-15-75-2 + name: Power Tool Combo Sets + children: [] + attributes: + - color + - pattern + - power_source - id: ha-15-76 name: Welders children: @@ -9409,6 +9371,16 @@ - color - pattern - power_source +- id: ha-15-77 + name: Welding Guns & Plasma Cutters + children: + - ha-15-77-1 + - ha-15-77-2 + - ha-15-77-3 + attributes: + - color + - pattern + - power_source - id: ha-15-77-1 name: MIG Torches children: [] @@ -9430,47 +9402,75 @@ - color - pattern - power_source +- id: ha-15-78 + name: Wire & Cable Hand Tools + children: + - ha-15-78-1 + - ha-15-78-2 + - ha-15-78-3 + attributes: + - color + - hardware_material + - pattern - id: ha-15-78-1 name: Cable Cutters children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-78-2 name: Crimping Tools children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-78-3 name: Wire Strippers children: [] attributes: - color + - hardware_material + - pattern +- id: ha-15-79 + name: Work Lights + children: [] + attributes: + - bulb_type + - color - pattern + - power_source +- id: ha-15-80 + name: Wrenches + children: + - ha-15-80-1 + - ha-15-80-2 + - ha-15-80-3 + attributes: + - color - hardware_material + - pattern - id: ha-15-80-1 name: Adjustable Wrenches children: [] attributes: - color - - pattern - hardware_material + - pattern - id: ha-15-80-2 name: Socket Wrenches children: [] attributes: - color - drive_size - - pattern - hardware_material + - pattern - id: ha-15-80-3 name: Torque Wrenches children: [] attributes: - color - drive_size - - pattern - hardware_material + - pattern diff --git a/data/categories/hb_health_beauty.yml b/data/categories/hb_health_beauty.yml index c0ec54f1..ee1a16d0 100644 --- a/data/categories/hb_health_beauty.yml +++ b/data/categories/hb_health_beauty.yml @@ -290,9 +290,9 @@ children: [] attributes: - case_color + - bag_case_material - first_aid_kit_usage - usage_type - - bag_case_material - id: hb-1-8-5 name: Hot & Cold Therapies children: @@ -319,9 +319,9 @@ attributes: - body_area - color + - heat_source - treatment_objective - usage_type - - heat_source - id: hb-1-8-5-3 name: Ice Packs children: [] @@ -336,9 +336,9 @@ children: [] attributes: - color + - medical_tape_material - product_sterility - usage_type - - medical_tape_material - id: hb-1-9 name: Fitness & Nutrition children: @@ -399,7 +399,99 @@ - dietary_preferences - flavor - ingredient_category - - product_certifications_and_standards + - product_certifications_standards + - food_supplement_form +- id: hb-1-9-6-1 + name: Amino Acids + children: [] + attributes: + - age_group + - detailed_ingredients + - dietary_preferences + - flavor + - product_certifications_standards + - food_supplement_form +- id: hb-1-9-6-2 + name: Collagen + children: [] + attributes: + - age_group + - detailed_ingredients + - dietary_preferences + - flavor + - product_certifications_standards + - food_supplement_form +- id: hb-1-9-6-3 + name: Creatine + children: [] + attributes: + - age_group + - detailed_ingredients + - dietary_preferences + - flavor + - product_certifications_standards + - food_supplement_form +- id: hb-1-9-6-4 + name: Digestive Supplements + children: [] + attributes: + - age_group + - detailed_ingredients + - dietary_preferences + - flavor + - product_certifications_standards + - food_supplement_form +- id: hb-1-9-6-5 + name: Herbal Supplements + children: [] + attributes: + - age_group + - detailed_ingredients + - dietary_preferences + - flavor + - product_certifications_standards + - food_supplement_form +- id: hb-1-9-6-6 + name: Minerals + children: [] + attributes: + - age_group + - detailed_ingredients + - dietary_preferences + - flavor + - product_certifications_standards + - food_supplement_form +- id: hb-1-9-6-7 + name: Multivitamin Supplements + children: [] + attributes: + - age_group + - detailed_ingredients + - dietary_preferences + - flavor + - product_certifications_standards + - food_supplement_form + - target_gender +- id: hb-1-9-6-8 + name: Protein Supplements + children: [] + attributes: + - age_group + - detailed_ingredients + - dietary_preferences + - flavor + - ingredient_category + - product_certifications_standards + - food_supplement_form +- id: hb-1-9-6-9 + name: Single Vitamins + children: [] + attributes: + - age_group + - detailed_ingredients + - dietary_preferences + - flavor + - product_certifications_standards - food_supplement_form - id: hb-1-10 name: Hearing Aids @@ -417,8 +509,88 @@ attributes: - age_group - battery_type + - hearing_aid_material + - technology_level +- id: hb-1-10-1 + name: Behind-The-Ear (BTE) Hearing Aids + children: [] + attributes: + - age_group + - battery_type + - hearing_aid_material + - technology_level +- id: hb-1-10-2 + name: Body-Worn Hearing Aids + children: [] + attributes: + - age_group + - battery_type + - hearing_aid_material + - technology_level +- id: hb-1-10-3 + name: Bone-Anchored Hearing Aids (BAHA) + children: [] + attributes: + - age_group + - battery_type + - hearing_aid_material + - technology_level +- id: hb-1-10-4 + name: Completely-In-Canal (CIC) Hearing Aids + children: [] + attributes: + - age_group + - battery_type + - hearing_aid_material + - technology_level +- id: hb-1-10-5 + name: Full-Shell In-the-Ear (FSITE) Hearing Aids + children: [] + attributes: + - age_group + - battery_type + - hearing_aid_material + - technology_level +- id: hb-1-10-6 + name: Half-Shell In-the-Ear (HSITE) Hearing Aids + children: [] + attributes: + - age_group + - battery_type + - hearing_aid_material + - technology_level +- id: hb-1-10-7 + name: In-The-Canal (ITC) Hearing Aids + children: [] + attributes: + - age_group + - battery_type + - hearing_aid_material + - technology_level +- id: hb-1-10-8 + name: In-The-Ear (ITE) Hearing Aids + children: [] + attributes: + - age_group + - battery_type + - hearing_aid_material + - technology_level +- id: hb-1-10-9 + name: Invisible-In-Canal (IIC) Hearing Aids + children: [] + attributes: + - age_group + - battery_type + - hearing_aid_material - technology_level +- id: hb-1-10-10 + name: Mini Behind-The-Ear (mBTE) Hearing Aids + children: [] + attributes: + - age_group + - battery_type - hearing_aid_material + - technology_level - id: hb-1-11 name: Incontinence Aids children: @@ -429,6 +601,29 @@ - absorbency_level - accessory_size - color +- id: hb-1-11-6 + name: Adult Diapers + children: [] + attributes: + - absorbency_level + - accessory_size + - diaper_type + - material + - target_gender +- id: hb-1-11-7 + name: Bed Pads + children: [] + attributes: + - absorbency_level + - accessory_size + - material +- id: hb-1-11-8 + name: Incontinence Pads + children: [] + attributes: + - absorbency_level + - accessory_size + - material - id: hb-1-12 name: Light Therapy Lamps children: [] @@ -569,8 +764,43 @@ - hb-1-17-3-1-5 attributes: - attachment_type + - furniture_fixture_material + - mounting_type +- id: hb-1-17-3-1-1 + name: Padded Shower Benches + children: [] + attributes: + - attachment_type + - furniture_fixture_material + - mounting_type +- id: hb-1-17-3-1-2 + name: Shower Benches + children: [] + attributes: + - attachment_type + - furniture_fixture_material + - mounting_type +- id: hb-1-17-3-1-3 + name: Shower Seats + children: [] + attributes: + - attachment_type + - furniture_fixture_material + - mounting_type +- id: hb-1-17-3-1-4 + name: Transfer Benches + children: [] + attributes: + - attachment_type + - furniture_fixture_material - mounting_type +- id: hb-1-17-3-1-5 + name: Wall-Mounted Shower Seats + children: [] + attributes: + - attachment_type - furniture_fixture_material + - mounting_type - id: hb-1-17-4 name: Walking Aid Accessories children: [] @@ -595,6 +825,30 @@ attributes: - color - material +- id: hb-1-17-5-1-1 + name: Folding Canes + children: [] + attributes: + - color + - material +- id: hb-1-17-5-1-2 + name: Offset Canes + children: [] + attributes: + - color + - material +- id: hb-1-17-5-1-3 + name: Quad Canes + children: [] + attributes: + - color + - material +- id: hb-1-17-5-1-4 + name: Walking Sticks + children: [] + attributes: + - color + - material - id: hb-1-17-5-2 name: Crutches children: [] @@ -655,11 +909,26 @@ - hb-1-20-3-3 attributes: - power_source -- id: hb-1-20-4 - name: PAP Masks +- id: hb-1-20-3-1 + name: APAP Machines children: [] attributes: - - mask_type + - power_source +- id: hb-1-20-3-2 + name: BiPAP Machines + children: [] + attributes: + - power_source +- id: hb-1-20-3-3 + name: CPAP Machines + children: [] + attributes: + - power_source +- id: hb-1-20-4 + name: PAP Masks + children: [] + attributes: + - mask_type - id: hb-1-20-5 name: Steam Inhalers children: [] @@ -692,6 +961,48 @@ - closure_type - color - support_brace_material +- id: hb-1-24-1 + name: Ankle Supports + children: [] + attributes: + - closure_type + - color + - support_brace_material +- id: hb-1-24-2 + name: Back Braces + children: [] + attributes: + - closure_type + - color + - support_brace_material +- id: hb-1-24-3 + name: Elbow Supports + children: [] + attributes: + - closure_type + - color + - support_brace_material +- id: hb-1-24-4 + name: Knee Braces + children: [] + attributes: + - closure_type + - color + - support_brace_material +- id: hb-1-24-5 + name: Neck Braces + children: [] + attributes: + - closure_type + - color + - support_brace_material +- id: hb-1-24-6 + name: Wrist Braces + children: [] + attributes: + - closure_type + - color + - support_brace_material - id: hb-1-25 name: Surgical Lubricants children: [] @@ -712,9 +1023,9 @@ name: Jewelry Cleaning Solutions & Polishes children: [] attributes: + - suitable_for_precious_material - package_type - product_form - - suitable_for_precious_material - id: hb-2-2 name: Jewelry Cleaning Tools children: @@ -724,6 +1035,26 @@ - hb-2-2-4 attributes: - suitable_for_precious_material +- id: hb-2-2-1 + name: Jewelry Cleaning Brushes + children: [] + attributes: + - suitable_for_precious_material +- id: hb-2-2-2 + name: Jewelry Polishing Cloths + children: [] + attributes: + - suitable_for_precious_material +- id: hb-2-2-3 + name: Jewelry Steam Cleaners + children: [] + attributes: + - suitable_for_precious_material +- id: hb-2-2-4 + name: Ultrasonic Jewelry Cleaners + children: [] + attributes: + - suitable_for_precious_material - id: hb-2-3 name: Jewelry Holders children: @@ -733,6 +1064,26 @@ - hb-2-3-4 - hb-2-3-5 attributes: [] +- id: hb-2-3-1 + name: Jewelry Boxes + children: [] + attributes: [] +- id: hb-2-3-2 + name: Jewelry Stands + children: [] + attributes: [] +- id: hb-2-3-3 + name: Jewelry Trays + children: [] + attributes: [] +- id: hb-2-3-4 + name: Ring Holders + children: [] + attributes: [] +- id: hb-2-3-5 + name: Wall-Mounted Jewelry Organizers + children: [] + attributes: [] - id: hb-2-4 name: Jewelry Steam Cleaners children: [] @@ -749,6 +1100,7 @@ - hb-3-2 - hb-3-3 - hb-3-4 + - hb-3-5 - hb-3-6 - hb-3-7 - hb-3-8 @@ -763,7 +1115,6 @@ - hb-3-17 - hb-3-18 - hb-3-19 - - hb-3-5 attributes: [] - id: hb-3-1 name: Back Care @@ -784,8 +1135,8 @@ - hb-3-2-5 - hb-3-2-6 - hb-3-2-7 - - hb-3-2-9 - hb-3-2-8 + - hb-3-2-9 attributes: [] - id: hb-3-2-1 name: Bath & Body @@ -796,10 +1147,10 @@ - hb-3-2-1-4 - hb-3-2-1-5 - hb-3-2-1-6 + - hb-3-2-1-7 - hb-3-2-1-8 - hb-3-2-1-9 - hb-3-2-1-10 - - hb-3-2-1-7 attributes: - scent - id: hb-3-2-1-1 @@ -842,6 +1193,12 @@ - dispenser_type - product_form - scent +- id: hb-3-2-1-7 + name: Hygienic Wipes + children: [] + attributes: + - wipe_packaging + - scent - id: hb-3-2-1-8 name: Liquid Hand Soap children: [] @@ -892,7 +1249,6 @@ - id: hb-3-2-5-1 name: Makeup Tools children: - - hb-3-2-5-1-12 - hb-3-2-5-1-3 - hb-3-2-5-1-4 - hb-3-2-5-1-5 @@ -902,10 +1258,7 @@ - hb-3-2-5-1-9 - hb-3-2-5-1-10 - hb-3-2-5-1-11 - attributes: [] -- id: hb-3-2-5-1-12 - name: Double Eyelid Glue & Tape - children: [] + - hb-3-2-5-1-12 attributes: [] - id: hb-3-2-5-1-3 name: Eyebrow Stencils @@ -927,8 +1280,8 @@ name: Face Mirrors children: [] attributes: - - shape - mounting_hardware + - shape - id: hb-3-2-5-1-7 name: Facial Blotting Paper children: [] @@ -975,6 +1328,10 @@ children: [] attributes: - compatible_makeup +- id: hb-3-2-5-1-12 + name: Double Eyelid Glue & Tape + children: [] + attributes: [] - id: hb-3-2-5-2 name: Nail Tools children: @@ -1112,20 +1469,14 @@ - hb-3-2-6-6 - hb-3-2-6-7 attributes: - - product_certifications_and_standards + - product_certifications_standards - id: hb-3-2-6-1 name: Body Makeup children: - - hb-3-2-6-1-4 - hb-3-2-6-1-2 + - hb-3-2-6-1-4 attributes: - - product_certifications_and_standards - - product_form -- id: hb-3-2-6-1-4 - name: Body & Hair Glitter - children: [] - attributes: - - product_certifications_and_standards + - product_certifications_standards - product_form - id: hb-3-2-6-1-2 name: Body Paint & Foundation @@ -1133,35 +1484,59 @@ attributes: - color - cosmetic_finish - - product_certifications_and_standards + - product_certifications_standards - product_form - skin_tone - skin_undertone +- id: hb-3-2-6-1-4 + name: Body & Hair Glitter + children: [] + attributes: + - product_certifications_standards + - product_form - id: hb-3-2-6-2 name: Costume & Stage Makeup children: [] attributes: - - product_certifications_and_standards + - product_certifications_standards - id: hb-3-2-6-3 name: Eye Makeup children: + - hb-3-2-6-3-1 + - hb-3-2-6-3-2 - hb-3-2-6-3-3 - hb-3-2-6-3-4 - hb-3-2-6-3-5 - hb-3-2-6-3-6 - - hb-3-2-6-3-1 - - hb-3-2-6-3-2 - hb-3-2-6-3-7 - hb-3-2-6-3-8 attributes: - color - - product_certifications_and_standards + - product_certifications_standards +- id: hb-3-2-6-3-1 + name: Eye Primers + children: [] + attributes: + - color + - dispenser_type + - product_certifications_standards + - product_form + - skin_care_effect +- id: hb-3-2-6-3-2 + name: Eye Shadows + children: [] + attributes: + - color + - cosmetic_finish + - eye_shadow_effect + - product_certifications_standards + - product_form - id: hb-3-2-6-3-3 name: Eyebrow Enhancers children: [] attributes: - cosmetic_finish - - product_certifications_and_standards + - product_certifications_standards - product_form - id: hb-3-2-6-3-4 name: Eyeliner @@ -1170,7 +1545,7 @@ - color - cosmetic_finish - dispenser_type - - product_certifications_and_standards + - product_certifications_standards - product_form - id: hb-3-2-6-3-5 name: False Eyelashes @@ -1178,26 +1553,40 @@ attributes: - accessory_size - color - - product_certifications_and_standards - eyelash_material + - product_certifications_standards - id: hb-3-2-6-3-6 name: Lash & Brow Growth Treatments children: [] attributes: - color - - product_certifications_and_standards + - product_certifications_standards + - product_form +- id: hb-3-2-6-3-7 + name: Mascara Primers + children: [] + attributes: + - color + - product_certifications_standards - product_form +- id: hb-3-2-6-3-8 + name: Mascaras + children: [] + attributes: + - color + - mascara_effect + - product_certifications_standards - id: hb-3-2-6-4 name: Face Makeup children: - hb-3-2-6-4-1 - hb-3-2-6-4-2 + - hb-3-2-6-4-3 - hb-3-2-6-4-4 - hb-3-2-6-4-5 - - hb-3-2-6-4-3 attributes: - cosmetic_finish - - product_certifications_and_standards + - product_certifications_standards - product_form - suitable_for_skin_type - id: hb-3-2-6-4-1 @@ -1208,7 +1597,7 @@ - cosmetic_finish - dispenser_type - product_benefits - - product_certifications_and_standards + - product_certifications_standards - product_form - suitable_for_skin_type - id: hb-3-2-6-4-2 @@ -1217,17 +1606,27 @@ attributes: - cosmetic_finish - dispenser_type - - product_certifications_and_standards + - product_certifications_standards - product_form - skin_tone - suitable_for_skin_type +- id: hb-3-2-6-4-3 + name: Face Primers + children: [] + attributes: + - cosmetic_finish + - dispenser_type + - product_certifications_standards + - product_form + - skin_care_effect + - suitable_for_skin_type - id: hb-3-2-6-4-4 name: Foundations & Concealers children: [] attributes: - cosmetic_finish - dispenser_type - - product_certifications_and_standards + - product_certifications_standards - product_form - skin_care_effect - skin_tone @@ -1239,7 +1638,7 @@ attributes: - cosmetic_finish - dispenser_type - - product_certifications_and_standards + - product_certifications_standards - product_form - suitable_for_skin_type - id: hb-3-2-6-5 @@ -1252,14 +1651,14 @@ - hb-3-2-6-5-6 attributes: - color - - product_certifications_and_standards + - product_certifications_standards - id: hb-3-2-6-5-1 name: Lip & Cheek Stains children: [] attributes: - color - cosmetic_finish - - product_certifications_and_standards + - product_certifications_standards - id: hb-3-2-6-5-2 name: Lip Gloss children: [] @@ -1267,22 +1666,50 @@ - color - cosmetic_finish - lip_gloss_effect - - product_certifications_and_standards + - product_certifications_standards +- id: hb-3-2-6-5-3 + name: Lip Liners + children: [] + attributes: + - color + - cosmetic_finish + - product_benefits + - product_certifications_standards + - texture +- id: hb-3-2-6-5-5 + name: Lip Primers + children: [] + attributes: + - color + - cosmetic_finish + - dispenser_type + - product_certifications_standards + - texture +- id: hb-3-2-6-5-6 + name: Lipsticks + children: [] + attributes: + - color + - cosmetic_finish + - lipstick_effect + - product_certifications_standards + - texture - id: hb-3-2-6-6 name: Makeup Finishing Sprays children: [] attributes: - cosmetic_finish - - product_certifications_and_standards + - product_certifications_standards - id: hb-3-2-6-7 name: Temporary Tattoos children: [] attributes: - color - - product_certifications_and_standards + - product_certifications_standards - id: hb-3-2-7 name: Nail Care children: + - hb-3-2-7-1 - hb-3-2-7-2 - hb-3-2-7-3 - hb-3-2-7-4 @@ -1290,9 +1717,28 @@ - hb-3-2-7-9 - hb-3-2-7-10 - hb-3-2-7-11 - - hb-3-2-7-1 attributes: - - product_certifications_and_standards + - product_certifications_standards +- id: hb-3-2-7-1 + name: Cuticle Creams & Oil + children: + - hb-3-2-7-1-1 + - hb-3-2-7-1-2 + attributes: + - detailed_ingredients + - product_certifications_standards +- id: hb-3-2-7-1-1 + name: Cuticle Creams + children: [] + attributes: + - detailed_ingredients + - product_certifications_standards +- id: hb-3-2-7-1-2 + name: Cuticle Oil + children: [] + attributes: + - detailed_ingredients + - product_certifications_standards - id: hb-3-2-7-2 name: False Nails children: [] @@ -1300,38 +1746,38 @@ - color - nail_design - nail_shape - - product_certifications_and_standards + - product_certifications_standards - id: hb-3-2-7-3 name: Manicure Glue children: [] attributes: - drying_speed - glue_strength - - product_certifications_and_standards + - product_certifications_standards - id: hb-3-2-7-4 name: Nail Art Kits & Accessories children: [] attributes: - color - - product_certifications_and_standards + - product_certifications_standards - id: hb-3-2-7-8 name: Nail Polish Drying Drops & Sprays children: [] attributes: - drying_speed - - product_certifications_and_standards + - product_certifications_standards - polish_dry_form - id: hb-3-2-7-9 name: Nail Polish Removers children: [] attributes: - polish_remover_form - - product_certifications_and_standards + - product_certifications_standards - id: hb-3-2-7-10 name: Nail Polish Thinners children: [] attributes: - - product_certifications_and_standards + - product_certifications_standards - id: hb-3-2-7-11 name: Nail Polishes children: [] @@ -1339,44 +1785,93 @@ - color - cosmetic_finish - product_benefits -- id: hb-3-2-9 - name: Skin Care +- id: hb-3-2-8 + name: Perfumes & Colognes children: - - hb-3-2-9-1 - - hb-3-2-9-3 - - hb-3-2-9-4 - - hb-3-2-9-5 - - hb-3-2-9-6 - - hb-3-2-9-7 - - hb-3-2-9-8 - - hb-3-2-9-9 - - hb-3-2-9-11 - - hb-3-2-9-12 - - hb-3-2-9-13 - - hb-3-2-9-14 - - hb-3-2-9-15 - - hb-3-2-9-16 - - hb-3-2-9-17 - - hb-3-2-9-18 - - hb-3-2-9-2 - - hb-3-2-9-10 - attributes: - - product_certifications_and_standards - - product_form - - skin_care_effect - - suitable_for_skin_type -- id: hb-3-2-9-1 - name: Acne Treatments & Kits - children: [] + - hb-3-2-8-1 + - hb-3-2-8-2 + - hb-3-2-8-3 + - hb-3-2-8-4 attributes: - - active_ingredient - - product_certifications_and_standards + - occasion + - scent + - season + - target_gender +- id: hb-3-2-8-1 + name: Body Mists + children: [] + attributes: + - occasion + - scent + - season +- id: hb-3-2-8-2 + name: Colognes + children: [] + attributes: + - occasion + - scent + - season +- id: hb-3-2-8-3 + name: Eaux de Parfum + children: [] + attributes: + - occasion + - scent + - season +- id: hb-3-2-8-4 + name: Eaux De Toilette + children: [] + attributes: + - occasion + - scent + - season +- id: hb-3-2-9 + name: Skin Care + children: + - hb-3-2-9-1 + - hb-3-2-9-2 + - hb-3-2-9-3 + - hb-3-2-9-4 + - hb-3-2-9-5 + - hb-3-2-9-6 + - hb-3-2-9-7 + - hb-3-2-9-8 + - hb-3-2-9-9 + - hb-3-2-9-10 + - hb-3-2-9-11 + - hb-3-2-9-12 + - hb-3-2-9-13 + - hb-3-2-9-14 + - hb-3-2-9-15 + - hb-3-2-9-16 + - hb-3-2-9-17 + - hb-3-2-9-18 + attributes: + - product_certifications_standards + - product_form + - skin_care_effect + - suitable_for_skin_type +- id: hb-3-2-9-1 + name: Acne Treatments & Kits + children: [] + attributes: + - active_ingredient + - product_certifications_standards +- id: hb-3-2-9-2 + name: Anti-Aging Skin Care + children: [] + attributes: + - active_ingredient + - product_certifications_standards + - product_form + - skin_care_effect + - suitable_for_skin_type - id: hb-3-2-9-3 name: Body Oil children: [] attributes: - active_ingredient - - product_certifications_and_standards + - product_certifications_standards - product_form - skin_care_effect - suitable_for_skin_type @@ -1385,17 +1880,17 @@ children: [] attributes: - active_ingredient - - product_certifications_and_standards + - product_certifications_standards + - package_type - skin_care_effect - suitable_for_skin_type - - package_type - id: hb-3-2-9-5 name: Compressed Skin Care Mask Sheets children: [] attributes: - active_ingredient - material - - product_certifications_and_standards + - product_certifications_standards - product_form - skin_care_effect - suitable_for_skin_type @@ -1405,7 +1900,7 @@ attributes: - active_ingredient - package_type - - product_certifications_and_standards + - product_certifications_standards - product_form - skin_care_effect - suitable_for_skin_type @@ -1415,7 +1910,7 @@ attributes: - active_ingredient - package_type - - product_certifications_and_standards + - product_certifications_standards - product_form - skin_care_effect - suitable_for_skin_type @@ -1425,7 +1920,7 @@ attributes: - active_ingredient - package_type - - product_certifications_and_standards + - product_certifications_standards - product_form - skin_care_effect - suitable_for_skin_type @@ -1436,7 +1931,7 @@ - hb-3-2-9-9-2 attributes: - package_type - - product_certifications_and_standards + - product_certifications_standards - product_form - suitable_for_skin_type - target_gender @@ -1449,7 +1944,7 @@ - cosmetic_finish - flavor - package_type - - product_certifications_and_standards + - product_certifications_standards - product_form - suitable_for_skin_type - target_gender @@ -1461,18 +1956,28 @@ - cosmetic_finish - cosmetic_function - package_type - - product_certifications_and_standards + - product_certifications_standards - product_form - scent - suitable_for_skin_type - target_gender +- id: hb-3-2-9-10 + name: Lotions & Moisturizers + children: [] + attributes: + - cosmetic_function + - detailed_ingredients + - package_type + - product_certifications_standards + - product_form + - suitable_for_skin_type - id: hb-3-2-9-11 name: Makeup Removers children: [] attributes: - cosmetic_function - package_type - - product_certifications_and_standards + - product_certifications_standards - suitable_for_skin_type - id: hb-3-2-9-12 name: Petroleum Jelly @@ -1480,14 +1985,14 @@ attributes: - cosmetic_function - package_type - - product_certifications_and_standards + - product_certifications_standards - suitable_for_skin_type - id: hb-3-2-9-13 name: Skin Care Masks & Peels children: [] attributes: - allergens - - product_certifications_and_standards + - product_certifications_standards - skin_care_effect - suitable_for_skin_type - target_gender @@ -1496,7 +2001,7 @@ children: [] attributes: - dispenser_type - - product_certifications_and_standards + - product_certifications_standards - suitable_for_bug_type - id: hb-3-2-9-15 name: Sunscreen @@ -1504,7 +2009,7 @@ attributes: - application_area - dispenser_type - - product_certifications_and_standards + - product_certifications_standards - product_form - skin_care_effect - suitable_for_skin_type @@ -1516,7 +2021,7 @@ attributes: - application_area - dispenser_type - - product_certifications_and_standards + - product_certifications_standards - product_form - skin_care_effect - tan_type @@ -1526,7 +2031,17 @@ attributes: - application_area - dispenser_type - - product_certifications_and_standards + - product_certifications_standards + - product_form + - skin_care_effect + - tan_type +- id: hb-3-2-9-16-2 + name: Tanning Oil & Lotions + children: [] + attributes: + - application_area + - dispenser_type + - product_certifications_standards - product_form - skin_care_effect - tan_type @@ -1539,7 +2054,7 @@ - active_ingredient - cosmetic_function - package_type - - product_certifications_and_standards + - product_certifications_standards - product_form - suitable_for_skin_type - id: hb-3-2-9-17-1 @@ -1549,7 +2064,7 @@ - active_ingredient - cosmetic_function - package_type - - product_certifications_and_standards + - product_certifications_standards - product_form - suitable_for_skin_type - id: hb-3-2-9-17-2 @@ -1559,7 +2074,7 @@ - active_ingredient - cosmetic_function - package_type - - product_certifications_and_standards + - product_certifications_standards - product_form - suitable_for_skin_type - id: hb-3-2-9-18 @@ -1568,7 +2083,7 @@ attributes: - body_area - dispenser_type - - product_certifications_and_standards + - product_certifications_standards - product_form - id: hb-3-3 name: Cotton Balls @@ -1580,6 +2095,33 @@ children: [] attributes: - color +- id: hb-3-5 + name: Deodorants & Anti-Perspirant + children: + - hb-3-5-1 + - hb-3-5-2 + attributes: + - dispenser_type + - product_certifications_standards + - product_form + - target_gender +- id: hb-3-5-1 + name: Anti-Perspirant + children: [] + attributes: + - dispenser_type + - product_certifications_standards + - product_form + - scent + - target_gender +- id: hb-3-5-2 + name: Deodorants + children: [] + attributes: + - dispenser_type + - product_certifications_standards + - scent + - target_gender - id: hb-3-6 name: Ear Care children: @@ -1596,15 +2138,15 @@ name: Ear Candles children: [] attributes: - - scent - candle_material + - scent - id: hb-3-6-2 name: Ear Drops children: [] attributes: + - ear_car_application_method - product_form - treatment_objective - - ear_car_application_method - id: hb-3-6-3 name: Ear Dryers children: [] @@ -1642,6 +2184,27 @@ - accessory_size - earplug_use - material +- id: hb-3-6-8-1 + name: Foam Earplugs + children: [] + attributes: + - accessory_size + - earplug_use + - material +- id: hb-3-6-8-2 + name: Moldable Earplugs + children: [] + attributes: + - accessory_size + - earplug_use + - material +- id: hb-3-6-8-3 + name: Pre-Molded Earplugs + children: [] + attributes: + - accessory_size + - earplug_use + - material - id: hb-3-7 name: Enema Kits & Supplies children: [] @@ -1651,12 +2214,25 @@ - id: hb-3-8 name: Feminine Sanitary Supplies children: + - hb-3-8-2 + - hb-3-8-3 - hb-3-8-4 - hb-3-8-5 - hb-3-8-6 - - hb-3-8-2 - - hb-3-8-3 attributes: [] +- id: hb-3-8-2 + name: Feminine Deodorants + children: [] + attributes: + - product_form + - scent +- id: hb-3-8-3 + name: Feminine Douches + children: [] + attributes: + - fragrance + - treatment_objective + - usage_type - id: hb-3-8-4 name: Feminine Pads & Protectors children: @@ -1669,7 +2245,49 @@ attributes: - absorbency_level - material - - product_certifications_and_standards + - product_certifications_standards +- id: hb-3-8-4-1 + name: Maternity Pads & Protectors + children: [] + attributes: + - absorbency_level + - material + - product_certifications_standards +- id: hb-3-8-4-2 + name: Menstrual Pads & Protectors + children: [] + attributes: + - absorbency_level + - material + - product_certifications_standards +- id: hb-3-8-4-3 + name: Overnight Pads & Protectors + children: [] + attributes: + - absorbency_level + - material + - product_certifications_standards +- id: hb-3-8-4-4 + name: Panty Liners + children: [] + attributes: + - absorbency_level + - material + - product_certifications_standards +- id: hb-3-8-4-5 + name: Regular Pads & Protectors + children: [] + attributes: + - absorbency_level + - material + - product_certifications_standards +- id: hb-3-8-4-6 + name: Reusable Clothes + children: [] + attributes: + - absorbency_level + - material + - product_certifications_standards - id: hb-3-8-5 name: Menstrual Cups children: [] @@ -1684,7 +2302,7 @@ children: [] attributes: - applicator_material - - product_certifications_and_standards + - product_certifications_standards - id: hb-3-9 name: Foot Care children: @@ -1724,8 +2342,32 @@ attributes: - body_area - compatible_shoe_size + - clothing_accessory_material + - treatment_objective +- id: hb-3-9-4-1 + name: Arch Supports + children: [] + attributes: + - body_area + - compatible_shoe_size + - clothing_accessory_material + - treatment_objective +- id: hb-3-9-4-2 + name: Gel Heel Pads + children: [] + attributes: + - body_area + - compatible_shoe_size + - clothing_accessory_material - treatment_objective +- id: hb-3-9-4-3 + name: Metatarsal Cushions + children: [] + attributes: + - body_area + - compatible_shoe_size - clothing_accessory_material + - treatment_objective - id: hb-3-9-5 name: Toe Spacers children: [] @@ -1831,6 +2473,18 @@ attributes: - accessory_size - material +- id: hb-3-10-11-1-1 + name: Clips + children: [] + attributes: + - accessory_size + - material +- id: hb-3-10-11-1-2 + name: Pins + children: [] + attributes: + - accessory_size + - material - id: hb-3-10-11-2 name: Hair Dryer Accessories children: [] @@ -1864,1343 +2518,107 @@ - hb-3-10-12-2-6 attributes: - color -- id: hb-3-10-12-3 - name: Curling Irons +- id: hb-3-10-12-2-1 + name: Hair Combs children: [] attributes: - - barrel_material - color - - hair_care_technology - - heat_settings -- id: hb-3-10-12-5 - name: Hair Curlers +- id: hb-3-10-12-2-2 + name: Hairbrushes & Combs children: [] attributes: - color - - curler_type - - heat_settings - - material -- id: hb-3-10-12-6 - name: Hair Dryers +- id: hb-3-10-12-2-3 + name: Hot Air Brushes children: [] attributes: - color -- id: hb-3-10-12-7 - name: Hair Straighteners - children: [] - attributes: - - heat_settings - - plate_type -- id: hb-3-10-12-9 - name: Hair Styling Tool Sets +- id: hb-3-10-12-2-4 + name: Paddle Hairbrushes children: [] attributes: - color - - hair_care_technology -- id: hb-3-10-13 - name: Shampoo & Conditioner - children: - - hb-3-10-13-1 - - hb-3-10-13-3 - - hb-3-10-13-2 - attributes: - - compatible_hair_color - - product_certifications_and_standards - - suitable_for_hair_type - - target_gender -- id: hb-3-10-13-1 - name: Conditioners - children: - - hb-3-10-13-1-1 - - hb-3-10-13-1-2 - - hb-3-10-13-1-3 - - hb-3-10-13-1-4 - - hb-3-10-13-1-5 - - hb-3-10-13-1-6 - - hb-3-10-13-1-7 - - hb-3-10-13-1-8 - - hb-3-10-13-1-9 - - hb-3-10-13-1-10 - - hb-3-10-13-1-11 - attributes: - - compatible_hair_color - - conditioner_effect - - product_certifications_and_standards - - suitable_for_hair_type - - target_gender -- id: hb-3-10-13-3 - name: Shampoo - children: - - hb-3-10-13-3-1 - - hb-3-10-13-3-2 - - hb-3-10-13-3-3 - - hb-3-10-13-3-4 - - hb-3-10-13-3-5 - - hb-3-10-13-3-6 - - hb-3-10-13-3-7 - - hb-3-10-13-3-8 - - hb-3-10-13-3-9 - - hb-3-10-13-3-10 - - hb-3-10-13-3-11 - - hb-3-10-13-3-12 - - hb-3-10-13-3-13 - - hb-3-10-13-3-14 - attributes: - - compatible_hair_color - - product_certifications_and_standards - - shampoo_type - - suitable_for_hair_type - - target_gender -- id: hb-3-10-13-2 - name: Shampoo & Conditioner Sets - children: - - hb-3-10-13-2-1 - - hb-3-10-13-2-2 - - hb-3-10-13-2-3 - - hb-3-10-13-2-4 - - hb-3-10-13-2-5 - - hb-3-10-13-2-6 - attributes: - - compatible_hair_color - - suitable_for_hair_type - - target_gender -- id: hb-3-11 - name: Massage & Relaxation - children: - - hb-3-11-1 - - hb-3-11-2 - - hb-3-11-3 - - hb-3-11-4 - - hb-3-11-5 - - hb-3-11-6 - - hb-3-11-7 - - hb-3-11-8 - attributes: - - heat_function - - massage_technique -- id: hb-3-11-1 - name: Back Scratchers - children: [] - attributes: - - claw_design - - material -- id: hb-3-11-2 - name: Eye Pillows - children: [] - attributes: - - accessory_size - - eye_pillow_shape - - scent -- id: hb-3-11-3 - name: Massage Chairs - children: [] - attributes: - - massage_area - - massage_technique - - reclining_function -- id: hb-3-11-4 - name: Massage Oil - children: [] - attributes: - - aromatherapy - - base_oil - - texture -- id: hb-3-11-5 - name: Massage Stone Warmers - children: [] - attributes: - - stone_name -- id: hb-3-11-6 - name: Massage Stones - children: [] - attributes: - - shape - - stone_name - - stone_type - - stone_material - - massage_stone_texture -- id: hb-3-11-7 - name: Massage Tables - children: [] - attributes: - - material -- id: hb-3-11-8 - name: Massagers - children: - - hb-3-11-8-1 - - hb-3-11-8-2 - - hb-3-11-8-3 - attributes: [] -- id: hb-3-11-8-1 - name: Electric Massagers - children: [] - attributes: - - application_area - - massage_technique - - power_source -- id: hb-3-11-8-2 - name: Manual Massage Tools - children: [] - attributes: - - massage_technique -- id: hb-3-11-8-3 - name: Massage Cushions - children: [] - attributes: - - body_area -- id: hb-3-12 - name: Oral Care - children: - - hb-3-12-2 - - hb-3-12-3 - - hb-3-12-4 - - hb-3-12-5 - - hb-3-12-6 - - hb-3-12-7 - - hb-3-12-8 - - hb-3-12-9 - - hb-3-12-10 - - hb-3-12-11 - - hb-3-12-12 - - hb-3-12-13 - - hb-3-12-14 - - hb-3-12-15 - - hb-3-12-16 - - hb-3-12-17 - - hb-3-12-19 - - hb-3-12-18 - - hb-3-12-20 - - hb-3-12-1 - attributes: [] -- id: hb-3-12-2 - name: Dental Floss - children: [] - attributes: - - dental_floss_thickness_level - - flavor - - material -- id: hb-3-12-3 - name: Dental Mouthguards - children: [] - attributes: - - age_group - - dental_mouthguard_certifications - - material -- id: hb-3-12-4 - name: Dental Water Jet Replacement Tips - children: [] - attributes: - - color - - compatible_makeup -- id: hb-3-12-5 - name: Dental Water Jets - children: [] - attributes: - - nozzle_type - - power_source -- id: hb-3-12-6 - name: Denture Adhesives - children: [] - attributes: [] -- id: hb-3-12-7 - name: Denture Cleaners - children: [] - attributes: - - product_form -- id: hb-3-12-8 - name: Denture Repair Kits - children: [] - attributes: - - material -- id: hb-3-12-9 - name: Dentures - children: [] - attributes: - - denture_base_color - - denture_teeth_color - - material - - target_gender -- id: hb-3-12-10 - name: Gum Stimulators - children: - - hb-3-12-10-1 - - hb-3-12-10-2 - attributes: - - accessory_size - - handle_grip_texture - - material - - stimulator_tip_shape -- id: hb-3-12-11 - name: Mouthwash - children: [] - attributes: [] -- id: hb-3-12-12 - name: Orthodontic Appliance Cases - children: - - hb-3-12-12-1 - - hb-3-12-12-2 - attributes: - - accessory_size - - closure_type - - color - - bag_case_material -- id: hb-3-12-13 - name: Power Flossers - children: [] - attributes: - - color - - power_source -- id: hb-3-12-14 - name: Teeth Whiteners - children: - - hb-3-12-14-1 - - hb-3-12-14-2 - - hb-3-12-14-3 - - hb-3-12-14-4 - - hb-3-12-14-5 - - hb-3-12-14-6 - - hb-3-12-14-7 - - hb-3-12-14-8 - - hb-3-12-14-9 - - hb-3-12-14-10 - attributes: - - peroxide_content - - usage_frequency -- id: hb-3-12-15 - name: Tongue Scrapers - children: [] - attributes: - - color -- id: hb-3-12-16 - name: Toothbrush Accessories - children: - - hb-3-12-16-1 - - hb-3-12-16-2 - - hb-3-12-16-3 - attributes: [] -- id: hb-3-12-16-1 - name: Toothbrush Covers - children: [] - attributes: - - color -- id: hb-3-12-16-2 - name: Toothbrush Replacement Heads - children: [] - attributes: - - color -- id: hb-3-12-16-3 - name: Toothbrush Sanitizers - children: [] - attributes: - - color - - mounting_type - - power_source - - suitable_for_toothbrush -- id: hb-3-12-17 - name: Toothbrushes - children: - - hb-3-12-17-1 - - hb-3-12-17-2 - - hb-3-12-17-3 - attributes: - - age_group - - color -- id: hb-3-12-19 - name: Toothpaste - children: [] - attributes: - - age_group - - toothpaste_type -- id: hb-3-12-18 - name: Toothpaste Squeezers & Dispensers - children: [] - attributes: - - color - - material - - mounting_type -- id: hb-3-12-20 - name: Toothpicks - children: [] - attributes: - - toothpick_design -- id: hb-3-13 - name: Personal Lubricants - children: [] - attributes: - - lubricant_application - - lubricant_composition -- id: hb-3-14 - name: Shaving & Grooming - children: - - hb-3-14-1 - - hb-3-14-2 - - hb-3-14-3 - - hb-3-14-4 - - hb-3-14-5 - - hb-3-14-6 - - hb-3-14-7 - - hb-3-14-8 - - hb-3-14-9 - - hb-3-14-10 - - hb-3-14-12 - - hb-3-14-13 - - hb-3-14-11 - attributes: [] -- id: hb-3-14-1 - name: Aftershave - children: [] - attributes: - - suitable_for_skin_type -- id: hb-3-14-2 - name: Body & Facial Hair Bleach - children: [] - attributes: - - application_method - - body_facial_hair_type -- id: hb-3-14-3 - name: Electric Razor Accessories - children: [] - attributes: - - color - - material -- id: hb-3-14-4 - name: Electric Razors - children: - - hb-3-14-4-1 - - hb-3-14-4-2 - - hb-3-14-4-3 - attributes: - - razor_flexibility - - razor_head_design - - usage_conditions -- id: hb-3-14-5 - name: Hair Clipper & Trimmer Accessories - children: [] - attributes: - - material -- id: hb-3-14-6 - name: Hair Clippers & Trimmers - children: [] - attributes: - - battery_size - - color - - power_source -- id: hb-3-14-7 - name: Hair Removal - children: - - hb-3-14-7-1 - - hb-3-14-7-2 - - hb-3-14-7-3 - - hb-3-14-7-4 - - hb-3-14-7-5 - - hb-3-14-7-6 - attributes: [] -- id: hb-3-14-7-1 - name: Depilatories - children: [] - attributes: - - body_area -- id: hb-3-14-7-2 - name: Electrolysis Devices - children: [] - attributes: - - body_area - - hair_care_technology - - power_source -- id: hb-3-14-7-3 - name: Epilators - children: [] - attributes: - - color -- id: hb-3-14-7-4 - name: Hair Removal Wax Warmers - children: [] - attributes: - - color -- id: hb-3-14-7-5 - name: Laser & IPL Hair Removal Devices - children: - - hb-3-14-7-5-1 - - hb-3-14-7-5-2 - attributes: - - body_area - - compatible_hair_color - - suitable_for_skin_tone -- id: hb-3-14-7-6 - name: Waxing Kits & Supplies - children: [] - attributes: [] -- id: hb-3-14-8 - name: Razors & Razor Blades - children: [] - attributes: - - target_gender -- id: hb-3-14-9 - name: Shaving Bowls & Mugs - children: [] - attributes: - - color -- id: hb-3-14-10 - name: Shaving Brushes - children: [] - attributes: - - color - - bristle_material -- id: hb-3-14-12 - name: Shaving Kits - children: [] - attributes: - - brush_type - - razor_type - - shaving_kit_components -- id: hb-3-14-13 - name: Styptic Pencils - children: [] - attributes: - - active_ingredient - - suitable_for_skin_type -- id: hb-3-15 - name: Sleeping Aids - children: - - hb-3-15-1 - - hb-3-15-2 - - hb-3-15-3 - - hb-3-15-4 - attributes: [] -- id: hb-3-15-1 - name: Eye Masks - children: [] - attributes: - - color - - material -- id: hb-3-15-2 - name: Snoring & Sleep Apnea Aids - children: - - hb-3-15-2-1 - - hb-3-15-2-2 - - hb-3-15-2-3 - - hb-3-15-2-4 - - hb-3-15-2-5 - - hb-3-15-2-6 - attributes: - - material - - treatment_objective -- id: hb-3-15-3 - name: Travel Pillows - children: [] - attributes: - - travel_pillow_shape -- id: hb-3-15-4 - name: White Noise Machines - children: [] - attributes: - - color -- id: hb-3-16 - name: Spray Tanning Tents - children: [] - attributes: - - accessory_size - - color - - material -- id: hb-3-17 - name: Tanning Beds - children: [] - attributes: [] -- id: hb-3-18 - name: Tweezers - children: [] - attributes: - - color -- id: hb-3-19 - name: Vision Care - children: - - hb-3-19-1 - - hb-3-19-2 - - hb-3-19-3 - - hb-3-19-4 - - hb-3-19-5 - - hb-3-19-6 - attributes: [] -- id: hb-3-19-1 - name: Contact Lens Care - children: - - hb-3-19-1-1 - - hb-3-19-1-2 - - hb-3-19-1-3 - - hb-3-19-1-4 - attributes: [] -- id: hb-3-19-1-1 - name: Contact Lens Care Kits - children: [] - attributes: - - package_type - - solution_type -- id: hb-3-19-1-2 - name: Contact Lens Cases - children: - - hb-3-19-1-2-1 - - hb-3-19-1-2-2 - attributes: - - accessory_size - - color - - bag_case_material -- id: hb-3-19-1-3 - name: Contact Lens Solution - children: [] - attributes: - - bottle_type - - solution_type -- id: hb-3-19-2 - name: Eye Drops & Lubricants - children: [] - attributes: [] -- id: hb-3-19-3 - name: Eyeglass Lenses - children: [] - attributes: - - eyewear_lens_material -- id: hb-3-19-4 - name: Eyeglasses - children: [] - attributes: - - frame_shape - - lens_coating - - lens_type - - optical_frame_design - - eyewear_frame_material - - eyewear_lens_material -- id: hb-3-19-5 - name: Eyewear Accessories - children: - - hb-3-19-5-1 - - hb-3-19-5-2 - - hb-3-19-5-3 - - hb-3-19-5-4 - attributes: [] -- id: hb-3-19-5-1 - name: Eyewear Cases & Holders - children: [] - attributes: - - accessory_size - - closure_type - - bag_case_material -- id: hb-3-19-5-2 - name: Eyewear Lens Cleaning Solutions - children: [] - attributes: - - bottle_type - - solution_type -- id: hb-3-19-5-3 - name: Eyewear Replacement Parts - children: [] - attributes: [] -- id: hb-3-19-5-4 - name: Eyewear Straps & Chains - children: - - hb-3-19-5-4-1 - - hb-3-19-5-4-2 - attributes: - - color - - material -- id: hb-3-19-6 - name: Sunglass Lenses - children: [] - attributes: - - color - - lens_type - - uv_protection - - eyewear_lens_material -- id: hb-1-9-6-1 - name: Amino Acids - children: [] - attributes: - - age_group - - detailed_ingredients - - dietary_preferences - - flavor - - product_certifications_and_standards - - food_supplement_form -- id: hb-1-9-6-2 - name: Collagen - children: [] - attributes: - - age_group - - detailed_ingredients - - dietary_preferences - - flavor - - product_certifications_and_standards - - food_supplement_form -- id: hb-1-9-6-3 - name: Creatine - children: [] - attributes: - - age_group - - detailed_ingredients - - dietary_preferences - - flavor - - product_certifications_and_standards - - food_supplement_form -- id: hb-1-9-6-4 - name: Digestive Supplements - children: [] - attributes: - - age_group - - detailed_ingredients - - dietary_preferences - - flavor - - product_certifications_and_standards - - food_supplement_form -- id: hb-1-9-6-5 - name: Herbal Supplements - children: [] - attributes: - - age_group - - detailed_ingredients - - dietary_preferences - - flavor - - product_certifications_and_standards - - food_supplement_form -- id: hb-1-9-6-6 - name: Minerals - children: [] - attributes: - - age_group - - detailed_ingredients - - dietary_preferences - - flavor - - product_certifications_and_standards - - food_supplement_form -- id: hb-1-9-6-7 - name: Multivitamin Supplements - children: [] - attributes: - - age_group - - detailed_ingredients - - dietary_preferences - - flavor - - product_certifications_and_standards - - target_gender - - food_supplement_form -- id: hb-1-9-6-8 - name: Protein Supplements - children: [] - attributes: - - age_group - - detailed_ingredients - - dietary_preferences - - flavor - - ingredient_category - - product_certifications_and_standards - - food_supplement_form -- id: hb-1-9-6-9 - name: Single Vitamins - children: [] - attributes: - - age_group - - detailed_ingredients - - dietary_preferences - - flavor - - product_certifications_and_standards - - food_supplement_form -- id: hb-1-10-1 - name: Behind-The-Ear (BTE) Hearing Aids - children: [] - attributes: - - age_group - - battery_type - - technology_level - - hearing_aid_material -- id: hb-1-10-2 - name: Body-Worn Hearing Aids - children: [] - attributes: - - age_group - - battery_type - - technology_level - - hearing_aid_material -- id: hb-1-10-3 - name: Bone-Anchored Hearing Aids (BAHA) - children: [] - attributes: - - age_group - - battery_type - - technology_level - - hearing_aid_material -- id: hb-1-10-4 - name: Completely-In-Canal (CIC) Hearing Aids - children: [] - attributes: - - age_group - - battery_type - - technology_level - - hearing_aid_material -- id: hb-1-10-5 - name: Full-Shell In-the-Ear (FSITE) Hearing Aids - children: [] - attributes: - - age_group - - battery_type - - technology_level - - hearing_aid_material -- id: hb-1-10-6 - name: Half-Shell In-the-Ear (HSITE) Hearing Aids - children: [] - attributes: - - age_group - - battery_type - - technology_level - - hearing_aid_material -- id: hb-1-10-7 - name: In-The-Canal (ITC) Hearing Aids - children: [] - attributes: - - age_group - - battery_type - - technology_level - - hearing_aid_material -- id: hb-1-10-8 - name: In-The-Ear (ITE) Hearing Aids - children: [] - attributes: - - age_group - - battery_type - - technology_level - - hearing_aid_material -- id: hb-1-10-9 - name: Invisible-In-Canal (IIC) Hearing Aids - children: [] - attributes: - - age_group - - battery_type - - technology_level - - hearing_aid_material -- id: hb-1-10-10 - name: Mini Behind-The-Ear (mBTE) Hearing Aids - children: [] - attributes: - - age_group - - battery_type - - technology_level - - hearing_aid_material -- id: hb-1-11-6 - name: Adult Diapers - children: [] - attributes: - - absorbency_level - - accessory_size - - diaper_type - - material - - target_gender -- id: hb-1-11-7 - name: Bed Pads - children: [] - attributes: - - absorbency_level - - accessory_size - - material -- id: hb-1-11-8 - name: Incontinence Pads - children: [] - attributes: - - absorbency_level - - accessory_size - - material -- id: hb-1-17-3-1-1 - name: Padded Shower Benches - children: [] - attributes: - - attachment_type - - mounting_type - - furniture_fixture_material -- id: hb-1-17-3-1-2 - name: Shower Benches - children: [] - attributes: - - attachment_type - - mounting_type - - furniture_fixture_material -- id: hb-1-17-3-1-3 - name: Shower Seats - children: [] - attributes: - - attachment_type - - mounting_type - - furniture_fixture_material -- id: hb-1-17-3-1-4 - name: Transfer Benches - children: [] - attributes: - - attachment_type - - mounting_type - - furniture_fixture_material -- id: hb-1-17-3-1-5 - name: Wall-Mounted Shower Seats - children: [] - attributes: - - attachment_type - - mounting_type - - furniture_fixture_material -- id: hb-1-17-5-1-1 - name: Folding Canes - children: [] - attributes: - - color - - material -- id: hb-1-17-5-1-2 - name: Offset Canes - children: [] - attributes: - - color - - material -- id: hb-1-17-5-1-3 - name: Quad Canes - children: [] - attributes: - - color - - material -- id: hb-1-17-5-1-4 - name: Walking Sticks - children: [] - attributes: - - color - - material -- id: hb-1-20-3-1 - name: APAP Machines - children: [] - attributes: - - power_source -- id: hb-1-20-3-2 - name: BiPAP Machines - children: [] - attributes: - - power_source -- id: hb-1-20-3-3 - name: CPAP Machines - children: [] - attributes: - - power_source -- id: hb-1-24-1 - name: Ankle Supports - children: [] - attributes: - - closure_type - - color - - support_brace_material -- id: hb-1-24-2 - name: Back Braces - children: [] - attributes: - - closure_type - - color - - support_brace_material -- id: hb-1-24-3 - name: Elbow Supports - children: [] - attributes: - - closure_type - - color - - support_brace_material -- id: hb-1-24-4 - name: Knee Braces - children: [] - attributes: - - closure_type - - color - - support_brace_material -- id: hb-1-24-5 - name: Neck Braces - children: [] - attributes: - - closure_type - - color - - support_brace_material -- id: hb-1-24-6 - name: Wrist Braces - children: [] - attributes: - - closure_type - - color - - support_brace_material -- id: hb-2-2-1 - name: Jewelry Cleaning Brushes - children: [] - attributes: - - suitable_for_precious_material -- id: hb-2-2-2 - name: Jewelry Polishing Cloths - children: [] - attributes: - - suitable_for_precious_material -- id: hb-2-2-3 - name: Jewelry Steam Cleaners - children: [] - attributes: - - suitable_for_precious_material -- id: hb-2-2-4 - name: Ultrasonic Jewelry Cleaners - children: [] - attributes: - - suitable_for_precious_material -- id: hb-2-3-1 - name: Jewelry Boxes - children: [] - attributes: [] -- id: hb-2-3-2 - name: Jewelry Stands - children: [] - attributes: [] -- id: hb-2-3-3 - name: Jewelry Trays - children: [] - attributes: [] -- id: hb-2-3-4 - name: Ring Holders - children: [] - attributes: [] -- id: hb-2-3-5 - name: Wall-Mounted Jewelry Organizers - children: [] - attributes: [] -- id: hb-3-2-1-7 - name: Hygienic Wipes - children: [] - attributes: - - scent - - wipe_packaging -- id: hb-3-2-6-3-1 - name: Eye Primers - children: [] - attributes: - - color - - dispenser_type - - product_certifications_and_standards - - product_form - - skin_care_effect -- id: hb-3-2-6-3-2 - name: Eye Shadows - children: [] - attributes: - - color - - cosmetic_finish - - eye_shadow_effect - - product_certifications_and_standards - - product_form -- id: hb-3-2-6-3-7 - name: Mascara Primers - children: [] - attributes: - - color - - product_certifications_and_standards - - product_form -- id: hb-3-2-6-3-8 - name: Mascaras - children: [] - attributes: - - color - - mascara_effect - - product_certifications_and_standards -- id: hb-3-2-6-4-3 - name: Face Primers - children: [] - attributes: - - cosmetic_finish - - dispenser_type - - product_certifications_and_standards - - product_form - - skin_care_effect - - suitable_for_skin_type -- id: hb-3-2-6-5-3 - name: Lip Liners - children: [] - attributes: - - color - - cosmetic_finish - - product_benefits - - product_certifications_and_standards - - texture -- id: hb-3-2-6-5-5 - name: Lip Primers - children: [] - attributes: - - color - - cosmetic_finish - - dispenser_type - - product_certifications_and_standards - - texture -- id: hb-3-2-6-5-6 - name: Lipsticks - children: [] - attributes: - - color - - cosmetic_finish - - lipstick_effect - - product_certifications_and_standards - - texture -- id: hb-3-2-7-1 - name: Cuticle Creams & Oil - children: - - hb-3-2-7-1-1 - - hb-3-2-7-1-2 - attributes: - - detailed_ingredients - - product_certifications_and_standards -- id: hb-3-2-7-1-1 - name: Cuticle Creams - children: [] - attributes: - - detailed_ingredients - - product_certifications_and_standards -- id: hb-3-2-7-1-2 - name: Cuticle Oil - children: [] - attributes: - - detailed_ingredients - - product_certifications_and_standards -- id: hb-3-2-8 - name: Perfumes & Colognes - children: - - hb-3-2-8-1 - - hb-3-2-8-2 - - hb-3-2-8-3 - - hb-3-2-8-4 - attributes: - - occasion - - scent - - season - - target_gender -- id: hb-3-2-8-1 - name: Body Mists - children: [] - attributes: - - occasion - - scent - - season -- id: hb-3-2-8-2 - name: Colognes - children: [] - attributes: - - occasion - - scent - - season -- id: hb-3-2-8-3 - name: Eaux de Parfum - children: [] - attributes: - - occasion - - scent - - season -- id: hb-3-2-8-4 - name: Eaux De Toilette - children: [] - attributes: - - occasion - - scent - - season -- id: hb-3-2-9-2 - name: Anti-Aging Skin Care - children: [] - attributes: - - active_ingredient - - product_certifications_and_standards - - product_form - - skin_care_effect - - suitable_for_skin_type -- id: hb-3-2-9-10 - name: Lotions & Moisturizers - children: [] - attributes: - - cosmetic_function - - detailed_ingredients - - package_type - - product_certifications_and_standards - - product_form - - suitable_for_skin_type -- id: hb-3-2-9-16-2 - name: Tanning Oil & Lotions - children: [] - attributes: - - application_area - - dispenser_type - - product_certifications_and_standards - - product_form - - skin_care_effect - - tan_type -- id: hb-3-5 - name: Deodorants & Anti-Perspirant - children: - - hb-3-5-1 - - hb-3-5-2 - attributes: - - dispenser_type - - product_certifications_and_standards - - product_form - - target_gender -- id: hb-3-5-1 - name: Anti-Perspirant - children: [] - attributes: - - dispenser_type - - product_certifications_and_standards - - product_form - - scent - - target_gender -- id: hb-3-5-2 - name: Deodorants - children: [] - attributes: - - dispenser_type - - product_certifications_and_standards - - scent - - target_gender -- id: hb-3-6-8-1 - name: Foam Earplugs - children: [] - attributes: - - accessory_size - - earplug_use - - material -- id: hb-3-6-8-2 - name: Moldable Earplugs - children: [] - attributes: - - accessory_size - - earplug_use - - material -- id: hb-3-6-8-3 - name: Pre-Molded Earplugs - children: [] - attributes: - - accessory_size - - earplug_use - - material -- id: hb-3-8-2 - name: Feminine Deodorants - children: [] - attributes: - - product_form - - scent -- id: hb-3-8-3 - name: Feminine Douches - children: [] - attributes: - - fragrance - - treatment_objective - - usage_type -- id: hb-3-8-4-1 - name: Maternity Pads & Protectors - children: [] - attributes: - - absorbency_level - - material - - product_certifications_and_standards -- id: hb-3-8-4-2 - name: Menstrual Pads & Protectors - children: [] - attributes: - - absorbency_level - - material - - product_certifications_and_standards -- id: hb-3-8-4-3 - name: Overnight Pads & Protectors - children: [] - attributes: - - absorbency_level - - material - - product_certifications_and_standards -- id: hb-3-8-4-4 - name: Panty Liners - children: [] - attributes: - - absorbency_level - - material - - product_certifications_and_standards -- id: hb-3-8-4-5 - name: Regular Pads & Protectors - children: [] - attributes: - - absorbency_level - - material - - product_certifications_and_standards -- id: hb-3-8-4-6 - name: Reusable Clothes - children: [] - attributes: - - absorbency_level - - material - - product_certifications_and_standards -- id: hb-3-9-4-1 - name: Arch Supports - children: [] - attributes: - - body_area - - compatible_shoe_size - - treatment_objective - - clothing_accessory_material -- id: hb-3-9-4-2 - name: Gel Heel Pads - children: [] - attributes: - - body_area - - compatible_shoe_size - - treatment_objective - - clothing_accessory_material -- id: hb-3-9-4-3 - name: Metatarsal Cushions - children: [] - attributes: - - body_area - - compatible_shoe_size - - treatment_objective - - clothing_accessory_material -- id: hb-3-10-11-1-1 - name: Clips - children: [] - attributes: - - accessory_size - - material -- id: hb-3-10-11-1-2 - name: Pins +- id: hb-3-10-12-2-5 + name: Round Hairbrushes children: [] attributes: - - accessory_size - - material -- id: hb-3-10-12-2-1 - name: Hair Combs + - color +- id: hb-3-10-12-2-6 + name: Straightening Brushes children: [] attributes: - color -- id: hb-3-10-12-2-2 - name: Hairbrushes & Combs +- id: hb-3-10-12-3 + name: Curling Irons children: [] attributes: + - barrel_material - color -- id: hb-3-10-12-2-3 - name: Hot Air Brushes + - hair_care_technology + - heat_settings +- id: hb-3-10-12-5 + name: Hair Curlers children: [] attributes: - color -- id: hb-3-10-12-2-4 - name: Paddle Hairbrushes + - curler_type + - heat_settings + - material +- id: hb-3-10-12-6 + name: Hair Dryers children: [] attributes: - color -- id: hb-3-10-12-2-5 - name: Round Hairbrushes +- id: hb-3-10-12-7 + name: Hair Straighteners children: [] attributes: - - color -- id: hb-3-10-12-2-6 - name: Straightening Brushes + - heat_settings + - plate_type +- id: hb-3-10-12-9 + name: Hair Styling Tool Sets children: [] attributes: - color + - hair_care_technology +- id: hb-3-10-13 + name: Shampoo & Conditioner + children: + - hb-3-10-13-1 + - hb-3-10-13-2 + - hb-3-10-13-3 + attributes: + - compatible_hair_color + - product_certifications_standards + - suitable_for_hair_type + - target_gender +- id: hb-3-10-13-1 + name: Conditioners + children: + - hb-3-10-13-1-1 + - hb-3-10-13-1-2 + - hb-3-10-13-1-3 + - hb-3-10-13-1-4 + - hb-3-10-13-1-5 + - hb-3-10-13-1-6 + - hb-3-10-13-1-7 + - hb-3-10-13-1-8 + - hb-3-10-13-1-9 + - hb-3-10-13-1-10 + - hb-3-10-13-1-11 + attributes: + - compatible_hair_color + - conditioner_effect + - product_certifications_standards + - suitable_for_hair_type + - target_gender - id: hb-3-10-13-1-1 name: Co-Wash Conditioners children: [] attributes: - compatible_hair_color - conditioner_effect - - product_certifications_and_standards + - product_certifications_standards - suitable_for_hair_type - target_gender - id: hb-3-10-13-1-2 @@ -3209,7 +2627,7 @@ attributes: - compatible_hair_color - conditioner_effect - - product_certifications_and_standards + - product_certifications_standards - suitable_for_hair_type - target_gender - id: hb-3-10-13-1-3 @@ -3218,7 +2636,7 @@ attributes: - compatible_hair_color - conditioner_effect - - product_certifications_and_standards + - product_certifications_standards - suitable_for_hair_type - target_gender - id: hb-3-10-13-1-4 @@ -3227,7 +2645,7 @@ attributes: - compatible_hair_color - conditioner_effect - - product_certifications_and_standards + - product_certifications_standards - suitable_for_hair_type - target_gender - id: hb-3-10-13-1-5 @@ -3236,7 +2654,7 @@ attributes: - compatible_hair_color - conditioner_effect - - product_certifications_and_standards + - product_certifications_standards - suitable_for_hair_type - target_gender - id: hb-3-10-13-1-6 @@ -3245,7 +2663,7 @@ attributes: - compatible_hair_color - conditioner_effect - - product_certifications_and_standards + - product_certifications_standards - suitable_for_hair_type - target_gender - id: hb-3-10-13-1-7 @@ -3254,7 +2672,7 @@ attributes: - compatible_hair_color - conditioner_effect - - product_certifications_and_standards + - product_certifications_standards - suitable_for_hair_type - target_gender - id: hb-3-10-13-1-8 @@ -3263,7 +2681,7 @@ attributes: - compatible_hair_color - conditioner_effect - - product_certifications_and_standards + - product_certifications_standards - suitable_for_hair_type - target_gender - id: hb-3-10-13-1-9 @@ -3272,7 +2690,7 @@ attributes: - compatible_hair_color - conditioner_effect - - product_certifications_and_standards + - product_certifications_standards - suitable_for_hair_type - target_gender - id: hb-3-10-13-1-10 @@ -3281,7 +2699,7 @@ attributes: - compatible_hair_color - conditioner_effect - - product_certifications_and_standards + - product_certifications_standards - suitable_for_hair_type - target_gender - id: hb-3-10-13-1-11 @@ -3290,7 +2708,85 @@ attributes: - compatible_hair_color - conditioner_effect - - product_certifications_and_standards + - product_certifications_standards + - suitable_for_hair_type + - target_gender +- id: hb-3-10-13-2 + name: Shampoo & Conditioner Sets + children: + - hb-3-10-13-2-1 + - hb-3-10-13-2-2 + - hb-3-10-13-2-3 + - hb-3-10-13-2-4 + - hb-3-10-13-2-5 + - hb-3-10-13-2-6 + attributes: + - compatible_hair_color + - suitable_for_hair_type + - target_gender +- id: hb-3-10-13-2-1 + name: Color-Safe Sets + children: [] + attributes: + - compatible_hair_color + - suitable_for_hair_type + - target_gender +- id: hb-3-10-13-2-2 + name: Hydrating Sets + children: [] + attributes: + - compatible_hair_color + - suitable_for_hair_type + - target_gender +- id: hb-3-10-13-2-3 + name: Repairing Sets + children: [] + attributes: + - compatible_hair_color + - suitable_for_hair_type + - target_gender +- id: hb-3-10-13-2-4 + name: Scalp Care Sets + children: [] + attributes: + - compatible_hair_color + - suitable_for_hair_type + - target_gender +- id: hb-3-10-13-2-5 + name: Smoothing Sets + children: [] + attributes: + - compatible_hair_color + - suitable_for_hair_type + - target_gender +- id: hb-3-10-13-2-6 + name: Volumizing Sets + children: [] + attributes: + - compatible_hair_color + - suitable_for_hair_type + - target_gender +- id: hb-3-10-13-3 + name: Shampoo + children: + - hb-3-10-13-3-1 + - hb-3-10-13-3-2 + - hb-3-10-13-3-3 + - hb-3-10-13-3-4 + - hb-3-10-13-3-5 + - hb-3-10-13-3-6 + - hb-3-10-13-3-7 + - hb-3-10-13-3-8 + - hb-3-10-13-3-9 + - hb-3-10-13-3-10 + - hb-3-10-13-3-11 + - hb-3-10-13-3-12 + - hb-3-10-13-3-13 + - hb-3-10-13-3-14 + attributes: + - compatible_hair_color + - product_certifications_standards + - shampoo_type - suitable_for_hair_type - target_gender - id: hb-3-10-13-3-1 @@ -3298,7 +2794,7 @@ children: [] attributes: - compatible_hair_color - - product_certifications_and_standards + - product_certifications_standards - shampoo_type - suitable_for_hair_type - target_gender @@ -3307,7 +2803,7 @@ children: [] attributes: - compatible_hair_color - - product_certifications_and_standards + - product_certifications_standards - shampoo_type - suitable_for_hair_type - target_gender @@ -3316,7 +2812,7 @@ children: [] attributes: - compatible_hair_color - - product_certifications_and_standards + - product_certifications_standards - shampoo_type - suitable_for_hair_type - target_gender @@ -3325,7 +2821,7 @@ children: [] attributes: - compatible_hair_color - - product_certifications_and_standards + - product_certifications_standards - shampoo_type - suitable_for_hair_type - target_gender @@ -3334,7 +2830,7 @@ children: [] attributes: - compatible_hair_color - - product_certifications_and_standards + - product_certifications_standards - shampoo_type - suitable_for_hair_type - target_gender @@ -3343,7 +2839,7 @@ children: [] attributes: - compatible_hair_color - - product_certifications_and_standards + - product_certifications_standards - shampoo_type - suitable_for_hair_type - target_gender @@ -3352,7 +2848,7 @@ children: [] attributes: - compatible_hair_color - - product_certifications_and_standards + - product_certifications_standards - shampoo_type - suitable_for_hair_type - target_gender @@ -3361,7 +2857,7 @@ children: [] attributes: - compatible_hair_color - - product_certifications_and_standards + - product_certifications_standards - shampoo_type - suitable_for_hair_type - target_gender @@ -3370,7 +2866,7 @@ children: [] attributes: - compatible_hair_color - - product_certifications_and_standards + - product_certifications_standards - shampoo_type - suitable_for_hair_type - target_gender @@ -3379,7 +2875,7 @@ children: [] attributes: - compatible_hair_color - - product_certifications_and_standards + - product_certifications_standards - shampoo_type - suitable_for_hair_type - target_gender @@ -3388,7 +2884,7 @@ children: [] attributes: - compatible_hair_color - - product_certifications_and_standards + - product_certifications_standards - shampoo_type - suitable_for_hair_type - target_gender @@ -3396,77 +2892,200 @@ name: Smoothing Shampoo children: [] attributes: - - compatible_hair_color - - product_certifications_and_standards - - shampoo_type - - suitable_for_hair_type - - target_gender -- id: hb-3-10-13-3-13 - name: Toning Shampoo + - compatible_hair_color + - product_certifications_standards + - shampoo_type + - suitable_for_hair_type + - target_gender +- id: hb-3-10-13-3-13 + name: Toning Shampoo + children: [] + attributes: + - compatible_hair_color + - product_certifications_standards + - shampoo_type + - suitable_for_hair_type + - target_gender +- id: hb-3-10-13-3-14 + name: Volumizing Shampoo + children: [] + attributes: + - compatible_hair_color + - product_certifications_standards + - shampoo_type + - suitable_for_hair_type + - target_gender +- id: hb-3-11 + name: Massage & Relaxation + children: + - hb-3-11-1 + - hb-3-11-2 + - hb-3-11-3 + - hb-3-11-4 + - hb-3-11-5 + - hb-3-11-6 + - hb-3-11-7 + - hb-3-11-8 + attributes: + - heat_function + - massage_technique +- id: hb-3-11-1 + name: Back Scratchers + children: [] + attributes: + - claw_design + - material +- id: hb-3-11-2 + name: Eye Pillows + children: [] + attributes: + - accessory_size + - eye_pillow_shape + - scent +- id: hb-3-11-3 + name: Massage Chairs + children: [] + attributes: + - massage_area + - massage_technique + - reclining_function +- id: hb-3-11-4 + name: Massage Oil + children: [] + attributes: + - aromatherapy + - base_oil + - texture +- id: hb-3-11-5 + name: Massage Stone Warmers + children: [] + attributes: + - stone_name +- id: hb-3-11-6 + name: Massage Stones + children: [] + attributes: + - stone_material + - shape + - stone_name + - stone_type + - massage_stone_texture +- id: hb-3-11-7 + name: Massage Tables + children: [] + attributes: + - material +- id: hb-3-11-8 + name: Massagers + children: + - hb-3-11-8-1 + - hb-3-11-8-2 + - hb-3-11-8-3 + attributes: [] +- id: hb-3-11-8-1 + name: Electric Massagers + children: [] + attributes: + - application_area + - massage_technique + - power_source +- id: hb-3-11-8-2 + name: Manual Massage Tools + children: [] + attributes: + - massage_technique +- id: hb-3-11-8-3 + name: Massage Cushions + children: [] + attributes: + - body_area +- id: hb-3-12 + name: Oral Care + children: + - hb-3-12-1 + - hb-3-12-2 + - hb-3-12-3 + - hb-3-12-4 + - hb-3-12-5 + - hb-3-12-6 + - hb-3-12-7 + - hb-3-12-8 + - hb-3-12-9 + - hb-3-12-10 + - hb-3-12-11 + - hb-3-12-12 + - hb-3-12-13 + - hb-3-12-14 + - hb-3-12-15 + - hb-3-12-16 + - hb-3-12-17 + - hb-3-12-18 + - hb-3-12-19 + - hb-3-12-20 + attributes: [] +- id: hb-3-12-1 + name: Breath Sprays children: [] attributes: - - compatible_hair_color - - product_certifications_and_standards - - shampoo_type - - suitable_for_hair_type - - target_gender -- id: hb-3-10-13-3-14 - name: Volumizing Shampoo + - breath_sprays_certifications + - flavor +- id: hb-3-12-2 + name: Dental Floss children: [] attributes: - - compatible_hair_color - - product_certifications_and_standards - - shampoo_type - - suitable_for_hair_type - - target_gender -- id: hb-3-10-13-2-1 - name: Color-Safe Sets + - dental_floss_thickness_level + - flavor + - material +- id: hb-3-12-3 + name: Dental Mouthguards children: [] attributes: - - compatible_hair_color - - suitable_for_hair_type - - target_gender -- id: hb-3-10-13-2-2 - name: Hydrating Sets + - age_group + - dental_mouthguard_certifications + - material +- id: hb-3-12-4 + name: Dental Water Jet Replacement Tips children: [] attributes: - - compatible_hair_color - - suitable_for_hair_type - - target_gender -- id: hb-3-10-13-2-3 - name: Repairing Sets + - color +- id: hb-3-12-5 + name: Dental Water Jets children: [] attributes: - - compatible_hair_color - - suitable_for_hair_type - - target_gender -- id: hb-3-10-13-2-4 - name: Scalp Care Sets + - nozzle_type + - power_source +- id: hb-3-12-6 + name: Denture Adhesives + children: [] + attributes: [] +- id: hb-3-12-7 + name: Denture Cleaners children: [] attributes: - - compatible_hair_color - - suitable_for_hair_type - - target_gender -- id: hb-3-10-13-2-5 - name: Smoothing Sets + - product_form +- id: hb-3-12-8 + name: Denture Repair Kits children: [] attributes: - - compatible_hair_color - - suitable_for_hair_type - - target_gender -- id: hb-3-10-13-2-6 - name: Volumizing Sets + - material +- id: hb-3-12-9 + name: Dentures children: [] attributes: - - compatible_hair_color - - suitable_for_hair_type + - denture_base_color + - denture_teeth_color + - material - target_gender -- id: hb-3-12-1 - name: Breath Sprays - children: [] +- id: hb-3-12-10 + name: Gum Stimulators + children: + - hb-3-12-10-1 + - hb-3-12-10-2 attributes: - - breath_sprays_certifications - - flavor + - accessory_size + - handle_grip_texture + - material + - stimulator_tip_shape - id: hb-3-12-10-1 name: Electric Gum Stimulators children: [] @@ -3483,6 +3102,20 @@ - handle_grip_texture - material - stimulator_tip_shape +- id: hb-3-12-11 + name: Mouthwash + children: [] + attributes: [] +- id: hb-3-12-12 + name: Orthodontic Appliance Cases + children: + - hb-3-12-12-1 + - hb-3-12-12-2 + attributes: + - accessory_size + - closure_type + - color + - bag_case_material - id: hb-3-12-12-1 name: Hard Orthodontic Appliance Cases children: [] @@ -3499,6 +3132,28 @@ - closure_type - color - bag_case_material +- id: hb-3-12-13 + name: Power Flossers + children: [] + attributes: + - color + - power_source +- id: hb-3-12-14 + name: Teeth Whiteners + children: + - hb-3-12-14-1 + - hb-3-12-14-2 + - hb-3-12-14-3 + - hb-3-12-14-4 + - hb-3-12-14-5 + - hb-3-12-14-6 + - hb-3-12-14-7 + - hb-3-12-14-8 + - hb-3-12-14-9 + - hb-3-12-14-10 + attributes: + - peroxide_content + - usage_frequency - id: hb-3-12-14-1 name: Charcoal Powder children: [] @@ -3559,6 +3214,45 @@ attributes: - peroxide_content - usage_frequency +- id: hb-3-12-15 + name: Tongue Scrapers + children: [] + attributes: + - color +- id: hb-3-12-16 + name: Toothbrush Accessories + children: + - hb-3-12-16-1 + - hb-3-12-16-2 + - hb-3-12-16-3 + attributes: [] +- id: hb-3-12-16-1 + name: Toothbrush Covers + children: [] + attributes: + - color +- id: hb-3-12-16-2 + name: Toothbrush Replacement Heads + children: [] + attributes: + - color +- id: hb-3-12-16-3 + name: Toothbrush Sanitizers + children: [] + attributes: + - color + - mounting_type + - power_source + - suitable_for_toothbrush +- id: hb-3-12-17 + name: Toothbrushes + children: + - hb-3-12-17-1 + - hb-3-12-17-2 + - hb-3-12-17-3 + attributes: + - age_group + - color - id: hb-3-12-17-1 name: Electric Toothbrushes children: [] @@ -3569,14 +3263,82 @@ name: Manual Toothbrushes children: [] attributes: - - age_group + - age_group + - color +- id: hb-3-12-17-3 + name: Toothbrush Sets + children: [] + attributes: + - age_group + - color +- id: hb-3-12-18 + name: Toothpaste Squeezers & Dispensers + children: [] + attributes: + - color + - material + - mounting_type +- id: hb-3-12-19 + name: Toothpaste + children: [] + attributes: + - age_group + - toothpaste_type +- id: hb-3-12-20 + name: Toothpicks + children: [] + attributes: + - toothpick_design +- id: hb-3-13 + name: Personal Lubricants + children: [] + attributes: + - lubricant_application + - lubricant_composition +- id: hb-3-14 + name: Shaving & Grooming + children: + - hb-3-14-1 + - hb-3-14-2 + - hb-3-14-3 + - hb-3-14-4 + - hb-3-14-5 + - hb-3-14-6 + - hb-3-14-7 + - hb-3-14-8 + - hb-3-14-9 + - hb-3-14-10 + - hb-3-14-11 + - hb-3-14-12 + - hb-3-14-13 + attributes: [] +- id: hb-3-14-1 + name: Aftershave + children: [] + attributes: + - suitable_for_skin_type +- id: hb-3-14-2 + name: Body & Facial Hair Bleach + children: [] + attributes: + - application_method + - body_facial_hair_type +- id: hb-3-14-3 + name: Electric Razor Accessories + children: [] + attributes: - color -- id: hb-3-12-17-3 - name: Toothbrush Sets - children: [] + - material +- id: hb-3-14-4 + name: Electric Razors + children: + - hb-3-14-4-1 + - hb-3-14-4-2 + - hb-3-14-4-3 attributes: - - age_group - - color + - razor_flexibility + - razor_head_design + - usage_conditions - id: hb-3-14-4-1 name: Foil Electric Razors children: [] @@ -3595,6 +3357,59 @@ attributes: - razor_flexibility - razor_head_design +- id: hb-3-14-5 + name: Hair Clipper & Trimmer Accessories + children: [] + attributes: + - material +- id: hb-3-14-6 + name: Hair Clippers & Trimmers + children: [] + attributes: + - battery_size + - color + - power_source +- id: hb-3-14-7 + name: Hair Removal + children: + - hb-3-14-7-1 + - hb-3-14-7-2 + - hb-3-14-7-3 + - hb-3-14-7-4 + - hb-3-14-7-5 + - hb-3-14-7-6 + attributes: [] +- id: hb-3-14-7-1 + name: Depilatories + children: [] + attributes: + - body_area +- id: hb-3-14-7-2 + name: Electrolysis Devices + children: [] + attributes: + - body_area + - hair_care_technology + - power_source +- id: hb-3-14-7-3 + name: Epilators + children: [] + attributes: + - color +- id: hb-3-14-7-4 + name: Hair Removal Wax Warmers + children: [] + attributes: + - color +- id: hb-3-14-7-5 + name: Laser & IPL Hair Removal Devices + children: + - hb-3-14-7-5-1 + - hb-3-14-7-5-2 + attributes: + - body_area + - compatible_hair_color + - suitable_for_skin_tone - id: hb-3-14-7-5-1 name: IPL Hair Removal Devices children: [] @@ -3609,6 +3424,26 @@ - body_area - compatible_hair_color - suitable_for_skin_tone +- id: hb-3-14-7-6 + name: Waxing Kits & Supplies + children: [] + attributes: [] +- id: hb-3-14-8 + name: Razors & Razor Blades + children: [] + attributes: + - target_gender +- id: hb-3-14-9 + name: Shaving Bowls & Mugs + children: [] + attributes: + - color +- id: hb-3-14-10 + name: Shaving Brushes + children: [] + attributes: + - color + - bristle_material - id: hb-3-14-11 name: Shaving Creams children: [] @@ -3617,6 +3452,45 @@ - shaving_cream_formulation - suitable_for_skin_type - target_gender +- id: hb-3-14-12 + name: Shaving Kits + children: [] + attributes: + - brush_type + - razor_type + - shaving_kit_components +- id: hb-3-14-13 + name: Styptic Pencils + children: [] + attributes: + - active_ingredient + - suitable_for_skin_type +- id: hb-3-15 + name: Sleeping Aids + children: + - hb-3-15-1 + - hb-3-15-2 + - hb-3-15-3 + - hb-3-15-4 + attributes: [] +- id: hb-3-15-1 + name: Eye Masks + children: [] + attributes: + - color + - material +- id: hb-3-15-2 + name: Snoring & Sleep Apnea Aids + children: + - hb-3-15-2-1 + - hb-3-15-2-2 + - hb-3-15-2-3 + - hb-3-15-2-4 + - hb-3-15-2-5 + - hb-3-15-2-6 + attributes: + - material + - treatment_objective - id: hb-3-15-2-1 name: External Nasal Strips children: [] @@ -3653,6 +3527,65 @@ attributes: - material - treatment_objective +- id: hb-3-15-3 + name: Travel Pillows + children: [] + attributes: + - travel_pillow_shape +- id: hb-3-15-4 + name: White Noise Machines + children: [] + attributes: + - color +- id: hb-3-16 + name: Spray Tanning Tents + children: [] + attributes: + - accessory_size + - color + - material +- id: hb-3-17 + name: Tanning Beds + children: [] + attributes: [] +- id: hb-3-18 + name: Tweezers + children: [] + attributes: + - color +- id: hb-3-19 + name: Vision Care + children: + - hb-3-19-1 + - hb-3-19-2 + - hb-3-19-3 + - hb-3-19-4 + - hb-3-19-5 + - hb-3-19-6 + attributes: [] +- id: hb-3-19-1 + name: Contact Lens Care + children: + - hb-3-19-1-1 + - hb-3-19-1-2 + - hb-3-19-1-3 + - hb-3-19-1-4 + attributes: [] +- id: hb-3-19-1-1 + name: Contact Lens Care Kits + children: [] + attributes: + - package_type + - solution_type +- id: hb-3-19-1-2 + name: Contact Lens Cases + children: + - hb-3-19-1-2-1 + - hb-3-19-1-2-2 + attributes: + - accessory_size + - color + - bag_case_material - id: hb-3-19-1-2-1 name: Barrel Contact Lens Cases children: [] @@ -3667,6 +3600,12 @@ - accessory_size - color - bag_case_material +- id: hb-3-19-1-3 + name: Contact Lens Solution + children: [] + attributes: + - bottle_type + - solution_type - id: hb-3-19-1-4 name: Contact Lenses children: @@ -3696,6 +3635,58 @@ name: Yearly Contact Lenses children: [] attributes: [] +- id: hb-3-19-2 + name: Eye Drops & Lubricants + children: [] + attributes: [] +- id: hb-3-19-3 + name: Eyeglass Lenses + children: [] + attributes: + - eyewear_lens_material +- id: hb-3-19-4 + name: Eyeglasses + children: [] + attributes: + - eyewear_frame_material + - frame_shape + - lens_coating + - eyewear_lens_material + - lens_type + - optical_frame_design +- id: hb-3-19-5 + name: Eyewear Accessories + children: + - hb-3-19-5-1 + - hb-3-19-5-2 + - hb-3-19-5-3 + - hb-3-19-5-4 + attributes: [] +- id: hb-3-19-5-1 + name: Eyewear Cases & Holders + children: [] + attributes: + - accessory_size + - closure_type + - bag_case_material +- id: hb-3-19-5-2 + name: Eyewear Lens Cleaning Solutions + children: [] + attributes: + - bottle_type + - solution_type +- id: hb-3-19-5-3 + name: Eyewear Replacement Parts + children: [] + attributes: [] +- id: hb-3-19-5-4 + name: Eyewear Straps & Chains + children: + - hb-3-19-5-4-1 + - hb-3-19-5-4-2 + attributes: + - color + - material - id: hb-3-19-5-4-1 name: Eyewear Chains children: [] @@ -3708,3 +3699,11 @@ attributes: - color - material +- id: hb-3-19-6 + name: Sunglass Lenses + children: [] + attributes: + - color + - eyewear_lens_material + - lens_type + - uv_protection diff --git a/data/categories/hg_home_garden.yml b/data/categories/hg_home_garden.yml index fede922c..2f4e71c7 100644 --- a/data/categories/hg_home_garden.yml +++ b/data/categories/hg_home_garden.yml @@ -64,18 +64,53 @@ - hg-1-1-5 attributes: - color + - furniture_fixture_material + - pattern +- id: hg-1-1-1 + name: Bathtub Caddies + children: [] + attributes: + - color + - furniture_fixture_material + - pattern +- id: hg-1-1-2 + name: Freestanding Caddies + children: [] + attributes: + - color + - furniture_fixture_material + - pattern +- id: hg-1-1-3 + name: Over-the-Toilet Caddies + children: [] + attributes: + - color + - furniture_fixture_material + - pattern +- id: hg-1-1-4 + name: Shower Caddies + children: [] + attributes: + - color + - furniture_fixture_material - pattern +- id: hg-1-1-5 + name: Wall-Mounted Caddies + children: [] + attributes: + - color - furniture_fixture_material + - pattern - id: hg-1-2 name: Bath Mats & Rugs children: [] attributes: - color + - rug_mat_material - pattern - pile_type - - theme - - rug_mat_material - mat_rug_shape + - theme - id: hg-1-3 name: Bath Pillows children: [] @@ -88,9 +123,9 @@ children: [] attributes: - color + - mount_material - mounting_type - pattern - - mount_material - id: hg-1-5 name: Bathroom Accessory Sets children: [] @@ -125,8 +160,8 @@ children: [] attributes: - color - - pattern - furniture_fixture_material + - pattern - id: hg-1-10 name: Robe Hooks children: [] @@ -139,31 +174,31 @@ children: [] attributes: - color - - pattern - hardware_material + - pattern - id: hg-1-12 name: Shower Curtain Rings children: [] attributes: - color - - pattern - hardware_material + - pattern - id: hg-1-13 name: Shower Curtains children: [] attributes: - color - material - - pattern - shower_curtain_mounting_type + - pattern - id: hg-1-14 name: Shower Rods children: [] attributes: - color + - hardware_material - pattern - rod_shape - - hardware_material - id: hg-1-15 name: Soap & Lotion Dispensers children: [] @@ -195,6 +230,20 @@ - color - material - pattern +- id: hg-1-18-2 + name: Toilet Brush Holders + children: [] + attributes: + - color + - material + - pattern +- id: hg-1-18-3 + name: Toilet Brushes + children: [] + attributes: + - color + - brush_material + - pattern - id: hg-1-19 name: Toilet Paper Holders children: [] @@ -220,6 +269,20 @@ - color - material - pattern +- id: hg-1-21-1 + name: Towel Holders + children: [] + attributes: + - color + - material + - pattern +- id: hg-1-21-2 + name: Towel Racks + children: [] + attributes: + - color + - material + - pattern - id: hg-2 name: Business & Home Security children: @@ -265,8 +328,8 @@ children: [] attributes: - color - - pattern - mounting_hardware + - pattern - id: hg-2-5 name: Security Lights children: [] @@ -283,9 +346,29 @@ - color - display_resolution - display_technology + - monitor_mounting_type + - pattern + - power_source +- id: hg-2-6-1 + name: CCTV Monitors + children: [] + attributes: + - color + - display_resolution + - display_technology + - monitor_mounting_type - pattern - power_source +- id: hg-2-6-2 + name: CCTV Test Monitors + children: [] + attributes: + - color + - display_resolution + - display_technology - monitor_mounting_type + - pattern + - power_source - id: hg-2-7 name: Security Safe Accessories children: @@ -297,6 +380,35 @@ - color - material - pattern +- id: hg-2-7-2 + name: Key Locks + children: [] + attributes: + - color + - lock_type + - pattern +- id: hg-2-7-3 + name: Keypads + children: [] + attributes: + - color + - keypad_style + - pattern +- id: hg-2-7-4 + name: Keys + children: [] + attributes: + - color + - compatible_lock_type + - pattern +- id: hg-2-7-5 + name: RFID Covers + children: [] + attributes: + - color + - material + - pattern + - rfid_frequency - id: hg-2-8 name: Security Safes children: @@ -308,6 +420,34 @@ - color - lock_type - pattern +- id: hg-2-8-1 + name: Fireproof Safes + children: [] + attributes: + - color + - lock_type + - pattern +- id: hg-2-8-2 + name: Floor Safes + children: [] + attributes: + - color + - lock_type + - pattern +- id: hg-2-8-3 + name: Gun Safes + children: [] + attributes: + - color + - lock_type + - pattern +- id: hg-2-8-4 + name: Wall Safes + children: [] + attributes: + - color + - lock_type + - pattern - id: hg-2-9 name: Security System Sensors children: [] @@ -332,6 +472,7 @@ - hg-3-11 - hg-3-12 - hg-3-13 + - hg-3-14 - hg-3-15 - hg-3-16 - hg-3-17 @@ -394,7 +535,6 @@ - hg-3-74 - hg-3-75 - hg-3-76 - - hg-3-14 attributes: - color - pattern @@ -416,13 +556,49 @@ - pattern - plant_class - plant_name +- id: hg-3-2-1 + name: Artificial Flowering Plants + children: [] + attributes: + - color + - decoration_material + - pattern + - plant_class + - plant_name +- id: hg-3-2-2 + name: Artificial Non-Flowering Plants + children: [] + attributes: + - color + - decoration_material + - pattern + - plant_class + - plant_name +- id: hg-3-2-3 + name: Artificial Shrubs + children: [] + attributes: + - color + - decoration_material + - pattern + - plant_class + - plant_name +- id: hg-3-2-4 + name: Artificial Trees + children: [] + attributes: + - color + - decoration_material + - pattern + - plant_class + - plant_name - id: hg-3-3 name: Artificial Food children: [] attributes: - color - - pattern - decoration_material + - pattern - id: hg-3-4 name: Artwork children: @@ -437,9 +613,9 @@ children: [] attributes: - color + - decoration_material - pattern - theme - - decoration_material - id: hg-3-4-2 name: Posters, Prints, & Visual Artwork children: @@ -449,34 +625,61 @@ attributes: - color - frame + - artwork_frame_material + - pattern + - theme +- id: hg-3-4-2-1 + name: Posters + children: [] + attributes: + - color + - frame + - artwork_frame_material + - pattern + - theme +- id: hg-3-4-2-2 + name: Prints + children: [] + attributes: + - color + - frame + - artwork_frame_material - pattern - theme +- id: hg-3-4-2-3 + name: Visual Artwork + children: [] + attributes: + - color + - frame - artwork_frame_material + - pattern + - theme - id: hg-3-4-3 name: Sculptures & Statues children: [] attributes: - color + - decoration_material - pattern - theme - - decoration_material - id: hg-3-5 name: Backrest Pillows children: [] attributes: - color + - upholstery_material - filler_material - filler_support - pattern - shape - - upholstery_material - id: hg-3-6 name: Baskets children: [] attributes: - color - - pattern - basket_material + - pattern - id: hg-3-7 name: Bird & Wildlife Feeder Accessories children: @@ -491,41 +694,89 @@ attributes: - color - pattern -- id: hg-3-8 - name: Bird & Wildlife Feeders - children: - - hg-3-8-1 - - hg-3-8-2 - - hg-3-8-3 +- id: hg-3-7-1 + name: Ant Moats + children: [] attributes: - color - pattern - - decoration_material - - mounting_hardware -- id: hg-3-8-1 - name: Bird Feeders +- id: hg-3-7-3 + name: Feeder Hooks children: [] attributes: - color - pattern - - decoration_material - - mounting_hardware -- id: hg-3-8-2 - name: Butterfly Feeders +- id: hg-3-7-4 + name: Feeder Poles children: [] attributes: - color - pattern - - decoration_material - - mounting_hardware +- id: hg-3-7-5 + name: Nectar Feeders + children: [] + attributes: + - color + - pattern +- id: hg-3-7-6 + name: Seed Trays + children: [] + attributes: + - color + - pattern +- id: hg-3-7-7 + name: Squirrel Guards + children: [] + attributes: + - color + - pattern +- id: hg-3-7-8 + name: Suet Cages + children: [] + attributes: + - color + - pattern +- id: hg-3-7-9 + name: Weather Guards + children: [] + attributes: + - color + - pattern +- id: hg-3-8 + name: Bird & Wildlife Feeders + children: + - hg-3-8-1 + - hg-3-8-2 + - hg-3-8-3 + attributes: + - color + - decoration_material + - mounting_hardware + - pattern +- id: hg-3-8-1 + name: Bird Feeders + children: [] + attributes: + - color + - decoration_material + - mounting_hardware + - pattern +- id: hg-3-8-2 + name: Butterfly Feeders + children: [] + attributes: + - color + - decoration_material + - mounting_hardware + - pattern - id: hg-3-8-3 name: Squirrel Feeders children: [] attributes: - color - - pattern - decoration_material - mounting_hardware + - pattern - id: hg-3-9 name: Bird & Wildlife House Accessories children: @@ -535,6 +786,24 @@ attributes: - color - pattern +- id: hg-3-9-6 + name: Perches + children: [] + attributes: + - color + - pattern +- id: hg-3-9-7 + name: Predator Guards + children: [] + attributes: + - color + - pattern +- id: hg-3-9-8 + name: Roosting Pockets + children: [] + attributes: + - color + - pattern - id: hg-3-10 name: Bird & Wildlife Houses children: @@ -544,40 +813,40 @@ attributes: - color - material - - pattern - mounting_hardware + - pattern - id: hg-3-10-1 name: Bat Houses children: [] attributes: - color - material - - pattern - mounting_hardware + - pattern - id: hg-3-10-2 name: Birdhouses children: [] attributes: - color - material - - pattern - mounting_hardware + - pattern - id: hg-3-10-3 name: Butterfly Houses children: [] attributes: - color - material - - pattern - mounting_hardware + - pattern - id: hg-3-11 name: Bird Baths children: [] attributes: - color - - pattern - decoration_material - mounting_hardware + - pattern - id: hg-3-12 name: Bookends children: [] @@ -592,15 +861,23 @@ - color - pattern - theme +- id: hg-3-14 + name: Chair & Sofa Cushion Covers + children: [] + attributes: + - color + - fabric + - pattern + - suitable_for_chair_type - id: hg-3-15 name: Chair & Sofa Cushions children: [] attributes: - color + - upholstery_material - filler_material - pattern - suitable_for_chair_type - - upholstery_material - id: hg-3-16 name: Clock Parts children: @@ -612,6 +889,36 @@ attributes: - color - pattern +- id: hg-3-16-1 + name: Clock Bezels + children: [] + attributes: + - color + - pattern +- id: hg-3-16-2 + name: Clock Dials + children: [] + attributes: + - color + - pattern +- id: hg-3-16-3 + name: Clock Hands + children: [] + attributes: + - color + - pattern +- id: hg-3-16-4 + name: Clock Inserts + children: [] + attributes: + - color + - pattern +- id: hg-3-16-5 + name: Clock Movements + children: [] + attributes: + - color + - pattern - id: hg-3-17 name: Clocks children: @@ -640,6 +947,20 @@ - color - material - pattern +- id: hg-3-17-2-1 + name: Desk Clocks + children: [] + attributes: + - color + - material + - pattern +- id: hg-3-17-2-2 + name: Shelf Clocks + children: [] + attributes: + - color + - material + - pattern - id: hg-3-17-3 name: Floor & Grandfather Clocks children: @@ -649,6 +970,20 @@ - color - material - pattern +- id: hg-3-17-3-1 + name: Floor Clocks + children: [] + attributes: + - color + - material + - pattern +- id: hg-3-17-3-2 + name: Grandfather Clocks + children: [] + attributes: + - color + - material + - pattern - id: hg-3-17-4 name: Wall Clocks children: [] @@ -669,62 +1004,62 @@ children: [] attributes: - color - - pattern - decoration_material + - pattern - id: hg-3-20 name: Decorative Bottles children: [] attributes: - color - - pattern - decoration_material + - pattern - id: hg-3-21 name: Decorative Bowls children: [] attributes: - color - - pattern - decoration_material + - pattern - id: hg-3-22 name: Decorative Jars children: [] attributes: - color - - pattern - decoration_material + - pattern - id: hg-3-23 name: Decorative Plaques children: [] attributes: - color - - pattern - - theme - decoration_material - mounting_hardware + - pattern + - theme - id: hg-3-24 name: Decorative Plates children: [] attributes: - color - - pattern - decoration_material + - pattern - id: hg-3-25 name: Decorative Trays children: [] attributes: - color - - pattern - decoration_material + - pattern - id: hg-3-26 name: Door Mats children: [] attributes: + - door_mat_base_material - color - pattern - pile_type - shape - suitable_space - - door_mat_base_material - door_mat_surface_material - id: hg-3-27 name: Dreamcatchers @@ -749,17 +1084,17 @@ children: [] attributes: - color + - decoration_material - pattern - theme - - decoration_material - id: hg-3-31 name: Finials children: [] attributes: - color - finial_shape - - pattern - decoration_material + - pattern - id: hg-3-32 name: Flag & Windsock Accessories children: @@ -826,6 +1161,18 @@ attributes: - color - pattern +- id: hg-3-35-2-1 + name: Fountains + children: [] + attributes: + - color + - pattern +- id: hg-3-35-2-3 + name: Waterfalls + children: [] + attributes: + - color + - pattern - id: hg-3-35-3 name: Ponds children: [] @@ -840,6 +1187,18 @@ attributes: - color - pattern +- id: hg-3-36-1 + name: Garden Stones + children: [] + attributes: + - color + - pattern +- id: hg-3-36-2 + name: Stepping Stones + children: [] + attributes: + - color + - pattern - id: hg-3-37 name: Growth Charts children: [] @@ -957,8 +1316,8 @@ children: [] attributes: - color - - pattern - decoration_material + - pattern - id: hg-3-43 name: Lawn Ornaments & Garden Sculptures children: @@ -968,13 +1327,27 @@ - color - pattern - theme +- id: hg-3-43-1 + name: Garden Sculptures + children: [] + attributes: + - color + - pattern + - theme +- id: hg-3-43-2 + name: Lawn Ornaments + children: [] + attributes: + - color + - pattern + - theme - id: hg-3-44 name: Mail Slots children: [] attributes: - color - - pattern - decoration_material + - pattern - id: hg-3-45 name: Mailbox Accessories children: @@ -1013,22 +1386,22 @@ children: [] attributes: - color - - pattern - post_material + - pattern - id: hg-3-45-5 name: Mailbox Replacement Doors children: [] attributes: - color - - pattern - furniture_fixture_material + - pattern - id: hg-3-46 name: Mailboxes children: [] attributes: - color - - pattern - decoration_material + - pattern - id: hg-3-47 name: Mirrors children: [] @@ -1049,33 +1422,33 @@ children: [] attributes: - color - - pattern - decoration_material + - pattern - id: hg-3-50 name: Novelty Signs children: [] attributes: - color + - decoration_material - pattern - theme - - decoration_material - id: hg-3-51 name: Ottoman Cushions children: [] attributes: - color + - upholstery_material - filler_material - pattern - shape - - upholstery_material - id: hg-3-52 name: Picture Frames children: [] attributes: - color + - decoration_material - pattern - shape - - decoration_material - id: hg-3-53 name: Piggy Banks & Money Jars children: @@ -1083,15 +1456,29 @@ - hg-3-53-2 attributes: - color + - decoration_material + - pattern +- id: hg-3-53-1 + name: Money Jars + children: [] + attributes: + - color + - decoration_material - pattern +- id: hg-3-53-2 + name: Piggy Banks + children: [] + attributes: + - color - decoration_material + - pattern - id: hg-3-54 name: Rain Chains children: [] attributes: - color - - pattern - decoration_material + - pattern - id: hg-3-55 name: Rain Gauges children: [] @@ -1113,12 +1500,12 @@ children: [] attributes: - color + - rug_material - pattern - pile_type + - rug_shape - style - suitable_space - - rug_material - - rug_shape - id: hg-3-58 name: Seasonal & Holiday Decorations children: @@ -1153,10 +1540,10 @@ name: Christmas Tree Stands children: [] attributes: + - tree_stand_material - color - fixation_type - pattern - - tree_stand_material - id: hg-3-58-4 name: Easter Egg Decorating Kits children: [] @@ -1181,22 +1568,22 @@ children: [] attributes: - color - - pattern - decoration_material + - pattern - id: hg-3-58-8 name: Holiday Stocking Hangers children: [] attributes: - color - - pattern - decoration_material + - pattern - id: hg-3-58-9 name: Holiday Stockings children: [] attributes: - color - - pattern - decoration_material + - pattern - id: hg-3-58-10 name: Japanese Traditional Dolls children: [] @@ -1216,8 +1603,8 @@ children: [] attributes: - color - - pattern - decoration_material + - pattern - id: hg-3-59 name: Shadow Boxes children: [] @@ -1229,9 +1616,9 @@ children: [] attributes: - color + - decoration_material - pattern - suitable_for_furniture_type - - decoration_material - id: hg-3-61 name: Snow Globes children: [] @@ -1255,9 +1642,9 @@ children: [] attributes: - color + - upholstery_material - filler_material - pattern - - upholstery_material - throw_pillow_shape - id: hg-3-65 name: Trunks @@ -1273,14 +1660,26 @@ attributes: - color - pattern +- id: hg-3-66-1 + name: Table Scatters + children: [] + attributes: + - color + - pattern +- id: hg-3-66-2 + name: Vase Fillers + children: [] + attributes: + - color + - pattern - id: hg-3-67 name: Vases children: [] attributes: - color + - decoration_material - pattern - vase_shape - - decoration_material - id: hg-3-68 name: Wallpaper children: [] @@ -1299,13 +1698,27 @@ - color - pattern - roof_decor_shape +- id: hg-3-69-1 + name: Roof Decors + children: [] + attributes: + - color + - pattern + - roof_decor_shape +- id: hg-3-69-2 + name: Weather Vanes + children: [] + attributes: + - color + - pattern + - roof_decor_shape - id: hg-3-70 name: Wind Chimes children: [] attributes: - color - - pattern - decoration_material + - pattern - id: hg-3-71 name: Wind Wheels & Spinners children: @@ -1314,6 +1727,18 @@ attributes: - color - pattern +- id: hg-3-71-1 + name: Wind Spinners + children: [] + attributes: + - color + - pattern +- id: hg-3-71-2 + name: Wind Wheels + children: [] + attributes: + - color + - pattern - id: hg-3-72 name: Window Magnets children: [] @@ -1337,15 +1762,15 @@ children: [] attributes: - color - - pattern - hardware_material + - pattern - id: hg-3-73-2 name: Curtain & Drape Rods children: [] attributes: - color - - pattern - hardware_material + - pattern - id: hg-3-73-3 name: Curtain Holdbacks & Tassels children: @@ -1353,8 +1778,22 @@ - hg-3-73-3-2 attributes: - color + - hardware_material + - pattern +- id: hg-3-73-3-1 + name: Curtain Holdbacks + children: [] + attributes: + - color + - hardware_material - pattern +- id: hg-3-73-3-2 + name: Curtain Tassels + children: [] + attributes: + - color - hardware_material + - pattern - id: hg-3-73-4 name: Window Treatment Replacement Parts children: @@ -1366,6 +1805,36 @@ attributes: - color - pattern +- id: hg-3-73-4-1 + name: Window Brackets + children: [] + attributes: + - color + - pattern +- id: hg-3-73-4-2 + name: Window Finials + children: [] + attributes: + - color + - pattern +- id: hg-3-73-4-3 + name: Window Hooks + children: [] + attributes: + - color + - pattern +- id: hg-3-73-4-4 + name: Window Rings + children: [] + attributes: + - color + - pattern +- id: hg-3-73-4-5 + name: Window Rods + children: [] + attributes: + - color + - pattern - id: hg-3-74 name: Window Treatments children: @@ -1385,8 +1854,22 @@ - hg-3-74-1-2 attributes: - color + - fabric + - pattern +- id: hg-3-74-1-1 + name: Curtains + children: [] + attributes: + - color + - fabric - pattern +- id: hg-3-74-1-2 + name: Drapes + children: [] + attributes: + - color - fabric + - pattern - id: hg-3-74-2 name: Stained Glass Panels children: [] @@ -1404,8 +1887,28 @@ - color - control_technology - light_control + - window_treatment_material + - pattern + - blind_shade_style +- id: hg-3-74-3-1 + name: Blinds + children: [] + attributes: + - color + - control_technology + - light_control + - window_treatment_material - pattern + - blind_shade_style +- id: hg-3-74-3-2 + name: Shades + children: [] + attributes: + - color + - control_technology + - light_control - window_treatment_material + - pattern - blind_shade_style - id: hg-3-74-4 name: Window Films @@ -1419,8 +1922,8 @@ children: [] attributes: - color - - pattern - window_treatment_material + - pattern - id: hg-3-74-6 name: Window Valances & Cornices children: @@ -1430,6 +1933,20 @@ - color - material - pattern +- id: hg-3-74-6-1 + name: Cornices + children: [] + attributes: + - color + - material + - pattern +- id: hg-3-74-6-2 + name: Valances + children: [] + attributes: + - color + - material + - pattern - id: hg-3-75 name: World Globes children: @@ -1441,6 +1958,34 @@ - color - pattern - power_source +- id: hg-3-75-1 + name: Antique Globes + children: [] + attributes: + - color + - pattern + - power_source +- id: hg-3-75-2 + name: Desktop Globes + children: [] + attributes: + - color + - pattern + - power_source +- id: hg-3-75-3 + name: Floor Globes + children: [] + attributes: + - color + - pattern + - power_source +- id: hg-3-75-5 + name: Kids' Globes + children: [] + attributes: + - color + - pattern + - power_source - id: hg-3-76 name: Wreaths & Garlands children: @@ -1450,6 +1995,20 @@ - color - pattern - shape +- id: hg-3-76-1 + name: Garlands + children: [] + attributes: + - color + - pattern + - shape +- id: hg-3-76-2 + name: Wreaths + children: [] + attributes: + - color + - pattern + - shape - id: hg-4 name: Emergency Preparedness children: @@ -1492,8 +2051,8 @@ children: [] attributes: - color - - pattern - hardware_material + - pattern - id: hg-5 name: Fireplace & Wood Stove Accessories children: @@ -1557,6 +2116,12 @@ attributes: - color - pattern +- id: hg-5-7-1 + name: Firewood + children: [] + attributes: + - color + - pattern - id: hg-5-8 name: Hearth Pads children: [] @@ -1571,8 +2136,29 @@ - hg-5-9-3 attributes: - color + - furniture_fixture_material + - pattern +- id: hg-5-9-1 + name: Adjustable Shelves + children: [] + attributes: + - color + - furniture_fixture_material - pattern +- id: hg-5-9-2 + name: Back Walls + children: [] + attributes: + - color - furniture_fixture_material + - pattern +- id: hg-5-9-3 + name: Base Covers + children: [] + attributes: + - color + - cover_material + - pattern - id: hg-5-10 name: Log Racks & Carriers children: @@ -1580,8 +2166,22 @@ - hg-5-10-2 attributes: - color + - furniture_fixture_material + - pattern +- id: hg-5-10-1 + name: Firewood Carts + children: [] + attributes: + - color + - furniture_fixture_material - pattern +- id: hg-5-10-2 + name: Firewood Holders + children: [] + attributes: + - color - furniture_fixture_material + - pattern - id: hg-5-11 name: Wood Stove Fans & Blowers children: [] @@ -1600,6 +2200,20 @@ - color - pattern - power_source +- id: hg-6-1 + name: Indoor Fireplaces + children: [] + attributes: + - color + - pattern + - power_source +- id: hg-6-2 + name: Outdoor Fireplaces + children: [] + attributes: + - color + - pattern + - power_source - id: hg-7 name: Flood, Fire & Gas Safety children: @@ -1698,12 +2312,26 @@ - color - pattern - power_source -- id: hg-8 - name: Household Appliance Accessories - children: - - hg-8-1 - - hg-8-2 - - hg-8-3 +- id: hg-7-8-1 + name: Sensor & Alert Systems + children: [] + attributes: + - color + - pattern + - power_source +- id: hg-7-8-2 + name: Thermal Leak Detectors + children: [] + attributes: + - color + - pattern + - power_source +- id: hg-8 + name: Household Appliance Accessories + children: + - hg-8-1 + - hg-8-2 + - hg-8-3 - hg-8-4 - hg-8-5 - hg-8-6 @@ -1760,6 +2388,18 @@ attributes: - color - pattern +- id: hg-8-3-1 + name: Dehumidifier Filters + children: [] + attributes: + - color + - pattern +- id: hg-8-3-3 + name: Dehumidifier Refills + children: [] + attributes: + - color + - pattern - id: hg-8-4 name: Fan Accessories children: @@ -1768,6 +2408,13 @@ - color - material - pattern +- id: hg-8-4-1 + name: Lighting System Kits + children: [] + attributes: + - color + - material + - pattern - id: hg-8-5 name: Floor & Steam Cleaner Accessories children: @@ -1780,6 +2427,42 @@ attributes: - color - pattern +- id: hg-8-5-1 + name: Carpet Gliders + children: [] + attributes: + - color + - pattern +- id: hg-8-5-3 + name: Extension Wands + children: [] + attributes: + - color + - pattern +- id: hg-8-5-4 + name: Floor Cleaning Pads + children: [] + attributes: + - color + - pattern +- id: hg-8-5-5 + name: Grout Cleaning Tools + children: [] + attributes: + - color + - pattern +- id: hg-8-5-6 + name: Squeegee Attachments + children: [] + attributes: + - color + - pattern +- id: hg-8-5-8 + name: Steam Nozzles + children: [] + attributes: + - color + - pattern - id: hg-8-6 name: Furnace & Boiler Accessories children: @@ -1793,6 +2476,48 @@ attributes: - color - pattern +- id: hg-8-6-1 + name: Furnace & Boiler Filters + children: [] + attributes: + - color + - pattern +- id: hg-8-6-2 + name: Furnace & Boiler Fixing Kits + children: [] + attributes: + - color + - pattern +- id: hg-8-6-3 + name: Furnace & Boiler Hoses + children: [] + attributes: + - color + - pattern +- id: hg-8-6-4 + name: Plume Management Bends + children: [] + attributes: + - color + - pattern +- id: hg-8-6-5 + name: Plume Management Extensions + children: [] + attributes: + - color + - pattern +- id: hg-8-6-6 + name: Plume Management Kits + children: [] + attributes: + - color + - pattern +- id: hg-8-6-7 + name: Thermocouples + children: [] + attributes: + - color + - pattern - id: hg-8-7 name: Heating Radiator Accessories children: @@ -1809,6 +2534,24 @@ attributes: - color - pattern +- id: hg-8-7-1-1 + name: Heating Radiator Panels + children: [] + attributes: + - color + - pattern +- id: hg-8-7-1-2 + name: Heating Radiator Rolls + children: [] + attributes: + - color + - pattern +- id: hg-8-7-1-3 + name: Heating Radiator Sheets + children: [] + attributes: + - color + - pattern - id: hg-8-8 name: Humidifier Accessories children: @@ -1842,6 +2585,30 @@ attributes: - color - pattern +- id: hg-8-9-1-1 + name: Cord Holders + children: [] + attributes: + - color + - pattern +- id: hg-8-9-1-2 + name: Garment Steamer Carts + children: [] + attributes: + - color + - pattern +- id: hg-8-9-1-3 + name: Mobile Phone Holders + children: [] + attributes: + - color + - pattern +- id: hg-8-9-1-4 + name: Storage Pouches + children: [] + attributes: + - color + - pattern - id: hg-8-9-2 name: Iron Accessories children: @@ -1851,6 +2618,24 @@ attributes: - color - pattern +- id: hg-8-9-2-1 + name: Iron Cleaners + children: [] + attributes: + - color + - pattern +- id: hg-8-9-2-2 + name: Ironing Mesh Cloths + children: [] + attributes: + - color + - pattern +- id: hg-8-9-2-3 + name: Water Spray Bottles + children: [] + attributes: + - color + - pattern - id: hg-8-9-3 name: Steam Press Accessories children: [] @@ -1904,90 +2689,237 @@ - color - compatible_vacuum_type - pattern -- id: hg-8-12 - name: Water Heater Accessories - children: - - hg-8-12-1 - - hg-8-12-2 - - hg-8-12-3 - - hg-8-12-4 - - hg-8-12-5 - - hg-8-12-6 - - hg-8-12-7 +- id: hg-8-11-2 + name: Accessory Kits + children: [] attributes: - color + - compatible_vacuum_type - pattern -- id: hg-8-12-1 - name: Anode Rods +- id: hg-8-11-4 + name: Animal Care Sets children: [] attributes: - color + - compatible_vacuum_type - pattern -- id: hg-8-12-2 - name: Hot Water Tanks +- id: hg-8-11-5 + name: Anti-Allergy Agents children: [] attributes: - color + - compatible_vacuum_type - pattern -- id: hg-8-12-3 - name: Water Heater Elements +- id: hg-8-11-6 + name: Ash Separators children: [] attributes: - color + - compatible_vacuum_type - pattern -- id: hg-8-12-4 - name: Water Heater Expansion Tanks +- id: hg-8-11-9 + name: Car Cleaning Kits children: [] attributes: - color + - compatible_vacuum_type - pattern -- id: hg-8-12-5 - name: Water Heater Pans +- id: hg-8-11-11 + name: Charging Bases children: [] attributes: - color + - compatible_vacuum_type - pattern -- id: hg-8-12-6 - name: Water Heater Stacks +- id: hg-8-11-12 + name: Cleaning Head Modules children: [] attributes: - color + - compatible_vacuum_type - pattern -- id: hg-8-12-7 - name: Water Heater Vents +- id: hg-8-11-17 + name: Crevice Tools children: [] attributes: - color + - compatible_vacuum_type - pattern -- id: hg-9 - name: Household Appliances - children: - - hg-9-1 - - hg-9-2 - - hg-9-3 - - hg-9-4 - - hg-9-5 - - hg-9-6 - - hg-9-7 - - hg-9-8 - - hg-9-9 - - hg-9-10 - - hg-9-11 - - hg-9-12 +- id: hg-8-11-21 + name: Dust Bags + children: [] attributes: - color - - energy_efficiency_class + - compatible_vacuum_type - pattern -- id: hg-9-1 - name: Climate Control Appliances - children: - - hg-9-1-1 - - hg-9-1-2 - - hg-9-1-3 - - hg-9-1-4 - - hg-9-1-5 - - hg-9-1-6 - - hg-9-1-7 +- id: hg-8-11-22 + name: Dust Containers + children: [] + attributes: + - color + - compatible_vacuum_type + - pattern +- id: hg-8-11-25 + name: Dusting Pads + children: [] + attributes: + - color + - compatible_vacuum_type + - pattern +- id: hg-8-11-26 + name: Extension Hoses + children: [] + attributes: + - color + - compatible_vacuum_type + - pattern +- id: hg-8-11-28 + name: Filter Grids + children: [] + attributes: + - color + - compatible_vacuum_type + - pattern +- id: hg-8-11-29 + name: Filters + children: [] + attributes: + - color + - compatible_vacuum_type + - pattern +- id: hg-8-11-44 + name: Scented Cartridges + children: [] + attributes: + - color + - compatible_vacuum_type + - pattern +- id: hg-8-11-47 + name: Starter Kits + children: [] + attributes: + - color + - compatible_vacuum_type + - pattern +- id: hg-8-11-48 + name: Suction Head Covers + children: [] + attributes: + - color + - compatible_vacuum_type + - pattern +- id: hg-8-11-49 + name: Telescopic Tubes + children: [] + attributes: + - color + - compatible_vacuum_type + - pattern +- id: hg-8-11-51 + name: Tube Bends + children: [] + attributes: + - color + - compatible_vacuum_type + - pattern +- id: hg-8-11-52 + name: Tube Clips + children: [] + attributes: + - color + - compatible_vacuum_type + - pattern +- id: hg-8-11-62 + name: Wheels Replacement Kits + children: [] + attributes: + - color + - compatible_vacuum_type + - pattern +- id: hg-8-12 + name: Water Heater Accessories + children: + - hg-8-12-1 + - hg-8-12-2 + - hg-8-12-3 + - hg-8-12-4 + - hg-8-12-5 + - hg-8-12-6 + - hg-8-12-7 + attributes: + - color + - pattern +- id: hg-8-12-1 + name: Anode Rods + children: [] + attributes: + - color + - pattern +- id: hg-8-12-2 + name: Hot Water Tanks + children: [] + attributes: + - color + - pattern +- id: hg-8-12-3 + name: Water Heater Elements + children: [] + attributes: + - color + - pattern +- id: hg-8-12-4 + name: Water Heater Expansion Tanks + children: [] + attributes: + - color + - pattern +- id: hg-8-12-5 + name: Water Heater Pans + children: [] + attributes: + - color + - pattern +- id: hg-8-12-6 + name: Water Heater Stacks + children: [] + attributes: + - color + - pattern +- id: hg-8-12-7 + name: Water Heater Vents + children: [] + attributes: + - color + - pattern +- id: hg-9 + name: Household Appliances + children: + - hg-9-1 + - hg-9-2 + - hg-9-3 + - hg-9-4 + - hg-9-5 + - hg-9-6 + - hg-9-7 + - hg-9-8 + - hg-9-9 + - hg-9-10 + - hg-9-11 + - hg-9-12 + attributes: + - color + - energy_efficiency_class + - pattern +- id: hg-9-1 + name: Climate Control Appliances + children: + - hg-9-1-1 + - hg-9-1-2 + - hg-9-1-3 + - hg-9-1-4 + - hg-9-1-5 + - hg-9-1-6 + - hg-9-1-7 - hg-9-1-8 - hg-9-1-9 - hg-9-1-10 @@ -2034,6 +2966,20 @@ - color - energy_efficiency_class - pattern +- id: hg-9-1-5-3 + name: Portable Evaporative Coolers + children: [] + attributes: + - color + - energy_efficiency_class + - pattern +- id: hg-9-1-5-5 + name: Window-Mounted Evaporative Coolers + children: [] + attributes: + - color + - energy_efficiency_class + - pattern - id: hg-9-1-6 name: Fans children: @@ -2093,6 +3039,26 @@ - mounting_type - pattern - power_source +- id: hg-9-1-7-1 + name: Boilers + children: [] + attributes: + - boiler_system + - color + - energy_efficiency_class + - mounting_type + - pattern + - power_source +- id: hg-9-1-7-2 + name: Furnaces + children: [] + attributes: + - boiler_system + - color + - energy_efficiency_class + - mounting_type + - pattern + - power_source - id: hg-9-1-8 name: Heating Radiators children: [] @@ -2148,9 +3114,9 @@ children: - hg-9-3-1 - hg-9-3-2 + - hg-9-3-3 - hg-9-3-4 - hg-9-3-6 - - hg-9-3-3 attributes: - color - energy_efficiency_class @@ -2169,10734 +3135,9370 @@ - color - energy_efficiency_class - pattern -- id: hg-9-3-2 - name: Carpet Steamers - children: - - hg-9-3-2-1 - - hg-9-3-2-2 - - hg-9-3-2-3 - - hg-9-3-2-4 - - hg-9-3-2-5 +- id: hg-9-3-1-1 + name: Canister Carpet Shampooers + children: [] attributes: - color - energy_efficiency_class - pattern -- id: hg-9-3-4 - name: Floor Scrubbers - children: - - hg-9-3-4-1 - - hg-9-3-4-2 - - hg-9-3-4-3 - - hg-9-3-4-5 - - hg-9-3-4-6 - - hg-9-3-4-7 +- id: hg-9-3-1-2 + name: Carpet Extractors + children: [] attributes: - color - energy_efficiency_class - pattern -- id: hg-9-3-6 - name: Steam Mops - children: - - hg-9-3-6-1 - - hg-9-3-6-2 - - hg-9-3-6-3 - - hg-9-3-6-4 - - hg-9-3-6-5 - - hg-9-3-6-6 +- id: hg-9-3-1-3 + name: Dry Carpet Shampooers + children: [] attributes: - color - energy_efficiency_class - pattern -- id: hg-9-4 - name: Floor Polishers & Buffers - children: - - hg-9-4-1 - - hg-9-4-2 +- id: hg-9-3-1-4 + name: Dual Tank Carpet Shampooers + children: [] attributes: - color - energy_efficiency_class - pattern -- id: hg-9-5 - name: Futon Dryers +- id: hg-9-3-1-5 + name: Portable Carpet Shampooers children: [] attributes: - color - energy_efficiency_class - pattern -- id: hg-9-6 - name: Garage Door Keypads & Remotes - children: - - hg-9-6-1 - - hg-9-6-2 +- id: hg-9-3-1-6 + name: Steam Carpet Shampooers + children: [] attributes: - color - energy_efficiency_class - pattern -- id: hg-9-7 - name: Garage Door Openers +- id: hg-9-3-1-7 + name: Upright Carpet Shampooers children: [] attributes: - color - energy_efficiency_class - - operation_method - pattern - - power_source -- id: hg-9-8 - name: Laundry Appliances +- id: hg-9-3-2 + name: Carpet Steamers children: - - hg-9-8-1 - - hg-9-8-2 - - hg-9-8-3 - - hg-9-8-4 - - hg-9-8-5 - - hg-9-8-6 + - hg-9-3-2-1 + - hg-9-3-2-2 + - hg-9-3-2-3 + - hg-9-3-2-4 + - hg-9-3-2-5 attributes: - color - energy_efficiency_class - pattern -- id: hg-9-8-1 - name: Dryers +- id: hg-9-3-2-1 + name: Canister Carpet Steamers children: [] attributes: - color - energy_efficiency_class - - loading_type - - mounting_type - pattern -- id: hg-9-8-2 - name: Garment Steamers +- id: hg-9-3-2-2 + name: Handheld Carpet Steamers children: [] attributes: - color - energy_efficiency_class - - garment_steamer_design - pattern -- id: hg-9-8-3 - name: Irons & Ironing Systems - children: - - hg-9-8-3-1 - - hg-9-8-3-2 +- id: hg-9-3-2-3 + name: Multi-Purpose Steam Cleaners + children: [] attributes: - color - energy_efficiency_class - pattern - - soleplate_type -- id: hg-9-8-4 - name: Laundry Combo Units - children: - - hg-9-8-4-1 - - hg-9-8-4-2 - - hg-9-8-4-3 - - hg-9-8-4-4 +- id: hg-9-3-2-4 + name: Professional Carpet Steamers + children: [] attributes: - color - energy_efficiency_class - pattern -- id: hg-9-8-5 - name: Steam Presses +- id: hg-9-3-2-5 + name: Upright Carpet Steamers children: [] attributes: - color - energy_efficiency_class - pattern -- id: hg-9-8-6 - name: Washing Machines +- id: hg-9-3-3 + name: Floor Cleaners children: [] attributes: - color - energy_efficiency_class - - loading_type - - mounting_type - pattern - - washing_programs -- id: hg-9-9 - name: Ultrasonic Cleaners +- id: hg-9-3-4 + name: Floor Scrubbers + children: + - hg-9-3-4-1 + - hg-9-3-4-2 + - hg-9-3-4-3 + - hg-9-3-4-5 + - hg-9-3-4-6 + - hg-9-3-4-7 + attributes: + - color + - energy_efficiency_class + - pattern +- id: hg-9-3-4-1 + name: Compact Floor Scrubbers children: [] attributes: - color - energy_efficiency_class - pattern -- id: hg-9-10 - name: Vacuums - children: - - hg-9-10-1 - - hg-9-10-2 +- id: hg-9-3-4-2 + name: Cordless Floor Scrubbers + children: [] attributes: - - cleaning_surfaces - color - - dirt_separating_method - - dry_wet_cleaning - - dust_container_type - energy_efficiency_class - pattern - - vacuum_air_filtering_technology -- id: hg-9-11 - name: Wallpaper Steamers +- id: hg-9-3-4-3 + name: Grout & Tile Floor Scrubbers children: [] attributes: - color - energy_efficiency_class - pattern - - power_source -- id: hg-9-12 - name: Water Heaters +- id: hg-9-3-4-5 + name: Ride-On Floor Scrubbers children: [] attributes: - - boiler_system - color - energy_efficiency_class - - orientation - pattern - - power_source - - suitable_space -- id: hg-10 - name: Household Supplies - children: - - hg-10-1 - - hg-10-2 - - hg-10-3 - - hg-10-4 - - hg-10-5 - - hg-10-6 - - hg-10-7 - - hg-10-8 - - hg-10-9 - - hg-10-10 - - hg-10-11 - - hg-10-13 - - hg-10-14 - - hg-10-15 - - hg-10-16 - - hg-10-17 - - hg-10-18 - - hg-10-19 - - hg-10-12 +- id: hg-9-3-4-6 + name: Spin Mop Floor Scrubbers + children: [] attributes: - color + - energy_efficiency_class - pattern -- id: hg-10-1 - name: Drawer & Shelf Liners +- id: hg-9-3-4-7 + name: Walk-Behind Floor Scrubbers children: [] attributes: - color - - material + - energy_efficiency_class - pattern -- id: hg-10-2 - name: Floor Protection Films & Runners +- id: hg-9-3-6 + name: Steam Mops children: - - hg-10-2-1 - - hg-10-2-2 + - hg-9-3-6-1 + - hg-9-3-6-2 + - hg-9-3-6-3 + - hg-9-3-6-4 + - hg-9-3-6-5 + - hg-9-3-6-6 attributes: - color - - material + - energy_efficiency_class - pattern -- id: hg-10-3 - name: Furniture Floor Protectors +- id: hg-9-3-6-1 + name: 2-in-1 Steam Mops children: [] attributes: - color + - energy_efficiency_class - pattern - - shape - - fabric -- id: hg-10-4 - name: Garage Floor Mats +- id: hg-9-3-6-2 + name: Cylinder Steam Mops children: [] attributes: - color - - material + - energy_efficiency_class - pattern - - shape -- id: hg-10-5 - name: Garbage Bags +- id: hg-9-3-6-3 + name: Handheld Steam Mops children: [] attributes: - color + - energy_efficiency_class - pattern -- id: hg-10-6 - name: Household Cleaning Supplies - children: - - hg-10-6-1 - - hg-10-6-2 - - hg-10-6-3 - - hg-10-6-4 - - hg-10-6-5 - - hg-10-6-6 - - hg-10-6-7 - - hg-10-6-8 - - hg-10-6-9 - - hg-10-6-10 - - hg-10-6-11 - - hg-10-6-12 - - hg-10-6-13 - - hg-10-6-14 - - hg-10-6-15 - - hg-10-6-16 - - hg-10-6-17 - - hg-10-6-18 +- id: hg-9-3-6-4 + name: Multi-Surface Steam Mops + children: [] attributes: - color + - energy_efficiency_class - pattern -- id: hg-10-6-1 - name: Broom & Mop Handles +- id: hg-9-3-6-5 + name: Upright Steam Mops children: [] attributes: - color + - energy_efficiency_class - pattern -- id: hg-10-6-2 - name: Broom Heads +- id: hg-9-3-6-6 + name: Vacuum Steam Mops children: [] attributes: - color + - energy_efficiency_class - pattern -- id: hg-10-6-3 - name: Brooms - children: [] +- id: hg-9-4 + name: Floor Polishers & Buffers + children: + - hg-9-4-1 + - hg-9-4-2 attributes: - color + - energy_efficiency_class - pattern - - suitable_space -- id: hg-10-6-4 - name: Buckets +- id: hg-9-4-1 + name: Floor Buffers children: [] attributes: - color + - energy_efficiency_class - pattern -- id: hg-10-6-5 - name: Carpet Sweepers +- id: hg-9-4-2 + name: Floor Polishers children: [] attributes: - color + - energy_efficiency_class - pattern - - power_source -- id: hg-10-6-6 - name: Cleaning Gloves +- id: hg-9-5 + name: Futon Dryers children: [] attributes: - - accessory_size - color + - energy_efficiency_class - pattern - - handwear_material -- id: hg-10-6-7 - name: Duster Refills - children: [] +- id: hg-9-6 + name: Garage Door Keypads & Remotes + children: + - hg-9-6-1 + - hg-9-6-2 attributes: - color - - material + - energy_efficiency_class - pattern -- id: hg-10-6-8 - name: Dusters +- id: hg-9-6-1 + name: Garage Door Keypads children: [] attributes: - color - - material + - energy_efficiency_class - pattern -- id: hg-10-6-9 - name: Dustpans +- id: hg-9-6-2 + name: Garage Door Remotes children: [] attributes: - color - - material + - energy_efficiency_class - pattern -- id: hg-10-6-10 - name: Fabric & Upholstery Protectors +- id: hg-9-7 + name: Garage Door Openers children: [] attributes: - - cleaning_surfaces - color + - energy_efficiency_class + - operation_method - pattern -- id: hg-10-6-11 - name: Household Cleaning Products + - power_source +- id: hg-9-8 + name: Laundry Appliances children: - - hg-10-6-11-1 - - hg-10-6-11-2 - - hg-10-6-11-3 - - hg-10-6-11-4 - - hg-10-6-11-5 - - hg-10-6-11-6 - - hg-10-6-11-8 - - hg-10-6-11-9 - - hg-10-6-11-10 - - hg-10-6-11-11 - - hg-10-6-11-12 - - hg-10-6-11-13 - - hg-10-6-11-14 - - hg-10-6-11-15 - - hg-10-6-11-16 - - hg-10-6-11-17 - - hg-10-6-11-7 - attributes: - - color - - dispenser_type - - ingredients - - pattern -- id: hg-10-6-11-1 - name: All-Purpose Cleaners - children: [] - attributes: - - cleaning_surfaces - - color - - dispenser_type - - ingredients - - pattern - - scent -- id: hg-10-6-11-2 - name: Carpet Cleaners - children: [] + - hg-9-8-1 + - hg-9-8-2 + - hg-9-8-3 + - hg-9-8-4 + - hg-9-8-5 + - hg-9-8-6 attributes: - color - - dispenser_type - - ingredients + - energy_efficiency_class - pattern -- id: hg-10-6-11-3 - name: Descalers & Decalcifiers +- id: hg-9-8-1 + name: Dryers children: [] attributes: - color - - dispenser_type - - ingredients + - energy_efficiency_class + - loading_type + - mounting_type - pattern -- id: hg-10-6-11-4 - name: Dish Detergent & Soap +- id: hg-9-8-2 + name: Garment Steamers children: [] attributes: - color - - dispenser_type - - ingredients + - energy_efficiency_class + - garment_steamer_design - pattern - - scent -- id: hg-10-6-11-5 - name: Dishwasher Cleaners +- id: hg-9-8-3 + name: Irons & Ironing Systems children: - - hg-10-6-11-5-1 - - hg-10-6-11-5-2 - - hg-10-6-11-5-3 + - hg-9-8-3-1 + - hg-9-8-3-2 attributes: - color - - dispenser_type - - ingredients + - energy_efficiency_class - pattern -- id: hg-10-6-11-6 - name: Fabric & Upholstery Cleaners + - soleplate_type +- id: hg-9-8-3-1 + name: Ironing Systems children: [] attributes: - color - - dispenser_type - - ingredients + - energy_efficiency_class - pattern -- id: hg-10-6-11-8 - name: Furniture Cleaners & Polish + - soleplate_type +- id: hg-9-8-3-2 + name: Irons children: [] attributes: - color - - dispenser_type - - ingredients + - energy_efficiency_class - pattern -- id: hg-10-6-11-9 - name: Glass & Surface Cleaners + - soleplate_type +- id: hg-9-8-4 + name: Laundry Combo Units children: - - hg-10-6-11-9-1 - - hg-10-6-11-9-2 + - hg-9-8-4-1 + - hg-9-8-4-2 + - hg-9-8-4-3 + - hg-9-8-4-4 attributes: - color - - dispenser_type - - ingredients + - energy_efficiency_class - pattern -- id: hg-10-6-11-9-1 - name: Glass Cleaners +- id: hg-9-8-4-1 + name: All-in-One Washer-Dryer Units children: [] attributes: - color - - dispenser_type - - ingredients + - energy_efficiency_class - pattern -- id: hg-10-6-11-9-2 - name: Multi-surface Cleaners +- id: hg-9-8-4-2 + name: Portable Washer-Dryer Units children: [] attributes: - color - - dispenser_type - - ingredients + - energy_efficiency_class - pattern -- id: hg-10-6-11-10 - name: Household Disinfectants +- id: hg-9-8-4-3 + name: Stackable Washer-Dryer Units children: [] attributes: - color - - dispenser_type - - ingredients + - energy_efficiency_class - pattern - - scent -- id: hg-10-6-11-11 - name: Oven & Grill Cleaners +- id: hg-9-8-4-4 + name: Washer-Dryer Combos children: [] attributes: - color - - dispenser_type - - ingredients + - energy_efficiency_class - pattern -- id: hg-10-6-11-12 - name: Pet Odor & Stain Removers +- id: hg-9-8-5 + name: Steam Presses children: [] attributes: - - cleaning_surfaces - color - - dispenser_type - - ingredients + - energy_efficiency_class - pattern - - targeted_stains -- id: hg-10-6-11-13 - name: Rinse Aids +- id: hg-9-8-6 + name: Washing Machines children: [] attributes: - color - - dispenser_type - - ingredients - - pattern -- id: hg-10-6-11-14 - name: Stainless Steel Cleaners & Polishes - children: - - hg-10-6-11-14-1 - - hg-10-6-11-14-2 - attributes: - - application_method - - color - - dispenser_type - - ingredients + - energy_efficiency_class + - loading_type + - mounting_type - pattern -- id: hg-10-6-11-15 - name: Toilet Bowl Cleaners + - washing_programs +- id: hg-9-9 + name: Ultrasonic Cleaners children: [] attributes: - color - - dispenser_type - - ingredients + - energy_efficiency_class - pattern -- id: hg-10-6-11-16 - name: Tub & Tile Cleaners +- id: hg-9-10 + name: Vacuums children: - - hg-10-6-11-16-1 - - hg-10-6-11-16-2 - attributes: - - color - - dispenser_type - - ingredients - - pattern -- id: hg-10-6-11-17 - name: Washing Machine Cleaners - children: [] - attributes: - - color - - dispenser_type - - ingredients - - pattern -- id: hg-10-6-12 - name: Mop Heads & Refills - children: [] - attributes: - - cleaning_surfaces - - color - - dry_wet_cleaning - - material - - pattern -- id: hg-10-6-13 - name: Mops - children: [] + - hg-9-10-1 + - hg-9-10-2 attributes: - cleaning_surfaces - color + - dirt_separating_method - dry_wet_cleaning - - material + - dust_container_type + - energy_efficiency_class - pattern -- id: hg-10-6-14 - name: Scrub Brush Heads & Refills + - vacuum_air_filtering_technology +- id: hg-9-10-1 + name: Canister Vacs children: [] attributes: - cleaning_surfaces - color + - dirt_separating_method - dry_wet_cleaning + - dust_container_type + - energy_efficiency_class - pattern - - brush_material -- id: hg-10-6-15 - name: Scrub Brushes + - vacuum_air_filtering_technology +- id: hg-9-10-2 + name: Upright Vacuums children: [] attributes: - cleaning_surfaces - color + - dirt_separating_method - dry_wet_cleaning + - dust_container_type + - energy_efficiency_class - pattern - - brush_material -- id: hg-10-6-16 - name: Shop Towels & General-Purpose Cleaning Cloths + - vacuum_air_filtering_technology +- id: hg-9-11 + name: Wallpaper Steamers children: [] attributes: - color - - material + - energy_efficiency_class - pattern -- id: hg-10-6-17 - name: Sponges & Scouring Pads + - power_source +- id: hg-9-12 + name: Water Heaters children: [] attributes: + - boiler_system - color + - energy_efficiency_class + - orientation - pattern -- id: hg-10-6-18 - name: Squeegees + - power_source + - suitable_space +- id: hg-10 + name: Household Supplies + children: + - hg-10-1 + - hg-10-2 + - hg-10-3 + - hg-10-4 + - hg-10-5 + - hg-10-6 + - hg-10-7 + - hg-10-8 + - hg-10-9 + - hg-10-10 + - hg-10-11 + - hg-10-12 + - hg-10-13 + - hg-10-14 + - hg-10-15 + - hg-10-16 + - hg-10-17 + - hg-10-18 + - hg-10-19 + attributes: + - color + - pattern +- id: hg-10-1 + name: Drawer & Shelf Liners children: [] attributes: - color + - material - pattern -- id: hg-10-7 - name: Household Paper Products +- id: hg-10-2 + name: Floor Protection Films & Runners children: - - hg-10-7-1 - - hg-10-7-2 - - hg-10-7-3 - - hg-10-7-4 + - hg-10-2-1 + - hg-10-2-2 attributes: - color + - material - pattern -- id: hg-10-7-1 - name: Facial Tissues +- id: hg-10-2-1 + name: Floor Protection Films children: [] attributes: - color + - material - pattern -- id: hg-10-7-2 - name: Paper Napkins +- id: hg-10-2-2 + name: Floor Protection Runners children: [] attributes: - color + - material - pattern -- id: hg-10-7-3 - name: Paper Towels +- id: hg-10-3 + name: Furniture Floor Protectors children: [] attributes: - color + - fabric - pattern -- id: hg-10-7-4 - name: Toilet Paper + - shape +- id: hg-10-4 + name: Garage Floor Mats children: [] attributes: - color + - material - pattern - - scent -- id: hg-10-8 - name: Household Thermometers + - shape +- id: hg-10-5 + name: Garbage Bags children: [] attributes: - color - pattern -- id: hg-10-9 - name: Laundry Supplies +- id: hg-10-6 + name: Household Cleaning Supplies children: - - hg-10-9-1 - - hg-10-9-2 - - hg-10-9-3 - - hg-10-9-4 - - hg-10-9-5 - - hg-10-9-6 - - hg-10-9-7 - - hg-10-9-8 - - hg-10-9-9 - - hg-10-9-10 - - hg-10-9-11 - - hg-10-9-12 - - hg-10-9-13 - - hg-10-9-14 - - hg-10-9-15 - - hg-10-9-16 - - hg-10-9-17 - - hg-10-9-18 - - hg-10-9-19 - - hg-10-9-20 + - hg-10-6-1 + - hg-10-6-2 + - hg-10-6-3 + - hg-10-6-4 + - hg-10-6-5 + - hg-10-6-6 + - hg-10-6-7 + - hg-10-6-8 + - hg-10-6-9 + - hg-10-6-10 + - hg-10-6-11 + - hg-10-6-12 + - hg-10-6-13 + - hg-10-6-14 + - hg-10-6-15 + - hg-10-6-16 + - hg-10-6-17 + - hg-10-6-18 attributes: - color - pattern -- id: hg-10-9-1 - name: Bleach +- id: hg-10-6-1 + name: Broom & Mop Handles children: [] attributes: - color - - dispenser_type - pattern -- id: hg-10-9-2 - name: Clothespins +- id: hg-10-6-2 + name: Broom Heads children: [] attributes: - color - - material - pattern -- id: hg-10-9-3 - name: Dry Cleaning Kits +- id: hg-10-6-3 + name: Brooms children: [] attributes: - - cleaning_purpose - - color - - pattern -- id: hg-10-9-4 - name: Drying Racks & Hangers - children: - - hg-10-9-4-1 - - hg-10-9-4-2 - attributes: - color - pattern -- id: hg-10-9-5 - name: Fabric Refreshers + - suitable_space +- id: hg-10-6-4 + name: Buckets children: [] attributes: - color - pattern - - scent -- id: hg-10-9-6 - name: Fabric Shavers +- id: hg-10-6-5 + name: Carpet Sweepers children: [] attributes: - - blade_material - - color - - pattern -- id: hg-10-9-7 - name: Fabric Softeners & Dryer Sheets - children: - - hg-10-9-7-1 - - hg-10-9-7-2 - attributes: - color - pattern - - scent -- id: hg-10-9-8 - name: Fabric Stain Removers + - power_source +- id: hg-10-6-6 + name: Cleaning Gloves children: [] attributes: + - accessory_size - color + - handwear_material - pattern - - targeted_stains -- id: hg-10-9-9 - name: Fabric Starch +- id: hg-10-6-7 + name: Duster Refills children: [] attributes: - color + - material - pattern -- id: hg-10-9-10 - name: Garment Shields +- id: hg-10-6-8 + name: Dusters children: [] attributes: - color + - material - pattern -- id: hg-10-9-11 - name: Iron Rests +- id: hg-10-6-9 + name: Dustpans children: [] attributes: - color - material - pattern -- id: hg-10-9-12 - name: Ironing Board Pads & Covers - children: - - hg-10-9-12-1 - - hg-10-9-12-2 +- id: hg-10-6-10 + name: Fabric & Upholstery Protectors + children: [] attributes: + - cleaning_surfaces - color - pattern - - fabric -- id: hg-10-9-13 - name: Ironing Board Replacement Parts +- id: hg-10-6-11 + name: Household Cleaning Products children: - - hg-10-9-13-2 + - hg-10-6-11-1 + - hg-10-6-11-2 + - hg-10-6-11-3 + - hg-10-6-11-4 + - hg-10-6-11-5 + - hg-10-6-11-6 + - hg-10-6-11-7 + - hg-10-6-11-8 + - hg-10-6-11-9 + - hg-10-6-11-10 + - hg-10-6-11-11 + - hg-10-6-11-12 + - hg-10-6-11-13 + - hg-10-6-11-14 + - hg-10-6-11-15 + - hg-10-6-11-16 + - hg-10-6-11-17 attributes: - color + - dispenser_type + - ingredients - pattern -- id: hg-10-9-14 - name: Ironing Boards +- id: hg-10-6-11-1 + name: All-Purpose Cleaners children: [] attributes: + - cleaning_surfaces - color - - mounting_type + - dispenser_type + - ingredients - pattern - - upholstery_material -- id: hg-10-9-15 - name: Laundry Balls + - scent +- id: hg-10-6-11-2 + name: Carpet Cleaners children: [] attributes: - color + - dispenser_type + - ingredients - pattern -- id: hg-10-9-16 - name: Laundry Baskets +- id: hg-10-6-11-3 + name: Descalers & Decalcifiers children: [] attributes: - color + - dispenser_type + - ingredients - pattern -- id: hg-10-9-17 - name: Laundry Detergent +- id: hg-10-6-11-4 + name: Dish Detergent & Soap children: [] attributes: - color + - dispenser_type - ingredients - pattern - scent - - washing_method -- id: hg-10-9-18 - name: Laundry Wash Bags & Frames - children: [] +- id: hg-10-6-11-5 + name: Dishwasher Cleaners + children: + - hg-10-6-11-5-1 + - hg-10-6-11-5-2 + - hg-10-6-11-5-3 attributes: - color + - dispenser_type + - ingredients - pattern -- id: hg-10-9-19 - name: Lint Rollers +- id: hg-10-6-11-5-1 + name: Detergent Removers children: [] attributes: - color + - dispenser_type + - ingredients - pattern -- id: hg-10-9-20 - name: Wrinkle Releasers & Anti-Static Sprays - children: - - hg-10-9-20-1 - - hg-10-9-20-2 +- id: hg-10-6-11-5-2 + name: Grease Removers + children: [] attributes: - color + - dispenser_type + - ingredients - pattern -- id: hg-10-10 - name: Moisture Absorbers +- id: hg-10-6-11-5-3 + name: Limescale Removers children: [] attributes: - color + - dispenser_type + - ingredients - pattern -- id: hg-10-11 - name: Pest Control - children: - - hg-10-11-1 - - hg-10-11-2 - - hg-10-11-3 - - hg-10-11-4 +- id: hg-10-6-11-6 + name: Fabric & Upholstery Cleaners + children: [] attributes: - color + - dispenser_type + - ingredients - pattern -- id: hg-10-11-1 - name: Fly Swatters +- id: hg-10-6-11-7 + name: Floor Cleaning Products children: [] attributes: + - cleaning_surfaces - color + - dispenser_type + - ingredients - pattern - - power_source -- id: hg-10-11-2 - name: Pest Control Traps - children: - - hg-10-11-2-1 - - hg-10-11-2-2 - - hg-10-11-2-3 - - hg-10-11-2-4 - - hg-10-11-2-5 - - hg-10-11-2-6 +- id: hg-10-6-11-8 + name: Furniture Cleaners & Polish + children: [] attributes: - color + - dispenser_type + - ingredients - pattern - - suitable_for_pest_type - - suitable_space -- id: hg-10-11-3 - name: Pesticides +- id: hg-10-6-11-9 + name: Glass & Surface Cleaners children: - - hg-10-11-3-1 - - hg-10-11-3-2 - - hg-10-11-3-3 - - hg-10-11-3-4 - - hg-10-11-3-5 + - hg-10-6-11-9-1 + - hg-10-6-11-9-2 attributes: - color + - dispenser_type - ingredients - pattern -- id: hg-10-11-4 - name: Repellents - children: - - hg-10-11-4-1 - - hg-10-11-4-2 +- id: hg-10-6-11-9-1 + name: Glass Cleaners + children: [] attributes: - - application_method - color + - dispenser_type - ingredients - pattern - - suitable_space -- id: hg-10-11-4-1 - name: Animal & Pet Repellents +- id: hg-10-6-11-9-2 + name: Multi-surface Cleaners children: [] attributes: - - animal_type - - application_method - color + - dispenser_type - ingredients - pattern - - suitable_space -- id: hg-10-11-4-2 - name: Household Insect Repellents +- id: hg-10-6-11-10 + name: Household Disinfectants children: [] attributes: - - application_method - - bug_type - color + - dispenser_type - ingredients - pattern - - suitable_space -- id: hg-10-13 - name: Rug Pads + - scent +- id: hg-10-6-11-11 + name: Oven & Grill Cleaners children: [] attributes: - color - - material + - dispenser_type + - ingredients - pattern -- id: hg-10-14 - name: Shoe Care & Tools - children: - - hg-10-14-1 - - hg-10-14-2 - - hg-10-14-3 - - hg-10-14-4 - - hg-10-14-5 - - hg-10-14-6 - - hg-10-14-7 - - hg-10-14-8 - - hg-10-14-9 - - hg-10-14-10 - - hg-10-14-11 +- id: hg-10-6-11-12 + name: Pet Odor & Stain Removers + children: [] attributes: + - cleaning_surfaces - color + - dispenser_type + - ingredients - pattern -- id: hg-10-14-1 - name: Boot Pulls + - targeted_stains +- id: hg-10-6-11-13 + name: Rinse Aids children: [] attributes: - color + - dispenser_type + - ingredients - pattern -- id: hg-10-14-2 - name: Shoe Bags - children: [] +- id: hg-10-6-11-14 + name: Stainless Steel Cleaners & Polishes + children: + - hg-10-6-11-14-1 + - hg-10-6-11-14-2 attributes: + - application_method - color + - dispenser_type + - ingredients - pattern -- id: hg-10-14-3 - name: Shoe Brushes +- id: hg-10-6-11-14-1 + name: Conditioning Cloths children: [] attributes: - color + - dispenser_type + - ingredients - pattern -- id: hg-10-14-4 - name: Shoe Care Kits +- id: hg-10-6-11-14-2 + name: Conditioning Oil children: [] attributes: - color + - dispenser_type + - ingredients - pattern -- id: hg-10-14-5 - name: Shoe Dryers +- id: hg-10-6-11-15 + name: Toilet Bowl Cleaners children: [] attributes: - color + - dispenser_type + - ingredients - pattern -- id: hg-10-14-6 - name: Shoe Horns & Dressing Aids +- id: hg-10-6-11-16 + name: Tub & Tile Cleaners children: - - hg-10-14-6-1 - - hg-10-14-6-2 + - hg-10-6-11-16-1 + - hg-10-6-11-16-2 attributes: - color + - dispenser_type + - ingredients - pattern -- id: hg-10-14-7 - name: Shoe Polishers +- id: hg-10-6-11-16-1 + name: Tile Cleaners children: [] attributes: - color + - dispenser_type + - ingredients - pattern -- id: hg-10-14-8 - name: Shoe Polishes & Waxes - children: - - hg-10-14-8-1 - - hg-10-14-8-2 - attributes: - - color - - pattern -- id: hg-10-14-9 - name: Shoe Scrapers +- id: hg-10-6-11-16-2 + name: Tub Cleaners children: [] attributes: - color + - dispenser_type + - ingredients - pattern -- id: hg-10-14-10 - name: Shoe Treatments & Dyes - children: - - hg-10-14-10-1 - - hg-10-14-10-2 +- id: hg-10-6-11-17 + name: Washing Machine Cleaners + children: [] attributes: - color + - dispenser_type + - ingredients - pattern -- id: hg-10-14-11 - name: Shoe Trees & Shapers - children: - - hg-10-14-11-1 - - hg-10-14-11-2 +- id: hg-10-6-12 + name: Mop Heads & Refills + children: [] attributes: + - cleaning_surfaces - color + - dry_wet_cleaning - material - pattern -- id: hg-10-15 - name: Stair Treads +- id: hg-10-6-13 + name: Mops children: [] attributes: + - cleaning_surfaces - color + - dry_wet_cleaning - material - pattern -- id: hg-10-16 - name: Storage & Organization - children: - - hg-10-16-1 - - hg-10-16-2 - - hg-10-16-3 - - hg-10-16-4 - - hg-10-16-5 - - hg-10-16-6 - - hg-10-16-7 - - hg-10-16-8 - - hg-10-16-9 +- id: hg-10-6-14 + name: Scrub Brush Heads & Refills + children: [] attributes: + - cleaning_surfaces - color + - dry_wet_cleaning + - brush_material - pattern -- id: hg-10-16-1 - name: Clothing & Closet Storage - children: - - hg-10-16-1-1 - - hg-10-16-1-2 - - hg-10-16-1-3 - - hg-10-16-1-4 - - hg-10-16-1-5 - - hg-10-16-1-6 +- id: hg-10-6-15 + name: Scrub Brushes + children: [] attributes: + - cleaning_surfaces - color + - dry_wet_cleaning + - brush_material - pattern -- id: hg-10-16-1-1 - name: Charging Valets +- id: hg-10-6-16 + name: Shop Towels & General-Purpose Cleaning Cloths children: [] attributes: - color + - material - pattern -- id: hg-10-16-1-2 - name: Closet Organizers & Garment Racks - children: - - hg-10-16-1-2-1 - - hg-10-16-1-2-2 +- id: hg-10-6-17 + name: Sponges & Scouring Pads + children: [] attributes: - color - pattern -- id: hg-10-16-1-3 - name: Clothes Valets +- id: hg-10-6-18 + name: Squeegees children: [] attributes: - color - pattern -- id: hg-10-16-1-4 - name: Hangers - children: [] +- id: hg-10-7 + name: Household Paper Products + children: + - hg-10-7-1 + - hg-10-7-2 + - hg-10-7-3 + - hg-10-7-4 attributes: - color - pattern -- id: hg-10-16-1-5 - name: Hat Boxes +- id: hg-10-7-1 + name: Facial Tissues children: [] attributes: - color - pattern -- id: hg-10-16-1-6 - name: Shoe Racks & Organizers - children: - - hg-10-16-1-6-1 - - hg-10-16-1-6-2 +- id: hg-10-7-2 + name: Paper Napkins + children: [] attributes: - color - pattern -- id: hg-10-16-2 - name: Flatware Chests +- id: hg-10-7-3 + name: Paper Towels children: [] attributes: - color - - material - pattern -- id: hg-10-16-3 - name: Household Drawer Organizer Inserts +- id: hg-10-7-4 + name: Toilet Paper children: [] attributes: - color - - material - pattern -- id: hg-10-16-4 - name: Household Storage Bags + - scent +- id: hg-10-8 + name: Household Thermometers children: [] attributes: - color - pattern - - bag_case_material -- id: hg-10-16-5 - name: Household Storage Caddies +- id: hg-10-9 + name: Laundry Supplies + children: + - hg-10-9-1 + - hg-10-9-2 + - hg-10-9-3 + - hg-10-9-4 + - hg-10-9-5 + - hg-10-9-6 + - hg-10-9-7 + - hg-10-9-8 + - hg-10-9-9 + - hg-10-9-10 + - hg-10-9-11 + - hg-10-9-12 + - hg-10-9-13 + - hg-10-9-14 + - hg-10-9-15 + - hg-10-9-16 + - hg-10-9-17 + - hg-10-9-18 + - hg-10-9-19 + - hg-10-9-20 + attributes: + - color + - pattern +- id: hg-10-9-1 + name: Bleach children: [] attributes: - color + - dispenser_type - pattern -- id: hg-10-16-6 - name: Household Storage Containers +- id: hg-10-9-2 + name: Clothespins children: [] attributes: - color + - material - pattern -- id: hg-10-16-7 - name: Household Storage Drawers +- id: hg-10-9-3 + name: Dry Cleaning Kits children: [] attributes: + - cleaning_purpose - color - pattern -- id: hg-10-16-8 - name: Photo Storage +- id: hg-10-9-4 + name: Drying Racks & Hangers children: - - hg-10-16-8-1 - - hg-10-16-8-2 + - hg-10-9-4-1 + - hg-10-9-4-2 attributes: - color - pattern -- id: hg-10-16-8-1 - name: Photo Albums +- id: hg-10-9-4-1 + name: Drying Hangers children: [] attributes: - color - - format_supported - pattern - - stationery_binding_type -- id: hg-10-16-8-2 - name: Photo Storage Boxes +- id: hg-10-9-4-2 + name: Drying Racks children: [] attributes: - color - pattern -- id: hg-10-16-9 - name: Storage Hooks & Racks - children: - - hg-10-16-9-1 - - hg-10-16-9-2 - - hg-10-16-9-3 +- id: hg-10-9-5 + name: Fabric Refreshers + children: [] attributes: - color - - material - pattern -- id: hg-10-16-9-1 - name: Ironing Board Hooks & Racks - children: - - hg-10-16-9-1-1 - - hg-10-16-9-1-2 + - scent +- id: hg-10-9-6 + name: Fabric Shavers + children: [] attributes: + - blade_material - color - - material - pattern -- id: hg-10-16-9-2 - name: Umbrella Stands & Racks +- id: hg-10-9-7 + name: Fabric Softeners & Dryer Sheets children: - - hg-10-16-9-2-1 - - hg-10-16-9-2-2 + - hg-10-9-7-1 + - hg-10-9-7-2 attributes: - color - - material - pattern -- id: hg-10-16-9-3 - name: Utility Hooks + - scent +- id: hg-10-9-7-1 + name: Dryer Sheets children: [] attributes: - color - - material - pattern -- id: hg-10-17 - name: Trash Compactor Accessories - children: - - hg-10-17-1 - - hg-10-17-2 + - scent +- id: hg-10-9-7-2 + name: Fabric Softeners + children: [] attributes: - color - - material - pattern -- id: hg-10-18 - name: Waste Containment - children: - - hg-10-18-1 - - hg-10-18-2 - - hg-10-18-3 - - hg-10-18-4 + - scent +- id: hg-10-9-8 + name: Fabric Stain Removers + children: [] attributes: - color - - material - pattern - - shape -- id: hg-10-18-1 - name: Dumpsters + - targeted_stains +- id: hg-10-9-9 + name: Fabric Starch children: [] attributes: - color - - material - pattern - - shape -- id: hg-10-18-2 - name: Hazardous Waste Containers +- id: hg-10-9-10 + name: Garment Shields children: [] attributes: - color - - material - pattern - - shape -- id: hg-10-18-3 - name: Recycling Containers +- id: hg-10-9-11 + name: Iron Rests children: [] attributes: - color - material - pattern - - shape -- id: hg-10-18-4 - name: Trash Cans & Wastebaskets +- id: hg-10-9-12 + name: Ironing Board Pads & Covers children: - - hg-10-18-4-1 - - hg-10-18-4-2 + - hg-10-9-12-1 + - hg-10-9-12-2 + attributes: + - color + - fabric + - pattern +- id: hg-10-9-12-1 + name: Ironing Board Covers + children: [] + attributes: + - color + - fabric + - pattern +- id: hg-10-9-12-2 + name: Ironing Board Pads + children: [] attributes: - color - material - pattern - - shape -- id: hg-10-19 - name: Waste Containment Accessories +- id: hg-10-9-13 + name: Ironing Board Replacement Parts children: - - hg-10-19-1 - - hg-10-19-2 - - hg-10-19-3 - - hg-10-19-4 - - hg-10-19-5 + - hg-10-9-13-2 attributes: - color - pattern -- id: hg-10-19-1 - name: Waste Container Carts +- id: hg-10-9-13-2 + name: Ironing Board Legs children: [] attributes: - color - pattern -- id: hg-10-19-2 - name: Waste Container Enclosures +- id: hg-10-9-14 + name: Ironing Boards children: [] attributes: - color + - upholstery_material + - mounting_type - pattern -- id: hg-10-19-3 - name: Waste Container Labels & Signs +- id: hg-10-9-15 + name: Laundry Balls children: [] attributes: - color - pattern -- id: hg-10-19-4 - name: Waste Container Lids +- id: hg-10-9-16 + name: Laundry Baskets children: [] attributes: - color - pattern -- id: hg-10-19-5 - name: Waste Container Wheels +- id: hg-10-9-17 + name: Laundry Detergent children: [] attributes: - color + - ingredients - pattern -- id: hg-11 - name: Kitchen & Dining - children: - - hg-11-1 - - hg-11-2 - - hg-11-3 - - hg-11-4 - - hg-11-5 - - hg-11-6 - - hg-11-7 - - hg-11-8 - - hg-11-9 - - hg-11-10 + - scent + - washing_method +- id: hg-10-9-18 + name: Laundry Wash Bags & Frames + children: [] attributes: - color - pattern -- id: hg-11-1 - name: Barware - children: - - hg-11-1-1 - - hg-11-1-2 - - hg-11-1-3 - - hg-11-1-4 - - hg-11-1-5 - - hg-11-1-6 - - hg-11-1-7 - - hg-11-1-8 - - hg-11-1-9 - - hg-11-1-10 - - hg-11-1-11 - - hg-11-1-12 - - hg-11-1-14 - - hg-11-1-16 - - hg-11-1-17 - - hg-11-1-13 - - hg-11-1-15 - attributes: - - color - - pattern -- id: hg-11-1-1 - name: Absinthe Fountains - children: [] - attributes: - - color - - pattern -- id: hg-11-1-2 - name: Beer Dispensers & Taps +- id: hg-10-9-19 + name: Lint Rollers children: [] attributes: - color - pattern -- id: hg-11-1-3 - name: Beverage Chilling Cubes & Sticks +- id: hg-10-9-20 + name: Wrinkle Releasers & Anti-Static Sprays children: - - hg-11-1-3-1 - - hg-11-1-3-2 + - hg-10-9-20-1 + - hg-10-9-20-2 attributes: - color - pattern - - barware_material -- id: hg-11-1-4 - name: Beverage Tubs & Chillers - children: - - hg-11-1-4-1 - - hg-11-1-4-2 +- id: hg-10-9-20-1 + name: Anti-Static Sprays + children: [] attributes: - color - pattern -- id: hg-11-1-5 - name: Bottle Caps - children: - - hg-11-1-5-1 - - hg-11-1-5-2 - - hg-11-1-5-3 - - hg-11-1-5-4 - - hg-11-1-5-5 +- id: hg-10-9-20-2 + name: Wrinkle Releasers + children: [] attributes: - color - pattern -- id: hg-11-1-6 - name: Bottle Stoppers & Savers +- id: hg-10-10 + name: Moisture Absorbers children: [] attributes: - color - pattern - - barware_material -- id: hg-11-1-7 - name: Coaster Holders - children: [] +- id: hg-10-11 + name: Pest Control + children: + - hg-10-11-1 + - hg-10-11-2 + - hg-10-11-3 + - hg-10-11-4 attributes: - color - - material - pattern - - shape -- id: hg-11-1-8 - name: Coasters +- id: hg-10-11-1 + name: Fly Swatters children: [] attributes: - color - pattern - - shape - - barware_material -- id: hg-11-1-9 - name: Cocktail & Barware Tool Sets - children: [] + - power_source +- id: hg-10-11-2 + name: Pest Control Traps + children: + - hg-10-11-2-1 + - hg-10-11-2-2 + - hg-10-11-2-3 + - hg-10-11-2-4 + - hg-10-11-2-5 + - hg-10-11-2-6 attributes: - color - pattern -- id: hg-11-1-10 - name: Cocktail Shakers & Tools - children: - - hg-11-1-10-1 - - hg-11-1-10-2 - - hg-11-1-10-3 - - hg-11-1-10-4 - - hg-11-1-10-5 + - suitable_for_pest_type + - suitable_space +- id: hg-10-11-2-1 + name: Electric Traps + children: [] attributes: - color - pattern - - barware_material -- id: hg-11-1-10-1 - name: Bar Ice Picks + - suitable_for_pest_type + - suitable_space +- id: hg-10-11-2-2 + name: Glue Traps children: [] attributes: - color - pattern - - barware_material -- id: hg-11-1-10-2 - name: Bottle Openers + - suitable_for_pest_type + - suitable_space +- id: hg-10-11-2-3 + name: Live Traps children: [] attributes: - color - pattern - - barware_material -- id: hg-11-1-10-3 - name: Cocktail Shakers + - suitable_for_pest_type + - suitable_space +- id: hg-10-11-2-4 + name: Plunger Traps children: [] attributes: - color - pattern - - barware_material -- id: hg-11-1-10-4 - name: Cocktail Strainers + - suitable_for_pest_type + - suitable_space +- id: hg-10-11-2-5 + name: Scissor Traps children: [] attributes: - color - pattern - - barware_material -- id: hg-11-1-10-5 - name: Muddlers + - suitable_for_pest_type + - suitable_space +- id: hg-10-11-2-6 + name: Snap Traps children: [] attributes: - color - pattern - - barware_material -- id: hg-11-1-11 - name: Corkscrews + - suitable_for_pest_type + - suitable_space +- id: hg-10-11-3 + name: Pesticides children: - - hg-11-1-11-1 - - hg-11-1-11-2 - - hg-11-1-11-3 - - hg-11-1-11-4 - - hg-11-1-11-5 + - hg-10-11-3-1 + - hg-10-11-3-2 + - hg-10-11-3-3 + - hg-10-11-3-4 + - hg-10-11-3-5 attributes: - color + - ingredients - pattern - - barware_material -- id: hg-11-1-12 - name: Decanters +- id: hg-10-11-3-1 + name: Fungicides children: [] attributes: - color + - ingredients - pattern - - barware_material -- id: hg-11-1-14 - name: Foil Cutters +- id: hg-10-11-3-2 + name: Garden Insecticides children: [] attributes: - color + - ingredients - pattern -- id: hg-11-1-16 - name: Wine Aerators +- id: hg-10-11-3-3 + name: Miticides children: [] attributes: - color + - ingredients - pattern - - barware_material -- id: hg-11-1-17 - name: Wine Bottle Holders +- id: hg-10-11-3-4 + name: Molluscicides children: [] attributes: - color - - material + - ingredients - pattern -- id: hg-11-2 - name: Cookware & Bakeware - children: - - hg-11-2-1 - - hg-11-2-2 - - hg-11-2-3 - - hg-11-2-4 - - hg-11-2-5 +- id: hg-10-11-3-5 + name: Sepiolites + children: [] attributes: - color + - ingredients - pattern -- id: hg-11-2-1 - name: Bakeware +- id: hg-10-11-4 + name: Repellents children: - - hg-11-2-1-1 - - hg-11-2-1-2 - - hg-11-2-1-3 - - hg-11-2-1-4 - - hg-11-2-1-5 - - hg-11-2-1-6 - - hg-11-2-1-7 - - hg-11-2-1-8 - - hg-11-2-1-9 - - hg-11-2-1-10 - - hg-11-2-1-11 - attributes: - - color - - pattern - - cookware_bakeware_material -- id: hg-11-2-1-1 - name: Bakeware Sets - children: [] + - hg-10-11-4-1 + - hg-10-11-4-2 attributes: - - bakeware_pieces_included + - application_method - color + - ingredients - pattern - - cookware_bakeware_material -- id: hg-11-2-1-2 - name: Baking & Cookie Sheets + - suitable_space +- id: hg-10-11-4-1 + name: Animal & Pet Repellents children: [] attributes: + - animal_type + - application_method - color + - ingredients - pattern - - shape - - baking_sheet_material -- id: hg-11-2-1-3 - name: Bread Pans & Molds + - suitable_space +- id: hg-10-11-4-2 + name: Household Insect Repellents children: [] attributes: + - application_method + - bug_type - color + - ingredients - pattern - - shape - - cookware_bakeware_material -- id: hg-11-2-1-4 - name: Broiling Pans + - suitable_space +- id: hg-10-12 + name: Rug Covers children: [] attributes: - color + - cover_material - pattern - - cookware_bakeware_material -- id: hg-11-2-1-5 - name: Cake Pans & Molds +- id: hg-10-13 + name: Rug Pads children: [] attributes: - color + - material - pattern - - cookware_bakeware_material - - bakeware_shape -- id: hg-11-2-1-6 - name: Muffin & Pastry Pans - children: [] +- id: hg-10-14 + name: Shoe Care & Tools + children: + - hg-10-14-1 + - hg-10-14-2 + - hg-10-14-3 + - hg-10-14-4 + - hg-10-14-5 + - hg-10-14-6 + - hg-10-14-7 + - hg-10-14-8 + - hg-10-14-9 + - hg-10-14-10 + - hg-10-14-11 attributes: - color - pattern - - cookware_bakeware_material -- id: hg-11-2-1-7 - name: Pie & Quiche Pans +- id: hg-10-14-1 + name: Boot Pulls children: [] attributes: - color - pattern - - cookware_bakeware_material -- id: hg-11-2-1-8 - name: Pizza Pans +- id: hg-10-14-2 + name: Shoe Bags children: [] attributes: - color - pattern - - cookware_bakeware_material -- id: hg-11-2-1-9 - name: Pizza Stones +- id: hg-10-14-3 + name: Shoe Brushes children: [] attributes: - color - pattern - - shape - - cookware_bakeware_material -- id: hg-11-2-1-10 - name: Ramekins & Souffle Dishes +- id: hg-10-14-4 + name: Shoe Care Kits children: [] attributes: - color - pattern - - shape - - cookware_bakeware_material -- id: hg-11-2-1-11 - name: Roasting Pans +- id: hg-10-14-5 + name: Shoe Dryers children: [] attributes: - color - pattern - - cookware_bakeware_material -- id: hg-11-2-2 - name: Bakeware Accessories +- id: hg-10-14-6 + name: Shoe Horns & Dressing Aids children: - - hg-11-2-2-1 - - hg-11-2-2-2 - - hg-11-2-2-3 + - hg-10-14-6-1 + - hg-10-14-6-2 attributes: - color - pattern - - cookware_bakeware_material -- id: hg-11-2-2-1 - name: Baking Mats & Liners - children: - - hg-11-2-2-1-1 - - hg-11-2-2-1-2 +- id: hg-10-14-6-1 + name: Dressing Aids + children: [] attributes: - color - pattern - - cookware_bakeware_material -- id: hg-11-2-2-2 - name: Baking Weights - children: - - hg-11-2-2-2-1 - - hg-11-2-2-2-2 +- id: hg-10-14-6-2 + name: Shoe Horns + children: [] attributes: - color - pattern - - cookware_bakeware_material -- id: hg-11-2-2-3 - name: Roasting Pan Racks +- id: hg-10-14-7 + name: Shoe Polishers children: [] attributes: - color - pattern - - cookware_bakeware_material -- id: hg-11-2-3 - name: Cookware +- id: hg-10-14-8 + name: Shoe Polishes & Waxes children: - - hg-11-2-3-1 - - hg-11-2-3-2 - - hg-11-2-3-3 - - hg-11-2-3-4 - - hg-11-2-3-5 - - hg-11-2-3-6 - - hg-11-2-3-7 - - hg-11-2-3-8 - - hg-11-2-3-9 - - hg-11-2-3-10 - - hg-11-2-3-11 - - hg-11-2-3-12 - - hg-11-2-3-13 - - hg-11-2-3-14 - - hg-11-2-3-15 - - hg-11-2-3-16 - - hg-11-2-3-17 + - hg-10-14-8-1 + - hg-10-14-8-2 attributes: - color - - compatible_hob_type - pattern - - cookware_bakeware_material -- id: hg-11-2-4 - name: Cookware & Bakeware Combo Sets +- id: hg-10-14-8-1 + name: Shoe Polishes children: [] attributes: - color - pattern -- id: hg-11-2-3-1 - name: Casserole Dishes +- id: hg-10-14-8-2 + name: Shoe Waxes children: [] attributes: - color - - compatible_hob_type - pattern - - shape - - cookware_bakeware_material -- id: hg-11-2-3-2 - name: Cookware Sets +- id: hg-10-14-9 + name: Shoe Scrapers children: [] attributes: - color - - compatible_hob_type - pattern - - cookware_bakeware_material -- id: hg-11-2-3-3 - name: Crêpe & Blini Pans +- id: hg-10-14-10 + name: Shoe Treatments & Dyes children: - - hg-11-2-3-3-1 - - hg-11-2-3-3-2 + - hg-10-14-10-1 + - hg-10-14-10-2 attributes: - color - - compatible_hob_type - pattern - - cookware_bakeware_material -- id: hg-11-2-3-4 - name: Double Boilers +- id: hg-10-14-10-1 + name: Shoe Dyes children: [] attributes: - color - - compatible_hob_type - pattern - - cookware_bakeware_material -- id: hg-11-2-3-5 - name: Dutch Ovens +- id: hg-10-14-10-2 + name: Shoe Treatments children: [] attributes: - color - - compatible_hob_type - pattern - - cookware_bakeware_material -- id: hg-11-2-3-6 - name: Fermentation & Pickling Crocks - children: [] +- id: hg-10-14-11 + name: Shoe Trees & Shapers + children: + - hg-10-14-11-1 + - hg-10-14-11-2 attributes: - color - - compatible_hob_type + - material - pattern - - cookware_bakeware_material -- id: hg-11-2-3-7 - name: Griddles & Grill Pans +- id: hg-10-14-11-1 + name: Shoe Shapers children: [] attributes: - color - - compatible_hob_type + - material - pattern - - cookware_bakeware_material -- id: hg-11-2-3-8 - name: Grill Presses +- id: hg-10-14-11-2 + name: Shoe Trees children: [] attributes: - color + - material - pattern - - cookware_bakeware_material -- id: hg-11-2-3-9 - name: Paella Pans +- id: hg-10-15 + name: Stair Treads children: [] attributes: - color - - compatible_hob_type + - material - pattern - - cookware_bakeware_material -- id: hg-11-2-3-10 - name: Pressure Cookers & Canners +- id: hg-10-16 + name: Storage & Organization children: - - hg-11-2-3-10-1 - - hg-11-2-3-10-2 + - hg-10-16-1 + - hg-10-16-2 + - hg-10-16-3 + - hg-10-16-4 + - hg-10-16-5 + - hg-10-16-6 + - hg-10-16-7 + - hg-10-16-8 + - hg-10-16-9 attributes: - color - - compatible_hob_type - pattern - - cookware_bakeware_material -- id: hg-11-2-3-11 - name: Saucepans - children: [] +- id: hg-10-16-1 + name: Clothing & Closet Storage + children: + - hg-10-16-1-1 + - hg-10-16-1-2 + - hg-10-16-1-3 + - hg-10-16-1-4 + - hg-10-16-1-5 + - hg-10-16-1-6 attributes: - color - - compatible_hob_type - pattern - - shape - - cookware_bakeware_material -- id: hg-11-2-3-12 - name: Sauté Pans +- id: hg-10-16-1-1 + name: Charging Valets children: [] attributes: - color - - compatible_hob_type - pattern - - cookware_bakeware_material -- id: hg-11-2-3-13 - name: Skillets & Frying Pans +- id: hg-10-16-1-2 + name: Closet Organizers & Garment Racks children: - - hg-11-2-3-13-1 - - hg-11-2-3-13-2 + - hg-10-16-1-2-1 + - hg-10-16-1-2-2 attributes: - color - - compatible_hob_type - pattern - - shape - - cookware_bakeware_material -- id: hg-11-2-3-14 - name: Stock Pots +- id: hg-10-16-1-2-1 + name: Closet Organizers children: [] attributes: - color - - compatible_hob_type - pattern - - cookware_bakeware_material -- id: hg-11-2-3-15 - name: Stovetop Kettles +- id: hg-10-16-1-2-2 + name: Garment Racks children: [] attributes: - color - - compatible_hob_type - pattern - - cookware_bakeware_material -- id: hg-11-2-3-16 - name: Tagines & Clay Cooking Pots - children: - - hg-11-2-3-16-1 - - hg-11-2-3-16-2 +- id: hg-10-16-1-3 + name: Clothes Valets + children: [] attributes: - color - - compatible_hob_type - pattern - - cookware_bakeware_material -- id: hg-11-2-3-17 - name: Woks +- id: hg-10-16-1-4 + name: Hangers children: [] attributes: - color - - compatible_hob_type - pattern - - cookware_bakeware_material -- id: hg-11-2-5 - name: Cookware Accessories - children: - - hg-11-2-5-1 - - hg-11-2-5-2 - - hg-11-2-5-3 - - hg-11-2-5-4 - - hg-11-2-5-5 +- id: hg-10-16-1-5 + name: Hat Boxes + children: [] attributes: - color - pattern - - cookware_bakeware_material -- id: hg-11-2-5-1 - name: Pot & Pan Handles - children: [] +- id: hg-10-16-1-6 + name: Shoe Racks & Organizers + children: + - hg-10-16-1-6-1 + - hg-10-16-1-6-2 attributes: - color - pattern - - handle_material -- id: hg-11-2-5-2 - name: Pot & Pan Lids +- id: hg-10-16-1-6-1 + name: Shoe Organizers children: [] attributes: - color - pattern - - shape - - cookware_bakeware_material -- id: hg-11-2-5-3 - name: Pressure Cooker & Canner Accessories - children: - - hg-11-2-5-3-1 - - hg-11-2-5-3-2 - - hg-11-2-5-3-3 - - hg-11-2-5-3-4 - - hg-11-2-5-3-6 +- id: hg-10-16-1-6-2 + name: Shoe Racks + children: [] attributes: - color - pattern - - cookware_bakeware_material -- id: hg-11-2-5-4 - name: Steamer Baskets +- id: hg-10-16-2 + name: Flatware Chests children: [] attributes: - color + - material - pattern - - cookware_bakeware_material -- id: hg-11-2-5-5 - name: Wok Accessories - children: - - hg-11-2-5-5-1 - - hg-11-2-5-5-2 +- id: hg-10-16-3 + name: Household Drawer Organizer Inserts + children: [] attributes: - color + - material - pattern - - cookware_bakeware_material -- id: hg-11-2-5-5-1 - name: Wok Brushes +- id: hg-10-16-4 + name: Household Storage Bags children: [] attributes: - color + - bag_case_material - pattern - - brush_material -- id: hg-11-2-5-5-2 - name: Wok Rings +- id: hg-10-16-5 + name: Household Storage Caddies children: [] attributes: - color - pattern - - cookware_bakeware_material -- id: hg-11-3 - name: Food & Beverage Carriers - children: - - hg-11-3-1 - - hg-11-3-2 - - hg-11-3-3 - - hg-11-3-4 - - hg-11-3-5 - - hg-11-3-6 - - hg-11-3-7 - - hg-11-3-8 - - hg-11-3-9 - - hg-11-3-10 - - hg-11-3-11 - - hg-11-3-12 +- id: hg-10-16-6 + name: Household Storage Containers + children: [] attributes: - color - - material - pattern -- id: hg-11-3-1 - name: Airpots +- id: hg-10-16-7 + name: Household Storage Drawers children: [] attributes: - color - - material - pattern -- id: hg-11-3-2 - name: Canteens +- id: hg-10-16-8 + name: Photo Storage + children: + - hg-10-16-8-1 + - hg-10-16-8-2 + attributes: + - color + - pattern +- id: hg-10-16-8-1 + name: Photo Albums children: [] attributes: - color - - material + - format_supported - pattern -- id: hg-11-3-3 - name: Coolers + - stationery_binding_type +- id: hg-10-16-8-2 + name: Photo Storage Boxes children: [] attributes: - color - - material - pattern -- id: hg-11-3-4 - name: Drink Sleeves +- id: hg-10-16-9 + name: Storage Hooks & Racks children: - - hg-11-3-4-1 - - hg-11-3-4-2 + - hg-10-16-9-1 + - hg-10-16-9-2 + - hg-10-16-9-3 attributes: - color - material - pattern -- id: hg-11-3-4-1 - name: Can & Bottle Sleeves - children: [] +- id: hg-10-16-9-1 + name: Ironing Board Hooks & Racks + children: + - hg-10-16-9-1-1 + - hg-10-16-9-1-2 attributes: - color - material - pattern -- id: hg-11-3-4-2 - name: Cup Sleeves +- id: hg-10-16-9-1-1 + name: Ironing Board Hooks children: [] attributes: - color - material - pattern -- id: hg-11-3-5 - name: Flasks +- id: hg-10-16-9-1-2 + name: Ironing Board Racks children: [] attributes: - color - material - pattern -- id: hg-11-3-6 - name: Insulated Bags - children: [] +- id: hg-10-16-9-2 + name: Umbrella Stands & Racks + children: + - hg-10-16-9-2-1 + - hg-10-16-9-2-2 attributes: - color + - material - pattern - - food_bag_material -- id: hg-11-3-7 - name: Lunch Boxes & Totes - children: - - hg-11-3-7-1 - - hg-11-3-7-2 - - hg-11-3-7-3 - - hg-11-3-7-4 +- id: hg-10-16-9-2-1 + name: Umbrella Racks + children: [] attributes: - - age_group - color - material - pattern -- id: hg-11-3-8 - name: Picnic Baskets +- id: hg-10-16-9-2-2 + name: Umbrella Stands children: [] attributes: - color + - material - pattern - - basket_material -- id: hg-11-3-9 - name: Replacement Drink Lids +- id: hg-10-16-9-3 + name: Utility Hooks children: [] attributes: - color - material - pattern -- id: hg-11-3-10 - name: Thermoses - children: [] +- id: hg-10-17 + name: Trash Compactor Accessories + children: + - hg-10-17-1 + - hg-10-17-2 attributes: - color - material - pattern -- id: hg-11-3-11 - name: Water Bottles +- id: hg-10-17-1 + name: Trash Compactor Bags children: [] attributes: - - age_group - color - - material + - disposable_bag_material - pattern -- id: hg-11-3-12 - name: Wine Carrier Bags +- id: hg-10-17-2 + name: Trash Compactor Filters children: [] attributes: - color + - material - pattern - - bag_case_material -- id: hg-11-4 - name: Food Storage +- id: hg-10-18 + name: Waste Containment children: - - hg-11-4-1 - - hg-11-4-2 - - hg-11-4-3 - - hg-11-4-4 - - hg-11-4-5 - - hg-11-4-6 - - hg-11-4-7 - - hg-11-4-8 + - hg-10-18-1 + - hg-10-18-2 + - hg-10-18-3 + - hg-10-18-4 attributes: - color + - material - pattern -- id: hg-11-4-1 - name: Bread Boxes & Bags + - shape +- id: hg-10-18-1 + name: Dumpsters children: [] attributes: - color + - material - pattern - shape - - food_storage_material -- id: hg-11-4-2 - name: Candy Buckets +- id: hg-10-18-2 + name: Hazardous Waste Containers children: [] attributes: - color + - material - pattern - shape - - food_storage_material -- id: hg-11-4-3 - name: Cookie Jars +- id: hg-10-18-3 + name: Recycling Containers children: [] attributes: - color + - material - pattern - shape - - food_storage_material -- id: hg-11-4-4 - name: Food Container Covers - children: [] +- id: hg-10-18-4 + name: Trash Cans & Wastebaskets + children: + - hg-10-18-4-1 + - hg-10-18-4-2 attributes: - color + - material - pattern - shape - - food_storage_material -- id: hg-11-4-5 - name: Food Storage Bags +- id: hg-10-18-4-1 + name: Trash Cans children: [] attributes: - color + - material - pattern - - food_bag_material -- id: hg-11-4-6 - name: Food Storage Containers + - shape +- id: hg-10-18-4-2 + name: Wastebaskets children: [] attributes: - color + - material - pattern - shape - - food_storage_material -- id: hg-11-4-7 - name: Food Wraps +- id: hg-10-19 + name: Waste Containment Accessories children: - - hg-11-4-7-1 - - hg-11-4-7-2 - - hg-11-4-7-3 - - hg-11-4-7-4 + - hg-10-19-1 + - hg-10-19-2 + - hg-10-19-3 + - hg-10-19-4 + - hg-10-19-5 attributes: - color - pattern -- id: hg-11-4-7-1 - name: Foil - children: [] +- id: hg-10-19-1 + name: Waste Container Carts + children: [] attributes: - color - pattern -- id: hg-11-4-7-2 - name: Parchment Paper +- id: hg-10-19-2 + name: Waste Container Enclosures children: [] attributes: - color - pattern -- id: hg-11-4-7-3 - name: Plastic Wrap +- id: hg-10-19-3 + name: Waste Container Labels & Signs children: [] attributes: - color - pattern -- id: hg-11-4-7-4 - name: Wax Paper +- id: hg-10-19-4 + name: Waste Container Lids children: [] attributes: - color - pattern -- id: hg-11-4-8 - name: Honey Jars +- id: hg-10-19-5 + name: Waste Container Wheels children: [] attributes: - color - pattern - - shape - - food_storage_material -- id: hg-11-5 - name: Food Storage Accessories +- id: hg-11 + name: Kitchen & Dining children: - - hg-11-5-1 - - hg-11-5-2 - - hg-11-5-3 - - hg-11-5-4 + - hg-11-1 + - hg-11-2 + - hg-11-3 + - hg-11-4 + - hg-11-5 + - hg-11-6 + - hg-11-7 + - hg-11-8 + - hg-11-9 + - hg-11-10 attributes: - color - pattern -- id: hg-11-5-1 - name: Food & Beverage Labels - children: [] +- id: hg-11-1 + name: Barware + children: + - hg-11-1-1 + - hg-11-1-2 + - hg-11-1-3 + - hg-11-1-4 + - hg-11-1-5 + - hg-11-1-6 + - hg-11-1-7 + - hg-11-1-8 + - hg-11-1-9 + - hg-11-1-10 + - hg-11-1-11 + - hg-11-1-12 + - hg-11-1-13 + - hg-11-1-14 + - hg-11-1-15 + - hg-11-1-16 + - hg-11-1-17 attributes: - color - pattern -- id: hg-11-5-2 - name: Food Wrap Dispensers +- id: hg-11-1-1 + name: Absinthe Fountains children: [] attributes: - color - - material - pattern -- id: hg-11-5-3 - name: Oxygen Absorbers +- id: hg-11-1-2 + name: Beer Dispensers & Taps children: [] attributes: - color - pattern -- id: hg-11-5-4 - name: Twist Ties & Bag Clips +- id: hg-11-1-3 + name: Beverage Chilling Cubes & Sticks children: - - hg-11-5-4-1 - - hg-11-5-4-2 - - hg-11-5-4-4 + - hg-11-1-3-1 + - hg-11-1-3-2 attributes: - color + - barware_material - pattern -- id: hg-11-6 - name: Kitchen Appliance Accessories - children: - - hg-11-6-1 - - hg-11-6-2 - - hg-11-6-3 - - hg-11-6-4 - - hg-11-6-5 - - hg-11-6-6 - - hg-11-6-7 - - hg-11-6-8 - - hg-11-6-9 - - hg-11-6-10 - - hg-11-6-12 - - hg-11-6-13 - - hg-11-6-14 - - hg-11-6-15 - - hg-11-6-16 - - hg-11-6-17 - - hg-11-6-18 - - hg-11-6-19 - - hg-11-6-20 - - hg-11-6-21 - - hg-11-6-22 - - hg-11-6-23 - - hg-11-6-24 - - hg-11-6-25 - - hg-11-6-26 - - hg-11-6-27 - - hg-11-6-28 - - hg-11-6-29 - - hg-11-6-30 - - hg-11-6-31 - - hg-11-6-32 - - hg-11-6-11 +- id: hg-11-1-3-1 + name: Beverage Chilling Cubes + children: [] attributes: - color + - barware_material - pattern -- id: hg-11-6-1 - name: Breadmaker Accessories - children: - - hg-11-6-1-1 - - hg-11-6-1-2 - - hg-11-6-1-3 +- id: hg-11-1-3-2 + name: Beverage Sticks + children: [] attributes: - color + - barware_material - pattern -- id: hg-11-6-2 - name: Coffee Maker & Espresso Machine Accessories +- id: hg-11-1-4 + name: Beverage Tubs & Chillers children: - - hg-11-6-2-1 - - hg-11-6-2-2 - - hg-11-6-2-3 - - hg-11-6-2-4 - - hg-11-6-2-5 - - hg-11-6-2-6 - - hg-11-6-2-7 - - hg-11-6-2-8 - - hg-11-6-2-9 - - hg-11-6-2-10 + - hg-11-1-4-1 + - hg-11-1-4-2 attributes: - color - pattern -- id: hg-11-6-2-1 - name: Coffee Decanter Warmers +- id: hg-11-1-4-1 + name: Beverage Chillers children: [] attributes: - color - pattern -- id: hg-11-6-2-2 - name: Coffee Decanters +- id: hg-11-1-4-2 + name: Beverage Tubs children: [] attributes: - color - pattern -- id: hg-11-6-2-3 - name: Coffee Filter Baskets - children: [] +- id: hg-11-1-5 + name: Bottle Caps + children: + - hg-11-1-5-1 + - hg-11-1-5-2 + - hg-11-1-5-3 + - hg-11-1-5-4 + - hg-11-1-5-5 attributes: - color - pattern -- id: hg-11-6-2-4 - name: Coffee Filters +- id: hg-11-1-5-1 + name: Crown Bottle Caps children: [] attributes: - color - pattern - - filter_material -- id: hg-11-6-2-5 - name: Coffee Grinder Accessories +- id: hg-11-1-5-2 + name: Flip-Top Bottle Caps children: [] attributes: - color - pattern -- id: hg-11-6-2-6 - name: Coffee Grinders +- id: hg-11-1-5-3 + name: Pry-Off Bottle Caps children: [] attributes: - color - pattern -- id: hg-11-6-2-7 - name: Coffee Maker & Espresso Machine Replacement Parts - children: - - hg-11-6-2-7-2 - - hg-11-6-2-7-3 - - hg-11-6-2-7-5 - - hg-11-6-2-7-8 - - hg-11-6-2-7-9 - - hg-11-6-2-7-10 - - hg-11-6-2-7-12 - - hg-11-6-2-7-13 - - hg-11-6-2-7-14 - - hg-11-6-2-7-15 - - hg-11-6-2-7-16 - - hg-11-6-2-7-20 - - hg-11-6-2-7-21 - - hg-11-6-2-7-23 - - hg-11-6-2-7-24 - - hg-11-6-2-7-28 - - hg-11-6-2-7-29 - - hg-11-6-2-7-32 - - hg-11-6-2-7-33 - - hg-11-6-2-7-34 - - hg-11-6-2-7-35 - - hg-11-6-2-7-38 - - hg-11-6-2-7-39 +- id: hg-11-1-5-4 + name: Screw-On Bottle Caps + children: [] attributes: - color - pattern -- id: hg-11-6-2-8 - name: Coffee Maker Water Filters +- id: hg-11-1-5-5 + name: Swing-Top Bottle Caps children: [] attributes: - color - pattern - - filter_material -- id: hg-11-6-2-9 - name: Frothing Pitchers +- id: hg-11-1-6 + name: Bottle Stoppers & Savers children: [] attributes: - color + - barware_material - pattern - - power_source - - tool_utensil_material -- id: hg-11-6-2-10 - name: Portafilters +- id: hg-11-1-7 + name: Coaster Holders children: [] attributes: - color - material - pattern -- id: hg-11-6-3 - name: Cooktop, Oven & Range Accessories - children: - - hg-11-6-3-1 - - hg-11-6-3-2 - - hg-11-6-3-3 - - hg-11-6-3-4 - - hg-11-6-3-5 - - hg-11-6-3-6 + - shape +- id: hg-11-1-8 + name: Coasters + children: [] attributes: - color - - material + - barware_material - pattern -- id: hg-11-6-4 - name: Cotton Candy Machine Accessories - children: - - hg-11-6-4-1 - - hg-11-6-4-2 - - hg-11-6-4-5 + - shape +- id: hg-11-1-9 + name: Cocktail & Barware Tool Sets + children: [] attributes: - color - pattern -- id: hg-11-6-5 - name: Deep Fryer Accessories +- id: hg-11-1-10 + name: Cocktail Shakers & Tools children: - - hg-11-6-5-1 - - hg-11-6-5-4 - attributes: - - color + - hg-11-1-10-1 + - hg-11-1-10-2 + - hg-11-1-10-3 + - hg-11-1-10-4 + - hg-11-1-10-5 + attributes: + - color + - barware_material - pattern -- id: hg-11-6-6 - name: Dishwasher Parts & Accessories - children: - - hg-11-6-6-1 - - hg-11-6-6-2 +- id: hg-11-1-10-1 + name: Bar Ice Picks + children: [] attributes: - color + - barware_material - pattern -- id: hg-11-6-7 - name: Electric Kettle Accessories - children: - - hg-11-6-7-1 - - hg-11-6-7-3 - - hg-11-6-7-4 +- id: hg-11-1-10-2 + name: Bottle Openers + children: [] attributes: - color + - barware_material - pattern -- id: hg-11-6-8 - name: Electric Skillet & Wok Accessories - children: - - hg-11-6-8-1 - - hg-11-6-8-2 - - hg-11-6-8-3 +- id: hg-11-1-10-3 + name: Cocktail Shakers + children: [] attributes: - color + - barware_material - pattern -- id: hg-11-6-9 - name: Fondue Set Accessories - children: - - hg-11-6-9-1 - - hg-11-6-9-2 - - hg-11-6-9-3 +- id: hg-11-1-10-4 + name: Cocktail Strainers + children: [] attributes: - color + - barware_material - pattern -- id: hg-11-6-9-1 - name: Cooking Gel Fuels +- id: hg-11-1-10-5 + name: Muddlers + children: [] + attributes: + - color + - barware_material + - pattern +- id: hg-11-1-11 + name: Corkscrews children: - - hg-11-6-9-1-1 - - hg-11-6-9-1-2 - - hg-11-6-9-1-3 - - hg-11-6-9-1-5 + - hg-11-1-11-1 + - hg-11-1-11-2 + - hg-11-1-11-3 + - hg-11-1-11-4 + - hg-11-1-11-5 attributes: - color + - barware_material - pattern -- id: hg-11-6-9-2 - name: Fondue Forks +- id: hg-11-1-11-1 + name: Electric Corkscrews children: [] attributes: - color + - barware_material - pattern -- id: hg-11-6-9-3 - name: Fondue Pot Stands +- id: hg-11-1-11-2 + name: Lever Corkscrews children: [] attributes: - color + - barware_material - pattern -- id: hg-11-6-10 - name: Food Dehydrator Accessories - children: - - hg-11-6-10-1 - - hg-11-6-10-2 +- id: hg-11-1-11-3 + name: Twist Corkscrews + children: [] attributes: - color + - barware_material - pattern -- id: hg-11-6-10-1 - name: Food Dehydrator Sheets +- id: hg-11-1-11-4 + name: Waiter's Corkscrews children: [] attributes: - color + - barware_material - pattern -- id: hg-11-6-10-2 - name: Food Dehydrator Trays +- id: hg-11-1-11-5 + name: Winged Corkscrews children: [] attributes: - color + - barware_material - pattern -- id: hg-11-6-12 - name: Freezer Accessories - children: - - hg-11-6-12-2 - - hg-11-6-12-3 - - hg-11-6-12-4 - - hg-11-6-12-5 +- id: hg-11-1-12 + name: Decanters + children: [] attributes: - color + - barware_material - pattern -- id: hg-11-6-13 - name: Garbage Disposal Accessories - children: - - hg-11-6-13-4 +- id: hg-11-1-13 + name: Drink Charms + children: [] attributes: - color - pattern -- id: hg-11-6-14 - name: Ice Cream Maker Accessories - children: - - hg-11-6-14-1 + - theme +- id: hg-11-1-14 + name: Foil Cutters + children: [] attributes: - color - pattern -- id: hg-11-6-14-1 - name: Ice Cream Maker Freezer Bowls +- id: hg-11-1-15 + name: Ice Buckets children: [] attributes: - color + - material - pattern -- id: hg-11-6-15 - name: Ice Crusher & Shaver Accessories - children: - - hg-11-6-15-1 - - hg-11-6-15-2 +- id: hg-11-1-16 + name: Wine Aerators + children: [] attributes: - color + - barware_material - pattern -- id: hg-11-6-16 - name: Ice Maker Accessories - children: - - hg-11-6-16-3 +- id: hg-11-1-17 + name: Wine Bottle Holders + children: [] attributes: - color + - material - pattern -- id: hg-11-6-17 - name: Juicer Accessories +- id: hg-11-2 + name: Cookware & Bakeware children: - - hg-11-6-17-3 - - hg-11-6-17-8 - - hg-11-6-17-10 + - hg-11-2-1 + - hg-11-2-2 + - hg-11-2-3 + - hg-11-2-4 + - hg-11-2-5 attributes: - color - pattern -- id: hg-11-6-18 - name: Microwave Oven Accessories +- id: hg-11-2-1 + name: Bakeware children: - - hg-11-6-18-1 - - hg-11-6-18-8 - - hg-11-6-18-9 - - hg-11-6-18-11 + - hg-11-2-1-1 + - hg-11-2-1-2 + - hg-11-2-1-3 + - hg-11-2-1-4 + - hg-11-2-1-5 + - hg-11-2-1-6 + - hg-11-2-1-7 + - hg-11-2-1-8 + - hg-11-2-1-9 + - hg-11-2-1-10 + - hg-11-2-1-11 attributes: - color + - cookware_bakeware_material - pattern -- id: hg-11-6-19 - name: Outdoor Grill Accessories - children: - - hg-11-6-19-2 - - hg-11-6-19-3 - - hg-11-6-19-4 - - hg-11-6-19-5 - - hg-11-6-19-6 - - hg-11-6-19-7 - - hg-11-6-19-8 - - hg-11-6-19-9 - - hg-11-6-19-1 +- id: hg-11-2-1-1 + name: Bakeware Sets + children: [] attributes: + - bakeware_pieces_included - color + - cookware_bakeware_material - pattern -- id: hg-11-6-19-2 - name: Charcoal Chimneys +- id: hg-11-2-1-2 + name: Baking & Cookie Sheets children: [] attributes: - color + - baking_sheet_material - pattern -- id: hg-11-6-19-3 - name: Outdoor Grill Carts + - shape +- id: hg-11-2-1-3 + name: Bread Pans & Molds children: [] attributes: - color + - cookware_bakeware_material - pattern -- id: hg-11-6-19-4 - name: Outdoor Grill Covers + - shape +- id: hg-11-2-1-4 + name: Broiling Pans children: [] attributes: - color + - cookware_bakeware_material - pattern -- id: hg-11-6-19-5 - name: Outdoor Grill Racks & Toppers - children: - - hg-11-6-19-5-1 - - hg-11-6-19-5-2 +- id: hg-11-2-1-5 + name: Cake Pans & Molds + children: [] attributes: - color + - cookware_bakeware_material - pattern -- id: hg-11-6-19-6 - name: Outdoor Grill Replacement Parts - children: - - hg-11-6-19-6-1 - - hg-11-6-19-6-2 - - hg-11-6-19-6-3 - - hg-11-6-19-6-4 + - bakeware_shape +- id: hg-11-2-1-6 + name: Muffin & Pastry Pans + children: [] attributes: - color + - cookware_bakeware_material - pattern -- id: hg-11-6-19-7 - name: Outdoor Grill Spits & Baskets - children: - - hg-11-6-19-7-1 - - hg-11-6-19-7-2 +- id: hg-11-2-1-7 + name: Pie & Quiche Pans + children: [] attributes: - color + - cookware_bakeware_material - pattern -- id: hg-11-6-19-8 - name: Outdoor Grilling Planks +- id: hg-11-2-1-8 + name: Pizza Pans children: [] attributes: - color + - cookware_bakeware_material - pattern -- id: hg-11-6-19-9 - name: Smoking Chips & Pellets - children: - - hg-11-6-19-9-1 - - hg-11-6-19-9-2 +- id: hg-11-2-1-9 + name: Pizza Stones + children: [] attributes: - color + - cookware_bakeware_material - pattern -- id: hg-11-6-20 - name: Pasta Maker Accessories - children: - - hg-11-6-20-7 - - hg-11-6-20-8 - - hg-11-6-20-10 - - hg-11-6-20-13 - attributes: - - color - - pattern -- id: hg-11-6-21 - name: Popcorn Maker Accessories - children: - - hg-11-6-21-1 - - hg-11-6-21-2 - - hg-11-6-21-4 - attributes: - - color - - pattern -- id: hg-11-6-22 - name: Portable Cooking Stove Accessories - children: - - hg-11-6-22-1 - - hg-11-6-22-2 - - hg-11-6-22-5 - - hg-11-6-22-7 - attributes: - - color - - pattern -- id: hg-11-6-23 - name: Range Hood Accessories - children: - - hg-11-6-23-3 - - hg-11-6-23-4 - - hg-11-6-23-5 - attributes: - - color - - pattern -- id: hg-11-6-24 - name: Refrigerator Accessories - children: - - hg-11-6-24-2 - - hg-11-6-24-3 - attributes: - - color - - pattern -- id: hg-11-6-25 - name: Soda Maker Accessories - children: - - hg-11-6-25-2 - - hg-11-6-25-4 - - hg-11-6-25-7 - attributes: - - color - - pattern -- id: hg-11-6-26 - name: Steam Table Accessories - children: - - hg-11-6-26-1 - - hg-11-6-26-2 - attributes: - - color - - pattern -- id: hg-11-6-26-1 - name: Steam Table Pan Covers - children: [] - attributes: - - color - - pattern -- id: hg-11-6-26-2 - name: Steam Table Pans - children: [] - attributes: - - color - - pattern -- id: hg-11-6-27 - name: Toaster Accessories - children: - - hg-11-6-27-1 - - hg-11-6-27-2 - - hg-11-6-27-4 - - hg-11-6-27-5 - attributes: - - color - - pattern -- id: hg-11-6-28 - name: Vacuum Sealer Accessories - children: - - hg-11-6-28-1 - attributes: - - color - - pattern -- id: hg-11-6-28-1 - name: Vacuum Sealer Bags - children: [] - attributes: - - color - - pattern -- id: hg-11-6-29 - name: Waffle Iron Accessories - children: - - hg-11-6-29-1 - - hg-11-6-29-2 - - hg-11-6-29-3 - attributes: - - color - - pattern -- id: hg-11-6-30 - name: Water Cooler Accessories - children: - - hg-11-6-30-1 - attributes: - - color - - pattern -- id: hg-11-6-30-1 - name: Water Cooler Bottles - children: [] - attributes: - - color - - pattern -- id: hg-11-6-31 - name: Wine Fridge Accessories - children: [] - attributes: - - color - - pattern -- id: hg-11-6-32 - name: Yogurt Maker Accessories - children: - - hg-11-6-32-2 - - hg-11-6-32-3 - attributes: - - color - - pattern -- id: hg-11-7 - name: Kitchen Appliances - children: - - hg-11-7-1 - - hg-11-7-2 - - hg-11-7-3 - - hg-11-7-4 - - hg-11-7-5 - - hg-11-7-6 - - hg-11-7-7 - - hg-11-7-8 - - hg-11-7-9 - - hg-11-7-10 - - hg-11-7-11 - - hg-11-7-12 - - hg-11-7-13 - - hg-11-7-14 - - hg-11-7-15 - - hg-11-7-16 - - hg-11-7-17 - - hg-11-7-18 - - hg-11-7-19 - - hg-11-7-20 - - hg-11-7-21 - - hg-11-7-22 - - hg-11-7-23 - - hg-11-7-24 - - hg-11-7-25 - - hg-11-7-26 - - hg-11-7-27 - - hg-11-7-28 - - hg-11-7-29 - - hg-11-7-30 - - hg-11-7-31 - - hg-11-7-32 - - hg-11-7-33 - - hg-11-7-34 - - hg-11-7-35 - - hg-11-7-36 - - hg-11-7-37 - - hg-11-7-38 - - hg-11-7-39 - - hg-11-7-40 - - hg-11-7-41 - - hg-11-7-42 - - hg-11-7-43 - - hg-11-7-44 - - hg-11-7-45 - - hg-11-7-46 - - hg-11-7-47 - - hg-11-7-48 - - hg-11-7-49 - - hg-11-7-50 - - hg-11-7-51 - - hg-11-7-52 - attributes: - - color - - pattern -- id: hg-11-7-1 - name: Beverage Warmers - children: [] - attributes: - - color - - pattern -- id: hg-11-7-2 - name: Breadmakers - children: [] - attributes: - - color - - pattern -- id: hg-11-7-3 - name: Chocolate Tempering Machines - children: [] - attributes: - - color - - pattern -- id: hg-11-7-4 - name: Coffee Makers & Espresso Machines - children: - - hg-11-7-4-1 - - hg-11-7-4-2 - - hg-11-7-4-3 - - hg-11-7-4-4 - - hg-11-7-4-5 - - hg-11-7-4-6 - attributes: - - color - - pattern -- id: hg-11-7-4-1 - name: Drip Coffee Makers - children: [] - attributes: - - color - - pattern -- id: hg-11-7-4-2 - name: Electric & Stovetop Espresso Pots - children: [] - attributes: - - color - - pattern -- id: hg-11-7-4-3 - name: Espresso Machines - children: [] - attributes: - - coffee_input_type - - color - - mounting_type - - pattern -- id: hg-11-7-4-4 - name: French Presses - children: [] - attributes: - - color - - pattern -- id: hg-11-7-4-5 - name: Percolators - children: [] - attributes: - - color - - pattern -- id: hg-11-7-4-6 - name: Vacuum Coffee Makers - children: [] - attributes: - - color - - pattern -- id: hg-11-7-5 - name: Cooktops - children: [] - attributes: - - color - - energy_efficiency_class - - hob_type - - mounting_type - - pattern - - top_surface_material -- id: hg-11-7-6 - name: Cotton Candy Machines - children: [] - attributes: - - color - - pattern -- id: hg-11-7-7 - name: Deep Fryers - children: [] - attributes: - - color - - pattern -- id: hg-11-7-8 - name: Deli Slicers - children: [] - attributes: - - color - - pattern -- id: hg-11-7-9 - name: Dishwashers - children: [] - attributes: - - color - - energy_efficiency_class - - mounting_type - - pattern -- id: hg-11-7-10 - name: Electric Griddles & Grills - children: [] - attributes: - - color - - energy_efficiency_class - - pattern -- id: hg-11-7-11 - name: Electric Kettles - children: [] - attributes: - - color - - material - - pattern - - power_source -- id: hg-11-7-12 - name: Electric Skillets & Woks - children: - - hg-11-7-12-1 - - hg-11-7-12-2 - attributes: - - color - - pattern -- id: hg-11-7-13 - name: Fondue Pots & Sets - children: [] - attributes: - - color - - pattern -- id: hg-11-7-14 - name: Food Cookers & Steamers - children: - - hg-11-7-14-1 - - hg-11-7-14-2 - - hg-11-7-14-3 - - hg-11-7-14-4 - - hg-11-7-14-5 - - hg-11-7-14-6 - attributes: - - color - - pattern -- id: hg-11-7-14-1 - name: Egg Cookers - children: [] - attributes: - - color - - pattern -- id: hg-11-7-14-2 - name: Food Steamers - children: [] - attributes: - - color - - pattern -- id: hg-11-7-14-3 - name: Rice Cookers - children: [] - attributes: - - color - - pattern -- id: hg-11-7-14-4 - name: Slow Cookers - children: [] - attributes: - - color - - pattern -- id: hg-11-7-14-5 - name: Thermal Cookers - children: [] - attributes: - - color - - pattern -- id: hg-11-7-14-6 - name: Water Ovens - children: [] - attributes: - - color - - energy_efficiency_class - - pattern -- id: hg-11-7-15 - name: Food Dehydrators - children: [] - attributes: - - color - - pattern -- id: hg-11-7-16 - name: Food Grinders & Mills - children: - - hg-11-7-16-1 - - hg-11-7-16-2 - attributes: - - color - - pattern -- id: hg-11-7-17 - name: Food Mixers & Blenders - children: - - hg-11-7-17-1 - - hg-11-7-17-2 - attributes: - - color - - pattern -- id: hg-11-7-18 - name: Food Smokers - children: [] - attributes: - - color - - pattern - - power_source -- id: hg-11-7-19 - name: Food Warmers - children: - - hg-11-7-19-1 - - hg-11-7-19-2 - - hg-11-7-19-3 - - hg-11-7-19-4 - attributes: - - color - - pattern -- id: hg-11-7-19-1 - name: Chafing Dishes - children: [] - attributes: - - color - - pattern -- id: hg-11-7-19-2 - name: Food Heat Lamps - children: [] - attributes: - - color - - mounting_type - - pattern -- id: hg-11-7-19-3 - name: Rice Keepers - children: [] - attributes: - - color - - pattern -- id: hg-11-7-19-4 - name: Steam Tables - children: [] - attributes: - - color - - pattern -- id: hg-11-7-20 - name: Freezers - children: [] - attributes: - - color - - energy_efficiency_class - - mounting_type - - pattern - - star_rating -- id: hg-11-7-21 - name: Frozen Drink Makers - children: [] - attributes: - - color - - pattern -- id: hg-11-7-22 - name: Garbage Disposals - children: [] - attributes: - - color - - pattern -- id: hg-11-7-23 - name: Gas Griddles - children: [] - attributes: - - color - - energy_efficiency_class - - mounting_type - - pattern -- id: hg-11-7-24 - name: Hot Drink Makers - children: [] - attributes: - - color - - pattern -- id: hg-11-7-25 - name: Hot Plates - children: [] - attributes: - - color - - material - - pattern -- id: hg-11-7-26 - name: Ice Cream Makers - children: [] - attributes: - - color - - compatible_recipes - - pattern -- id: hg-11-7-27 - name: Ice Crushers & Shavers - children: - - hg-11-7-27-1 - - hg-11-7-27-2 - attributes: - - color - - pattern -- id: hg-11-7-28 - name: Ice Makers - children: [] - attributes: - - color - - pattern -- id: hg-11-7-29 - name: Juicers - children: [] - attributes: - - color - - pattern -- id: hg-11-7-30 - name: Knife Sharpeners - children: - - hg-11-7-30-1 - - hg-11-7-30-2 - - hg-11-7-30-3 - - hg-11-7-30-4 - - hg-11-7-30-5 - attributes: - - color - - pattern -- id: hg-11-7-31 - name: Microwave Ovens - children: [] - attributes: - - color - - pattern -- id: hg-11-7-32 - name: Milk Frothers & Steamers - children: [] - attributes: - - color - - pattern -- id: hg-11-7-33 - name: Mochi Makers - children: [] - attributes: - - color - - pattern -- id: hg-11-7-34 - name: Outdoor Grills - children: [] - attributes: - - color - - pattern - - power_source -- id: hg-11-7-35 - name: Ovens - children: [] - attributes: - - color - - energy_efficiency_class - - mounting_type - - oven_accessories_included - - pattern -- id: hg-11-7-36 - name: Pasta Makers - children: [] - attributes: - - color - - pattern -- id: hg-11-7-37 - name: Popcorn Makers - children: [] - attributes: - - color - - pattern -- id: hg-11-7-38 - name: Portable Cooking Stoves - children: [] - attributes: - - color - - pattern - - power_source -- id: hg-11-7-39 - name: Range Hoods - children: [] - attributes: - - color - - energy_efficiency_class - - extraction_type - - grease_filter_material - - pattern -- id: hg-11-7-40 - name: Ranges - children: [] - attributes: - - color - - pattern -- id: hg-11-7-41 - name: Refrigerators - children: [] - attributes: - - color - - energy_efficiency_class - - mounting_type - - pattern - - star_rating -- id: hg-11-7-42 - name: Roaster Ovens & Rotisseries - children: [] - attributes: - - color - - energy_efficiency_class - - mounting_type - - oven_accessories_included - - pattern -- id: hg-11-7-43 - name: Soda Makers - children: [] - attributes: - - color - - pattern - - soda_maker_accessories_included -- id: hg-11-7-44 - name: Soy Milk Makers - children: [] - attributes: - - color - - pattern -- id: hg-11-7-45 - name: Tea Makers - children: [] - attributes: - - color - - pattern -- id: hg-11-7-46 - name: Toasters & Grills - children: - - hg-11-7-46-1 - - hg-11-7-46-2 - - hg-11-7-46-3 - - hg-11-7-46-4 - - hg-11-7-46-5 - - hg-11-7-46-6 - - hg-11-7-46-7 - - hg-11-7-46-8 - - hg-11-7-46-9 - - hg-11-7-46-10 - attributes: - - color - - pattern -- id: hg-11-7-46-1 - name: Countertop & Toaster Ovens - children: [] - attributes: - - color - - pattern -- id: hg-11-7-46-2 - name: Donut Makers - children: [] - attributes: - - color - - pattern -- id: hg-11-7-46-3 - name: Muffin & Cupcake Makers - children: [] - attributes: - - color - - pattern -- id: hg-11-7-46-4 - name: Pizza Makers & Ovens - children: [] - attributes: - - color - - pattern -- id: hg-11-7-46-5 - name: Pizzelle Makers - children: [] - attributes: - - color - - pattern -- id: hg-11-7-46-6 - name: Pretzel Makers - children: [] - attributes: - - color - - pattern -- id: hg-11-7-46-7 - name: Sandwich Makers - children: [] - attributes: - - color - - pattern -- id: hg-11-7-46-8 - name: Toasters - children: [] - attributes: - - color - - pattern -- id: hg-11-7-46-9 - name: Tortilla & Flatbread Makers - children: [] - attributes: - - color - - pattern -- id: hg-11-7-46-10 - name: Waffle Irons - children: [] - attributes: - - color - - pattern -- id: hg-11-7-47 - name: Trash Compactors - children: [] - attributes: - - color - - pattern -- id: hg-11-7-48 - name: Vacuum Sealers - children: [] - attributes: - - color - - pattern -- id: hg-11-7-49 - name: Water Coolers - children: [] - attributes: - - color - - pattern -- id: hg-11-7-50 - name: Water Filters - children: [] - attributes: - - color - - pattern - - water_filter_application -- id: hg-11-7-51 - name: Wine Fridges - children: [] - attributes: - - color - - energy_efficiency_class - - mounting_type - - pattern - - star_rating -- id: hg-11-7-52 - name: Yogurt Makers - children: [] - attributes: - - color - - pattern -- id: hg-11-8 - name: Kitchen Tools & Utensils - children: - - hg-11-8-1 - - hg-11-8-2 - - hg-11-8-3 - - hg-11-8-4 - - hg-11-8-5 - - hg-11-8-6 - - hg-11-8-7 - - hg-11-8-8 - - hg-11-8-9 - - hg-11-8-10 - - hg-11-8-11 - - hg-11-8-12 - - hg-11-8-13 - - hg-11-8-14 - - hg-11-8-15 - - hg-11-8-16 - - hg-11-8-17 - - hg-11-8-18 - - hg-11-8-19 - - hg-11-8-20 - - hg-11-8-21 - - hg-11-8-22 - - hg-11-8-23 - - hg-11-8-24 - - hg-11-8-25 - - hg-11-8-26 - - hg-11-8-27 - - hg-11-8-28 - - hg-11-8-29 - - hg-11-8-30 - - hg-11-8-31 - - hg-11-8-32 - - hg-11-8-33 - - hg-11-8-34 - - hg-11-8-35 - - hg-11-8-36 - - hg-11-8-37 - - hg-11-8-38 - - hg-11-8-39 - - hg-11-8-40 - - hg-11-8-41 - - hg-11-8-42 - - hg-11-8-43 - - hg-11-8-44 - - hg-11-8-45 - - hg-11-8-46 - - hg-11-8-47 - - hg-11-8-48 - - hg-11-8-49 - - hg-11-8-50 - - hg-11-8-51 - - hg-11-8-52 - - hg-11-8-53 - - hg-11-8-54 - - hg-11-8-55 - - hg-11-8-56 - - hg-11-8-57 - - hg-11-8-58 - - hg-11-8-59 - - hg-11-8-60 - - hg-11-8-61 - - hg-11-8-62 - - hg-11-8-63 - - hg-11-8-64 - - hg-11-8-65 - - hg-11-8-66 - - hg-11-8-67 - - hg-11-8-68 - - hg-11-8-69 - - hg-11-8-70 - - hg-11-8-71 - - hg-11-8-72 - - hg-11-8-73 - - hg-11-8-74 - - hg-11-8-75 - - hg-11-8-76 - - hg-11-8-77 - attributes: - - color - - pattern -- id: hg-11-8-1 - name: Aprons - children: [] - attributes: - - color - - pattern - - fabric -- id: hg-11-8-2 - name: Baking Peels - children: [] - attributes: - - color - - handle_material - - pattern - - tool_utensil_material -- id: hg-11-8-3 - name: Basters - children: [] - attributes: - - color - - pattern -- id: hg-11-8-4 - name: Basting Brushes - children: [] - attributes: - - bristle_material - - color - - handle_material - - pattern -- id: hg-11-8-5 - name: Beverage Dispensers - children: [] - attributes: - - color - - pattern -- id: hg-11-8-6 - name: Cake Decorating Supplies - children: - - hg-11-8-6-1 - - hg-11-8-6-3 - attributes: - - color - - pattern -- id: hg-11-8-7 - name: Cake Servers - children: [] - attributes: - - color - - pattern - - tool_utensil_material -- id: hg-11-8-8 - name: Can Crushers - children: [] - attributes: - - color - - pattern -- id: hg-11-8-9 - name: Can Openers - children: [] - attributes: - - color - - pattern - - power_source -- id: hg-11-8-10 - name: Carving Forks - children: [] - attributes: - - color - - pattern -- id: hg-11-8-11 - name: Channel Knives - children: [] - attributes: - - color - - pattern -- id: hg-11-8-12 - name: Colanders & Strainers - children: - - hg-11-8-12-1 - - hg-11-8-12-2 - attributes: - - color - - pattern - - tool_utensil_material -- id: hg-11-8-13 - name: Condiment Dispensers - children: [] - attributes: - - color - - pattern -- id: hg-11-8-14 - name: Cookie Cutters - children: [] - attributes: - - color - - pattern - - theme - - tool_utensil_material -- id: hg-11-8-15 - name: Cookie Presses - children: [] - attributes: - - color - - pattern - - theme - - tool_utensil_material -- id: hg-11-8-16 - name: Cooking Thermometer Accessories - children: - - hg-11-8-16-1 - - hg-11-8-16-5 - - hg-11-8-16-6 - attributes: - - color - - pattern -- id: hg-11-8-17 - name: Cooking Thermometers - children: - - hg-11-8-17-1 - - hg-11-8-17-2 - - hg-11-8-17-3 - - hg-11-8-17-4 - - hg-11-8-17-5 - attributes: - - color - - display_technology - - pattern - - units_of_measurement -- id: hg-11-8-18 - name: Cooking Timers - children: [] - attributes: - - color - - pattern -- id: hg-11-8-19 - name: Cooking Torches - children: [] - attributes: - - color - - pattern -- id: hg-11-8-20 - name: Cooling Racks - children: [] - attributes: - - color - - pattern -- id: hg-11-8-21 - name: Cutting Boards - children: [] - attributes: - - color - - pattern - - tool_utensil_material -- id: hg-11-8-22 - name: Dish Racks & Drain Boards - children: - - hg-11-8-22-1 - - hg-11-8-22-2 - attributes: - - color - - pattern -- id: hg-11-8-23 - name: Dough Wheels - children: [] - attributes: - - color - - handle_material - - pattern - - blade_material -- id: hg-11-8-24 - name: Electric Knife Accessories - children: - - hg-11-8-24-1 - attributes: - - color - - pattern -- id: hg-11-8-24-1 - name: Electric Knife Replacement Blades - children: [] - attributes: - - color - - pattern -- id: hg-11-8-25 - name: Electric Knives - children: [] - attributes: - - color - - pattern -- id: hg-11-8-26 - name: Flour Sifters - children: [] - attributes: - - color - - pattern - - tool_utensil_material -- id: hg-11-8-27 - name: Food & Drink Stencils - children: [] - attributes: - - color - - pattern - - tool_utensil_material -- id: hg-11-8-28 - name: Food Crackers - children: - - hg-11-8-28-1 - - hg-11-8-28-2 - attributes: - - color - - pattern -- id: hg-11-8-28-1 - name: Lobster & Crab Crackers - children: - - hg-11-8-28-1-1 - - hg-11-8-28-1-2 - attributes: - - color - - pattern -- id: hg-11-8-28-2 - name: Nutcrackers - children: - - hg-11-8-28-2-1 - - hg-11-8-28-2-2 - - hg-11-8-28-2-3 - - hg-11-8-28-2-4 - - hg-11-8-28-2-5 - - hg-11-8-28-2-6 - attributes: - - color - - pattern -- id: hg-11-8-28-2-1 - name: Decorative Nutcrackers - children: [] - attributes: - - color - - pattern -- id: hg-11-8-29 - name: Food Dispensers - children: [] - attributes: - - color - - food_dispenser_type - - pattern -- id: hg-11-8-30 - name: Food Graters & Zesters - children: - - hg-11-8-30-1 - - hg-11-8-30-2 - attributes: - - color - - pattern - - tool_utensil_material -- id: hg-11-8-31 - name: Food Peelers & Corers - children: - - hg-11-8-31-1 - - hg-11-8-31-2 - attributes: - - color - - pattern -- id: hg-11-8-32 - name: Food Steaming Bags - children: [] - attributes: - - color - - pattern -- id: hg-11-8-33 - name: Food Sticks & Skewers - children: - - hg-11-8-33-1 - - hg-11-8-33-2 - attributes: - - color - - pattern - - tool_utensil_material -- id: hg-11-8-34 - name: Funnels - children: [] - attributes: - - color - - pattern - - tool_utensil_material -- id: hg-11-8-35 - name: Garlic Presses - children: [] - attributes: - - color - - pattern -- id: hg-11-8-36 - name: Gelatin Molds - children: [] - attributes: - - color - - pattern - - tool_utensil_material -- id: hg-11-8-37 - name: Ice Cube Trays - children: [] - attributes: - - color - - pattern - - tool_utensil_material -- id: hg-11-8-38 - name: Jerky Guns - children: [] - attributes: - - color - - pattern -- id: hg-11-8-39 - name: Kitchen Knives - children: - - hg-11-8-39-1 - - hg-11-8-39-2 - - hg-11-8-39-3 - - hg-11-8-39-4 - - hg-11-8-39-5 - attributes: - - blade_material - - color - - handle_material - - pattern -- id: hg-11-8-40 - name: Kitchen Molds - children: [] - attributes: - - color - - pattern - - theme -- id: hg-11-8-41 - name: Kitchen Organizers - children: - - hg-11-8-41-1 - - hg-11-8-41-2 - - hg-11-8-41-3 - - hg-11-8-41-4 - - hg-11-8-41-5 - - hg-11-8-41-6 - - hg-11-8-41-7 - - hg-11-8-41-8 - - hg-11-8-41-9 - - hg-11-8-41-10 - - hg-11-8-41-11 - - hg-11-8-41-12 - - hg-11-8-41-13 - - hg-11-8-41-14 - attributes: - - color - - pattern -- id: hg-11-8-41-1 - name: Can Organizers - children: [] - attributes: - - color - - pattern -- id: hg-11-8-41-2 - name: Drinkware Holders - children: [] - attributes: - - color - - pattern -- id: hg-11-8-41-3 - name: Kitchen Cabinet Organizers - children: [] - attributes: - - color - - pattern -- id: hg-11-8-41-4 - name: Kitchen Counter & Beverage Station Organizers - children: [] - attributes: - - color - - pattern -- id: hg-11-8-41-5 - name: Kitchen Utensil Holders & Racks - children: - - hg-11-8-41-5-1 - - hg-11-8-41-5-2 - attributes: - - color - - pattern -- id: hg-11-8-41-6 - name: Knife Blocks & Holders - children: - - hg-11-8-41-6-1 - - hg-11-8-41-6-2 - attributes: - - color - - pattern -- id: hg-11-8-41-7 - name: Napkin Holders & Dispensers - children: - - hg-11-8-41-7-1 - - hg-11-8-41-7-2 - attributes: - - color - - pattern -- id: hg-11-8-41-8 - name: Paper Towel Holders & Dispensers - children: - - hg-11-8-41-8-1 - - hg-11-8-41-8-2 - attributes: - - color - - pattern -- id: hg-11-8-41-9 - name: Pot Racks - children: [] - attributes: - - color - - pattern -- id: hg-11-8-41-10 - name: Spice Organizers - children: [] - attributes: - - color - - pattern -- id: hg-11-8-41-11 - name: Straw Holders & Dispensers - children: - - hg-11-8-41-11-1 - - hg-11-8-41-11-2 - attributes: - - color - - pattern -- id: hg-11-8-41-12 - name: Sugar Caddies - children: [] - attributes: - - color - - pattern -- id: hg-11-8-41-13 - name: Toothpick Holders & Dispensers - children: - - hg-11-8-41-13-1 - - hg-11-8-41-13-2 - attributes: - - color - - pattern -- id: hg-11-8-41-14 - name: Utensil & Flatware Trays - children: - - hg-11-8-41-14-1 - - hg-11-8-41-14-2 - attributes: - - color - - pattern -- id: hg-11-8-42 - name: Kitchen Scrapers - children: - - hg-11-8-42-1 - - hg-11-8-42-2 - - hg-11-8-42-3 - attributes: - - color - - pattern -- id: hg-11-8-42-1 - name: Bench Scrapers - children: [] - attributes: - - color - - pattern -- id: hg-11-8-42-2 - name: Bowl Scrapers - children: [] - attributes: - - color - - pattern -- id: hg-11-8-42-3 - name: Grill Scrapers - children: [] - attributes: - - color - - pattern -- id: hg-11-8-43 - name: Kitchen Shears - children: [] - attributes: - - accessory_size - - color - - pattern - - edge_type -- id: hg-11-8-44 - name: Kitchen Slicers - children: [] - attributes: - - color - - housing_material - - pattern -- id: hg-11-8-45 - name: Kitchen Utensil Sets - children: [] - attributes: - - color - - kitchen_utensil_items_included - - pattern -- id: hg-11-8-46 - name: Ladles - children: [] - attributes: - - color - - pattern - - tool_utensil_material -- id: hg-11-8-47 - name: Mashers - children: [] - attributes: - - color - - pattern - - tool_utensil_material -- id: hg-11-8-48 - name: Measuring Cups & Spoons - children: - - hg-11-8-48-1 - - hg-11-8-48-2 - attributes: - - color - - pattern -- id: hg-11-8-49 - name: Meat Tenderizers - children: [] - attributes: - - color - - pattern - - tool_utensil_material -- id: hg-11-8-50 - name: Mixing Bowls - children: [] - attributes: - - color - - pattern - - units_of_measurement -- id: hg-11-8-51 - name: Mortars & Pestles - children: [] - attributes: - - color - - pattern - - tool_utensil_material -- id: hg-11-8-52 - name: Oil & Vinegar Dispensers - children: - - hg-11-8-52-1 - - hg-11-8-52-2 - attributes: - - color - - pattern - - tool_utensil_material -- id: hg-11-8-53 - name: Oven Bags - children: [] - attributes: - - color - - pattern -- id: hg-11-8-54 - name: Oven Mitts & Pot Holders - children: [] - attributes: - - color - - pattern - - tool_utensil_material -- id: hg-11-8-55 - name: Pasta Molds & Stamps - children: - - hg-11-8-55-1 - - hg-11-8-55-2 - attributes: - - color - - material - - pasta_shape_type - - pattern -- id: hg-11-8-56 - name: Pastry Blenders - children: [] - attributes: - - color - - pattern -- id: hg-11-8-57 - name: Pastry Cloths - children: [] - attributes: - - color - - pattern - - fabric -- id: hg-11-8-58 - name: Pizza Cutter Accessories - children: - - hg-11-8-58-1 - - hg-11-8-58-4 - attributes: - - color - - pattern -- id: hg-11-8-59 - name: Pizza Cutters - children: [] - attributes: - - blade_material - - color - - handle_material - - pattern -- id: hg-11-8-60 - name: Ricers - children: [] - attributes: - - color - - pattern -- id: hg-11-8-61 - name: Rolling Pin Accessories - children: - - hg-11-8-61-1 - - hg-11-8-61-2 - attributes: - - color - - pattern -- id: hg-11-8-61-1 - name: Rolling Pin Covers & Sleeves - children: - - hg-11-8-61-1-1 - - hg-11-8-61-1-2 - attributes: - - color - - pattern -- id: hg-11-8-61-2 - name: Rolling Pin Rings + - shape +- id: hg-11-2-1-10 + name: Ramekins & Souffle Dishes children: [] attributes: - color + - cookware_bakeware_material - pattern -- id: hg-11-8-62 - name: Rolling Pins + - shape +- id: hg-11-2-1-11 + name: Roasting Pans children: [] attributes: - color - - material + - cookware_bakeware_material - pattern -- id: hg-11-8-63 - name: Salad Dressing Mixers & Shakers +- id: hg-11-2-2 + name: Bakeware Accessories children: - - hg-11-8-63-1 - - hg-11-8-63-2 - attributes: - - color - - pattern - - tool_utensil_material -- id: hg-11-8-64 - name: Salad Spinners - children: [] + - hg-11-2-2-1 + - hg-11-2-2-2 + - hg-11-2-2-3 attributes: - color + - cookware_bakeware_material - pattern - - tool_utensil_material -- id: hg-11-8-65 - name: Scoops +- id: hg-11-2-2-1 + name: Baking Mats & Liners children: - - hg-11-8-65-1 - - hg-11-8-65-2 - - hg-11-8-65-3 - - hg-11-8-65-4 - attributes: - - color - - pattern - - tool_utensil_material -- id: hg-11-8-65-1 - name: Ice Cream Scoops - children: [] + - hg-11-2-2-1-1 + - hg-11-2-2-1-2 attributes: - color + - cookware_bakeware_material - pattern - - tool_utensil_material -- id: hg-11-8-65-2 - name: Ice Scoops +- id: hg-11-2-2-1-1 + name: Baking Liners children: [] attributes: - color + - cookware_bakeware_material - pattern - - tool_utensil_material -- id: hg-11-8-65-3 - name: Melon Ballers +- id: hg-11-2-2-1-2 + name: Baking Mats children: [] attributes: - color + - cookware_bakeware_material - pattern - - tool_utensil_material -- id: hg-11-8-65-4 - name: Popcorn & French Fry Scoops +- id: hg-11-2-2-2 + name: Baking Weights children: - - hg-11-8-65-4-1 - - hg-11-8-65-4-2 + - hg-11-2-2-2-1 + - hg-11-2-2-2-2 attributes: - color + - cookware_bakeware_material - pattern - - tool_utensil_material -- id: hg-11-8-66 - name: Sink Caddies +- id: hg-11-2-2-2-1 + name: Blind Baking Beans children: [] attributes: - color + - cookware_bakeware_material - pattern -- id: hg-11-8-67 - name: Sink Mats & Grids - children: - - hg-11-8-67-1 - - hg-11-8-67-2 - attributes: - - color - - pattern -- id: hg-11-8-68 - name: Slotted Spoons +- id: hg-11-2-2-2-2 + name: Ceramic Baking Weights children: [] attributes: - color + - cookware_bakeware_material - pattern -- id: hg-11-8-69 - name: Spatulas +- id: hg-11-2-2-3 + name: Roasting Pan Racks children: [] attributes: - color + - cookware_bakeware_material - pattern -- id: hg-11-8-70 - name: Spice Grinder Accessories +- id: hg-11-2-3 + name: Cookware children: - - hg-11-8-70-5 - attributes: - - color - - pattern -- id: hg-11-8-71 - name: Spice Grinders - children: [] - attributes: - - color - - pattern -- id: hg-11-8-72 - name: Spoon Rests - children: [] - attributes: - - color - - pattern - - tool_utensil_material -- id: hg-11-8-73 - name: Sugar Dispensers - children: [] - attributes: - - color - - pattern -- id: hg-11-8-74 - name: Sushi Mats - children: [] + - hg-11-2-3-1 + - hg-11-2-3-2 + - hg-11-2-3-3 + - hg-11-2-3-4 + - hg-11-2-3-5 + - hg-11-2-3-6 + - hg-11-2-3-7 + - hg-11-2-3-8 + - hg-11-2-3-9 + - hg-11-2-3-10 + - hg-11-2-3-11 + - hg-11-2-3-12 + - hg-11-2-3-13 + - hg-11-2-3-14 + - hg-11-2-3-15 + - hg-11-2-3-16 + - hg-11-2-3-17 attributes: - color + - compatible_hob_type + - cookware_bakeware_material - pattern - - tool_utensil_material -- id: hg-11-8-75 - name: Tea Strainers +- id: hg-11-2-3-1 + name: Casserole Dishes children: [] attributes: - color + - compatible_hob_type + - cookware_bakeware_material - pattern - shape - - tool_utensil_material -- id: hg-11-8-76 - name: Tongs - children: [] - attributes: - - color - - pattern - - tool_utensil_material -- id: hg-11-8-77 - name: Whisks - children: [] - attributes: - - color - - pattern - - tool_utensil_material -- id: hg-11-9 - name: Prefabricated Kitchens & Kitchenettes - children: [] - attributes: - - color - - pattern -- id: hg-11-10 - name: Tableware - children: - - hg-11-10-1 - - hg-11-10-4 - - hg-11-10-5 - - hg-11-10-6 - - hg-11-10-7 - - hg-11-10-8 - - hg-11-10-9 - - hg-11-10-10 - - hg-11-10-2 - - hg-11-10-3 - attributes: - - color - - pattern -- id: hg-11-10-1 - name: Coffee & Tea Sets - children: - - hg-11-10-1-1 - - hg-11-10-1-2 - attributes: - - coffee_tea_set_pieces_included - - color - - pattern -- id: hg-11-10-4 - name: Dinnerware - children: - - hg-11-10-4-1 - - hg-11-10-4-2 - - hg-11-10-4-3 - attributes: - - color - - pattern - - tableware_material -- id: hg-11-10-4-1 - name: Bowls - children: [] - attributes: - - color - - pattern - - tableware_material -- id: hg-11-10-4-2 - name: Dinnerware Sets - children: [] - attributes: - - color - - dinnerware_pieces_included - - pattern - - tableware_material -- id: hg-11-10-4-3 - name: Plates +- id: hg-11-2-3-2 + name: Cookware Sets children: [] attributes: - color + - compatible_hob_type + - cookware_bakeware_material - pattern - - shape - - tableware_material -- id: hg-11-10-5 - name: Drinkware +- id: hg-11-2-3-3 + name: Crêpe & Blini Pans children: - - hg-11-10-5-1 - - hg-11-10-5-2 - - hg-11-10-5-3 - - hg-11-10-5-4 - - hg-11-10-5-5 - - hg-11-10-5-6 - - hg-11-10-5-7 - - hg-11-10-5-8 + - hg-11-2-3-3-1 + - hg-11-2-3-3-2 attributes: - color + - compatible_hob_type + - cookware_bakeware_material - pattern - - drinkware_material -- id: hg-11-10-5-1 - name: Beer Glasses +- id: hg-11-2-3-3-1 + name: Blini Pans children: [] attributes: - color + - compatible_hob_type + - cookware_bakeware_material - pattern - - drinkware_material -- id: hg-11-10-5-2 - name: Coffee & Tea Cups +- id: hg-11-2-3-3-2 + name: Crêpe Pans children: [] attributes: - color + - compatible_hob_type + - cookware_bakeware_material - pattern - - drinkware_material -- id: hg-11-10-5-3 - name: Coffee & Tea Saucers +- id: hg-11-2-3-4 + name: Double Boilers children: [] attributes: - color + - compatible_hob_type + - cookware_bakeware_material - pattern - - drinkware_material -- id: hg-11-10-5-4 - name: Drinkware Sets +- id: hg-11-2-3-5 + name: Dutch Ovens children: [] attributes: - color - - drinkware_pieces_included + - compatible_hob_type + - cookware_bakeware_material - pattern - - drinkware_material -- id: hg-11-10-5-5 - name: Mugs +- id: hg-11-2-3-6 + name: Fermentation & Pickling Crocks children: [] attributes: - color + - compatible_hob_type + - cookware_bakeware_material - pattern - - drinkware_material -- id: hg-11-10-5-6 - name: Shot Glasses +- id: hg-11-2-3-7 + name: Griddles & Grill Pans children: [] attributes: - color + - compatible_hob_type + - cookware_bakeware_material - pattern - - drinkware_material -- id: hg-11-10-5-7 - name: Stemware +- id: hg-11-2-3-8 + name: Grill Presses children: [] attributes: - color + - cookware_bakeware_material - pattern - - drinkware_material -- id: hg-11-10-5-8 - name: Tumblers +- id: hg-11-2-3-9 + name: Paella Pans children: [] attributes: - color + - compatible_hob_type + - cookware_bakeware_material - pattern - - drinkware_material -- id: hg-11-10-6 - name: Flatware +- id: hg-11-2-3-10 + name: Pressure Cookers & Canners children: - - hg-11-10-6-2 - - hg-11-10-6-3 - - hg-11-10-6-4 - - hg-11-10-6-5 - - hg-11-10-6-6 - - hg-11-10-6-7 - - hg-11-10-6-1 + - hg-11-2-3-10-1 + - hg-11-2-3-10-2 attributes: - color + - compatible_hob_type + - cookware_bakeware_material - pattern -- id: hg-11-10-6-2 - name: Chopstick Accessories - children: - - hg-11-10-6-2-1 - - hg-11-10-6-2-3 - - hg-11-10-6-2-4 +- id: hg-11-2-3-10-1 + name: Canners + children: [] attributes: - color + - compatible_hob_type + - cookware_bakeware_material - pattern -- id: hg-11-10-6-3 - name: Chopsticks +- id: hg-11-2-3-10-2 + name: Pressure Cookers children: [] attributes: - color + - compatible_hob_type + - cookware_bakeware_material - pattern - - flatware_material -- id: hg-11-10-6-4 - name: Flatware Sets +- id: hg-11-2-3-11 + name: Saucepans children: [] attributes: - color - - flatware_pieces_included + - compatible_hob_type + - cookware_bakeware_material - pattern -- id: hg-11-10-6-5 - name: Forks + - shape +- id: hg-11-2-3-12 + name: Sauté Pans children: [] attributes: - - accessory_size - color + - compatible_hob_type + - cookware_bakeware_material - pattern - - flatware_material -- id: hg-11-10-6-6 - name: Spoons - children: [] +- id: hg-11-2-3-13 + name: Skillets & Frying Pans + children: + - hg-11-2-3-13-1 + - hg-11-2-3-13-2 attributes: - - accessory_size - color + - compatible_hob_type + - cookware_bakeware_material - pattern - - flatware_material -- id: hg-11-10-6-7 - name: Table Knives + - shape +- id: hg-11-2-3-13-1 + name: Frying Pans children: [] attributes: - - accessory_size - - blade_material - color - - handle_material + - compatible_hob_type + - cookware_bakeware_material - pattern - - edge_type -- id: hg-11-10-7 - name: Serveware - children: - - hg-11-10-7-1 - - hg-11-10-7-2 - - hg-11-10-7-3 - - hg-11-10-7-4 - - hg-11-10-7-5 - - hg-11-10-7-6 - - hg-11-10-7-7 - - hg-11-10-7-8 - - hg-11-10-7-9 - - hg-11-10-7-10 - - hg-11-10-7-11 + - shape +- id: hg-11-2-3-13-2 + name: Skillets + children: [] attributes: - color + - compatible_hob_type + - cookware_bakeware_material - pattern - - tableware_material -- id: hg-11-10-7-1 - name: Butter Dishes + - shape +- id: hg-11-2-3-14 + name: Stock Pots children: [] attributes: - color + - compatible_hob_type + - cookware_bakeware_material - pattern - - tableware_material -- id: hg-11-10-7-2 - name: Cake Boards +- id: hg-11-2-3-15 + name: Stovetop Kettles children: [] attributes: - color + - compatible_hob_type + - cookware_bakeware_material - pattern - - tableware_material -- id: hg-11-10-7-3 - name: Cake Stands - children: [] +- id: hg-11-2-3-16 + name: Tagines & Clay Cooking Pots + children: + - hg-11-2-3-16-1 + - hg-11-2-3-16-2 attributes: - color + - compatible_hob_type + - cookware_bakeware_material - pattern - - tableware_material -- id: hg-11-10-7-4 - name: Egg Cups +- id: hg-11-2-3-16-1 + name: Clay Cooking Pots children: [] attributes: - color + - compatible_hob_type + - cookware_bakeware_material - pattern - - tableware_material -- id: hg-11-10-7-5 - name: Gravy Boats +- id: hg-11-2-3-16-2 + name: Tagines children: [] attributes: - color + - compatible_hob_type + - cookware_bakeware_material - pattern - - tableware_material -- id: hg-11-10-7-6 - name: Punch Bowls +- id: hg-11-2-3-17 + name: Woks children: [] attributes: - color + - compatible_hob_type + - cookware_bakeware_material - pattern - - tableware_material -- id: hg-11-10-7-7 - name: Serving Pitchers & Carafes +- id: hg-11-2-4 + name: Cookware & Bakeware Combo Sets children: [] attributes: - color - pattern - - tableware_material -- id: hg-11-10-7-8 - name: Serving Platters +- id: hg-11-2-5 + name: Cookware Accessories + children: + - hg-11-2-5-1 + - hg-11-2-5-2 + - hg-11-2-5-3 + - hg-11-2-5-4 + - hg-11-2-5-5 + attributes: + - color + - cookware_bakeware_material + - pattern +- id: hg-11-2-5-1 + name: Pot & Pan Handles children: [] attributes: - color + - handle_material - pattern - - shape - - tableware_material -- id: hg-11-10-7-9 - name: Serving Trays +- id: hg-11-2-5-2 + name: Pot & Pan Lids children: [] attributes: - color + - cookware_bakeware_material - pattern - shape - - tableware_material -- id: hg-11-10-7-10 - name: Sugar Bowls & Creamers +- id: hg-11-2-5-3 + name: Pressure Cooker & Canner Accessories children: - - hg-11-10-7-10-1 - - hg-11-10-7-10-2 + - hg-11-2-5-3-1 + - hg-11-2-5-3-2 + - hg-11-2-5-3-3 + - hg-11-2-5-3-4 + - hg-11-2-5-3-6 attributes: - color + - cookware_bakeware_material - pattern - - tableware_material -- id: hg-11-10-7-11 - name: Tureens +- id: hg-11-2-5-3-1 + name: Food Dividers children: [] attributes: - color + - cookware_bakeware_material - pattern - - tableware_material -- id: hg-11-10-8 - name: Serveware Accessories - children: - - hg-11-10-8-1 - - hg-11-10-8-2 - - hg-11-10-8-3 +- id: hg-11-2-5-3-2 + name: Gaskets + children: [] attributes: - color + - cookware_bakeware_material - pattern - - tableware_material -- id: hg-11-10-8-1 - name: Punch Bowl Stands +- id: hg-11-2-5-3-3 + name: Handles children: [] attributes: - color + - handle_material - pattern - - tableware_material -- id: hg-11-10-8-2 - name: Tureen Lids +- id: hg-11-2-5-3-4 + name: Pressure Cooker Timers children: [] attributes: - color + - cookware_bakeware_material - pattern - - tableware_material -- id: hg-11-10-8-3 - name: Tureen Stands +- id: hg-11-2-5-3-6 + name: Valves children: [] attributes: - color + - cookware_bakeware_material - pattern - - tableware_material -- id: hg-11-10-9 - name: Tablecloth Clips & Weights +- id: hg-11-2-5-4 + name: Steamer Baskets + children: [] + attributes: + - color + - cookware_bakeware_material + - pattern +- id: hg-11-2-5-5 + name: Wok Accessories children: - - hg-11-10-9-1 - - hg-11-10-9-2 + - hg-11-2-5-5-1 + - hg-11-2-5-5-2 attributes: - color + - cookware_bakeware_material - pattern -- id: hg-11-10-10 - name: Trivets +- id: hg-11-2-5-5-1 + name: Wok Brushes children: [] attributes: - color + - brush_material - pattern - - tableware_material -- id: hg-12 - name: Lawn & Garden - children: - - hg-12-1 - - hg-12-2 - - hg-12-3 - - hg-12-4 - - hg-12-5 - - hg-12-6 +- id: hg-11-2-5-5-2 + name: Wok Rings + children: [] attributes: - color + - cookware_bakeware_material - pattern -- id: hg-12-1 - name: Gardening +- id: hg-11-3 + name: Food & Beverage Carriers children: - - hg-12-1-1 - - hg-12-1-2 - - hg-12-1-3 - - hg-12-1-4 - - hg-12-1-5 - - hg-12-1-6 - - hg-12-1-7 - - hg-12-1-8 - - hg-12-1-9 - - hg-12-1-10 - - hg-12-1-11 - - hg-12-1-12 - - hg-12-1-13 - - hg-12-1-14 - - hg-12-1-15 - - hg-12-1-16 - - hg-12-1-17 - - hg-12-1-18 + - hg-11-3-1 + - hg-11-3-2 + - hg-11-3-3 + - hg-11-3-4 + - hg-11-3-5 + - hg-11-3-6 + - hg-11-3-7 + - hg-11-3-8 + - hg-11-3-9 + - hg-11-3-10 + - hg-11-3-11 + - hg-11-3-12 attributes: - color + - material - pattern -- id: hg-12-1-1 - name: Composting - children: - - hg-12-1-1-1 - - hg-12-1-1-2 - - hg-12-1-1-3 +- id: hg-11-3-1 + name: Airpots + children: [] attributes: - color + - material - pattern -- id: hg-12-1-1-1 - name: Compost +- id: hg-11-3-2 + name: Canteens children: [] attributes: - color - - gardening_use + - material - pattern -- id: hg-12-1-1-2 - name: Compost Aerators +- id: hg-11-3-3 + name: Coolers children: [] attributes: - color - material - pattern -- id: hg-12-1-1-3 - name: Composters - children: [] +- id: hg-11-3-4 + name: Drink Sleeves + children: + - hg-11-3-4-1 + - hg-11-3-4-2 attributes: - color - material - pattern -- id: hg-12-1-2 - name: Disease Control +- id: hg-11-3-4-1 + name: Can & Bottle Sleeves children: [] attributes: - color + - material - pattern - - pest_control_method - - suitable_for_pest_type -- id: hg-12-1-3 - name: Fertilizers +- id: hg-11-3-4-2 + name: Cup Sleeves children: [] attributes: - - application_method - color - - gardening_use - - nutrient_content + - material - pattern - - suitable_space -- id: hg-12-1-4 - name: Garden Pot Saucers & Trays +- id: hg-11-3-5 + name: Flasks children: [] attributes: - color + - material - pattern - - shape -- id: hg-12-1-5 - name: Gardening Accessories - children: - - hg-12-1-5-1 - - hg-12-1-5-2 - - hg-12-1-5-3 +- id: hg-11-3-6 + name: Insulated Bags + children: [] attributes: - color + - food_bag_material - pattern -- id: hg-12-1-5-1 - name: Gardening Scooters, Seats & Kneelers +- id: hg-11-3-7 + name: Lunch Boxes & Totes children: - - hg-12-1-5-1-1 - - hg-12-1-5-1-2 - - hg-12-1-5-1-3 + - hg-11-3-7-1 + - hg-11-3-7-2 + - hg-11-3-7-3 + - hg-11-3-7-4 attributes: + - age_group - color + - material - pattern -- id: hg-12-1-5-2 - name: Gardening Totes +- id: hg-11-3-7-1 + name: Lunch Bags children: [] attributes: + - age_group - color + - food_bag_material - pattern - - bag_case_material -- id: hg-12-1-5-3 - name: Potting Benches +- id: hg-11-3-7-2 + name: Lunch Box Sets children: [] attributes: + - age_group - color - material - pattern -- id: hg-12-1-6 - name: Gardening Tool Accessories - children: - - hg-12-1-6-1 - - hg-12-1-6-2 - - hg-12-1-6-3 - attributes: - - color - - pattern -- id: hg-12-1-6-1 - name: Gardening Tool Handles +- id: hg-11-3-7-3 + name: Lunch Containers children: [] attributes: + - age_group - color - - compatible_gardening_tool + - material - pattern -- id: hg-12-1-6-2 - name: Gardening Tool Heads +- id: hg-11-3-7-4 + name: Lunch Suitcases children: [] attributes: + - age_group - color - - compatible_gardening_tool + - material - pattern -- id: hg-12-1-6-3 - name: Wheelbarrow Parts - children: - - hg-12-1-6-3-1 - - hg-12-1-6-3-2 - - hg-12-1-6-3-3 - - hg-12-1-6-3-4 - - hg-12-1-6-3-5 +- id: hg-11-3-8 + name: Picnic Baskets + children: [] attributes: - color + - basket_material - pattern -- id: hg-12-1-7 - name: Gardening Tools - children: - - hg-12-1-7-1 - - hg-12-1-7-2 - - hg-12-1-7-3 - - hg-12-1-7-4 - - hg-12-1-7-5 - - hg-12-1-7-6 - - hg-12-1-7-7 - - hg-12-1-7-8 - - hg-12-1-7-9 - - hg-12-1-7-10 - - hg-12-1-7-11 - - hg-12-1-7-12 - - hg-12-1-7-13 +- id: hg-11-3-9 + name: Replacement Drink Lids + children: [] attributes: - color + - material - pattern -- id: hg-12-1-7-1 - name: Bulb Planting Tools - children: - - hg-12-1-7-1-2 - - hg-12-1-7-1-3 +- id: hg-11-3-10 + name: Thermoses + children: [] attributes: - - blade_material - color - - handle_material + - material - pattern -- id: hg-12-1-7-2 - name: Cultivating Tools - children: - - hg-12-1-7-2-1 - - hg-12-1-7-2-2 +- id: hg-11-3-11 + name: Water Bottles + children: [] attributes: + - age_group - color + - material - pattern -- id: hg-12-1-7-3 - name: Gardening Forks +- id: hg-11-3-12 + name: Wine Carrier Bags children: [] attributes: - color - - handle_material + - bag_case_material - pattern - - teeth_material -- id: hg-12-1-7-4 - name: Gardening Sickles & Machetes +- id: hg-11-4 + name: Food Storage children: - - hg-12-1-7-4-1 - - hg-12-1-7-4-2 + - hg-11-4-1 + - hg-11-4-2 + - hg-11-4-3 + - hg-11-4-4 + - hg-11-4-5 + - hg-11-4-6 + - hg-11-4-7 + - hg-11-4-8 attributes: - color - pattern -- id: hg-12-1-7-5 - name: Gardening Trowels +- id: hg-11-4-1 + name: Bread Boxes & Bags children: [] attributes: - - blade_material - color - - handle_material + - food_storage_material - pattern -- id: hg-12-1-7-6 - name: Lawn & Garden Sprayers + - shape +- id: hg-11-4-2 + name: Candy Buckets children: [] attributes: - color + - food_storage_material - pattern -- id: hg-12-1-7-7 - name: Lawn Rollers - children: - - hg-12-1-7-7-1 - - hg-12-1-7-7-2 + - shape +- id: hg-11-4-3 + name: Cookie Jars + children: [] attributes: - color + - food_storage_material - pattern -- id: hg-12-1-7-8 - name: Pruning Saws + - shape +- id: hg-11-4-4 + name: Food Container Covers children: [] attributes: - - blade_material - color - - handle_material + - food_storage_material - pattern -- id: hg-12-1-7-9 - name: Pruning Shears + - shape +- id: hg-11-4-5 + name: Food Storage Bags children: [] attributes: - - blade_material - color - - cutting_method - - handle_material + - food_bag_material - pattern -- id: hg-12-1-7-10 - name: Rakes +- id: hg-11-4-6 + name: Food Storage Containers children: [] attributes: - color - - handle_material + - food_storage_material - pattern - - teeth_material -- id: hg-12-1-7-11 - name: Shovels & Spades + - shape +- id: hg-11-4-7 + name: Food Wraps children: - - hg-12-1-7-11-1 - - hg-12-1-7-11-2 + - hg-11-4-7-1 + - hg-11-4-7-2 + - hg-11-4-7-3 + - hg-11-4-7-4 attributes: - color - pattern -- id: hg-12-1-7-12 - name: Spreaders +- id: hg-11-4-7-1 + name: Foil children: [] attributes: - color - pattern - - tank_material -- id: hg-12-1-7-13 - name: Wheelbarrows +- id: hg-11-4-7-2 + name: Parchment Paper children: [] attributes: - color - - material - pattern -- id: hg-12-1-8 - name: Greenhouses +- id: hg-11-4-7-3 + name: Plastic Wrap children: [] attributes: - color - - frame_material - pattern - - screen_material -- id: hg-12-1-9 - name: Herbicides +- id: hg-11-4-7-4 + name: Wax Paper children: [] attributes: - color - - ingredients - pattern - - targeted_pests -- id: hg-12-1-10 - name: Landscape Fabric +- id: hg-11-4-8 + name: Honey Jars children: [] attributes: - color + - food_storage_material - pattern -- id: hg-12-1-11 - name: Landscape Fabric Accessories + - shape +- id: hg-11-5 + name: Food Storage Accessories children: - - hg-12-1-11-1 - - hg-12-1-11-2 + - hg-11-5-1 + - hg-11-5-2 + - hg-11-5-3 + - hg-11-5-4 attributes: - color - pattern -- id: hg-12-1-11-1 - name: Landscape Fabric Staples & Pins - children: - - hg-12-1-11-1-1 - - hg-12-1-11-1-2 +- id: hg-11-5-1 + name: Food & Beverage Labels + children: [] attributes: - color - pattern -- id: hg-12-1-11-2 - name: Landscape Fabric Tape +- id: hg-11-5-2 + name: Food Wrap Dispensers children: [] attributes: - color + - material - pattern -- id: hg-12-1-12 - name: Mulch - children: - - hg-12-1-12-1 - - hg-12-1-12-2 - - hg-12-1-12-3 +- id: hg-11-5-3 + name: Oxygen Absorbers + children: [] attributes: - color - pattern -- id: hg-12-1-13 - name: Plant Cages & Supports +- id: hg-11-5-4 + name: Twist Ties & Bag Clips children: - - hg-12-1-13-1 - - hg-12-1-13-2 + - hg-11-5-4-1 + - hg-11-5-4-2 + - hg-11-5-4-4 attributes: - color - pattern - - plant_support_material -- id: hg-12-1-14 - name: Plant Stands +- id: hg-11-5-4-1 + name: Bag Sealing Caps children: [] attributes: - color - - material - pattern -- id: hg-12-1-15 - name: Pot & Planter Liners +- id: hg-11-5-4-2 + name: Bag Sealing Clips children: [] attributes: - color - pattern - - plant_support_material -- id: hg-12-1-16 - name: Pots & Planters - children: - - hg-12-1-16-1 - - hg-12-1-16-2 +- id: hg-11-5-4-4 + name: Twist Ties + children: [] attributes: - color - pattern - - plant_support_material -- id: hg-12-1-17 - name: Rain Barrels - children: [] +- id: hg-11-6 + name: Kitchen Appliance Accessories + children: + - hg-11-6-1 + - hg-11-6-2 + - hg-11-6-3 + - hg-11-6-4 + - hg-11-6-5 + - hg-11-6-6 + - hg-11-6-7 + - hg-11-6-8 + - hg-11-6-9 + - hg-11-6-10 + - hg-11-6-11 + - hg-11-6-12 + - hg-11-6-13 + - hg-11-6-14 + - hg-11-6-15 + - hg-11-6-16 + - hg-11-6-17 + - hg-11-6-18 + - hg-11-6-19 + - hg-11-6-20 + - hg-11-6-21 + - hg-11-6-22 + - hg-11-6-23 + - hg-11-6-24 + - hg-11-6-25 + - hg-11-6-26 + - hg-11-6-27 + - hg-11-6-28 + - hg-11-6-29 + - hg-11-6-30 + - hg-11-6-31 + - hg-11-6-32 attributes: - color - - material - pattern -- id: hg-12-1-18 - name: Sands & Soils +- id: hg-11-6-1 + name: Breadmaker Accessories children: - - hg-12-1-18-1 - - hg-12-1-18-2 + - hg-11-6-1-1 + - hg-11-6-1-2 + - hg-11-6-1-3 attributes: - color - pattern -- id: hg-12-1-18-1 - name: Sand +- id: hg-11-6-1-1 + name: Bread Pans children: [] attributes: - color - pattern -- id: hg-12-1-18-2 - name: Soil +- id: hg-11-6-1-2 + name: Kneading Hooks children: [] attributes: - color - - gardening_use - pattern -- id: hg-12-2 - name: Outdoor Living +- id: hg-11-6-1-3 + name: Kneading Paddles + children: [] + attributes: + - color + - pattern +- id: hg-11-6-2 + name: Coffee Maker & Espresso Machine Accessories children: - - hg-12-2-1 - - hg-12-2-2 - - hg-12-2-3 - - hg-12-2-4 - - hg-12-2-5 - - hg-12-2-6 - - hg-12-2-7 - - hg-12-2-8 - - hg-12-2-9 - - hg-12-2-10 + - hg-11-6-2-1 + - hg-11-6-2-2 + - hg-11-6-2-3 + - hg-11-6-2-4 + - hg-11-6-2-5 + - hg-11-6-2-6 + - hg-11-6-2-7 + - hg-11-6-2-8 + - hg-11-6-2-9 + - hg-11-6-2-10 + attributes: + - color + - pattern +- id: hg-11-6-2-1 + name: Coffee Decanter Warmers + children: [] attributes: - color - pattern -- id: hg-12-2-1 - name: Awning Accessories - children: - - hg-12-2-1-1 - - hg-12-2-1-6 - - hg-12-2-1-7 - - hg-12-2-1-10 - - hg-12-2-1-8 - - hg-12-2-1-9 - - hg-12-2-1-11 - - hg-12-2-1-12 - - hg-12-2-1-13 - - hg-12-2-1-14 +- id: hg-11-6-2-2 + name: Coffee Decanters + children: [] attributes: - color - - material - pattern -- id: hg-12-2-2 - name: Awnings +- id: hg-11-6-2-3 + name: Coffee Filter Baskets children: [] attributes: - - awning_construction_type - - cover_color - - cover_material - - cover_pattern - - frame_color - - frame_material - - frame_pattern - - awning_design -- id: hg-12-2-3 - name: Hammock Parts & Accessories - children: - - hg-12-2-3-1 - - hg-12-2-3-2 - attributes: - color - - compatible_hammock_design - - material - pattern -- id: hg-12-2-4 - name: Hammocks +- id: hg-11-6-2-4 + name: Coffee Filters children: [] attributes: - color - - material + - filter_material - pattern -- id: hg-12-2-5 - name: Outdoor Blankets - children: - - hg-12-2-5-1 - - hg-12-2-5-2 - - hg-12-2-5-3 +- id: hg-11-6-2-5 + name: Coffee Grinder Accessories + children: [] attributes: - color - - material - pattern -- id: hg-12-2-5-1 - name: Beach Mats +- id: hg-11-6-2-6 + name: Coffee Grinders children: [] attributes: - color - - material - pattern -- id: hg-12-2-5-2 - name: Picnic Blankets +- id: hg-11-6-2-7 + name: Coffee Maker & Espresso Machine Replacement Parts + children: + - hg-11-6-2-7-2 + - hg-11-6-2-7-3 + - hg-11-6-2-7-5 + - hg-11-6-2-7-8 + - hg-11-6-2-7-9 + - hg-11-6-2-7-10 + - hg-11-6-2-7-12 + - hg-11-6-2-7-13 + - hg-11-6-2-7-14 + - hg-11-6-2-7-15 + - hg-11-6-2-7-16 + - hg-11-6-2-7-20 + - hg-11-6-2-7-21 + - hg-11-6-2-7-23 + - hg-11-6-2-7-24 + - hg-11-6-2-7-28 + - hg-11-6-2-7-29 + - hg-11-6-2-7-32 + - hg-11-6-2-7-33 + - hg-11-6-2-7-34 + - hg-11-6-2-7-35 + - hg-11-6-2-7-38 + - hg-11-6-2-7-39 + attributes: + - color + - pattern +- id: hg-11-6-2-7-2 + name: Cappuccinatores children: [] attributes: - color - - material - pattern -- id: hg-12-2-5-3 - name: Poncho Liners +- id: hg-11-6-2-7-3 + name: Capsule Adapters children: [] attributes: - color - - material - pattern -- id: hg-12-2-6 - name: Outdoor Structures - children: - - hg-12-2-6-1 - - hg-12-2-6-2 - - hg-12-2-6-3 - - hg-12-2-6-4 - - hg-12-2-6-5 +- id: hg-11-6-2-7-5 + name: Chocolate Shakers + children: [] attributes: - color - pattern -- id: hg-12-2-6-1 - name: Canopies & Gazebos - children: - - hg-12-2-6-1-1 - - hg-12-2-6-1-2 +- id: hg-11-6-2-7-8 + name: Coffee Dispensers + children: [] attributes: - color - - material - pattern -- id: hg-12-2-6-2 - name: Canopy & Gazebo Accessories - children: - - hg-12-2-6-2-1 - - hg-12-2-6-2-2 - - hg-12-2-6-2-3 - - hg-12-2-6-2-4 - - hg-12-2-6-2-5 +- id: hg-11-6-2-7-9 + name: Coffee Dosers + children: [] attributes: - color - pattern -- id: hg-12-2-6-2-1 - name: Canopy & Gazebo Enclosure Kits +- id: hg-11-6-2-7-10 + name: Coffee Making Kits children: [] attributes: - color - pattern -- id: hg-12-2-6-2-2 - name: Canopy & Gazebo Frames +- id: hg-11-6-2-7-12 + name: Cup Warmers children: [] attributes: - color - - material - pattern -- id: hg-12-2-6-2-3 - name: Canopy & Gazebo Tops +- id: hg-11-6-2-7-13 + name: Drip Tray Covers children: [] attributes: - color - - material - pattern -- id: hg-12-2-6-2-4 - name: Canopy Poles +- id: hg-11-6-2-7-14 + name: Drip Trays children: [] attributes: - color - pattern - - hardware_material -- id: hg-12-2-6-2-5 - name: Canopy Weights +- id: hg-11-6-2-7-15 + name: Drippers children: [] attributes: - color - pattern -- id: hg-12-2-6-3 - name: Garden Arches, Trellises, Arbors & Pergolas - children: - - hg-12-2-6-3-1 - - hg-12-2-6-3-2 - - hg-12-2-6-3-3 - - hg-12-2-6-3-4 +- id: hg-11-6-2-7-16 + name: Dump Boxes + children: [] attributes: - color - - material - pattern -- id: hg-12-2-6-4 - name: Garden Bridges +- id: hg-11-6-2-7-20 + name: Gaskets children: [] attributes: - color - - material - pattern -- id: hg-12-2-6-5 - name: Sheds, Garages & Carports - children: - - hg-12-2-6-5-1 - - hg-12-2-6-5-2 - - hg-12-2-6-5-3 +- id: hg-11-6-2-7-21 + name: Handles + children: [] attributes: - color - - material - pattern -- id: hg-12-2-7 - name: Outdoor Umbrella & Sunshade Accessories - children: - - hg-12-2-7-1 - - hg-12-2-7-2 - - hg-12-2-7-3 - - hg-12-2-7-4 - - hg-12-2-7-5 +- id: hg-11-6-2-7-23 + name: Knobs + children: [] attributes: - color - pattern -- id: hg-12-2-7-1 - name: Outdoor Umbrella & Sunshade Fabric +- id: hg-11-6-2-7-24 + name: Lids children: [] attributes: - color - pattern - - fabric -- id: hg-12-2-7-2 - name: Outdoor Umbrella Bases +- id: hg-11-6-2-7-28 + name: Milk Systems children: [] attributes: - color - pattern - - shape -- id: hg-12-2-7-3 - name: Outdoor Umbrella Covers +- id: hg-11-6-2-7-29 + name: Milk Tubes children: [] attributes: - color - pattern -- id: hg-12-2-7-4 - name: Outdoor Umbrella Enclosure Kits +- id: hg-11-6-2-7-32 + name: Rubber Foots children: [] attributes: - color - pattern -- id: hg-12-2-7-5 - name: Outdoor Umbrella Lights +- id: hg-11-6-2-7-33 + name: Sliding Bases children: [] attributes: - color - - light_color - - light_temperature - pattern -- id: hg-12-2-8 - name: Outdoor Umbrellas & Sunshades - children: - - hg-12-2-8-1 - - hg-12-2-8-2 +- id: hg-11-6-2-7-34 + name: Splash Guards + children: [] attributes: - - canopy_material - color - pattern - - shape -- id: hg-12-2-9 - name: Porch Swing Accessories - children: - - hg-12-2-9-1 - - hg-12-2-9-2 - - hg-12-2-9-3 - - hg-12-2-9-4 - - hg-12-2-9-5 +- id: hg-11-6-2-7-35 + name: Spout Covers + children: [] attributes: - color - pattern -- id: hg-12-2-10 - name: Porch Swings +- id: hg-11-6-2-7-38 + name: Water Containers children: [] attributes: - color - pattern -- id: hg-12-3 - name: Outdoor Power Equipment - children: - - hg-12-3-1 - - hg-12-3-2 - - hg-12-3-3 - - hg-12-3-4 - - hg-12-3-5 - - hg-12-3-6 - - hg-12-3-7 - - hg-12-3-8 - - hg-12-3-9 - - hg-12-3-10 - - hg-12-3-11 - - hg-12-3-12 - - hg-12-3-13 - - hg-12-3-14 - - hg-12-3-15 +- id: hg-11-6-2-7-39 + name: Water Spouts + children: [] attributes: - color - pattern - - power_source -- id: hg-12-3-1 - name: Chainsaws +- id: hg-11-6-2-8 + name: Coffee Maker Water Filters children: [] attributes: - color + - filter_material - pattern - - power_source -- id: hg-12-3-2 - name: Grass Edgers +- id: hg-11-6-2-9 + name: Frothing Pitchers children: [] attributes: + - tool_utensil_material - color - pattern - power_source -- id: hg-12-3-3 - name: Hedge Trimmers +- id: hg-11-6-2-10 + name: Portafilters children: [] attributes: - color + - material - pattern - - power_source -- id: hg-12-3-4 - name: Lawn Aerators & Dethatchers +- id: hg-11-6-3 + name: Cooktop, Oven & Range Accessories children: - - hg-12-3-4-1 - - hg-12-3-4-2 + - hg-11-6-3-1 + - hg-11-6-3-2 + - hg-11-6-3-3 + - hg-11-6-3-4 + - hg-11-6-3-5 + - hg-11-6-3-6 attributes: - color + - material - pattern - - power_source -- id: hg-12-3-5 - name: Lawn Mowers - children: - - hg-12-3-5-1 - - hg-12-3-5-2 - - hg-12-3-5-3 - - hg-12-3-5-4 +- id: hg-11-6-3-1 + name: Cooktop Cleaning Kits + children: [] attributes: - color + - material - pattern - - power_source -- id: hg-12-3-5-1 - name: Riding Mowers +- id: hg-11-6-3-2 + name: Cooktop Protectors children: [] attributes: - color + - material - pattern - - power_source -- id: hg-12-3-5-2 - name: Robotic Mowers +- id: hg-11-6-3-3 + name: Oven Gloves children: [] attributes: - color + - handwear_material - pattern - - power_source -- id: hg-12-3-5-3 - name: Tow-Behind Mowers +- id: hg-11-6-3-4 + name: Oven Liners children: [] attributes: - color + - material - pattern - - power_source -- id: hg-12-3-5-4 - name: Walk-Behind Mowers +- id: hg-11-6-3-5 + name: Racks children: [] attributes: - color + - material - pattern - - power_source -- id: hg-12-3-6 - name: Lawn Vacuums +- id: hg-11-6-3-6 + name: Range Hood Filters children: [] attributes: - color + - material - pattern - - power_source -- id: hg-12-3-7 - name: Leaf Blowers - children: [] +- id: hg-11-6-4 + name: Cotton Candy Machine Accessories + children: + - hg-11-6-4-1 + - hg-11-6-4-2 + - hg-11-6-4-5 attributes: - color - pattern - - power_source -- id: hg-12-3-8 - name: Outdoor Power Equipment Base Units +- id: hg-11-6-4-1 + name: Cotton Candy Bags children: [] attributes: - color - pattern - - power_source -- id: hg-12-3-9 - name: Outdoor Power Equipment Sets +- id: hg-11-6-4-2 + name: Cotton Candy Cones children: [] attributes: - color - - outdoor_power_accessories_included - pattern - - power_source -- id: hg-12-3-10 - name: Power Sweepers +- id: hg-11-6-4-5 + name: Cotton Candy Sugar children: [] attributes: - color - pattern - - power_source - - propulsion_type -- id: hg-12-3-11 - name: Power Tillers & Cultivators +- id: hg-11-6-5 + name: Deep Fryer Accessories children: - - hg-12-3-11-1 - - hg-12-3-11-2 + - hg-11-6-5-1 + - hg-11-6-5-4 attributes: - color - - material - pattern - - power_source -- id: hg-12-3-12 - name: Pressure Washers +- id: hg-11-6-5-1 + name: Deep Fryer Baskets children: [] attributes: - color - pattern - - power_source -- id: hg-12-3-13 - name: Snow Blowers +- id: hg-11-6-5-4 + name: Deep Fryer Lids children: [] attributes: - color - pattern - - power_source -- id: hg-12-3-14 - name: Tractors - children: [] +- id: hg-11-6-6 + name: Dishwasher Parts & Accessories + children: + - hg-11-6-6-1 + - hg-11-6-6-2 attributes: - color - pattern - - power_source -- id: hg-12-3-15 - name: Weed Trimmers +- id: hg-11-6-6-1 + name: Dishwasher Accessories children: [] attributes: - color - pattern - - power_source -- id: hg-12-4 - name: Outdoor Power Equipment Accessories - children: - - hg-12-4-1 - - hg-12-4-2 - - hg-12-4-3 - - hg-12-4-4 - - hg-12-4-5 - - hg-12-4-6 - - hg-12-4-7 - - hg-12-4-8 - - hg-12-4-9 - - hg-12-4-10 - - hg-12-4-11 +- id: hg-11-6-6-2 + name: Dishwasher Parts + children: [] attributes: - color - pattern -- id: hg-12-4-1 - name: Chainsaw Accessories +- id: hg-11-6-7 + name: Electric Kettle Accessories children: - - hg-12-4-1-1 - - hg-12-4-1-2 + - hg-11-6-7-1 + - hg-11-6-7-3 + - hg-11-6-7-4 attributes: - color - pattern -- id: hg-12-4-1-1 - name: Chainsaw Bars +- id: hg-11-6-7-1 + name: Electric Kettle Bases children: [] attributes: - color - pattern -- id: hg-12-4-1-2 - name: Chainsaw Chains +- id: hg-11-6-7-3 + name: Electric Kettle Lids children: [] attributes: - color - pattern -- id: hg-12-4-2 - name: Grass Edger Accessories - children: - - hg-12-4-2-1 - - hg-12-4-2-2 - - hg-12-4-2-3 - - hg-12-4-2-4 - - hg-12-4-2-5 +- id: hg-11-6-7-4 + name: Electric Kettle Lime Catchers + children: [] attributes: - color - pattern -- id: hg-12-4-3 - name: Hedge Trimmer Accessories +- id: hg-11-6-8 + name: Electric Skillet & Wok Accessories children: - - hg-12-4-3-3 - - hg-12-4-3-4 + - hg-11-6-8-1 + - hg-11-6-8-2 + - hg-11-6-8-3 attributes: - color - pattern -- id: hg-12-4-4 - name: Lawn Mower Accessories - children: - - hg-12-4-4-1 - - hg-12-4-4-2 - - hg-12-4-4-3 - - hg-12-4-4-4 - - hg-12-4-4-5 - - hg-12-4-4-6 - - hg-12-4-4-7 - - hg-12-4-4-8 - - hg-12-4-4-9 - - hg-12-4-4-10 - - hg-12-4-4-11 - - hg-12-4-4-12 - - hg-12-4-4-13 +- id: hg-11-6-8-1 + name: Glass Lids + children: [] attributes: - color - pattern -- id: hg-12-4-4-1 - name: Brush Mower Attachments - children: - - hg-12-4-4-1-2 - - hg-12-4-4-1-3 - - hg-12-4-4-1-4 +- id: hg-11-6-8-2 + name: Oil Sprayers + children: [] attributes: - color - pattern -- id: hg-12-4-4-2 - name: Lawn Mower Bags +- id: hg-11-6-8-3 + name: Steaming Racks children: [] attributes: - color - pattern -- id: hg-12-4-4-3 - name: Lawn Mower Belts - children: [] +- id: hg-11-6-9 + name: Fondue Set Accessories + children: + - hg-11-6-9-1 + - hg-11-6-9-2 + - hg-11-6-9-3 attributes: - color - pattern -- id: hg-12-4-4-4 - name: Lawn Mower Blades - children: [] +- id: hg-11-6-9-1 + name: Cooking Gel Fuels + children: + - hg-11-6-9-1-1 + - hg-11-6-9-1-2 + - hg-11-6-9-1-3 + - hg-11-6-9-1-5 attributes: - color - pattern -- id: hg-12-4-4-5 - name: Lawn Mower Covers +- id: hg-11-6-9-1-1 + name: Chafing Fuel Cans children: [] attributes: - color - pattern -- id: hg-12-4-4-6 - name: Lawn Mower Mulch Kits +- id: hg-11-6-9-1-2 + name: Fireplace Fuel Cans children: [] attributes: - color - pattern -- id: hg-12-4-4-7 - name: Lawn Mower Mulch Plugs & Plates - children: - - hg-12-4-4-7-1 - - hg-12-4-4-7-2 +- id: hg-11-6-9-1-3 + name: Fondue Fuel Cans + children: [] attributes: - color - pattern -- id: hg-12-4-4-8 - name: Lawn Mower Pulleys & Idlers - children: - - hg-12-4-4-8-1 - - hg-12-4-4-8-2 +- id: hg-11-6-9-1-5 + name: Sterno Cans + children: [] attributes: - color - pattern -- id: hg-12-4-4-9 - name: Lawn Mower Tire Tubes +- id: hg-11-6-9-2 + name: Fondue Forks children: [] attributes: - color - pattern -- id: hg-12-4-4-10 - name: Lawn Mower Tires +- id: hg-11-6-9-3 + name: Fondue Pot Stands children: [] attributes: - color - pattern -- id: hg-12-4-4-11 - name: Lawn Mower Wheels - children: [] +- id: hg-11-6-10 + name: Food Dehydrator Accessories + children: + - hg-11-6-10-1 + - hg-11-6-10-2 attributes: - color - pattern -- id: hg-12-4-4-12 - name: Lawn Striping Kits +- id: hg-11-6-10-1 + name: Food Dehydrator Sheets children: [] attributes: - color - pattern -- id: hg-12-4-4-13 - name: Lawn Sweepers +- id: hg-11-6-10-2 + name: Food Dehydrator Trays children: [] attributes: - color - pattern -- id: hg-12-4-5 - name: Leaf Blower Accessories +- id: hg-11-6-11 + name: Food Processor Accessories children: - - hg-12-4-5-1 + - hg-11-6-11-1 + - hg-11-6-11-9 + - hg-11-6-11-11 + - hg-11-6-11-12 + - hg-11-6-11-13 + - hg-11-6-11-14 + - hg-11-6-11-15 + - hg-11-6-11-16 + - hg-11-6-11-20 + - hg-11-6-11-21 + - hg-11-6-11-22 + - hg-11-6-11-23 + - hg-11-6-11-26 + - hg-11-6-11-29 + - hg-11-6-11-33 + - hg-11-6-11-34 + - hg-11-6-11-35 + - hg-11-6-11-41 + - hg-11-6-11-46 + - hg-11-6-11-52 attributes: - color - pattern -- id: hg-12-4-5-1 - name: Leaf Blower Tubes + - suitable_for_food_processor_type +- id: hg-11-6-11-1 + name: Attachment Sets children: [] attributes: - color - pattern -- id: hg-12-4-6 - name: Multifunction Outdoor Power Equipment Attachments - children: - - hg-12-4-6-1 - - hg-12-4-6-2 - - hg-12-4-6-3 - - hg-12-4-6-4 - - hg-12-4-6-5 - - hg-12-4-6-6 + - suitable_for_food_processor_type +- id: hg-11-6-11-9 + name: Cord Storage Trays + children: [] attributes: - color - pattern -- id: hg-12-4-6-1 - name: Grass Edger Attachments + - suitable_for_food_processor_type +- id: hg-11-6-11-11 + name: Cutting Discs children: [] attributes: - color - pattern -- id: hg-12-4-6-2 - name: Ground & Leaf Blower Attachments + - suitable_for_food_processor_type +- id: hg-11-6-11-12 + name: Double Beater Sets children: [] attributes: - color - pattern -- id: hg-12-4-6-3 - name: Hedge Trimmer Attachments + - suitable_for_food_processor_type +- id: hg-11-6-11-13 + name: Dough Hooks children: [] attributes: - color - pattern -- id: hg-12-4-6-4 - name: Pole Saw Attachments + - suitable_for_food_processor_type +- id: hg-11-6-11-14 + name: Dough Scrapers children: [] attributes: - color - pattern -- id: hg-12-4-6-5 - name: Tiller & Cultivator Attachments + - suitable_for_food_processor_type +- id: hg-11-6-11-15 + name: Drum Grater Sets children: [] attributes: - color - pattern -- id: hg-12-4-6-6 - name: Weed Trimmer Attachments + - suitable_for_food_processor_type +- id: hg-11-6-11-16 + name: Emulsifying Discs children: [] attributes: - color - pattern -- id: hg-12-4-7 - name: Outdoor Power Equipment Batteries + - suitable_for_food_processor_type +- id: hg-11-6-11-20 + name: Fruit Press Attachments children: [] attributes: - color - pattern -- id: hg-12-4-8 - name: Pressure Washer Accessories - children: - - hg-12-4-8-4 - - hg-12-4-8-5 - - hg-12-4-8-7 - - hg-12-4-8-13 - - hg-12-4-8-15 - - hg-12-4-8-17 - - hg-12-4-8-18 - - hg-12-4-8-20 - - hg-12-4-8-21 - - hg-12-4-8-22 - - hg-12-4-8-23 - - hg-12-4-8-24 - - hg-12-4-8-29 + - suitable_for_food_processor_type +- id: hg-11-6-11-21 + name: Granulating Discs + children: [] attributes: - color - pattern -- id: hg-12-4-9 - name: Snow Blower Accessories - children: - - hg-12-4-9-1 + - suitable_for_food_processor_type +- id: hg-11-6-11-22 + name: Grinder Attachments + children: [] attributes: - color - pattern -- id: hg-12-4-10 - name: Tractor Parts & Accessories - children: - - hg-12-4-10-1 - - hg-12-4-10-2 + - suitable_for_food_processor_type +- id: hg-11-6-11-23 + name: Heat Shields + children: [] attributes: - color - pattern -- id: hg-12-4-10-1 - name: Tractor Tires - children: - - hg-12-4-10-1-1 - - hg-12-4-10-1-2 - - hg-12-4-10-1-5 + - suitable_for_food_processor_type +- id: hg-11-6-11-26 + name: Kneading Tools + children: [] attributes: - color - pattern -- id: hg-12-4-10-2 - name: Tractor Wheels + - suitable_for_food_processor_type +- id: hg-11-6-11-29 + name: Mincer Attachments children: [] attributes: - color - pattern -- id: hg-12-4-11 - name: Weed Trimmer Accessories - children: - - hg-12-4-11-1 - - hg-12-4-11-2 + - suitable_for_food_processor_type +- id: hg-11-6-11-33 + name: Pasta Shaper Attachments + children: [] attributes: - color - pattern -- id: hg-12-4-11-1 - name: Weed Trimmer Blades & Spools - children: - - hg-12-4-11-1-1 - - hg-12-4-11-1-2 + - suitable_for_food_processor_type +- id: hg-11-6-11-34 + name: Peelers + children: [] attributes: - color - pattern -- id: hg-12-4-11-2 - name: Weed Trimmer Spool Covers + - suitable_for_food_processor_type +- id: hg-11-6-11-35 + name: Pushers children: [] attributes: - color - pattern -- id: hg-12-5 - name: Snow Removal - children: - - hg-12-5-1 - - hg-12-5-2 + - suitable_for_food_processor_type +- id: hg-11-6-11-41 + name: Splash Guards + children: [] attributes: - color - pattern -- id: hg-12-5-1 - name: Ice Scrapers & Snow Brushes - children: - - hg-12-5-1-1 - - hg-12-5-1-2 + - suitable_for_food_processor_type +- id: hg-11-6-11-46 + name: Strainer Attachments + children: [] attributes: - color - pattern -- id: hg-12-5-2 - name: Snow Shovels + - suitable_for_food_processor_type +- id: hg-11-6-11-52 + name: Vegetable Sheet Cutter Attachments children: [] attributes: - - blade_material - color - - handle_material - pattern -- id: hg-12-6 - name: Watering & Irrigation + - suitable_for_food_processor_type +- id: hg-11-6-12 + name: Freezer Accessories children: - - hg-12-6-1 - - hg-12-6-2 - - hg-12-6-3 - - hg-12-6-4 - - hg-12-6-5 - - hg-12-6-6 - - hg-12-6-7 - - hg-12-6-8 + - hg-11-6-12-2 + - hg-11-6-12-3 + - hg-11-6-12-4 + - hg-11-6-12-5 attributes: - color - pattern -- id: hg-12-6-1 - name: Garden Hose Fittings & Valves - children: - - hg-12-6-1-1 - - hg-12-6-1-2 +- id: hg-11-6-12-2 + name: Freezer Door Gaskets + children: [] attributes: - color - pattern -- id: hg-12-6-2 - name: Garden Hose Spray Nozzles +- id: hg-11-6-12-3 + name: Freezer Door Handles children: [] attributes: - color - pattern -- id: hg-12-6-3 - name: Garden Hoses +- id: hg-11-6-12-4 + name: Freezer Shelves children: [] attributes: - color - pattern - - suitable_space -- id: hg-12-6-4 - name: Sprinkler Accessories +- id: hg-11-6-12-5 + name: Freezer Thermometers + children: [] + attributes: + - color + - pattern +- id: hg-11-6-13 + name: Garbage Disposal Accessories children: - - hg-12-6-4-1 - - hg-12-6-4-2 + - hg-11-6-13-4 attributes: - color - pattern -- id: hg-12-6-4-1 - name: Sprinkler Controls +- id: hg-11-6-13-4 + name: Stoppers children: [] attributes: - color - pattern -- id: hg-12-6-4-2 - name: Sprinkler Valves - children: [] +- id: hg-11-6-14 + name: Ice Cream Maker Accessories + children: + - hg-11-6-14-1 attributes: - color - pattern -- id: hg-12-6-5 - name: Sprinklers & Sprinkler Heads - children: - - hg-12-6-5-1 - - hg-12-6-5-2 +- id: hg-11-6-14-1 + name: Ice Cream Maker Freezer Bowls + children: [] attributes: - color - pattern -- id: hg-12-6-6 - name: Watering Can Accessories +- id: hg-11-6-15 + name: Ice Crusher & Shaver Accessories children: - - hg-12-6-6-1 - - hg-12-6-6-2 + - hg-11-6-15-1 + - hg-11-6-15-2 attributes: - color - pattern -- id: hg-12-6-7 - name: Watering Cans +- id: hg-11-6-15-1 + name: Ice Containers children: [] attributes: - color - - material - pattern - - sprinkler_head_type -- id: hg-12-6-8 - name: Watering Globes & Spikes - children: - - hg-12-6-8-1 - - hg-12-6-8-2 +- id: hg-11-6-15-2 + name: Ice Molds + children: [] attributes: - color - pattern -- id: hg-13 - name: Lighting +- id: hg-11-6-16 + name: Ice Maker Accessories children: - - hg-13-1 - - hg-13-2 - - hg-13-3 - - hg-13-4 - - hg-13-5 - - hg-13-6 - - hg-13-7 - - hg-13-8 - - hg-13-9 - - hg-13-10 - - hg-13-11 - - hg-13-12 - - hg-13-13 + - hg-11-6-16-3 attributes: - - bulb_size - color - - energy_efficiency_class - - light_color - - light_temperature - pattern -- id: hg-13-1 - name: Emergency Lighting +- id: hg-11-6-16-3 + name: Ice Maker Scoops children: [] attributes: - - bulb_size - - bulb_type - color - - energy_efficiency_class - - light_color - - light_temperature - pattern -- id: hg-13-2 - name: Floating & Submersible Lights - children: [] +- id: hg-11-6-17 + name: Juicer Accessories + children: + - hg-11-6-17-3 + - hg-11-6-17-8 + - hg-11-6-17-10 attributes: - - bulb_size - - bulb_type - color - - energy_efficiency_class - - light_color - - light_temperature - pattern -- id: hg-13-3 - name: Flood & Spot Lights +- id: hg-11-6-17-3 + name: Juice Collectors children: [] attributes: - - bulb_size - - bulb_type - color - - energy_efficiency_class - - light_color - - light_temperature - pattern -- id: hg-13-4 - name: In-Ground Lights +- id: hg-11-6-17-8 + name: Pulp Containers children: [] attributes: - - bulb_size - - bulb_type - - color - - energy_efficiency_class - - light_color - - light_temperature - - pattern -- id: hg-13-5 - name: Lamps - children: - - hg-13-5-1 - - hg-13-5-2 - - hg-13-5-3 - - hg-13-5-4 - - hg-13-5-5 - attributes: - - bulb_size - - bulb_type - color - - energy_efficiency_class - - light_color - - light_temperature - pattern -- id: hg-13-6 - name: Landscape Pathway Lighting +- id: hg-11-6-17-10 + name: Pusher Bodies children: [] attributes: - - bulb_size - - bulb_type - color - - energy_efficiency_class - - light_color - - light_temperature - pattern -- id: hg-13-7 - name: Light Bulbs +- id: hg-11-6-18 + name: Microwave Oven Accessories children: - - hg-13-7-1 - - hg-13-7-2 - - hg-13-7-3 - - hg-13-7-4 + - hg-11-6-18-1 + - hg-11-6-18-8 + - hg-11-6-18-9 + - hg-11-6-18-11 attributes: - - bulb_cap_type - - bulb_shape - - bulb_size - color - - energy_efficiency_class - - light_color - - light_temperature - pattern -- id: hg-13-7-1 - name: Compact Fluorescent Lamps +- id: hg-11-6-18-1 + name: Baking Trays children: [] attributes: - - bulb_cap_type - - bulb_shape - - bulb_size - color - - energy_efficiency_class - - light_color - - light_temperature - pattern -- id: hg-13-7-2 - name: Fluorescent Tubes +- id: hg-11-6-18-8 + name: Splatter Covers children: [] attributes: - - bulb_cap_type - - bulb_shape - - bulb_size - color - - energy_efficiency_class - - light_color - - light_temperature - pattern -- id: hg-13-7-3 - name: Incandescent Light Bulbs +- id: hg-11-6-18-9 + name: Thawing Plates children: [] attributes: - - bulb_cap_type - - bulb_shape - - bulb_size - color - - energy_efficiency_class - - light_color - - light_temperature - pattern -- id: hg-13-7-4 - name: LED Light Bulbs +- id: hg-11-6-18-11 + name: Turntable Plates children: [] attributes: - - bulb_cap_type - - bulb_shape - - bulb_size - color - - energy_efficiency_class - - light_color - - light_temperature - pattern -- id: hg-13-8 - name: Light Ropes & Strings - children: [] +- id: hg-11-6-19 + name: Outdoor Grill Accessories + children: + - hg-11-6-19-1 + - hg-11-6-19-2 + - hg-11-6-19-3 + - hg-11-6-19-4 + - hg-11-6-19-5 + - hg-11-6-19-6 + - hg-11-6-19-7 + - hg-11-6-19-8 + - hg-11-6-19-9 attributes: - - bulb_size - - bulb_type - color - - energy_efficiency_class - - light_color - - light_temperature - pattern - - suitable_space -- id: hg-13-9 - name: Lighting Fixtures +- id: hg-11-6-19-1 + name: Barbecue Briquettes children: - - hg-13-9-1 - - hg-13-9-2 - - hg-13-9-3 - - hg-13-9-4 + - hg-11-6-19-1-1 + - hg-11-6-19-1-2 + - hg-11-6-19-1-3 + - hg-11-6-19-1-4 attributes: - - bulb_cap_type - - bulb_size - - bulb_type - color - - energy_efficiency_class - - light_color - - light_temperature - - mounting_type - pattern -- id: hg-13-9-1 - name: Cabinet Light Fixtures +- id: hg-11-6-19-1-1 + name: Binchotan Charcoal children: [] attributes: - - bulb_cap_type - - bulb_size - - bulb_type - color - - energy_efficiency_class - - light_color - - light_temperature - - mounting_type - pattern -- id: hg-13-9-2 - name: Ceiling Light Fixtures +- id: hg-11-6-19-1-2 + name: Charcoal Briquettes children: [] attributes: - - bulb_cap_type - - bulb_size - - bulb_type - color - - energy_efficiency_class - - light_color - - light_temperature - - mounting_type - pattern -- id: hg-13-9-3 - name: Chandeliers +- id: hg-11-6-19-1-3 + name: Lump Charcoals children: [] attributes: - - bulb_cap_type - - bulb_size - - bulb_type - color - - energy_efficiency_class - - light_color - - light_temperature - - material - - mounting_type - pattern - - style -- id: hg-13-9-4 - name: Wall Light Fixtures +- id: hg-11-6-19-1-4 + name: Thai Charcoals children: [] attributes: - - bulb_cap_type - - bulb_size - - bulb_type - color - - energy_efficiency_class - - light_color - - light_temperature - - mounting_type - pattern -- id: hg-13-10 - name: Night Lights & Ambient Lighting +- id: hg-11-6-19-2 + name: Charcoal Chimneys children: [] attributes: - - bulb_size - - bulb_type - color - - energy_efficiency_class - - light_color - - light_temperature - pattern -- id: hg-13-11 - name: Picture Lights +- id: hg-11-6-19-3 + name: Outdoor Grill Carts children: [] attributes: - - bulb_size - - bulb_type - color - - energy_efficiency_class - - light_color - - light_temperature - pattern -- id: hg-13-12 - name: Tiki Torches & Oil Lamps +- id: hg-11-6-19-4 + name: Outdoor Grill Covers children: [] attributes: - - bulb_size - color - - energy_efficiency_class - - light_color - - light_temperature - pattern - - power_source -- id: hg-13-13 - name: Track Lighting +- id: hg-11-6-19-5 + name: Outdoor Grill Racks & Toppers children: - - hg-13-13-1 - - hg-13-13-2 - - hg-13-13-3 + - hg-11-6-19-5-1 + - hg-11-6-19-5-2 attributes: - - bulb_size - color - - energy_efficiency_class - - light_color - - light_temperature - pattern -- id: hg-13-13-1 - name: Track Lighting Accessories - children: - - hg-13-13-1-2 - - hg-13-13-1-3 - - hg-13-13-1-4 - - hg-13-13-1-5 +- id: hg-11-6-19-5-1 + name: Outdoor Grill Racks + children: [] attributes: - - bulb_size - color - - energy_efficiency_class - - light_color - - light_temperature - pattern -- id: hg-13-13-2 - name: Track Lighting Fixtures +- id: hg-11-6-19-5-2 + name: Outdoor Grill Toppers children: [] attributes: - - bulb_size - color - - energy_efficiency_class - - light_color - - light_temperature - pattern -- id: hg-13-13-3 - name: Track Lighting Rails +- id: hg-11-6-19-6 + name: Outdoor Grill Replacement Parts + children: + - hg-11-6-19-6-1 + - hg-11-6-19-6-2 + - hg-11-6-19-6-3 + - hg-11-6-19-6-4 + attributes: + - color + - pattern +- id: hg-11-6-19-6-1 + name: Grill Burners children: [] attributes: - - bulb_size - color - - energy_efficiency_class - - light_color - - light_temperature - pattern -- id: hg-14 - name: Lighting Accessories - children: - - hg-14-1 - - hg-14-2 - - hg-14-3 - - hg-14-4 - - hg-14-5 +- id: hg-11-6-19-6-2 + name: Grill Grates + children: [] attributes: - color - pattern -- id: hg-14-1 - name: Lamp Post Bases +- id: hg-11-6-19-6-3 + name: Grill Igniters children: [] attributes: - color - pattern -- id: hg-14-2 - name: Lamp Post Mounts +- id: hg-11-6-19-6-4 + name: Grill Thermometers children: [] attributes: - color - pattern - - mount_material -- id: hg-14-3 - name: Lamp Shades +- id: hg-11-6-19-7 + name: Outdoor Grill Spits & Baskets + children: + - hg-11-6-19-7-1 + - hg-11-6-19-7-2 + attributes: + - color + - pattern +- id: hg-11-6-19-7-1 + name: Outdoor Grill Baskets children: [] attributes: - color - - mounting_type - pattern - - suitable_space -- id: hg-14-4 - name: Lighting Timers +- id: hg-11-6-19-7-2 + name: Outdoor Grill Spits children: [] attributes: - color - - display_technology - pattern - - timer_type -- id: hg-14-5 - name: Oil Lamp Fuel +- id: hg-11-6-19-8 + name: Outdoor Grilling Planks children: [] attributes: - color - - oil_type - pattern - - suitable_space -- id: hg-15 - name: Linens & Bedding +- id: hg-11-6-19-9 + name: Smoking Chips & Pellets children: - - hg-15-1 - - hg-15-2 - - hg-15-3 - - hg-15-4 + - hg-11-6-19-9-1 + - hg-11-6-19-9-2 attributes: - color - pattern - - fabric -- id: hg-15-1 - name: Bedding - children: - - hg-15-1-1 - - hg-15-1-2 - - hg-15-1-3 - - hg-15-1-4 - - hg-15-1-5 - - hg-15-1-6 - - hg-15-1-7 - - hg-15-1-8 - - hg-15-1-9 - - hg-15-1-10 +- id: hg-11-6-19-9-1 + name: Smoking Chips + children: [] attributes: - color - pattern - - fabric -- id: hg-15-1-1 - name: Bed Canopies +- id: hg-11-6-19-9-2 + name: Smoking Pellets children: [] attributes: - - bedding_size - color - pattern - - fabric -- id: hg-15-1-2 - name: Bed Sheets +- id: hg-11-6-20 + name: Pasta Maker Accessories + children: + - hg-11-6-20-7 + - hg-11-6-20-8 + - hg-11-6-20-10 + - hg-11-6-20-13 + attributes: + - color + - pattern +- id: hg-11-6-20-7 + name: Mixing Paddles children: [] attributes: - - bedding_pieces_included - - bedding_size - color - pattern - - fabric -- id: hg-15-1-3 - name: Bedskirts +- id: hg-11-6-20-8 + name: Pasta Drying Racks children: [] attributes: - - bedding_size - color - pattern - - fabric -- id: hg-15-1-4 - name: Blankets +- id: hg-11-6-20-10 + name: Shaping Attachments children: [] attributes: - - bedding_size - color - pattern - - fabric -- id: hg-15-1-5 - name: Duvet Covers +- id: hg-11-6-20-13 + name: Squeezing Bars children: [] attributes: - - bedding_size - color - pattern - - fabric -- id: hg-15-1-6 - name: Mattress Protectors +- id: hg-11-6-21 + name: Popcorn Maker Accessories children: - - hg-15-1-6-1 - - hg-15-1-6-2 + - hg-11-6-21-1 + - hg-11-6-21-2 + - hg-11-6-21-4 attributes: - - bedding_size - color - pattern - - fabric -- id: hg-15-1-6-1 - name: Mattress Encasements +- id: hg-11-6-21-1 + name: Popcorn Bags children: [] attributes: - - bedding_size - color - pattern - - fabric -- id: hg-15-1-6-2 - name: Mattress Pads +- id: hg-11-6-21-2 + name: Popcorn Kernels children: [] attributes: - - bedding_size - color - pattern - - fabric -- id: hg-15-1-7 - name: Nap Mats +- id: hg-11-6-21-4 + name: Popcorn Seasoning children: [] attributes: - color - pattern - - fabric -- id: hg-15-1-8 - name: Pillowcases & Shams +- id: hg-11-6-22 + name: Portable Cooking Stove Accessories + children: + - hg-11-6-22-1 + - hg-11-6-22-2 + - hg-11-6-22-5 + - hg-11-6-22-7 + attributes: + - color + - pattern +- id: hg-11-6-22-1 + name: Fire Mats children: [] attributes: - - bedding_size - - closure_style - color - pattern - - fabric -- id: hg-15-1-9 - name: Pillows +- id: hg-11-6-22-2 + name: Fire Starters children: [] attributes: - - bedding_size - color - - filler_material - - filler_support - pattern - - upholstery_material -- id: hg-15-1-10 - name: Quilts & Comforters +- id: hg-11-6-22-5 + name: Stove Bases children: [] attributes: - - bedding_size - color - pattern - - fabric -- id: hg-15-2 - name: Kitchen Linens Sets +- id: hg-11-6-22-7 + name: Windscreens children: [] attributes: - color - pattern - - fabric -- id: hg-15-3 - name: Table Linens +- id: hg-11-6-23 + name: Range Hood Accessories children: - - hg-15-3-1 - - hg-15-3-2 - - hg-15-3-3 - - hg-15-3-4 - - hg-15-3-5 - - hg-15-3-6 + - hg-11-6-23-3 + - hg-11-6-23-4 + - hg-11-6-23-5 attributes: - color - pattern - - fabric -- id: hg-15-3-1 - name: Cloth Napkins +- id: hg-11-6-23-3 + name: Filters children: [] attributes: - color - pattern - - fabric -- id: hg-15-3-2 - name: Doilies +- id: hg-11-6-23-4 + name: Grease Cups children: [] attributes: - color - pattern - - shape - - fabric -- id: hg-15-3-3 - name: Placemats +- id: hg-11-6-23-5 + name: Vents children: [] attributes: - color - pattern - - shape - - fabric -- id: hg-15-3-4 - name: Table Runners - children: [] +- id: hg-11-6-24 + name: Refrigerator Accessories + children: + - hg-11-6-24-2 + - hg-11-6-24-3 attributes: - color - pattern - - fabric -- id: hg-15-3-5 - name: Table Skirts +- id: hg-11-6-24-2 + name: Refrigerator Thermometers children: [] attributes: - color - pattern - - fabric -- id: hg-15-3-6 - name: Tablecloths +- id: hg-11-6-24-3 + name: Shelves children: [] attributes: - color - pattern - - shape - - fabric -- id: hg-15-4 - name: Towels - children: - - hg-15-4-1 - - hg-15-4-2 - - hg-15-4-3 - attributes: - - color - - pattern - - fabric -- id: hg-15-4-1 - name: Bath Towels & Washcloths +- id: hg-11-6-25 + name: Soda Maker Accessories children: - - hg-15-4-1-1 - - hg-15-4-1-2 + - hg-11-6-25-2 + - hg-11-6-25-4 + - hg-11-6-25-7 attributes: - color - pattern - - fabric -- id: hg-15-4-2 - name: Beach Towels +- id: hg-11-6-25-2 + name: Bottles children: [] attributes: - color - pattern - - fabric -- id: hg-15-4-3 - name: Kitchen Towels +- id: hg-11-6-25-4 + name: Chargers children: [] attributes: - color - pattern - - fabric -- id: hg-16 - name: Parasols & Rain Umbrellas - children: - - hg-16-1 - - hg-16-2 +- id: hg-11-6-25-7 + name: Syrups + children: [] attributes: - - canopy_material - color - pattern - - pole_material -- id: hg-17 - name: Plants +- id: hg-11-6-26 + name: Steam Table Accessories children: - - hg-17-1 - - hg-17-2 - - hg-17-3 - - hg-17-4 - - hg-17-6 - - hg-17-5 + - hg-11-6-26-1 + - hg-11-6-26-2 attributes: - color - pattern - - plant_class - - plant_name - - suitable_space -- id: hg-17-1 - name: Aquatic Plants +- id: hg-11-6-26-1 + name: Steam Table Pan Covers children: [] attributes: - - flower_color + - color - pattern - - plant_characteristics - - plant_class - - plant_name - - suitable_space - - sunlight -- id: hg-17-2 - name: Flowers +- id: hg-11-6-26-2 + name: Steam Table Pans children: [] attributes: - - flower_color - - pattern - - plant_characteristics - - plant_class - - plant_name - - suitable_space - - sunlight -- id: hg-17-3 - name: Indoor & Outdoor Plants - children: - - hg-17-3-1 - - hg-17-3-3 - - hg-17-3-4 - - hg-17-3-2 - attributes: - color - pattern - - plant_class - - plant_name - - suitable_space -- id: hg-17-3-1 - name: Bushes & Shrubs +- id: hg-11-6-27 + name: Toaster Accessories children: - - hg-17-3-1-1 - - hg-17-3-1-2 + - hg-11-6-27-1 + - hg-11-6-27-2 + - hg-11-6-27-4 + - hg-11-6-27-5 attributes: - color - pattern - - plant_class - - plant_name - - suitable_space -- id: hg-17-3-3 - name: Landscaping & Garden Plants - children: - - hg-17-3-3-1 - - hg-17-3-3-2 +- id: hg-11-6-27-1 + name: Toaster Covers + children: [] attributes: - color - pattern - - plant_class - - plant_name - - suitable_space -- id: hg-17-3-4 - name: Potted Houseplants +- id: hg-11-6-27-2 + name: Toaster Crumb Trays children: [] attributes: - - flower_color + - color - pattern - - plant_characteristics - - plant_class - - plant_name - - suitable_space - - sunlight -- id: hg-17-4 - name: Plant & Herb Growing Kits - children: - - hg-17-4-1 - - hg-17-4-2 +- id: hg-11-6-27-4 + name: Toaster Racks + children: [] attributes: - color - pattern - - plant_class - - plant_name - - suitable_space -- id: hg-17-6 - name: Trees +- id: hg-11-6-27-5 + name: Toaster Tongs children: [] attributes: - - flower_color + - color - pattern - - plant_characteristics - - plant_class - - plant_name - - suitable_space - - sunlight -- id: hg-18 - name: Pool & Spa +- id: hg-11-6-28 + name: Vacuum Sealer Accessories children: - - hg-18-1 - - hg-18-2 - - hg-18-3 - - hg-18-4 - - hg-18-5 + - hg-11-6-28-1 attributes: - color - pattern -- id: hg-18-1 - name: Pool & Spa Accessories - children: - - hg-18-1-1 - - hg-18-1-2 - - hg-18-1-3 - - hg-18-1-4 - - hg-18-1-5 - - hg-18-1-6 - - hg-18-1-7 - - hg-18-1-8 - - hg-18-1-9 - - hg-18-1-10 - - hg-18-1-11 - - hg-18-1-12 - - hg-18-1-13 - - hg-18-1-14 - - hg-18-1-15 - - hg-18-1-16 - - hg-18-1-17 - - hg-18-1-18 +- id: hg-11-6-28-1 + name: Vacuum Sealer Bags + children: [] + attributes: + - color + - pattern +- id: hg-11-6-29 + name: Waffle Iron Accessories + children: + - hg-11-6-29-1 + - hg-11-6-29-2 + - hg-11-6-29-3 attributes: - color - pattern -- id: hg-18-1-1 - name: Diving Boards +- id: hg-11-6-29-1 + name: Crêpe Plates children: [] attributes: - color - pattern -- id: hg-18-1-2 - name: Pool & Spa Chlorine Generators +- id: hg-11-6-29-2 + name: Sandwich Plates children: [] attributes: - color - pattern - - power_source -- id: hg-18-1-3 - name: Pool & Spa Filters +- id: hg-11-6-29-3 + name: Waffle Plates children: [] attributes: - color - pattern -- id: hg-18-1-4 - name: Pool & Spa Maintenance Kits - children: [] +- id: hg-11-6-30 + name: Water Cooler Accessories + children: + - hg-11-6-30-1 attributes: - color - pattern -- id: hg-18-1-5 - name: Pool Brushes & Brooms +- id: hg-11-6-30-1 + name: Water Cooler Bottles children: [] attributes: - color - pattern -- id: hg-18-1-6 - name: Pool Cleaner Hoses +- id: hg-11-6-31 + name: Wine Fridge Accessories children: [] attributes: - color - pattern -- id: hg-18-1-7 - name: Pool Cleaners & Chemicals +- id: hg-11-6-32 + name: Yogurt Maker Accessories + children: + - hg-11-6-32-2 + - hg-11-6-32-3 + attributes: + - color + - pattern +- id: hg-11-6-32-2 + name: Flavorings children: [] attributes: - color - pattern -- id: hg-18-1-8 - name: Pool Cover Accessories +- id: hg-11-6-32-3 + name: Pots children: [] attributes: - color - pattern -- id: hg-18-1-9 - name: Pool Covers & Ground Cloths +- id: hg-11-7 + name: Kitchen Appliances children: - - hg-18-1-9-1 - - hg-18-1-9-2 + - hg-11-7-1 + - hg-11-7-2 + - hg-11-7-3 + - hg-11-7-4 + - hg-11-7-5 + - hg-11-7-6 + - hg-11-7-7 + - hg-11-7-8 + - hg-11-7-9 + - hg-11-7-10 + - hg-11-7-11 + - hg-11-7-12 + - hg-11-7-13 + - hg-11-7-14 + - hg-11-7-15 + - hg-11-7-16 + - hg-11-7-17 + - hg-11-7-18 + - hg-11-7-19 + - hg-11-7-20 + - hg-11-7-21 + - hg-11-7-22 + - hg-11-7-23 + - hg-11-7-24 + - hg-11-7-25 + - hg-11-7-26 + - hg-11-7-27 + - hg-11-7-28 + - hg-11-7-29 + - hg-11-7-30 + - hg-11-7-31 + - hg-11-7-32 + - hg-11-7-33 + - hg-11-7-34 + - hg-11-7-35 + - hg-11-7-36 + - hg-11-7-37 + - hg-11-7-38 + - hg-11-7-39 + - hg-11-7-40 + - hg-11-7-41 + - hg-11-7-42 + - hg-11-7-43 + - hg-11-7-44 + - hg-11-7-45 + - hg-11-7-46 + - hg-11-7-47 + - hg-11-7-48 + - hg-11-7-49 + - hg-11-7-50 + - hg-11-7-51 + - hg-11-7-52 attributes: - color - pattern -- id: hg-18-1-10 - name: Pool Deck Kits +- id: hg-11-7-1 + name: Beverage Warmers children: [] attributes: - color - pattern -- id: hg-18-1-11 - name: Pool Floats & Loungers - children: - - hg-18-1-11-1 - - hg-18-1-11-2 +- id: hg-11-7-2 + name: Breadmakers + children: [] attributes: - color - pattern -- id: hg-18-1-12 - name: Pool Heaters +- id: hg-11-7-3 + name: Chocolate Tempering Machines children: [] attributes: - color - pattern - - suitable_for_pool_type -- id: hg-18-1-13 - name: Pool Ladders, Steps & Ramps +- id: hg-11-7-4 + name: Coffee Makers & Espresso Machines children: - - hg-18-1-13-1 - - hg-18-1-13-2 - - hg-18-1-13-3 + - hg-11-7-4-1 + - hg-11-7-4-2 + - hg-11-7-4-3 + - hg-11-7-4-4 + - hg-11-7-4-5 + - hg-11-7-4-6 attributes: - color - pattern -- id: hg-18-1-14 - name: Pool Liners +- id: hg-11-7-4-1 + name: Drip Coffee Makers children: [] attributes: - color - pattern -- id: hg-18-1-15 - name: Pool Skimmers +- id: hg-11-7-4-2 + name: Electric & Stovetop Espresso Pots children: [] attributes: - color - pattern -- id: hg-18-1-16 - name: Pool Sweeps & Vacuums - children: - - hg-18-1-16-1 - - hg-18-1-16-2 +- id: hg-11-7-4-3 + name: Espresso Machines + children: [] attributes: + - coffee_input_type - color + - mounting_type - pattern -- id: hg-18-1-17 - name: Pool Toys - children: - - hg-18-1-17-1 - - hg-18-1-17-2 - - hg-18-1-17-3 - - hg-18-1-17-4 +- id: hg-11-7-4-4 + name: French Presses + children: [] attributes: - color - pattern -- id: hg-18-1-18 - name: Pool Water Slides +- id: hg-11-7-4-5 + name: Percolators children: [] attributes: - color - pattern -- id: hg-18-2 - name: Sauna Accessories - children: - - hg-18-2-1 - - hg-18-2-2 - - hg-18-2-3 +- id: hg-11-7-4-6 + name: Vacuum Coffee Makers + children: [] attributes: - color - pattern -- id: hg-18-2-1 - name: Sauna Buckets & Ladles - children: - - hg-18-2-1-1 - - hg-18-2-1-2 +- id: hg-11-7-5 + name: Cooktops + children: [] attributes: - color + - energy_efficiency_class + - hob_type + - mounting_type - pattern -- id: hg-18-2-2 - name: Sauna Heaters + - top_surface_material +- id: hg-11-7-6 + name: Cotton Candy Machines children: [] attributes: - color - - housing_material - pattern - - power_source -- id: hg-18-2-3 - name: Sauna Kits +- id: hg-11-7-7 + name: Deep Fryers children: [] attributes: - color - pattern -- id: hg-18-3 - name: Saunas +- id: hg-11-7-8 + name: Deli Slicers children: [] attributes: - color - pattern - - suitable_space - - wall_material -- id: hg-18-4 - name: Spas +- id: hg-11-7-9 + name: Dishwashers children: [] attributes: - color + - energy_efficiency_class + - mounting_type - pattern - - suitable_space -- id: hg-18-5 - name: Swimming Pools +- id: hg-11-7-10 + name: Electric Griddles & Grills children: [] attributes: - color + - energy_efficiency_class - pattern - - shape - - suitable_space -- id: hg-19 - name: Smoking Accessories - children: - - hg-19-1 - - hg-19-2 - - hg-19-3 - - hg-19-4 - - hg-19-5 - - hg-19-6 - - hg-19-7 +- id: hg-11-7-11 + name: Electric Kettles + children: [] attributes: - color - material - pattern -- id: hg-19-1 - name: Ashtrays - children: [] + - power_source +- id: hg-11-7-12 + name: Electric Skillets & Woks + children: + - hg-11-7-12-1 + - hg-11-7-12-2 attributes: - color - - material - pattern -- id: hg-19-2 - name: Cigar Cases +- id: hg-11-7-12-1 + name: Electric Skillets children: [] attributes: - color - pattern - - bag_case_material -- id: hg-19-3 - name: Cigar Cutters & Punches - children: - - hg-19-3-1 - - hg-19-3-2 +- id: hg-11-7-12-2 + name: Electric Woks + children: [] attributes: - color - - material - pattern -- id: hg-19-4 - name: Cigarette Cases +- id: hg-11-7-13 + name: Fondue Pots & Sets children: [] attributes: - color - pattern - - bag_case_material -- id: hg-19-5 - name: Cigarette Holders - children: [] +- id: hg-11-7-14 + name: Food Cookers & Steamers + children: + - hg-11-7-14-1 + - hg-11-7-14-2 + - hg-11-7-14-3 + - hg-11-7-14-4 + - hg-11-7-14-5 + - hg-11-7-14-6 attributes: - color - - material - pattern -- id: hg-19-6 - name: Humidor Accessories +- id: hg-11-7-14-1 + name: Egg Cookers children: [] attributes: - color - - material - pattern -- id: hg-19-7 - name: Humidors +- id: hg-11-7-14-2 + name: Food Steamers children: [] attributes: - color - - humidity_control - - material - pattern -- id: hg-20 - name: Umbrella Sleeves & Cases - children: - - hg-20-1 - - hg-20-2 +- id: hg-11-7-14-3 + name: Rice Cookers + children: [] attributes: - color - pattern -- id: hg-21 - name: Wood Stoves +- id: hg-11-7-14-4 + name: Slow Cookers children: [] attributes: - color - - mounting_type - pattern -- id: hg-1-1-1 - name: Bathtub Caddies +- id: hg-11-7-14-5 + name: Thermal Cookers children: [] attributes: - color - pattern - - furniture_fixture_material -- id: hg-1-1-2 - name: Freestanding Caddies +- id: hg-11-7-14-6 + name: Water Ovens children: [] attributes: - color + - energy_efficiency_class - pattern - - furniture_fixture_material -- id: hg-1-1-3 - name: Over-the-Toilet Caddies +- id: hg-11-7-15 + name: Food Dehydrators children: [] attributes: - color - pattern - - furniture_fixture_material -- id: hg-1-1-4 - name: Shower Caddies - children: [] +- id: hg-11-7-16 + name: Food Grinders & Mills + children: + - hg-11-7-16-1 + - hg-11-7-16-2 attributes: - color - pattern - - furniture_fixture_material -- id: hg-1-1-5 - name: Wall-Mounted Caddies +- id: hg-11-7-16-1 + name: Food Grinders children: [] attributes: - color - pattern - - furniture_fixture_material -- id: hg-1-18-2 - name: Toilet Brush Holders +- id: hg-11-7-16-2 + name: Food Mills children: [] attributes: - color - - material - pattern -- id: hg-1-18-3 - name: Toilet Brushes - children: [] +- id: hg-11-7-17 + name: Food Mixers & Blenders + children: + - hg-11-7-17-1 + - hg-11-7-17-2 attributes: - color - pattern - - brush_material -- id: hg-1-21-1 - name: Towel Holders +- id: hg-11-7-17-1 + name: Food Blenders children: [] attributes: - color - - material - pattern -- id: hg-1-21-2 - name: Towel Racks +- id: hg-11-7-17-2 + name: Food Mixers children: [] attributes: - color - - material - pattern -- id: hg-2-6-1 - name: CCTV Monitors +- id: hg-11-7-18 + name: Food Smokers children: [] attributes: - color - - display_resolution - - display_technology - pattern - power_source - - monitor_mounting_type -- id: hg-2-6-2 - name: CCTV Test Monitors - children: [] +- id: hg-11-7-19 + name: Food Warmers + children: + - hg-11-7-19-1 + - hg-11-7-19-2 + - hg-11-7-19-3 + - hg-11-7-19-4 attributes: - color - - display_resolution - - display_technology - pattern - - power_source - - monitor_mounting_type -- id: hg-2-7-2 - name: Key Locks +- id: hg-11-7-19-1 + name: Chafing Dishes children: [] attributes: - color - - lock_type - pattern -- id: hg-2-7-3 - name: Keypads +- id: hg-11-7-19-2 + name: Food Heat Lamps children: [] attributes: - color - - keypad_style + - mounting_type - pattern -- id: hg-2-7-4 - name: Keys +- id: hg-11-7-19-3 + name: Rice Keepers children: [] attributes: - color - - compatible_lock_type - pattern -- id: hg-2-7-5 - name: RFID Covers +- id: hg-11-7-19-4 + name: Steam Tables children: [] attributes: - color - - material - pattern - - rfid_frequency -- id: hg-2-8-1 - name: Fireproof Safes +- id: hg-11-7-20 + name: Freezers children: [] attributes: - color - - lock_type + - energy_efficiency_class + - mounting_type - pattern -- id: hg-2-8-2 - name: Floor Safes + - star_rating +- id: hg-11-7-21 + name: Frozen Drink Makers children: [] attributes: - color - - lock_type - pattern -- id: hg-2-8-3 - name: Gun Safes +- id: hg-11-7-22 + name: Garbage Disposals children: [] attributes: - color - - lock_type - pattern -- id: hg-2-8-4 - name: Wall Safes +- id: hg-11-7-23 + name: Gas Griddles children: [] attributes: - color - - lock_type + - energy_efficiency_class + - mounting_type - pattern -- id: hg-3-2-1 - name: Artificial Flowering Plants +- id: hg-11-7-24 + name: Hot Drink Makers children: [] attributes: - color - pattern - - plant_class - - plant_name - - decoration_material -- id: hg-3-2-2 - name: Artificial Non-Flowering Plants +- id: hg-11-7-25 + name: Hot Plates children: [] attributes: - color + - material - pattern - - plant_class - - plant_name - - decoration_material -- id: hg-3-2-3 - name: Artificial Shrubs +- id: hg-11-7-26 + name: Ice Cream Makers children: [] attributes: - color + - compatible_recipes - pattern - - plant_class - - plant_name - - decoration_material -- id: hg-3-2-4 - name: Artificial Trees - children: [] +- id: hg-11-7-27 + name: Ice Crushers & Shavers + children: + - hg-11-7-27-1 + - hg-11-7-27-2 attributes: - color - pattern - - plant_class - - plant_name - - decoration_material -- id: hg-3-4-2-1 - name: Posters +- id: hg-11-7-27-1 + name: Ice Crushers children: [] attributes: - color - - frame - pattern - - theme - - artwork_frame_material -- id: hg-3-4-2-2 - name: Prints +- id: hg-11-7-27-2 + name: Ice Shavers children: [] attributes: - color - - frame - pattern - - theme - - artwork_frame_material -- id: hg-3-4-2-3 - name: Visual Artwork +- id: hg-11-7-28 + name: Ice Makers children: [] attributes: - color - - frame - pattern - - theme - - artwork_frame_material -- id: hg-3-7-1 - name: Ant Moats +- id: hg-11-7-29 + name: Juicers children: [] attributes: - color - pattern -- id: hg-3-7-3 - name: Feeder Hooks +- id: hg-11-7-30 + name: Knife Sharpeners + children: + - hg-11-7-30-1 + - hg-11-7-30-2 + - hg-11-7-30-3 + - hg-11-7-30-4 + - hg-11-7-30-5 + attributes: + - color + - pattern +- id: hg-11-7-30-1 + name: Electric Knife Sharpeners children: [] attributes: - color - pattern -- id: hg-3-7-4 - name: Feeder Poles +- id: hg-11-7-30-2 + name: Honing Steels children: [] attributes: - color - pattern -- id: hg-3-7-5 - name: Nectar Feeders +- id: hg-11-7-30-3 + name: Manual Knife Sharpeners children: [] attributes: - color - pattern -- id: hg-3-7-6 - name: Seed Trays +- id: hg-11-7-30-4 + name: Pull-Through Knife Sharpeners children: [] attributes: - color - pattern -- id: hg-3-7-7 - name: Squirrel Guards +- id: hg-11-7-30-5 + name: Sharpening Stones children: [] attributes: - color - pattern -- id: hg-3-7-8 - name: Suet Cages +- id: hg-11-7-31 + name: Microwave Ovens children: [] attributes: - color - pattern -- id: hg-3-7-9 - name: Weather Guards +- id: hg-11-7-32 + name: Milk Frothers & Steamers children: [] attributes: - color - pattern -- id: hg-3-9-6 - name: Perches +- id: hg-11-7-33 + name: Mochi Makers children: [] attributes: - color - pattern -- id: hg-3-9-7 - name: Predator Guards +- id: hg-11-7-34 + name: Outdoor Grills children: [] attributes: - color - pattern -- id: hg-3-9-8 - name: Roosting Pockets + - power_source +- id: hg-11-7-35 + name: Ovens children: [] attributes: - color + - energy_efficiency_class + - mounting_type + - oven_accessories_included - pattern -- id: hg-3-14 - name: Chair & Sofa Cushion Covers +- id: hg-11-7-36 + name: Pasta Makers children: [] attributes: - color - pattern - - suitable_for_chair_type - - fabric -- id: hg-3-16-1 - name: Clock Bezels +- id: hg-11-7-37 + name: Popcorn Makers children: [] attributes: - color - pattern -- id: hg-3-16-2 - name: Clock Dials +- id: hg-11-7-38 + name: Portable Cooking Stoves children: [] attributes: - color - pattern -- id: hg-3-16-3 - name: Clock Hands + - power_source +- id: hg-11-7-39 + name: Range Hoods children: [] attributes: - color + - energy_efficiency_class + - extraction_type + - grease_filter_material - pattern -- id: hg-3-16-4 - name: Clock Inserts +- id: hg-11-7-40 + name: Ranges children: [] attributes: - color - pattern -- id: hg-3-16-5 - name: Clock Movements +- id: hg-11-7-41 + name: Refrigerators children: [] attributes: - color + - energy_efficiency_class + - mounting_type - pattern -- id: hg-3-17-2-1 - name: Desk Clocks + - star_rating +- id: hg-11-7-42 + name: Roaster Ovens & Rotisseries children: [] attributes: - color - - material + - energy_efficiency_class + - mounting_type + - oven_accessories_included - pattern -- id: hg-3-17-2-2 - name: Shelf Clocks +- id: hg-11-7-43 + name: Soda Makers children: [] attributes: - color - - material - pattern -- id: hg-3-17-3-1 - name: Floor Clocks + - soda_maker_accessories_included +- id: hg-11-7-44 + name: Soy Milk Makers children: [] attributes: - color - - material - pattern -- id: hg-3-17-3-2 - name: Grandfather Clocks +- id: hg-11-7-45 + name: Tea Makers children: [] attributes: - color - - material - pattern -- id: hg-3-35-2-1 - name: Fountains - children: [] +- id: hg-11-7-46 + name: Toasters & Grills + children: + - hg-11-7-46-1 + - hg-11-7-46-2 + - hg-11-7-46-3 + - hg-11-7-46-4 + - hg-11-7-46-5 + - hg-11-7-46-6 + - hg-11-7-46-7 + - hg-11-7-46-8 + - hg-11-7-46-9 + - hg-11-7-46-10 attributes: - color - pattern -- id: hg-3-35-2-3 - name: Waterfalls +- id: hg-11-7-46-1 + name: Countertop & Toaster Ovens children: [] attributes: - color - pattern -- id: hg-3-36-1 - name: Garden Stones +- id: hg-11-7-46-2 + name: Donut Makers children: [] attributes: - color - pattern -- id: hg-3-36-2 - name: Stepping Stones +- id: hg-11-7-46-3 + name: Muffin & Cupcake Makers children: [] attributes: - color - pattern -- id: hg-3-43-1 - name: Garden Sculptures +- id: hg-11-7-46-4 + name: Pizza Makers & Ovens children: [] attributes: - color - pattern - - theme -- id: hg-3-43-2 - name: Lawn Ornaments +- id: hg-11-7-46-5 + name: Pizzelle Makers children: [] attributes: - color - pattern - - theme -- id: hg-3-53-1 - name: Money Jars +- id: hg-11-7-46-6 + name: Pretzel Makers children: [] attributes: - color - pattern - - decoration_material -- id: hg-3-53-2 - name: Piggy Banks +- id: hg-11-7-46-7 + name: Sandwich Makers children: [] attributes: - color - pattern - - decoration_material -- id: hg-3-66-1 - name: Table Scatters +- id: hg-11-7-46-8 + name: Toasters children: [] attributes: - color - pattern -- id: hg-3-66-2 - name: Vase Fillers +- id: hg-11-7-46-9 + name: Tortilla & Flatbread Makers children: [] attributes: - color - pattern -- id: hg-3-69-1 - name: Roof Decors +- id: hg-11-7-46-10 + name: Waffle Irons children: [] attributes: - color - pattern - - roof_decor_shape -- id: hg-3-69-2 - name: Weather Vanes +- id: hg-11-7-47 + name: Trash Compactors children: [] attributes: - color - pattern - - roof_decor_shape -- id: hg-3-71-1 - name: Wind Spinners +- id: hg-11-7-48 + name: Vacuum Sealers children: [] attributes: - color - pattern -- id: hg-3-71-2 - name: Wind Wheels +- id: hg-11-7-49 + name: Water Coolers children: [] attributes: - color - pattern -- id: hg-3-73-3-1 - name: Curtain Holdbacks +- id: hg-11-7-50 + name: Water Filters children: [] attributes: - color - pattern - - hardware_material -- id: hg-3-73-3-2 - name: Curtain Tassels + - water_filter_application +- id: hg-11-7-51 + name: Wine Fridges children: [] attributes: - color + - energy_efficiency_class + - mounting_type - pattern - - hardware_material -- id: hg-3-73-4-1 - name: Window Brackets + - star_rating +- id: hg-11-7-52 + name: Yogurt Makers children: [] attributes: - color - pattern -- id: hg-3-73-4-2 - name: Window Finials - children: [] +- id: hg-11-8 + name: Kitchen Tools & Utensils + children: + - hg-11-8-1 + - hg-11-8-2 + - hg-11-8-3 + - hg-11-8-4 + - hg-11-8-5 + - hg-11-8-6 + - hg-11-8-7 + - hg-11-8-8 + - hg-11-8-9 + - hg-11-8-10 + - hg-11-8-11 + - hg-11-8-12 + - hg-11-8-13 + - hg-11-8-14 + - hg-11-8-15 + - hg-11-8-16 + - hg-11-8-17 + - hg-11-8-18 + - hg-11-8-19 + - hg-11-8-20 + - hg-11-8-21 + - hg-11-8-22 + - hg-11-8-23 + - hg-11-8-24 + - hg-11-8-25 + - hg-11-8-26 + - hg-11-8-27 + - hg-11-8-28 + - hg-11-8-29 + - hg-11-8-30 + - hg-11-8-31 + - hg-11-8-32 + - hg-11-8-33 + - hg-11-8-34 + - hg-11-8-35 + - hg-11-8-36 + - hg-11-8-37 + - hg-11-8-38 + - hg-11-8-39 + - hg-11-8-40 + - hg-11-8-41 + - hg-11-8-42 + - hg-11-8-43 + - hg-11-8-44 + - hg-11-8-45 + - hg-11-8-46 + - hg-11-8-47 + - hg-11-8-48 + - hg-11-8-49 + - hg-11-8-50 + - hg-11-8-51 + - hg-11-8-52 + - hg-11-8-53 + - hg-11-8-54 + - hg-11-8-55 + - hg-11-8-56 + - hg-11-8-57 + - hg-11-8-58 + - hg-11-8-59 + - hg-11-8-60 + - hg-11-8-61 + - hg-11-8-62 + - hg-11-8-63 + - hg-11-8-64 + - hg-11-8-65 + - hg-11-8-66 + - hg-11-8-67 + - hg-11-8-68 + - hg-11-8-69 + - hg-11-8-70 + - hg-11-8-71 + - hg-11-8-72 + - hg-11-8-73 + - hg-11-8-74 + - hg-11-8-75 + - hg-11-8-76 + - hg-11-8-77 attributes: - color - pattern -- id: hg-3-73-4-3 - name: Window Hooks +- id: hg-11-8-1 + name: Aprons children: [] attributes: - color + - fabric - pattern -- id: hg-3-73-4-4 - name: Window Rings +- id: hg-11-8-2 + name: Baking Peels children: [] attributes: - color + - handle_material + - tool_utensil_material - pattern -- id: hg-3-73-4-5 - name: Window Rods +- id: hg-11-8-3 + name: Basters children: [] attributes: - color - pattern -- id: hg-3-74-1-1 - name: Curtains +- id: hg-11-8-4 + name: Basting Brushes children: [] attributes: + - bristle_material - color + - handle_material - pattern - - fabric -- id: hg-3-74-1-2 - name: Drapes +- id: hg-11-8-5 + name: Beverage Dispensers children: [] attributes: - color - pattern - - fabric -- id: hg-3-74-3-1 - name: Blinds - children: [] +- id: hg-11-8-6 + name: Cake Decorating Supplies + children: + - hg-11-8-6-1 + - hg-11-8-6-3 attributes: - color - - control_technology - - light_control - pattern - - window_treatment_material - - blind_shade_style -- id: hg-3-74-3-2 - name: Shades +- id: hg-11-8-6-1 + name: Decorating Bags children: [] attributes: - color - - control_technology - - light_control - pattern - - window_treatment_material - - blind_shade_style -- id: hg-3-74-6-1 - name: Cornices +- id: hg-11-8-6-3 + name: Turntables children: [] attributes: - color - - material - pattern -- id: hg-3-74-6-2 - name: Valances +- id: hg-11-8-7 + name: Cake Servers children: [] attributes: - color - - material + - tool_utensil_material - pattern -- id: hg-3-75-1 - name: Antique Globes +- id: hg-11-8-8 + name: Can Crushers children: [] attributes: - color - pattern - - power_source -- id: hg-3-75-2 - name: Desktop Globes +- id: hg-11-8-9 + name: Can Openers children: [] attributes: - color - pattern - power_source -- id: hg-3-75-3 - name: Floor Globes +- id: hg-11-8-10 + name: Carving Forks children: [] attributes: - color - pattern - - power_source -- id: hg-3-75-5 - name: Kids' Globes +- id: hg-11-8-11 + name: Channel Knives children: [] attributes: - color - pattern - - power_source -- id: hg-3-76-1 - name: Garlands - children: [] +- id: hg-11-8-12 + name: Colanders & Strainers + children: + - hg-11-8-12-1 + - hg-11-8-12-2 attributes: - color + - tool_utensil_material - pattern - - shape -- id: hg-3-76-2 - name: Wreaths +- id: hg-11-8-12-1 + name: Colanders children: [] attributes: - color + - tool_utensil_material - pattern - - shape -- id: hg-5-7-1 - name: Firewood +- id: hg-11-8-12-2 + name: Strainers children: [] attributes: - color + - tool_utensil_material - pattern -- id: hg-5-9-1 - name: Adjustable Shelves +- id: hg-11-8-13 + name: Condiment Dispensers children: [] attributes: - color - pattern - - furniture_fixture_material -- id: hg-5-9-2 - name: Back Walls +- id: hg-11-8-14 + name: Cookie Cutters children: [] attributes: - color + - tool_utensil_material - pattern - - furniture_fixture_material -- id: hg-5-9-3 - name: Base Covers + - theme +- id: hg-11-8-15 + name: Cookie Presses children: [] attributes: - color + - tool_utensil_material - pattern - - cover_material -- id: hg-5-10-1 - name: Firewood Carts - children: [] + - theme +- id: hg-11-8-16 + name: Cooking Thermometer Accessories + children: + - hg-11-8-16-1 + - hg-11-8-16-5 + - hg-11-8-16-6 attributes: - color - pattern - - furniture_fixture_material -- id: hg-5-10-2 - name: Firewood Holders +- id: hg-11-8-16-1 + name: Calibration Tools children: [] attributes: - color - pattern - - furniture_fixture_material -- id: hg-6-1 - name: Indoor Fireplaces +- id: hg-11-8-16-5 + name: Replacement Probes children: [] attributes: - color - pattern - - power_source -- id: hg-6-2 - name: Outdoor Fireplaces +- id: hg-11-8-16-6 + name: Wireless Receivers children: [] attributes: - color - pattern - - power_source -- id: hg-7-8-1 - name: Sensor & Alert Systems - children: [] +- id: hg-11-8-17 + name: Cooking Thermometers + children: + - hg-11-8-17-1 + - hg-11-8-17-2 + - hg-11-8-17-3 + - hg-11-8-17-4 + - hg-11-8-17-5 attributes: - color + - display_technology - pattern - - power_source -- id: hg-7-8-2 - name: Thermal Leak Detectors + - units_of_measurement +- id: hg-11-8-17-1 + name: Candy Thermometers children: [] attributes: - color + - display_technology - pattern - - power_source -- id: hg-8-3-1 - name: Dehumidifier Filters + - units_of_measurement +- id: hg-11-8-17-2 + name: Instant-Read Thermometers children: [] attributes: - color + - display_technology - pattern -- id: hg-8-3-3 - name: Dehumidifier Refills + - units_of_measurement +- id: hg-11-8-17-3 + name: Oven Thermometers children: [] attributes: - color + - display_technology - pattern -- id: hg-8-4-1 - name: Lighting System Kits + - units_of_measurement +- id: hg-11-8-17-4 + name: Probe Thermometers children: [] attributes: - color - - material + - display_technology - pattern -- id: hg-8-5-1 - name: Carpet Gliders + - units_of_measurement +- id: hg-11-8-17-5 + name: Wireless Thermometers children: [] attributes: - color + - display_technology - pattern -- id: hg-8-5-3 - name: Extension Wands + - units_of_measurement +- id: hg-11-8-18 + name: Cooking Timers children: [] attributes: - color - pattern -- id: hg-8-5-4 - name: Floor Cleaning Pads +- id: hg-11-8-19 + name: Cooking Torches children: [] attributes: - color - pattern -- id: hg-8-5-5 - name: Grout Cleaning Tools +- id: hg-11-8-20 + name: Cooling Racks children: [] attributes: - color - pattern -- id: hg-8-5-6 - name: Squeegee Attachments +- id: hg-11-8-21 + name: Cutting Boards children: [] attributes: - color + - tool_utensil_material - pattern -- id: hg-8-5-8 - name: Steam Nozzles - children: [] +- id: hg-11-8-22 + name: Dish Racks & Drain Boards + children: + - hg-11-8-22-1 + - hg-11-8-22-2 attributes: - color - pattern -- id: hg-8-6-1 - name: Furnace & Boiler Filters +- id: hg-11-8-22-1 + name: Dish Racks children: [] attributes: - color - pattern -- id: hg-8-6-2 - name: Furnace & Boiler Fixing Kits +- id: hg-11-8-22-2 + name: Drain Boards children: [] attributes: - color - pattern -- id: hg-8-6-3 - name: Furnace & Boiler Hoses +- id: hg-11-8-23 + name: Dough Wheels children: [] attributes: - color + - handle_material - pattern -- id: hg-8-6-4 - name: Plume Management Bends - children: [] + - blade_material +- id: hg-11-8-24 + name: Electric Knife Accessories + children: + - hg-11-8-24-1 attributes: - color - pattern -- id: hg-8-6-5 - name: Plume Management Extensions +- id: hg-11-8-24-1 + name: Electric Knife Replacement Blades children: [] attributes: - color - pattern -- id: hg-8-6-6 - name: Plume Management Kits +- id: hg-11-8-25 + name: Electric Knives children: [] attributes: - color - pattern -- id: hg-8-6-7 - name: Thermocouples +- id: hg-11-8-26 + name: Flour Sifters children: [] attributes: - color + - tool_utensil_material - pattern -- id: hg-8-7-1-1 - name: Heating Radiator Panels +- id: hg-11-8-27 + name: Food & Drink Stencils children: [] attributes: - color + - tool_utensil_material - pattern -- id: hg-8-7-1-2 - name: Heating Radiator Rolls - children: [] +- id: hg-11-8-28 + name: Food Crackers + children: + - hg-11-8-28-1 + - hg-11-8-28-2 attributes: - color - pattern -- id: hg-8-7-1-3 - name: Heating Radiator Sheets - children: [] +- id: hg-11-8-28-1 + name: Lobster & Crab Crackers + children: + - hg-11-8-28-1-1 + - hg-11-8-28-1-2 attributes: - color - pattern -- id: hg-8-9-1-1 - name: Cord Holders +- id: hg-11-8-28-1-1 + name: Crab Crackers children: [] attributes: - color - pattern -- id: hg-8-9-1-2 - name: Garment Steamer Carts +- id: hg-11-8-28-1-2 + name: Lobster Crackers children: [] attributes: - color - pattern -- id: hg-8-9-1-3 - name: Mobile Phone Holders - children: [] +- id: hg-11-8-28-2 + name: Nutcrackers + children: + - hg-11-8-28-2-1 + - hg-11-8-28-2-2 + - hg-11-8-28-2-3 + - hg-11-8-28-2-4 + - hg-11-8-28-2-5 + - hg-11-8-28-2-6 attributes: - color - pattern -- id: hg-8-9-1-4 - name: Storage Pouches +- id: hg-11-8-28-2-1 + name: Decorative Nutcrackers children: [] attributes: - color - pattern -- id: hg-8-9-2-1 - name: Iron Cleaners +- id: hg-11-8-28-2-2 + name: Electric Nutcrackers children: [] attributes: - color - pattern -- id: hg-8-9-2-2 - name: Ironing Mesh Cloths +- id: hg-11-8-28-2-3 + name: Handheld Nutcrackers children: [] attributes: - color - pattern -- id: hg-8-9-2-3 - name: Water Spray Bottles +- id: hg-11-8-28-2-4 + name: Lever Nutcrackers children: [] attributes: - color - pattern -- id: hg-8-11-2 - name: Accessory Kits +- id: hg-11-8-28-2-5 + name: Nut Picks children: [] attributes: - color - - compatible_vacuum_type - pattern -- id: hg-8-11-4 - name: Animal Care Sets +- id: hg-11-8-28-2-6 + name: Plier Nutcrackers children: [] attributes: - color - - compatible_vacuum_type - pattern -- id: hg-8-11-5 - name: Anti-Allergy Agents +- id: hg-11-8-29 + name: Food Dispensers children: [] attributes: - color - - compatible_vacuum_type + - food_dispenser_type - pattern -- id: hg-8-11-6 - name: Ash Separators - children: [] +- id: hg-11-8-30 + name: Food Graters & Zesters + children: + - hg-11-8-30-1 + - hg-11-8-30-2 attributes: - color - - compatible_vacuum_type + - tool_utensil_material - pattern -- id: hg-8-11-9 - name: Car Cleaning Kits +- id: hg-11-8-30-1 + name: Food Graters children: [] attributes: - color - - compatible_vacuum_type + - tool_utensil_material - pattern -- id: hg-8-11-11 - name: Charging Bases +- id: hg-11-8-30-2 + name: Food Zesters children: [] attributes: - color - - compatible_vacuum_type + - tool_utensil_material - pattern -- id: hg-8-11-12 - name: Cleaning Head Modules - children: [] +- id: hg-11-8-31 + name: Food Peelers & Corers + children: + - hg-11-8-31-1 + - hg-11-8-31-2 attributes: - color - - compatible_vacuum_type - pattern -- id: hg-8-11-17 - name: Crevice Tools +- id: hg-11-8-31-1 + name: Food Corers children: [] attributes: - color - - compatible_vacuum_type - pattern -- id: hg-8-11-21 - name: Dust Bags +- id: hg-11-8-31-2 + name: Food Peelers children: [] attributes: - color - - compatible_vacuum_type - pattern -- id: hg-8-11-22 - name: Dust Containers +- id: hg-11-8-32 + name: Food Steaming Bags children: [] attributes: - color - - compatible_vacuum_type - pattern -- id: hg-8-11-25 - name: Dusting Pads - children: [] +- id: hg-11-8-33 + name: Food Sticks & Skewers + children: + - hg-11-8-33-1 + - hg-11-8-33-2 attributes: - color - - compatible_vacuum_type + - tool_utensil_material - pattern -- id: hg-8-11-26 - name: Extension Hoses +- id: hg-11-8-33-1 + name: Food Skewers children: [] attributes: - color - - compatible_vacuum_type + - tool_utensil_material - pattern -- id: hg-8-11-28 - name: Filter Grids +- id: hg-11-8-33-2 + name: Food Sticks children: [] attributes: - color - - compatible_vacuum_type + - tool_utensil_material - pattern -- id: hg-8-11-29 - name: Filters +- id: hg-11-8-34 + name: Funnels children: [] attributes: - color - - compatible_vacuum_type + - tool_utensil_material - pattern -- id: hg-8-11-44 - name: Scented Cartridges +- id: hg-11-8-35 + name: Garlic Presses children: [] attributes: - color - - compatible_vacuum_type - pattern -- id: hg-8-11-47 - name: Starter Kits +- id: hg-11-8-36 + name: Gelatin Molds children: [] attributes: - color - - compatible_vacuum_type + - tool_utensil_material - pattern -- id: hg-8-11-48 - name: Suction Head Covers +- id: hg-11-8-37 + name: Ice Cube Trays children: [] attributes: - color - - compatible_vacuum_type + - tool_utensil_material - pattern -- id: hg-8-11-49 - name: Telescopic Tubes +- id: hg-11-8-38 + name: Jerky Guns children: [] attributes: - color - - compatible_vacuum_type - pattern -- id: hg-8-11-51 - name: Tube Bends - children: [] +- id: hg-11-8-39 + name: Kitchen Knives + children: + - hg-11-8-39-1 + - hg-11-8-39-2 + - hg-11-8-39-3 + - hg-11-8-39-4 + - hg-11-8-39-5 attributes: + - blade_material - color - - compatible_vacuum_type + - handle_material - pattern -- id: hg-8-11-52 - name: Tube Clips +- id: hg-11-8-39-1 + name: Bread Knives children: [] attributes: + - blade_material - color - - compatible_vacuum_type + - handle_material - pattern -- id: hg-8-11-62 - name: Wheels Replacement Kits +- id: hg-11-8-39-2 + name: Chef's Knives children: [] attributes: + - blade_material - color - - compatible_vacuum_type + - handle_material - pattern -- id: hg-9-1-5-3 - name: Portable Evaporative Coolers +- id: hg-11-8-39-3 + name: Paring Knives children: [] attributes: + - blade_material - color - - energy_efficiency_class + - handle_material - pattern -- id: hg-9-1-5-5 - name: Window-Mounted Evaporative Coolers +- id: hg-11-8-39-4 + name: Santoku Knives children: [] attributes: + - blade_material - color - - energy_efficiency_class + - handle_material - pattern -- id: hg-9-1-7-1 - name: Boilers +- id: hg-11-8-39-5 + name: Serrated Knives children: [] attributes: - - boiler_system + - blade_material - color - - energy_efficiency_class - - mounting_type + - handle_material - pattern - - power_source -- id: hg-9-1-7-2 - name: Furnaces +- id: hg-11-8-40 + name: Kitchen Molds children: [] attributes: - - boiler_system - color - - energy_efficiency_class - - mounting_type - pattern - - power_source -- id: hg-9-3-1-1 - name: Canister Carpet Shampooers - children: [] + - theme +- id: hg-11-8-41 + name: Kitchen Organizers + children: + - hg-11-8-41-1 + - hg-11-8-41-2 + - hg-11-8-41-3 + - hg-11-8-41-4 + - hg-11-8-41-5 + - hg-11-8-41-6 + - hg-11-8-41-7 + - hg-11-8-41-8 + - hg-11-8-41-9 + - hg-11-8-41-10 + - hg-11-8-41-11 + - hg-11-8-41-12 + - hg-11-8-41-13 + - hg-11-8-41-14 attributes: - color - - energy_efficiency_class - pattern -- id: hg-9-3-1-2 - name: Carpet Extractors +- id: hg-11-8-41-1 + name: Can Organizers children: [] attributes: - color - - energy_efficiency_class - pattern -- id: hg-9-3-1-3 - name: Dry Carpet Shampooers +- id: hg-11-8-41-2 + name: Drinkware Holders children: [] attributes: - color - - energy_efficiency_class - pattern -- id: hg-9-3-1-4 - name: Dual Tank Carpet Shampooers +- id: hg-11-8-41-3 + name: Kitchen Cabinet Organizers children: [] attributes: - color - - energy_efficiency_class - pattern -- id: hg-9-3-1-5 - name: Portable Carpet Shampooers +- id: hg-11-8-41-4 + name: Kitchen Counter & Beverage Station Organizers children: [] attributes: - color - - energy_efficiency_class - pattern -- id: hg-9-3-1-6 - name: Steam Carpet Shampooers - children: [] +- id: hg-11-8-41-5 + name: Kitchen Utensil Holders & Racks + children: + - hg-11-8-41-5-1 + - hg-11-8-41-5-2 attributes: - color - - energy_efficiency_class - pattern -- id: hg-9-3-1-7 - name: Upright Carpet Shampooers +- id: hg-11-8-41-5-1 + name: Kitchen Utensil Holders children: [] attributes: - color - - energy_efficiency_class - pattern -- id: hg-9-3-2-1 - name: Canister Carpet Steamers +- id: hg-11-8-41-5-2 + name: Kitchen Utensil Racks children: [] attributes: - color - - energy_efficiency_class - pattern -- id: hg-9-3-2-2 - name: Handheld Carpet Steamers - children: [] +- id: hg-11-8-41-6 + name: Knife Blocks & Holders + children: + - hg-11-8-41-6-1 + - hg-11-8-41-6-2 attributes: - color - - energy_efficiency_class - pattern -- id: hg-9-3-2-3 - name: Multi-Purpose Steam Cleaners +- id: hg-11-8-41-6-1 + name: Knife Blocks children: [] attributes: - color - - energy_efficiency_class - pattern -- id: hg-9-3-2-4 - name: Professional Carpet Steamers +- id: hg-11-8-41-6-2 + name: Knife Holders children: [] attributes: - color - - energy_efficiency_class - pattern -- id: hg-9-3-2-5 - name: Upright Carpet Steamers - children: [] +- id: hg-11-8-41-7 + name: Napkin Holders & Dispensers + children: + - hg-11-8-41-7-1 + - hg-11-8-41-7-2 attributes: - color - - energy_efficiency_class - pattern -- id: hg-9-3-3 - name: Floor Cleaners +- id: hg-11-8-41-7-1 + name: Napkin Dispensers children: [] attributes: - color - - energy_efficiency_class - pattern -- id: hg-9-3-4-1 - name: Compact Floor Scrubbers +- id: hg-11-8-41-7-2 + name: Napkin Holders children: [] attributes: - color - - energy_efficiency_class - pattern -- id: hg-9-3-4-2 - name: Cordless Floor Scrubbers - children: [] +- id: hg-11-8-41-8 + name: Paper Towel Holders & Dispensers + children: + - hg-11-8-41-8-1 + - hg-11-8-41-8-2 attributes: - color - - energy_efficiency_class - pattern -- id: hg-9-3-4-3 - name: Grout & Tile Floor Scrubbers +- id: hg-11-8-41-8-1 + name: Paper Towel Dispensers children: [] attributes: - color - - energy_efficiency_class - pattern -- id: hg-9-3-4-5 - name: Ride-On Floor Scrubbers +- id: hg-11-8-41-8-2 + name: Paper Towel Holders children: [] attributes: - color - - energy_efficiency_class - pattern -- id: hg-9-3-4-6 - name: Spin Mop Floor Scrubbers +- id: hg-11-8-41-9 + name: Pot Racks children: [] attributes: - color - - energy_efficiency_class - pattern -- id: hg-9-3-4-7 - name: Walk-Behind Floor Scrubbers +- id: hg-11-8-41-10 + name: Spice Organizers children: [] attributes: - color - - energy_efficiency_class - pattern -- id: hg-9-3-6-1 - name: 2-in-1 Steam Mops - children: [] +- id: hg-11-8-41-11 + name: Straw Holders & Dispensers + children: + - hg-11-8-41-11-1 + - hg-11-8-41-11-2 attributes: - color - - energy_efficiency_class - pattern -- id: hg-9-3-6-2 - name: Cylinder Steam Mops +- id: hg-11-8-41-11-1 + name: Straw Dispensers children: [] attributes: - color - - energy_efficiency_class - pattern -- id: hg-9-3-6-3 - name: Handheld Steam Mops +- id: hg-11-8-41-11-2 + name: Straw Holders children: [] attributes: - color - - energy_efficiency_class - pattern -- id: hg-9-3-6-4 - name: Multi-Surface Steam Mops +- id: hg-11-8-41-12 + name: Sugar Caddies children: [] attributes: - color - - energy_efficiency_class - pattern -- id: hg-9-3-6-5 - name: Upright Steam Mops - children: [] +- id: hg-11-8-41-13 + name: Toothpick Holders & Dispensers + children: + - hg-11-8-41-13-1 + - hg-11-8-41-13-2 attributes: - color - - energy_efficiency_class - pattern -- id: hg-9-3-6-6 - name: Vacuum Steam Mops +- id: hg-11-8-41-13-1 + name: Toothpick Dispensers children: [] attributes: - - pattern - color - - energy_efficiency_class -- id: hg-9-4-1 - name: Floor Buffers + - pattern +- id: hg-11-8-41-13-2 + name: Toothpick Holders children: [] attributes: - color - - energy_efficiency_class - pattern -- id: hg-9-4-2 - name: Floor Polishers - children: [] +- id: hg-11-8-41-14 + name: Utensil & Flatware Trays + children: + - hg-11-8-41-14-1 + - hg-11-8-41-14-2 attributes: - color - - energy_efficiency_class - pattern -- id: hg-9-6-1 - name: Garage Door Keypads +- id: hg-11-8-41-14-1 + name: Flatware Trays children: [] attributes: - color - - energy_efficiency_class - pattern -- id: hg-9-6-2 - name: Garage Door Remotes +- id: hg-11-8-41-14-2 + name: Utensil Trays children: [] attributes: - color - - energy_efficiency_class - pattern -- id: hg-9-8-3-1 - name: Ironing Systems - children: [] +- id: hg-11-8-42 + name: Kitchen Scrapers + children: + - hg-11-8-42-1 + - hg-11-8-42-2 + - hg-11-8-42-3 attributes: - color - - energy_efficiency_class - pattern - - soleplate_type -- id: hg-9-8-3-2 - name: Irons +- id: hg-11-8-42-1 + name: Bench Scrapers children: [] attributes: - color - - energy_efficiency_class - pattern - - soleplate_type -- id: hg-9-8-4-1 - name: All-in-One Washer-Dryer Units +- id: hg-11-8-42-2 + name: Bowl Scrapers children: [] attributes: - color - - energy_efficiency_class - pattern -- id: hg-9-8-4-2 - name: Portable Washer-Dryer Units +- id: hg-11-8-42-3 + name: Grill Scrapers children: [] attributes: - color - - energy_efficiency_class - pattern -- id: hg-9-8-4-3 - name: Stackable Washer-Dryer Units +- id: hg-11-8-43 + name: Kitchen Shears children: [] attributes: + - accessory_size + - edge_type - color - - energy_efficiency_class - pattern -- id: hg-9-8-4-4 - name: Washer-Dryer Combos +- id: hg-11-8-44 + name: Kitchen Slicers children: [] attributes: - color - - energy_efficiency_class + - housing_material - pattern -- id: hg-9-10-1 - name: Canister Vacs +- id: hg-11-8-45 + name: Kitchen Utensil Sets children: [] attributes: - - cleaning_surfaces - color - - dirt_separating_method - - dry_wet_cleaning - - dust_container_type - - energy_efficiency_class + - kitchen_utensil_items_included - pattern - - vacuum_air_filtering_technology -- id: hg-9-10-2 - name: Upright Vacuums +- id: hg-11-8-46 + name: Ladles children: [] attributes: - - cleaning_surfaces - color - - dirt_separating_method - - dry_wet_cleaning - - dust_container_type - - energy_efficiency_class + - tool_utensil_material - pattern - - vacuum_air_filtering_technology -- id: hg-10-2-1 - name: Floor Protection Films +- id: hg-11-8-47 + name: Mashers children: [] attributes: - color - - material + - tool_utensil_material - pattern -- id: hg-10-2-2 - name: Floor Protection Runners - children: [] +- id: hg-11-8-48 + name: Measuring Cups & Spoons + children: + - hg-11-8-48-1 + - hg-11-8-48-2 attributes: - color - - material - pattern -- id: hg-10-6-11-5-1 - name: Detergent Removers +- id: hg-11-8-48-1 + name: Measuring Cups children: [] attributes: - color - - ingredients - pattern - - dispenser_type -- id: hg-10-6-11-5-2 - name: Grease Removers +- id: hg-11-8-48-2 + name: Measuring Spoons children: [] attributes: - color - - dispenser_type - - ingredients - pattern -- id: hg-10-6-11-5-3 - name: Limescale Removers +- id: hg-11-8-49 + name: Meat Tenderizers children: [] attributes: - color - - dispenser_type - - ingredients + - tool_utensil_material - pattern -- id: hg-10-6-11-7 - name: Floor Cleaning Products +- id: hg-11-8-50 + name: Mixing Bowls children: [] attributes: - - cleaning_surfaces - color - - dispenser_type - - ingredients - pattern -- id: hg-10-6-11-14-1 - name: Conditioning Cloths + - units_of_measurement +- id: hg-11-8-51 + name: Mortars & Pestles children: [] attributes: - color - - dispenser_type - - ingredients + - tool_utensil_material - pattern -- id: hg-10-6-11-14-2 - name: Conditioning Oil - children: [] +- id: hg-11-8-52 + name: Oil & Vinegar Dispensers + children: + - hg-11-8-52-1 + - hg-11-8-52-2 attributes: - color - - dispenser_type - - ingredients + - tool_utensil_material - pattern -- id: hg-10-6-11-16-1 - name: Tile Cleaners +- id: hg-11-8-52-1 + name: Oil Dispensers children: [] attributes: - color - - dispenser_type - - ingredients + - tool_utensil_material - pattern -- id: hg-10-6-11-16-2 - name: Tub Cleaners +- id: hg-11-8-52-2 + name: Vinegar Dispensers children: [] attributes: - color - - dispenser_type - - ingredients + - tool_utensil_material - pattern -- id: hg-10-9-4-1 - name: Drying Hangers +- id: hg-11-8-53 + name: Oven Bags children: [] attributes: - color - pattern -- id: hg-10-9-4-2 - name: Drying Racks +- id: hg-11-8-54 + name: Oven Mitts & Pot Holders children: [] attributes: - - pattern - color -- id: hg-10-9-7-1 - name: Dryer Sheets - children: [] + - tool_utensil_material + - pattern +- id: hg-11-8-55 + name: Pasta Molds & Stamps + children: + - hg-11-8-55-1 + - hg-11-8-55-2 attributes: - color + - material + - pasta_shape_type - pattern - - scent -- id: hg-10-9-7-2 - name: Fabric Softeners +- id: hg-11-8-55-1 + name: Pasta Molds children: [] attributes: - color + - material + - pasta_shape_type - pattern - - scent -- id: hg-10-9-12-1 - name: Ironing Board Covers +- id: hg-11-8-55-2 + name: Pasta Stamps children: [] attributes: - color + - material + - pasta_shape_type - pattern - - fabric -- id: hg-10-9-12-2 - name: Ironing Board Pads +- id: hg-11-8-56 + name: Pastry Blenders children: [] attributes: - color - - material - pattern -- id: hg-10-9-13-2 - name: Ironing Board Legs +- id: hg-11-8-57 + name: Pastry Cloths children: [] attributes: - color + - fabric - pattern -- id: hg-10-9-20-1 - name: Anti-Static Sprays - children: [] +- id: hg-11-8-58 + name: Pizza Cutter Accessories + children: + - hg-11-8-58-1 + - hg-11-8-58-4 attributes: - color - pattern -- id: hg-10-9-20-2 - name: Wrinkle Releasers +- id: hg-11-8-58-1 + name: Pizza Cutter Blades children: [] attributes: - color - pattern -- id: hg-10-11-2-1 - name: Electric Traps +- id: hg-11-8-58-4 + name: Pizza Cutter Stands children: [] attributes: - color - pattern - - suitable_for_pest_type - - suitable_space -- id: hg-10-11-2-2 - name: Glue Traps +- id: hg-11-8-59 + name: Pizza Cutters children: [] attributes: + - blade_material - color + - handle_material - pattern - - suitable_for_pest_type - - suitable_space -- id: hg-10-11-2-3 - name: Live Traps +- id: hg-11-8-60 + name: Ricers children: [] attributes: - - suitable_for_pest_type - color - pattern - - suitable_space -- id: hg-10-11-2-4 - name: Plunger Traps - children: [] +- id: hg-11-8-61 + name: Rolling Pin Accessories + children: + - hg-11-8-61-1 + - hg-11-8-61-2 attributes: - color - pattern - - suitable_for_pest_type - - suitable_space -- id: hg-10-11-2-5 - name: Scissor Traps - children: [] +- id: hg-11-8-61-1 + name: Rolling Pin Covers & Sleeves + children: + - hg-11-8-61-1-1 + - hg-11-8-61-1-2 attributes: - color - pattern - - suitable_for_pest_type - - suitable_space -- id: hg-10-11-2-6 - name: Snap Traps +- id: hg-11-8-61-1-1 + name: Rolling Pin Covers children: [] attributes: - color - pattern - - suitable_for_pest_type - - suitable_space -- id: hg-10-11-3-1 - name: Fungicides +- id: hg-11-8-61-1-2 + name: Rolling Pin Sleeves children: [] attributes: - color - - ingredients - pattern -- id: hg-10-11-3-2 - name: Garden Insecticides +- id: hg-11-8-61-2 + name: Rolling Pin Rings children: [] attributes: - color - - ingredients - pattern -- id: hg-10-11-3-3 - name: Miticides +- id: hg-11-8-62 + name: Rolling Pins children: [] attributes: - color - - ingredients + - material - pattern -- id: hg-10-11-3-4 - name: Molluscicides - children: [] +- id: hg-11-8-63 + name: Salad Dressing Mixers & Shakers + children: + - hg-11-8-63-1 + - hg-11-8-63-2 attributes: - color - - ingredients + - tool_utensil_material - pattern -- id: hg-10-11-3-5 - name: Sepiolites +- id: hg-11-8-63-1 + name: Mixers children: [] attributes: - color - - ingredients + - tool_utensil_material - pattern -- id: hg-10-12 - name: Rug Covers +- id: hg-11-8-63-2 + name: Shakers children: [] attributes: - color + - tool_utensil_material - pattern - - cover_material -- id: hg-10-14-6-1 - name: Dressing Aids +- id: hg-11-8-64 + name: Salad Spinners children: [] attributes: - - pattern - color -- id: hg-10-14-6-2 - name: Shoe Horns - children: [] + - tool_utensil_material + - pattern +- id: hg-11-8-65 + name: Scoops + children: + - hg-11-8-65-1 + - hg-11-8-65-2 + - hg-11-8-65-3 + - hg-11-8-65-4 attributes: - color + - tool_utensil_material - pattern -- id: hg-10-14-8-1 - name: Shoe Polishes +- id: hg-11-8-65-1 + name: Ice Cream Scoops children: [] attributes: - color + - tool_utensil_material - pattern -- id: hg-10-14-8-2 - name: Shoe Waxes +- id: hg-11-8-65-2 + name: Ice Scoops children: [] attributes: - color + - tool_utensil_material - pattern -- id: hg-10-14-10-1 - name: Shoe Dyes +- id: hg-11-8-65-3 + name: Melon Ballers children: [] attributes: - color + - tool_utensil_material - pattern -- id: hg-10-14-10-2 - name: Shoe Treatments - children: [] +- id: hg-11-8-65-4 + name: Popcorn & French Fry Scoops + children: + - hg-11-8-65-4-1 + - hg-11-8-65-4-2 attributes: - color + - tool_utensil_material - pattern -- id: hg-10-14-11-1 - name: Shoe Shapers +- id: hg-11-8-65-4-1 + name: French Fry Scoops children: [] attributes: - color - - material + - tool_utensil_material - pattern -- id: hg-10-14-11-2 - name: Shoe Trees +- id: hg-11-8-65-4-2 + name: Popcorn Scoops children: [] attributes: - color - - material + - tool_utensil_material - pattern -- id: hg-10-16-1-2-1 - name: Closet Organizers +- id: hg-11-8-66 + name: Sink Caddies children: [] attributes: - color - pattern -- id: hg-10-16-1-2-2 - name: Garment Racks - children: [] +- id: hg-11-8-67 + name: Sink Mats & Grids + children: + - hg-11-8-67-1 + - hg-11-8-67-2 attributes: - color - pattern -- id: hg-10-16-1-6-1 - name: Shoe Organizers +- id: hg-11-8-67-1 + name: Sink Grids children: [] attributes: - color - pattern -- id: hg-10-16-1-6-2 - name: Shoe Racks +- id: hg-11-8-67-2 + name: Sink Mats children: [] attributes: - color - pattern -- id: hg-10-16-9-1-1 - name: Ironing Board Hooks +- id: hg-11-8-68 + name: Slotted Spoons children: [] attributes: - color - - material - pattern -- id: hg-10-16-9-1-2 - name: Ironing Board Racks +- id: hg-11-8-69 + name: Spatulas children: [] attributes: - color - - material - pattern -- id: hg-10-16-9-2-1 - name: Umbrella Racks - children: [] +- id: hg-11-8-70 + name: Spice Grinder Accessories + children: + - hg-11-8-70-5 attributes: - - pattern - color - - material -- id: hg-10-16-9-2-2 - name: Umbrella Stands + - pattern +- id: hg-11-8-70-5 + name: Spice Grinder Replacement Parts children: [] attributes: - color - - material - pattern -- id: hg-10-17-1 - name: Trash Compactor Bags +- id: hg-11-8-71 + name: Spice Grinders children: [] attributes: - color - pattern - - disposable_bag_material -- id: hg-10-17-2 - name: Trash Compactor Filters +- id: hg-11-8-72 + name: Spoon Rests children: [] attributes: - color - - material + - tool_utensil_material - pattern -- id: hg-10-18-4-1 - name: Trash Cans +- id: hg-11-8-73 + name: Sugar Dispensers children: [] attributes: - color - - material - pattern - - shape -- id: hg-10-18-4-2 - name: Wastebaskets +- id: hg-11-8-74 + name: Sushi Mats children: [] attributes: - color - - material + - tool_utensil_material - pattern - - shape -- id: hg-11-1-3-1 - name: Beverage Chilling Cubes +- id: hg-11-8-75 + name: Tea Strainers children: [] attributes: - color + - tool_utensil_material - pattern - - barware_material -- id: hg-11-1-3-2 - name: Beverage Sticks + - shape +- id: hg-11-8-76 + name: Tongs children: [] attributes: - color + - tool_utensil_material - pattern - - barware_material -- id: hg-11-1-4-1 - name: Beverage Chillers +- id: hg-11-8-77 + name: Whisks children: [] attributes: - color + - tool_utensil_material - pattern -- id: hg-11-1-4-2 - name: Beverage Tubs +- id: hg-11-9 + name: Prefabricated Kitchens & Kitchenettes children: [] attributes: - color - pattern -- id: hg-11-1-5-1 - name: Crown Bottle Caps - children: [] +- id: hg-11-10 + name: Tableware + children: + - hg-11-10-1 + - hg-11-10-2 + - hg-11-10-3 + - hg-11-10-4 + - hg-11-10-5 + - hg-11-10-6 + - hg-11-10-7 + - hg-11-10-8 + - hg-11-10-9 + - hg-11-10-10 attributes: - color - pattern -- id: hg-11-1-5-2 - name: Flip-Top Bottle Caps - children: [] +- id: hg-11-10-1 + name: Coffee & Tea Sets + children: + - hg-11-10-1-1 + - hg-11-10-1-2 attributes: + - coffee_tea_set_pieces_included - color - pattern -- id: hg-11-1-5-3 - name: Pry-Off Bottle Caps +- id: hg-11-10-1-1 + name: Coffee Sets children: [] attributes: + - coffee_tea_set_pieces_included - color - pattern -- id: hg-11-1-5-4 - name: Screw-On Bottle Caps +- id: hg-11-10-1-2 + name: Tea Sets children: [] attributes: + - coffee_tea_set_pieces_included - color - pattern -- id: hg-11-1-5-5 - name: Swing-Top Bottle Caps - children: [] +- id: hg-11-10-2 + name: Coffee Servers & Teapots + children: + - hg-11-10-2-1 + - hg-11-10-2-2 attributes: - color - pattern -- id: hg-11-1-11-1 - name: Electric Corkscrews +- id: hg-11-10-2-1 + name: Coffee Servers children: [] attributes: - color - pattern - - barware_material -- id: hg-11-1-11-2 - name: Lever Corkscrews +- id: hg-11-10-2-2 + name: Teapots children: [] attributes: - color - pattern - - barware_material -- id: hg-11-1-11-3 - name: Twist Corkscrews - children: [] +- id: hg-11-10-3 + name: Condiment Shakers + children: + - hg-11-10-3-1 + - hg-11-10-3-2 + - hg-11-10-3-3 + - hg-11-10-3-4 attributes: - color - pattern - - barware_material -- id: hg-11-1-11-4 - name: Waiter's Corkscrews +- id: hg-11-10-3-1 + name: Cheese Shakers children: [] attributes: - color - pattern - - barware_material -- id: hg-11-1-11-5 - name: Winged Corkscrews +- id: hg-11-10-3-2 + name: Pepper Shakers children: [] attributes: - color - pattern - - barware_material -- id: hg-11-1-13 - name: Drink Charms +- id: hg-11-10-3-3 + name: Salt Shakers children: [] attributes: - color - pattern - - theme -- id: hg-11-1-15 - name: Ice Buckets +- id: hg-11-10-3-4 + name: Shaker Sets children: [] attributes: - color - - material - pattern -- id: hg-11-2-2-1-1 - name: Baking Liners - children: [] +- id: hg-11-10-4 + name: Dinnerware + children: + - hg-11-10-4-1 + - hg-11-10-4-2 + - hg-11-10-4-3 attributes: - color + - tableware_material - pattern - - cookware_bakeware_material -- id: hg-11-2-2-1-2 - name: Baking Mats +- id: hg-11-10-4-1 + name: Bowls children: [] attributes: - - pattern - color - - cookware_bakeware_material -- id: hg-11-2-2-2-1 - name: Blind Baking Beans + - tableware_material + - pattern +- id: hg-11-10-4-2 + name: Dinnerware Sets children: [] attributes: - color + - dinnerware_pieces_included + - tableware_material - pattern - - cookware_bakeware_material -- id: hg-11-2-2-2-2 - name: Ceramic Baking Weights +- id: hg-11-10-4-3 + name: Plates children: [] attributes: - color + - tableware_material - pattern - - cookware_bakeware_material -- id: hg-11-2-3-3-1 - name: Blini Pans - children: [] + - shape +- id: hg-11-10-5 + name: Drinkware + children: + - hg-11-10-5-1 + - hg-11-10-5-2 + - hg-11-10-5-3 + - hg-11-10-5-4 + - hg-11-10-5-5 + - hg-11-10-5-6 + - hg-11-10-5-7 + - hg-11-10-5-8 attributes: - color - - compatible_hob_type + - drinkware_material - pattern - - cookware_bakeware_material -- id: hg-11-2-3-3-2 - name: Crêpe Pans +- id: hg-11-10-5-1 + name: Beer Glasses children: [] attributes: - color - - compatible_hob_type + - drinkware_material - pattern - - cookware_bakeware_material -- id: hg-11-2-3-10-1 - name: Canners +- id: hg-11-10-5-2 + name: Coffee & Tea Cups children: [] attributes: - color - - compatible_hob_type + - drinkware_material - pattern - - cookware_bakeware_material -- id: hg-11-2-3-10-2 - name: Pressure Cookers +- id: hg-11-10-5-3 + name: Coffee & Tea Saucers children: [] attributes: - color - - compatible_hob_type + - drinkware_material - pattern - - cookware_bakeware_material -- id: hg-11-2-3-13-1 - name: Frying Pans +- id: hg-11-10-5-4 + name: Drinkware Sets children: [] attributes: - color - - compatible_hob_type + - drinkware_pieces_included + - drinkware_material - pattern - - shape - - cookware_bakeware_material -- id: hg-11-2-3-13-2 - name: Skillets +- id: hg-11-10-5-5 + name: Mugs children: [] attributes: - color - - compatible_hob_type + - drinkware_material - pattern - - shape - - cookware_bakeware_material -- id: hg-11-2-3-16-1 - name: Clay Cooking Pots +- id: hg-11-10-5-6 + name: Shot Glasses children: [] attributes: - color - - compatible_hob_type + - drinkware_material - pattern - - cookware_bakeware_material -- id: hg-11-2-3-16-2 - name: Tagines +- id: hg-11-10-5-7 + name: Stemware children: [] attributes: - color - - compatible_hob_type + - drinkware_material - pattern - - cookware_bakeware_material -- id: hg-11-2-5-3-1 - name: Food Dividers +- id: hg-11-10-5-8 + name: Tumblers children: [] attributes: - color + - drinkware_material - pattern - - cookware_bakeware_material -- id: hg-11-2-5-3-2 - name: Gaskets - children: [] +- id: hg-11-10-6 + name: Flatware + children: + - hg-11-10-6-1 + - hg-11-10-6-2 + - hg-11-10-6-3 + - hg-11-10-6-4 + - hg-11-10-6-5 + - hg-11-10-6-6 + - hg-11-10-6-7 attributes: - color - pattern - - cookware_bakeware_material -- id: hg-11-2-5-3-3 - name: Handles +- id: hg-11-10-6-1 + name: Cheese Knives children: [] attributes: + - accessory_size - color + - flatware_material - pattern - - handle_material -- id: hg-11-2-5-3-4 - name: Pressure Cooker Timers - children: [] +- id: hg-11-10-6-2 + name: Chopstick Accessories + children: + - hg-11-10-6-2-1 + - hg-11-10-6-2-3 + - hg-11-10-6-2-4 attributes: - color - pattern - - cookware_bakeware_material -- id: hg-11-2-5-3-6 - name: Valves +- id: hg-11-10-6-2-1 + name: Chopstick Cases children: [] attributes: - color - pattern - - cookware_bakeware_material -- id: hg-11-3-7-1 - name: Lunch Bags +- id: hg-11-10-6-2-3 + name: Chopstick Holders children: [] attributes: - - age_group - color - pattern - - food_bag_material -- id: hg-11-3-7-2 - name: Lunch Box Sets +- id: hg-11-10-6-2-4 + name: Chopstick Trainers children: [] attributes: - - age_group - color - - material - pattern -- id: hg-11-3-7-3 - name: Lunch Containers +- id: hg-11-10-6-3 + name: Chopsticks children: [] attributes: - - age_group - color - - material + - flatware_material - pattern -- id: hg-11-3-7-4 - name: Lunch Suitcases +- id: hg-11-10-6-4 + name: Flatware Sets children: [] attributes: - - age_group - color - - material + - flatware_pieces_included - pattern -- id: hg-11-5-4-1 - name: Bag Sealing Caps +- id: hg-11-10-6-5 + name: Forks children: [] attributes: + - accessory_size - color + - flatware_material - pattern -- id: hg-11-5-4-2 - name: Bag Sealing Clips +- id: hg-11-10-6-6 + name: Spoons children: [] attributes: + - accessory_size - color + - flatware_material - pattern -- id: hg-11-5-4-4 - name: Twist Ties +- id: hg-11-10-6-7 + name: Table Knives children: [] attributes: + - accessory_size + - blade_material + - edge_type - color + - handle_material - pattern -- id: hg-11-6-1-1 - name: Bread Pans - children: [] +- id: hg-11-10-7 + name: Serveware + children: + - hg-11-10-7-1 + - hg-11-10-7-2 + - hg-11-10-7-3 + - hg-11-10-7-4 + - hg-11-10-7-5 + - hg-11-10-7-6 + - hg-11-10-7-7 + - hg-11-10-7-8 + - hg-11-10-7-9 + - hg-11-10-7-10 + - hg-11-10-7-11 attributes: - color + - tableware_material - pattern -- id: hg-11-6-1-2 - name: Kneading Hooks +- id: hg-11-10-7-1 + name: Butter Dishes children: [] attributes: - - pattern - color -- id: hg-11-6-1-3 - name: Kneading Paddles + - tableware_material + - pattern +- id: hg-11-10-7-2 + name: Cake Boards children: [] attributes: - color + - tableware_material - pattern -- id: hg-11-6-2-7-2 - name: Cappuccinatores +- id: hg-11-10-7-3 + name: Cake Stands children: [] attributes: - color + - tableware_material - pattern -- id: hg-11-6-2-7-3 - name: Capsule Adapters +- id: hg-11-10-7-4 + name: Egg Cups children: [] attributes: - color + - tableware_material - pattern -- id: hg-11-6-2-7-5 - name: Chocolate Shakers +- id: hg-11-10-7-5 + name: Gravy Boats children: [] attributes: - color + - tableware_material - pattern -- id: hg-11-6-2-7-8 - name: Coffee Dispensers +- id: hg-11-10-7-6 + name: Punch Bowls children: [] attributes: - color + - tableware_material - pattern -- id: hg-11-6-2-7-9 - name: Coffee Dosers +- id: hg-11-10-7-7 + name: Serving Pitchers & Carafes children: [] attributes: - color + - tableware_material - pattern -- id: hg-11-6-2-7-10 - name: Coffee Making Kits +- id: hg-11-10-7-8 + name: Serving Platters children: [] attributes: - color + - tableware_material - pattern -- id: hg-11-6-2-7-12 - name: Cup Warmers + - shape +- id: hg-11-10-7-9 + name: Serving Trays children: [] attributes: - color + - tableware_material - pattern -- id: hg-11-6-2-7-13 - name: Drip Tray Covers - children: [] + - shape +- id: hg-11-10-7-10 + name: Sugar Bowls & Creamers + children: + - hg-11-10-7-10-1 + - hg-11-10-7-10-2 attributes: - color + - tableware_material - pattern -- id: hg-11-6-2-7-14 - name: Drip Trays +- id: hg-11-10-7-10-1 + name: Sugar Bowls children: [] attributes: - color + - tableware_material - pattern -- id: hg-11-6-2-7-15 - name: Drippers +- id: hg-11-10-7-10-2 + name: Sugar Creamers children: [] attributes: - color + - tableware_material - pattern -- id: hg-11-6-2-7-16 - name: Dump Boxes +- id: hg-11-10-7-11 + name: Tureens children: [] attributes: + - color + - tableware_material - pattern +- id: hg-11-10-8 + name: Serveware Accessories + children: + - hg-11-10-8-1 + - hg-11-10-8-2 + - hg-11-10-8-3 + attributes: - color -- id: hg-11-6-2-7-20 - name: Gaskets + - tableware_material + - pattern +- id: hg-11-10-8-1 + name: Punch Bowl Stands children: [] attributes: - color + - tableware_material - pattern -- id: hg-11-6-2-7-21 - name: Handles +- id: hg-11-10-8-2 + name: Tureen Lids children: [] attributes: - color + - tableware_material - pattern -- id: hg-11-6-2-7-23 - name: Knobs +- id: hg-11-10-8-3 + name: Tureen Stands children: [] attributes: - color + - tableware_material - pattern -- id: hg-11-6-2-7-24 - name: Lids - children: [] +- id: hg-11-10-9 + name: Tablecloth Clips & Weights + children: + - hg-11-10-9-1 + - hg-11-10-9-2 attributes: - color - pattern -- id: hg-11-6-2-7-28 - name: Milk Systems +- id: hg-11-10-9-1 + name: Tablecloth Clips children: [] attributes: - color - pattern -- id: hg-11-6-2-7-29 - name: Milk Tubes +- id: hg-11-10-9-2 + name: Tablecloth Weights children: [] attributes: - color - pattern -- id: hg-11-6-2-7-32 - name: Rubber Foots +- id: hg-11-10-10 + name: Trivets children: [] attributes: - color + - tableware_material - pattern -- id: hg-11-6-2-7-33 - name: Sliding Bases - children: [] +- id: hg-12 + name: Lawn & Garden + children: + - hg-12-1 + - hg-12-2 + - hg-12-3 + - hg-12-4 + - hg-12-5 + - hg-12-6 attributes: - color - pattern -- id: hg-11-6-2-7-34 - name: Splash Guards - children: [] +- id: hg-12-1 + name: Gardening + children: + - hg-12-1-1 + - hg-12-1-2 + - hg-12-1-3 + - hg-12-1-4 + - hg-12-1-5 + - hg-12-1-6 + - hg-12-1-7 + - hg-12-1-8 + - hg-12-1-9 + - hg-12-1-10 + - hg-12-1-11 + - hg-12-1-12 + - hg-12-1-13 + - hg-12-1-14 + - hg-12-1-15 + - hg-12-1-16 + - hg-12-1-17 + - hg-12-1-18 attributes: - color - pattern -- id: hg-11-6-2-7-35 - name: Spout Covers - children: [] +- id: hg-12-1-1 + name: Composting + children: + - hg-12-1-1-1 + - hg-12-1-1-2 + - hg-12-1-1-3 attributes: - color - pattern -- id: hg-11-6-2-7-38 - name: Water Containers +- id: hg-12-1-1-1 + name: Compost children: [] attributes: - color + - gardening_use - pattern -- id: hg-11-6-2-7-39 - name: Water Spouts +- id: hg-12-1-1-2 + name: Compost Aerators children: [] attributes: - color + - material - pattern -- id: hg-11-6-3-1 - name: Cooktop Cleaning Kits +- id: hg-12-1-1-3 + name: Composters children: [] attributes: - color - material - pattern -- id: hg-11-6-3-2 - name: Cooktop Protectors +- id: hg-12-1-2 + name: Disease Control children: [] attributes: - color - - material - pattern -- id: hg-11-6-3-3 - name: Oven Gloves + - pest_control_method + - suitable_for_pest_type +- id: hg-12-1-3 + name: Fertilizers children: [] attributes: + - application_method - color + - gardening_use + - nutrient_content - pattern - - handwear_material -- id: hg-11-6-3-4 - name: Oven Liners + - suitable_space +- id: hg-12-1-4 + name: Garden Pot Saucers & Trays children: [] attributes: - color - - material - pattern -- id: hg-11-6-3-5 - name: Racks - children: [] + - shape +- id: hg-12-1-5 + name: Gardening Accessories + children: + - hg-12-1-5-1 + - hg-12-1-5-2 + - hg-12-1-5-3 attributes: - color - - material - pattern -- id: hg-11-6-3-6 - name: Range Hood Filters - children: [] +- id: hg-12-1-5-1 + name: Gardening Scooters, Seats & Kneelers + children: + - hg-12-1-5-1-1 + - hg-12-1-5-1-2 + - hg-12-1-5-1-3 attributes: - color - - material - pattern -- id: hg-11-6-4-1 - name: Cotton Candy Bags +- id: hg-12-1-5-1-1 + name: Gardening Kneeler children: [] attributes: - color - pattern -- id: hg-11-6-4-2 - name: Cotton Candy Cones +- id: hg-12-1-5-1-2 + name: Gardening Scooters children: [] attributes: - color - pattern -- id: hg-11-6-4-5 - name: Cotton Candy Sugar +- id: hg-12-1-5-1-3 + name: Gardening Seats children: [] attributes: - color - pattern -- id: hg-11-6-5-1 - name: Deep Fryer Baskets +- id: hg-12-1-5-2 + name: Gardening Totes children: [] attributes: - color + - bag_case_material - pattern -- id: hg-11-6-5-4 - name: Deep Fryer Lids +- id: hg-12-1-5-3 + name: Potting Benches children: [] attributes: - color + - material - pattern -- id: hg-11-6-6-1 - name: Dishwasher Accessories - children: [] +- id: hg-12-1-6 + name: Gardening Tool Accessories + children: + - hg-12-1-6-1 + - hg-12-1-6-2 + - hg-12-1-6-3 attributes: - color - pattern -- id: hg-11-6-6-2 - name: Dishwasher Parts +- id: hg-12-1-6-1 + name: Gardening Tool Handles children: [] attributes: - color + - compatible_gardening_tool - pattern -- id: hg-11-6-7-1 - name: Electric Kettle Bases +- id: hg-12-1-6-2 + name: Gardening Tool Heads children: [] attributes: - color + - compatible_gardening_tool - pattern -- id: hg-11-6-7-3 - name: Electric Kettle Lids - children: [] +- id: hg-12-1-6-3 + name: Wheelbarrow Parts + children: + - hg-12-1-6-3-1 + - hg-12-1-6-3-2 + - hg-12-1-6-3-3 + - hg-12-1-6-3-4 + - hg-12-1-6-3-5 attributes: - color - pattern -- id: hg-11-6-7-4 - name: Electric Kettle Lime Catchers +- id: hg-12-1-6-3-1 + name: Wheelbarrow Handles children: [] attributes: - color - pattern -- id: hg-11-6-8-1 - name: Glass Lids +- id: hg-12-1-6-3-2 + name: Wheelbarrow Tires children: [] attributes: - color - pattern -- id: hg-11-6-8-2 - name: Oil Sprayers +- id: hg-12-1-6-3-3 + name: Wheelbarrow Trays children: [] attributes: - - pattern - color -- id: hg-11-6-8-3 - name: Steaming Racks + - pattern +- id: hg-12-1-6-3-4 + name: Wheelbarrow Tubes children: [] attributes: - color - pattern -- id: hg-11-6-9-1-1 - name: Chafing Fuel Cans +- id: hg-12-1-6-3-5 + name: Wheelbarrow Wheels children: [] attributes: - color - pattern -- id: hg-11-6-9-1-2 - name: Fireplace Fuel Cans - children: [] +- id: hg-12-1-7 + name: Gardening Tools + children: + - hg-12-1-7-1 + - hg-12-1-7-2 + - hg-12-1-7-3 + - hg-12-1-7-4 + - hg-12-1-7-5 + - hg-12-1-7-6 + - hg-12-1-7-7 + - hg-12-1-7-8 + - hg-12-1-7-9 + - hg-12-1-7-10 + - hg-12-1-7-11 + - hg-12-1-7-12 + - hg-12-1-7-13 attributes: - color - pattern -- id: hg-11-6-9-1-3 - name: Fondue Fuel Cans - children: [] +- id: hg-12-1-7-1 + name: Bulb Planting Tools + children: + - hg-12-1-7-1-2 + - hg-12-1-7-1-3 attributes: + - blade_material - color + - handle_material - pattern -- id: hg-11-6-9-1-5 - name: Sterno Cans +- id: hg-12-1-7-1-2 + name: Dibblers children: [] attributes: + - blade_material - color + - handle_material - pattern -- id: hg-11-6-11 - name: Food Processor Accessories - children: - - hg-11-6-11-1 - - hg-11-6-11-9 - - hg-11-6-11-11 - - hg-11-6-11-12 - - hg-11-6-11-13 - - hg-11-6-11-14 - - hg-11-6-11-15 - - hg-11-6-11-16 - - hg-11-6-11-20 - - hg-11-6-11-21 - - hg-11-6-11-22 - - hg-11-6-11-23 - - hg-11-6-11-26 - - hg-11-6-11-29 - - hg-11-6-11-33 - - hg-11-6-11-34 - - hg-11-6-11-35 - - hg-11-6-11-41 - - hg-11-6-11-46 - - hg-11-6-11-52 +- id: hg-12-1-7-1-3 + name: Diggers + children: [] attributes: + - blade_material - color + - handle_material - pattern - - suitable_for_food_processor_type -- id: hg-11-6-11-1 - name: Attachment Sets - children: [] +- id: hg-12-1-7-2 + name: Cultivating Tools + children: + - hg-12-1-7-2-1 + - hg-12-1-7-2-2 attributes: - color - pattern - - suitable_for_food_processor_type -- id: hg-11-6-11-9 - name: Cord Storage Trays +- id: hg-12-1-7-2-1 + name: Cultivators children: [] attributes: + - blade_material - color + - handle_material - pattern - - suitable_for_food_processor_type -- id: hg-11-6-11-11 - name: Cutting Discs +- id: hg-12-1-7-2-2 + name: Hoes children: [] attributes: + - blade_material - color + - handle_material - pattern - - suitable_for_food_processor_type -- id: hg-11-6-11-12 - name: Double Beater Sets +- id: hg-12-1-7-3 + name: Gardening Forks children: [] attributes: - color + - handle_material - pattern - - suitable_for_food_processor_type -- id: hg-11-6-11-13 - name: Dough Hooks - children: [] + - teeth_material +- id: hg-12-1-7-4 + name: Gardening Sickles & Machetes + children: + - hg-12-1-7-4-1 + - hg-12-1-7-4-2 attributes: - color - pattern - - suitable_for_food_processor_type -- id: hg-11-6-11-14 - name: Dough Scrapers +- id: hg-12-1-7-4-1 + name: Gardening Machetes children: [] attributes: + - blade_material - color + - handle_material - pattern - - suitable_for_food_processor_type -- id: hg-11-6-11-15 - name: Drum Grater Sets +- id: hg-12-1-7-4-2 + name: Gardening Sickles children: [] attributes: + - blade_material - color + - handle_material - pattern - - suitable_for_food_processor_type -- id: hg-11-6-11-16 - name: Emulsifying Discs +- id: hg-12-1-7-5 + name: Gardening Trowels children: [] attributes: - - suitable_for_food_processor_type + - blade_material - color + - handle_material - pattern -- id: hg-11-6-11-20 - name: Fruit Press Attachments +- id: hg-12-1-7-6 + name: Lawn & Garden Sprayers children: [] attributes: - color - pattern - - suitable_for_food_processor_type -- id: hg-11-6-11-21 - name: Granulating Discs - children: [] +- id: hg-12-1-7-7 + name: Lawn Rollers + children: + - hg-12-1-7-7-1 + - hg-12-1-7-7-2 attributes: - color - pattern - - suitable_for_food_processor_type -- id: hg-11-6-11-22 - name: Grinder Attachments +- id: hg-12-1-7-7-1 + name: Push Lawn Rollers children: [] attributes: - color - pattern - - suitable_for_food_processor_type -- id: hg-11-6-11-23 - name: Heat Shields +- id: hg-12-1-7-7-2 + name: Tow Behind Lawn Rollers children: [] attributes: - color - pattern - - suitable_for_food_processor_type -- id: hg-11-6-11-26 - name: Kneading Tools +- id: hg-12-1-7-8 + name: Pruning Saws children: [] attributes: + - blade_material - color + - handle_material - pattern - - suitable_for_food_processor_type -- id: hg-11-6-11-29 - name: Mincer Attachments +- id: hg-12-1-7-9 + name: Pruning Shears children: [] attributes: - - pattern - - suitable_for_food_processor_type + - blade_material - color -- id: hg-11-6-11-33 - name: Pasta Shaper Attachments - children: [] - attributes: + - cutting_method + - handle_material - pattern - - suitable_for_food_processor_type - - color -- id: hg-11-6-11-34 - name: Peelers +- id: hg-12-1-7-10 + name: Rakes children: [] attributes: - color + - handle_material - pattern - - suitable_for_food_processor_type -- id: hg-11-6-11-35 - name: Pushers - children: [] + - teeth_material +- id: hg-12-1-7-11 + name: Shovels & Spades + children: + - hg-12-1-7-11-1 + - hg-12-1-7-11-2 attributes: - color - pattern - - suitable_for_food_processor_type -- id: hg-11-6-11-41 - name: Splash Guards +- id: hg-12-1-7-11-1 + name: Shovels children: [] attributes: + - blade_material - color + - handle_material - pattern - - suitable_for_food_processor_type -- id: hg-11-6-11-46 - name: Strainer Attachments +- id: hg-12-1-7-11-2 + name: Spades children: [] attributes: + - blade_material - color + - handle_material - pattern - - suitable_for_food_processor_type -- id: hg-11-6-11-52 - name: Vegetable Sheet Cutter Attachments +- id: hg-12-1-7-12 + name: Spreaders children: [] attributes: - color - pattern - - suitable_for_food_processor_type -- id: hg-11-6-12-2 - name: Freezer Door Gaskets + - tank_material +- id: hg-12-1-7-13 + name: Wheelbarrows children: [] attributes: - color + - material - pattern -- id: hg-11-6-12-3 - name: Freezer Door Handles +- id: hg-12-1-8 + name: Greenhouses children: [] attributes: - color + - frame_material - pattern -- id: hg-11-6-12-4 - name: Freezer Shelves + - screen_material +- id: hg-12-1-9 + name: Herbicides children: [] attributes: - color + - ingredients - pattern -- id: hg-11-6-12-5 - name: Freezer Thermometers + - targeted_pests +- id: hg-12-1-10 + name: Landscape Fabric children: [] attributes: - color - pattern -- id: hg-11-6-13-4 - name: Stoppers - children: [] +- id: hg-12-1-11 + name: Landscape Fabric Accessories + children: + - hg-12-1-11-1 + - hg-12-1-11-2 attributes: - color - pattern -- id: hg-11-6-15-1 - name: Ice Containers - children: [] +- id: hg-12-1-11-1 + name: Landscape Fabric Staples & Pins + children: + - hg-12-1-11-1-1 + - hg-12-1-11-1-2 attributes: - color - pattern -- id: hg-11-6-15-2 - name: Ice Molds +- id: hg-12-1-11-1-1 + name: Landscape Fabric Pins children: [] attributes: - color - pattern -- id: hg-11-6-16-3 - name: Ice Maker Scoops +- id: hg-12-1-11-1-2 + name: Landscape Fabric Staples children: [] attributes: - color - pattern -- id: hg-11-6-17-3 - name: Juice Collectors +- id: hg-12-1-11-2 + name: Landscape Fabric Tape children: [] attributes: - color - pattern -- id: hg-11-6-17-8 - name: Pulp Containers - children: [] +- id: hg-12-1-12 + name: Mulch + children: + - hg-12-1-12-1 + - hg-12-1-12-2 + - hg-12-1-12-3 attributes: - color - pattern -- id: hg-11-6-17-10 - name: Pusher Bodies +- id: hg-12-1-12-1 + name: Inorganic Mulch children: [] attributes: - color - pattern -- id: hg-11-6-18-1 - name: Baking Trays +- id: hg-12-1-12-2 + name: Living Mulch children: [] attributes: - color - pattern -- id: hg-11-6-18-8 - name: Splatter Covers +- id: hg-12-1-12-3 + name: Organic Mulch children: [] attributes: - color - pattern -- id: hg-11-6-18-9 - name: Thawing Plates - children: [] +- id: hg-12-1-13 + name: Plant Cages & Supports + children: + - hg-12-1-13-1 + - hg-12-1-13-2 attributes: - color + - plant_support_material - pattern -- id: hg-11-6-18-11 - name: Turntable Plates +- id: hg-12-1-13-1 + name: Plant Cages children: [] attributes: - color + - plant_support_material - pattern -- id: hg-11-6-19-1 - name: Barbecue Briquettes - children: - - hg-11-6-19-1-1 - - hg-11-6-19-1-2 - - hg-11-6-19-1-3 - - hg-11-6-19-1-4 +- id: hg-12-1-13-2 + name: Plant Supports + children: [] attributes: - color + - plant_support_material - pattern -- id: hg-11-6-19-1-1 - name: Binchotan Charcoal +- id: hg-12-1-14 + name: Plant Stands children: [] attributes: - color + - material - pattern -- id: hg-11-6-19-1-2 - name: Charcoal Briquettes +- id: hg-12-1-15 + name: Pot & Planter Liners children: [] attributes: - color + - plant_support_material - pattern -- id: hg-11-6-19-1-3 - name: Lump Charcoals - children: [] +- id: hg-12-1-16 + name: Pots & Planters + children: + - hg-12-1-16-1 + - hg-12-1-16-2 attributes: - color + - plant_support_material - pattern -- id: hg-11-6-19-1-4 - name: Thai Charcoals +- id: hg-12-1-16-1 + name: Planters children: [] attributes: - color + - plant_support_material - pattern -- id: hg-11-6-19-5-1 - name: Outdoor Grill Racks +- id: hg-12-1-16-2 + name: Pots children: [] attributes: - color + - plant_support_material - pattern -- id: hg-11-6-19-5-2 - name: Outdoor Grill Toppers +- id: hg-12-1-17 + name: Rain Barrels children: [] attributes: - color + - material - pattern -- id: hg-11-6-19-6-1 - name: Grill Burners - children: [] +- id: hg-12-1-18 + name: Sands & Soils + children: + - hg-12-1-18-1 + - hg-12-1-18-2 attributes: - color - pattern -- id: hg-11-6-19-6-2 - name: Grill Grates +- id: hg-12-1-18-1 + name: Sand children: [] attributes: - color - pattern -- id: hg-11-6-19-6-3 - name: Grill Igniters +- id: hg-12-1-18-2 + name: Soil children: [] attributes: - - pattern - color -- id: hg-11-6-19-6-4 - name: Grill Thermometers - children: [] + - gardening_use + - pattern +- id: hg-12-2 + name: Outdoor Living + children: + - hg-12-2-1 + - hg-12-2-2 + - hg-12-2-3 + - hg-12-2-4 + - hg-12-2-5 + - hg-12-2-6 + - hg-12-2-7 + - hg-12-2-8 + - hg-12-2-9 + - hg-12-2-10 attributes: - color - pattern -- id: hg-11-6-19-7-1 - name: Outdoor Grill Baskets - children: [] +- id: hg-12-2-1 + name: Awning Accessories + children: + - hg-12-2-1-1 + - hg-12-2-1-6 + - hg-12-2-1-7 + - hg-12-2-1-8 + - hg-12-2-1-9 + - hg-12-2-1-10 + - hg-12-2-1-11 + - hg-12-2-1-12 + - hg-12-2-1-13 + - hg-12-2-1-14 attributes: - color + - material - pattern -- id: hg-11-6-19-7-2 - name: Outdoor Grill Spits +- id: hg-12-2-1-1 + name: Awning Arms children: [] attributes: - color + - material - pattern -- id: hg-11-6-19-9-1 - name: Smoking Chips +- id: hg-12-2-1-6 + name: Hanger Clips children: [] attributes: - color + - material - pattern -- id: hg-11-6-19-9-2 - name: Smoking Pellets +- id: hg-12-2-1-7 + name: Mesh Panels children: [] attributes: - color + - material - pattern -- id: hg-11-6-20-7 - name: Mixing Paddles +- id: hg-12-2-1-8 + name: Pull Rods children: [] attributes: - color + - hardware_material - pattern -- id: hg-11-6-20-8 - name: Pasta Drying Racks +- id: hg-12-2-1-9 + name: Pull Straps children: [] attributes: - color + - material - pattern -- id: hg-11-6-20-10 - name: Shaping Attachments +- id: hg-12-2-1-10 + name: Pole Rings children: [] attributes: - color + - hardware_material - pattern -- id: hg-11-6-20-13 - name: Squeezing Bars +- id: hg-12-2-1-11 + name: Roof Linings children: [] attributes: - color + - cover_material - pattern -- id: hg-11-6-21-1 - name: Popcorn Bags +- id: hg-12-2-1-12 + name: Side Walls children: [] attributes: - color + - material - pattern -- id: hg-11-6-21-2 - name: Popcorn Kernels +- id: hg-12-2-1-13 + name: Storage Bags children: [] attributes: - color + - bag_case_material - pattern -- id: hg-11-6-21-4 - name: Popcorn Seasoning - children: [] - attributes: - - pattern - - color -- id: hg-11-6-22-1 - name: Fire Mats +- id: hg-12-2-1-14 + name: Structural Frames children: [] attributes: - color + - material - pattern -- id: hg-11-6-22-2 - name: Fire Starters +- id: hg-12-2-2 + name: Awnings children: [] attributes: + - awning_construction_type + - cover_color + - cover_material + - cover_pattern + - frame_color + - frame_material + - frame_pattern + - awning_design +- id: hg-12-2-3 + name: Hammock Parts & Accessories + children: + - hg-12-2-3-1 + - hg-12-2-3-2 + attributes: - color + - compatible_hammock_design + - material - pattern -- id: hg-11-6-22-5 - name: Stove Bases +- id: hg-12-2-3-1 + name: Hammock Accessories children: [] attributes: - color + - compatible_hammock_design + - material - pattern -- id: hg-11-6-22-7 - name: Windscreens +- id: hg-12-2-3-2 + name: Hammock Parts children: [] attributes: - color + - compatible_hammock_design + - material - pattern -- id: hg-11-6-23-3 - name: Filters +- id: hg-12-2-4 + name: Hammocks children: [] attributes: - color + - material - pattern -- id: hg-11-6-23-4 - name: Grease Cups - children: [] +- id: hg-12-2-5 + name: Outdoor Blankets + children: + - hg-12-2-5-1 + - hg-12-2-5-2 + - hg-12-2-5-3 attributes: - - pattern - color -- id: hg-11-6-23-5 - name: Vents + - material + - pattern +- id: hg-12-2-5-1 + name: Beach Mats children: [] attributes: - color + - material - pattern -- id: hg-11-6-24-2 - name: Refrigerator Thermometers +- id: hg-12-2-5-2 + name: Picnic Blankets children: [] attributes: - color + - material - pattern -- id: hg-11-6-24-3 - name: Shelves +- id: hg-12-2-5-3 + name: Poncho Liners children: [] attributes: - color + - material - pattern -- id: hg-11-6-25-2 - name: Bottles - children: [] +- id: hg-12-2-6 + name: Outdoor Structures + children: + - hg-12-2-6-1 + - hg-12-2-6-2 + - hg-12-2-6-3 + - hg-12-2-6-4 + - hg-12-2-6-5 attributes: - color - pattern -- id: hg-11-6-25-4 - name: Chargers - children: [] +- id: hg-12-2-6-1 + name: Canopies & Gazebos + children: + - hg-12-2-6-1-1 + - hg-12-2-6-1-2 attributes: - color + - material - pattern -- id: hg-11-6-25-7 - name: Syrups +- id: hg-12-2-6-1-1 + name: Canopies children: [] attributes: - color + - material - pattern -- id: hg-11-6-27-1 - name: Toaster Covers +- id: hg-12-2-6-1-2 + name: Gazebos children: [] attributes: - color + - material - pattern -- id: hg-11-6-27-2 - name: Toaster Crumb Trays - children: [] +- id: hg-12-2-6-2 + name: Canopy & Gazebo Accessories + children: + - hg-12-2-6-2-1 + - hg-12-2-6-2-2 + - hg-12-2-6-2-3 + - hg-12-2-6-2-4 + - hg-12-2-6-2-5 attributes: - color - pattern -- id: hg-11-6-27-4 - name: Toaster Racks +- id: hg-12-2-6-2-1 + name: Canopy & Gazebo Enclosure Kits children: [] attributes: - color - pattern -- id: hg-11-6-27-5 - name: Toaster Tongs +- id: hg-12-2-6-2-2 + name: Canopy & Gazebo Frames children: [] attributes: - color + - material - pattern -- id: hg-11-6-29-1 - name: Crêpe Plates +- id: hg-12-2-6-2-3 + name: Canopy & Gazebo Tops children: [] attributes: - color + - material - pattern -- id: hg-11-6-29-2 - name: Sandwich Plates +- id: hg-12-2-6-2-4 + name: Canopy Poles children: [] attributes: - color + - hardware_material - pattern -- id: hg-11-6-29-3 - name: Waffle Plates +- id: hg-12-2-6-2-5 + name: Canopy Weights children: [] attributes: - - pattern - color -- id: hg-11-6-32-2 - name: Flavorings - children: [] + - pattern +- id: hg-12-2-6-3 + name: Garden Arches, Trellises, Arbors & Pergolas + children: + - hg-12-2-6-3-1 + - hg-12-2-6-3-2 + - hg-12-2-6-3-3 + - hg-12-2-6-3-4 attributes: - color + - material - pattern -- id: hg-11-6-32-3 - name: Pots +- id: hg-12-2-6-3-1 + name: Arbors children: [] attributes: - color + - material - pattern -- id: hg-11-7-12-1 - name: Electric Skillets +- id: hg-12-2-6-3-2 + name: Arches children: [] attributes: - color + - material - pattern -- id: hg-11-7-12-2 - name: Electric Woks +- id: hg-12-2-6-3-3 + name: Pergolas children: [] attributes: - color + - material - pattern -- id: hg-11-7-16-1 - name: Food Grinders +- id: hg-12-2-6-3-4 + name: Trellises children: [] attributes: - color + - material - pattern -- id: hg-11-7-16-2 - name: Food Mills +- id: hg-12-2-6-4 + name: Garden Bridges children: [] attributes: - - pattern - color -- id: hg-11-7-17-1 - name: Food Blenders - children: [] + - material + - pattern +- id: hg-12-2-6-5 + name: Sheds, Garages & Carports + children: + - hg-12-2-6-5-1 + - hg-12-2-6-5-2 + - hg-12-2-6-5-3 attributes: - color + - material - pattern -- id: hg-11-7-17-2 - name: Food Mixers +- id: hg-12-2-6-5-1 + name: Carports children: [] attributes: - color + - material - pattern -- id: hg-11-7-27-1 - name: Ice Crushers +- id: hg-12-2-6-5-2 + name: Garages children: [] attributes: - color + - material - pattern -- id: hg-11-7-27-2 - name: Ice Shavers +- id: hg-12-2-6-5-3 + name: Sheds children: [] attributes: - color + - material - pattern -- id: hg-11-7-30-1 - name: Electric Knife Sharpeners - children: [] +- id: hg-12-2-7 + name: Outdoor Umbrella & Sunshade Accessories + children: + - hg-12-2-7-1 + - hg-12-2-7-2 + - hg-12-2-7-3 + - hg-12-2-7-4 + - hg-12-2-7-5 attributes: - color - pattern -- id: hg-11-7-30-2 - name: Honing Steels +- id: hg-12-2-7-1 + name: Outdoor Umbrella & Sunshade Fabric children: [] attributes: - - pattern - color -- id: hg-11-7-30-3 - name: Manual Knife Sharpeners + - fabric + - pattern +- id: hg-12-2-7-2 + name: Outdoor Umbrella Bases children: [] attributes: - color - pattern -- id: hg-11-7-30-4 - name: Pull-Through Knife Sharpeners + - shape +- id: hg-12-2-7-3 + name: Outdoor Umbrella Covers children: [] attributes: - color - pattern -- id: hg-11-7-30-5 - name: Sharpening Stones +- id: hg-12-2-7-4 + name: Outdoor Umbrella Enclosure Kits children: [] attributes: - color - pattern -- id: hg-11-8-6-1 - name: Decorating Bags +- id: hg-12-2-7-5 + name: Outdoor Umbrella Lights children: [] attributes: - color + - light_color + - light_temperature - pattern -- id: hg-11-8-6-3 - name: Turntables - children: [] +- id: hg-12-2-8 + name: Outdoor Umbrellas & Sunshades + children: + - hg-12-2-8-1 + - hg-12-2-8-2 attributes: + - canopy_material - color - pattern -- id: hg-11-8-12-1 - name: Colanders + - shape +- id: hg-12-2-8-1 + name: Outdoor Umbrellas children: [] attributes: - - pattern + - canopy_material - color - - tool_utensil_material -- id: hg-11-8-12-2 - name: Strainers + - pattern + - shape +- id: hg-12-2-8-2 + name: Sunshades children: [] attributes: + - canopy_material - color - pattern - - tool_utensil_material -- id: hg-11-8-16-1 - name: Calibration Tools - children: [] + - shape +- id: hg-12-2-9 + name: Porch Swing Accessories + children: + - hg-12-2-9-1 + - hg-12-2-9-2 + - hg-12-2-9-3 + - hg-12-2-9-4 + - hg-12-2-9-5 attributes: - color - pattern -- id: hg-11-8-16-5 - name: Replacement Probes +- id: hg-12-2-9-1 + name: Porch Swing Chains children: [] attributes: - color - pattern -- id: hg-11-8-16-6 - name: Wireless Receivers +- id: hg-12-2-9-2 + name: Porch Swing Covers children: [] attributes: - color - pattern -- id: hg-11-8-17-1 - name: Candy Thermometers +- id: hg-12-2-9-3 + name: Porch Swing Cushions children: [] attributes: - color - - display_technology - pattern - - units_of_measurement -- id: hg-11-8-17-2 - name: Instant-Read Thermometers +- id: hg-12-2-9-4 + name: Porch Swing Hangers children: [] attributes: - - pattern - color - - display_technology - - units_of_measurement -- id: hg-11-8-17-3 - name: Oven Thermometers + - pattern +- id: hg-12-2-9-5 + name: Porch Swing Stands children: [] attributes: - color - - display_technology - pattern - - units_of_measurement -- id: hg-11-8-17-4 - name: Probe Thermometers +- id: hg-12-2-10 + name: Porch Swings children: [] attributes: - color - - display_technology - pattern - - units_of_measurement -- id: hg-11-8-17-5 - name: Wireless Thermometers - children: [] +- id: hg-12-3 + name: Outdoor Power Equipment + children: + - hg-12-3-1 + - hg-12-3-2 + - hg-12-3-3 + - hg-12-3-4 + - hg-12-3-5 + - hg-12-3-6 + - hg-12-3-7 + - hg-12-3-8 + - hg-12-3-9 + - hg-12-3-10 + - hg-12-3-11 + - hg-12-3-12 + - hg-12-3-13 + - hg-12-3-14 + - hg-12-3-15 attributes: - color - - display_technology - pattern - - units_of_measurement -- id: hg-11-8-22-1 - name: Dish Racks + - power_source +- id: hg-12-3-1 + name: Chainsaws children: [] attributes: - color - pattern -- id: hg-11-8-22-2 - name: Drain Boards + - power_source +- id: hg-12-3-2 + name: Grass Edgers children: [] attributes: - color - pattern -- id: hg-11-8-28-1-1 - name: Crab Crackers + - power_source +- id: hg-12-3-3 + name: Hedge Trimmers children: [] attributes: - color - pattern -- id: hg-11-8-28-1-2 - name: Lobster Crackers - children: [] + - power_source +- id: hg-12-3-4 + name: Lawn Aerators & Dethatchers + children: + - hg-12-3-4-1 + - hg-12-3-4-2 attributes: - color - pattern -- id: hg-11-8-28-2-2 - name: Electric Nutcrackers + - power_source +- id: hg-12-3-4-1 + name: Dethatchers children: [] attributes: - color - pattern -- id: hg-11-8-28-2-3 - name: Handheld Nutcrackers + - power_source +- id: hg-12-3-4-2 + name: Lawn Aerators children: [] attributes: - color - pattern -- id: hg-11-8-28-2-4 - name: Lever Nutcrackers - children: [] + - power_source +- id: hg-12-3-5 + name: Lawn Mowers + children: + - hg-12-3-5-1 + - hg-12-3-5-2 + - hg-12-3-5-3 + - hg-12-3-5-4 attributes: - color - pattern -- id: hg-11-8-28-2-5 - name: Nut Picks + - power_source +- id: hg-12-3-5-1 + name: Riding Mowers children: [] attributes: - color - pattern -- id: hg-11-8-28-2-6 - name: Plier Nutcrackers + - power_source +- id: hg-12-3-5-2 + name: Robotic Mowers children: [] attributes: - color - pattern -- id: hg-11-8-30-1 - name: Food Graters + - power_source +- id: hg-12-3-5-3 + name: Tow-Behind Mowers children: [] attributes: - color - pattern - - tool_utensil_material -- id: hg-11-8-30-2 - name: Food Zesters + - power_source +- id: hg-12-3-5-4 + name: Walk-Behind Mowers children: [] attributes: - color - pattern - - tool_utensil_material -- id: hg-11-8-31-1 - name: Food Corers + - power_source +- id: hg-12-3-6 + name: Lawn Vacuums children: [] attributes: - color - pattern -- id: hg-11-8-31-2 - name: Food Peelers + - power_source +- id: hg-12-3-7 + name: Leaf Blowers children: [] attributes: - color - pattern -- id: hg-11-8-33-1 - name: Food Skewers + - power_source +- id: hg-12-3-8 + name: Outdoor Power Equipment Base Units children: [] attributes: - color - pattern - - tool_utensil_material -- id: hg-11-8-33-2 - name: Food Sticks + - power_source +- id: hg-12-3-9 + name: Outdoor Power Equipment Sets children: [] attributes: - color + - outdoor_power_accessories_included - pattern - - tool_utensil_material -- id: hg-11-8-39-1 - name: Bread Knives + - power_source +- id: hg-12-3-10 + name: Power Sweepers children: [] attributes: - - blade_material - color - - handle_material - pattern -- id: hg-11-8-39-2 - name: Chef's Knives - children: [] + - power_source + - propulsion_type +- id: hg-12-3-11 + name: Power Tillers & Cultivators + children: + - hg-12-3-11-1 + - hg-12-3-11-2 attributes: - - blade_material - color - - handle_material + - material - pattern -- id: hg-11-8-39-3 - name: Paring Knives + - power_source +- id: hg-12-3-11-1 + name: Power Cultivators children: [] attributes: - - blade_material - color - - handle_material + - material - pattern -- id: hg-11-8-39-4 - name: Santoku Knives + - power_source +- id: hg-12-3-11-2 + name: Power Tillers children: [] attributes: - - handle_material - - pattern - - blade_material - color -- id: hg-11-8-39-5 - name: Serrated Knives + - material + - pattern + - power_source +- id: hg-12-3-12 + name: Pressure Washers children: [] attributes: - - blade_material - color - - handle_material - pattern -- id: hg-11-8-41-5-1 - name: Kitchen Utensil Holders + - power_source +- id: hg-12-3-13 + name: Snow Blowers children: [] attributes: - color - pattern -- id: hg-11-8-41-5-2 - name: Kitchen Utensil Racks + - power_source +- id: hg-12-3-14 + name: Tractors children: [] attributes: - color - pattern -- id: hg-11-8-41-6-1 - name: Knife Blocks + - power_source +- id: hg-12-3-15 + name: Weed Trimmers children: [] attributes: - color - pattern -- id: hg-11-8-41-6-2 - name: Knife Holders - children: [] + - power_source +- id: hg-12-4 + name: Outdoor Power Equipment Accessories + children: + - hg-12-4-1 + - hg-12-4-2 + - hg-12-4-3 + - hg-12-4-4 + - hg-12-4-5 + - hg-12-4-6 + - hg-12-4-7 + - hg-12-4-8 + - hg-12-4-9 + - hg-12-4-10 + - hg-12-4-11 attributes: - color - pattern -- id: hg-11-8-41-7-1 - name: Napkin Dispensers - children: [] +- id: hg-12-4-1 + name: Chainsaw Accessories + children: + - hg-12-4-1-1 + - hg-12-4-1-2 attributes: - color - pattern -- id: hg-11-8-41-7-2 - name: Napkin Holders +- id: hg-12-4-1-1 + name: Chainsaw Bars children: [] attributes: - color - pattern -- id: hg-11-8-41-8-1 - name: Paper Towel Dispensers +- id: hg-12-4-1-2 + name: Chainsaw Chains children: [] attributes: - color - pattern -- id: hg-11-8-41-8-2 - name: Paper Towel Holders - children: [] +- id: hg-12-4-2 + name: Grass Edger Accessories + children: + - hg-12-4-2-1 + - hg-12-4-2-2 + - hg-12-4-2-3 + - hg-12-4-2-4 + - hg-12-4-2-5 attributes: - color - pattern -- id: hg-11-8-41-11-1 - name: Straw Dispensers +- id: hg-12-4-2-1 + name: Edger Belts children: [] attributes: - color - pattern -- id: hg-11-8-41-11-2 - name: Straw Holders +- id: hg-12-4-2-2 + name: Edger Blades children: [] attributes: - color - pattern -- id: hg-11-8-41-13-1 - name: Toothpick Dispensers +- id: hg-12-4-2-3 + name: Edger Guards children: [] attributes: - color - pattern -- id: hg-11-8-41-13-2 - name: Toothpick Holders +- id: hg-12-4-2-4 + name: Edger Springs children: [] attributes: - color - pattern -- id: hg-11-8-41-14-1 - name: Flatware Trays +- id: hg-12-4-2-5 + name: Edger Wheels children: [] attributes: - color - pattern -- id: hg-11-8-41-14-2 - name: Utensil Trays - children: [] +- id: hg-12-4-3 + name: Hedge Trimmer Accessories + children: + - hg-12-4-3-3 + - hg-12-4-3-4 attributes: - color - pattern -- id: hg-11-8-48-1 - name: Measuring Cups +- id: hg-12-4-3-3 + name: Replacement Blades children: [] attributes: - color - pattern -- id: hg-11-8-48-2 - name: Measuring Spoons +- id: hg-12-4-3-4 + name: Tip Protectors children: [] attributes: - color - pattern -- id: hg-11-8-52-1 - name: Oil Dispensers - children: [] +- id: hg-12-4-4 + name: Lawn Mower Accessories + children: + - hg-12-4-4-1 + - hg-12-4-4-2 + - hg-12-4-4-3 + - hg-12-4-4-4 + - hg-12-4-4-5 + - hg-12-4-4-6 + - hg-12-4-4-7 + - hg-12-4-4-8 + - hg-12-4-4-9 + - hg-12-4-4-10 + - hg-12-4-4-11 + - hg-12-4-4-12 + - hg-12-4-4-13 attributes: - color - pattern - - tool_utensil_material -- id: hg-11-8-52-2 - name: Vinegar Dispensers - children: [] +- id: hg-12-4-4-1 + name: Brush Mower Attachments + children: + - hg-12-4-4-1-2 + - hg-12-4-4-1-3 + - hg-12-4-4-1-4 attributes: - color - pattern - - tool_utensil_material -- id: hg-11-8-55-1 - name: Pasta Molds +- id: hg-12-4-4-1-2 + name: Blades children: [] attributes: - color - - material - - pasta_shape_type - pattern -- id: hg-11-8-55-2 - name: Pasta Stamps +- id: hg-12-4-4-1-3 + name: Pulleys children: [] attributes: - color - - material - - pasta_shape_type - pattern -- id: hg-11-8-58-1 - name: Pizza Cutter Blades +- id: hg-12-4-4-1-4 + name: Spindles children: [] attributes: - color - pattern -- id: hg-11-8-58-4 - name: Pizza Cutter Stands +- id: hg-12-4-4-2 + name: Lawn Mower Bags children: [] attributes: - color - pattern -- id: hg-11-8-61-1-1 - name: Rolling Pin Covers +- id: hg-12-4-4-3 + name: Lawn Mower Belts children: [] attributes: - color - pattern -- id: hg-11-8-61-1-2 - name: Rolling Pin Sleeves +- id: hg-12-4-4-4 + name: Lawn Mower Blades children: [] attributes: - color - pattern -- id: hg-11-8-63-1 - name: Mixers +- id: hg-12-4-4-5 + name: Lawn Mower Covers children: [] attributes: - color - pattern - - tool_utensil_material -- id: hg-11-8-63-2 - name: Shakers +- id: hg-12-4-4-6 + name: Lawn Mower Mulch Kits children: [] attributes: - color - pattern - - tool_utensil_material -- id: hg-11-8-65-4-1 - name: French Fry Scoops - children: [] +- id: hg-12-4-4-7 + name: Lawn Mower Mulch Plugs & Plates + children: + - hg-12-4-4-7-1 + - hg-12-4-4-7-2 attributes: - color - pattern - - tool_utensil_material -- id: hg-11-8-65-4-2 - name: Popcorn Scoops +- id: hg-12-4-4-7-1 + name: Lawn Mower Mulch Plugs children: [] attributes: - - pattern - color - - tool_utensil_material -- id: hg-11-8-67-1 - name: Sink Grids + - pattern +- id: hg-12-4-4-7-2 + name: Lawn Mower Plates children: [] attributes: - color - pattern -- id: hg-11-8-67-2 - name: Sink Mats - children: [] +- id: hg-12-4-4-8 + name: Lawn Mower Pulleys & Idlers + children: + - hg-12-4-4-8-1 + - hg-12-4-4-8-2 attributes: - color - pattern -- id: hg-11-8-70-5 - name: Spice Grinder Replacement Parts +- id: hg-12-4-4-8-1 + name: Lawn Mower Idles children: [] attributes: - color - pattern -- id: hg-11-10-1-1 - name: Coffee Sets +- id: hg-12-4-4-8-2 + name: Lawn Mower Pulleys children: [] attributes: - - coffee_tea_set_pieces_included - color - pattern -- id: hg-11-10-1-2 - name: Tea Sets +- id: hg-12-4-4-9 + name: Lawn Mower Tire Tubes children: [] attributes: - - coffee_tea_set_pieces_included - color - pattern -- id: hg-11-10-2 - name: Coffee Servers & Teapots - children: - - hg-11-10-2-1 - - hg-11-10-2-2 - attributes: - - pattern - - color -- id: hg-11-10-2-1 - name: Coffee Servers +- id: hg-12-4-4-10 + name: Lawn Mower Tires children: [] attributes: - color - pattern -- id: hg-11-10-2-2 - name: Teapots +- id: hg-12-4-4-11 + name: Lawn Mower Wheels children: [] attributes: - color - pattern -- id: hg-11-10-3 - name: Condiment Shakers - children: - - hg-11-10-3-1 - - hg-11-10-3-2 - - hg-11-10-3-3 - - hg-11-10-3-4 +- id: hg-12-4-4-12 + name: Lawn Striping Kits + children: [] attributes: - color - pattern -- id: hg-11-10-3-1 - name: Cheese Shakers +- id: hg-12-4-4-13 + name: Lawn Sweepers children: [] attributes: - color - pattern -- id: hg-11-10-3-2 - name: Pepper Shakers - children: [] +- id: hg-12-4-5 + name: Leaf Blower Accessories + children: + - hg-12-4-5-1 attributes: - color - pattern -- id: hg-11-10-3-3 - name: Salt Shakers +- id: hg-12-4-5-1 + name: Leaf Blower Tubes children: [] attributes: - - pattern - color -- id: hg-11-10-3-4 - name: Shaker Sets - children: [] + - pattern +- id: hg-12-4-6 + name: Multifunction Outdoor Power Equipment Attachments + children: + - hg-12-4-6-1 + - hg-12-4-6-2 + - hg-12-4-6-3 + - hg-12-4-6-4 + - hg-12-4-6-5 + - hg-12-4-6-6 attributes: - color - pattern -- id: hg-11-10-6-1 - name: Cheese Knives +- id: hg-12-4-6-1 + name: Grass Edger Attachments children: [] attributes: - - accessory_size - color - pattern - - flatware_material -- id: hg-11-10-6-2-1 - name: Chopstick Cases +- id: hg-12-4-6-2 + name: Ground & Leaf Blower Attachments children: [] attributes: - color - pattern -- id: hg-11-10-6-2-3 - name: Chopstick Holders +- id: hg-12-4-6-3 + name: Hedge Trimmer Attachments children: [] attributes: - color - pattern -- id: hg-11-10-6-2-4 - name: Chopstick Trainers +- id: hg-12-4-6-4 + name: Pole Saw Attachments children: [] attributes: - color - pattern -- id: hg-11-10-7-10-1 - name: Sugar Bowls +- id: hg-12-4-6-5 + name: Tiller & Cultivator Attachments children: [] attributes: - color - pattern - - tableware_material -- id: hg-11-10-7-10-2 - name: Sugar Creamers +- id: hg-12-4-6-6 + name: Weed Trimmer Attachments children: [] attributes: - color - pattern - - tableware_material -- id: hg-11-10-9-1 - name: Tablecloth Clips +- id: hg-12-4-7 + name: Outdoor Power Equipment Batteries children: [] attributes: - color - pattern -- id: hg-11-10-9-2 - name: Tablecloth Weights - children: [] +- id: hg-12-4-8 + name: Pressure Washer Accessories + children: + - hg-12-4-8-4 + - hg-12-4-8-5 + - hg-12-4-8-7 + - hg-12-4-8-13 + - hg-12-4-8-15 + - hg-12-4-8-17 + - hg-12-4-8-18 + - hg-12-4-8-20 + - hg-12-4-8-21 + - hg-12-4-8-22 + - hg-12-4-8-23 + - hg-12-4-8-24 + - hg-12-4-8-29 attributes: - color - pattern -- id: hg-12-1-5-1-1 - name: Gardening Kneeler +- id: hg-12-4-8-4 + name: Cleaning Agents children: [] attributes: - color - pattern -- id: hg-12-1-5-1-2 - name: Gardening Scooters +- id: hg-12-4-8-5 + name: Cone Nozzles children: [] attributes: - color - pattern -- id: hg-12-1-5-1-3 - name: Gardening Seats +- id: hg-12-4-8-7 + name: Defoamers children: [] attributes: - color - pattern -- id: hg-12-1-6-3-1 - name: Wheelbarrow Handles +- id: hg-12-4-8-13 + name: Nozzles children: [] attributes: - color - pattern -- id: hg-12-1-6-3-2 - name: Wheelbarrow Tires +- id: hg-12-4-8-15 + name: Pistol Heads children: [] attributes: - color - pattern -- id: hg-12-1-6-3-3 - name: Wheelbarrow Trays +- id: hg-12-4-8-17 + name: Power Scrubbers children: [] attributes: - color - pattern -- id: hg-12-1-6-3-4 - name: Wheelbarrow Tubes +- id: hg-12-4-8-18 + name: Roof Cleaners children: [] attributes: - color - pattern -- id: hg-12-1-6-3-5 - name: Wheelbarrow Wheels +- id: hg-12-4-8-20 + name: Splash Guards children: [] attributes: - color - pattern -- id: hg-12-1-7-1-2 - name: Dibblers +- id: hg-12-4-8-21 + name: Spray Lances children: [] attributes: - color - - handle_material - pattern - - blade_material -- id: hg-12-1-7-1-3 - name: Diggers +- id: hg-12-4-8-22 + name: Straps children: [] attributes: - - blade_material - color - - handle_material - pattern -- id: hg-12-1-7-2-1 - name: Cultivators +- id: hg-12-4-8-23 + name: Suction Hoses children: [] attributes: - - blade_material - color - - handle_material - pattern -- id: hg-12-1-7-2-2 - name: Hoes +- id: hg-12-4-8-24 + name: Suction Nozzles children: [] attributes: - - blade_material - color - - handle_material - pattern -- id: hg-12-1-7-4-1 - name: Gardening Machetes +- id: hg-12-4-8-29 + name: Water Sand Blasters children: [] attributes: + - color - pattern - - blade_material +- id: hg-12-4-9 + name: Snow Blower Accessories + children: + - hg-12-4-9-1 + attributes: - color - - handle_material -- id: hg-12-1-7-4-2 - name: Gardening Sickles + - pattern +- id: hg-12-4-9-1 + name: Snow Blower Covers children: [] attributes: - - blade_material - color - - handle_material - pattern -- id: hg-12-1-7-7-1 - name: Push Lawn Rollers - children: [] +- id: hg-12-4-10 + name: Tractor Parts & Accessories + children: + - hg-12-4-10-1 + - hg-12-4-10-2 attributes: - color - pattern -- id: hg-12-1-7-7-2 - name: Tow Behind Lawn Rollers - children: [] +- id: hg-12-4-10-1 + name: Tractor Tires + children: + - hg-12-4-10-1-1 + - hg-12-4-10-1-2 + - hg-12-4-10-1-5 attributes: - color - pattern -- id: hg-12-1-7-11-1 - name: Shovels +- id: hg-12-4-10-1-1 + name: Garden Tractor Tires children: [] attributes: - - blade_material - color - - handle_material - pattern -- id: hg-12-1-7-11-2 - name: Spades +- id: hg-12-4-10-1-2 + name: Lawn Tractor Tires children: [] attributes: - - pattern - - blade_material - color - - handle_material -- id: hg-12-1-11-1-1 - name: Landscape Fabric Pins + - pattern +- id: hg-12-4-10-1-5 + name: Tractor Trailer Tires children: [] attributes: - color - pattern -- id: hg-12-1-11-1-2 - name: Landscape Fabric Staples +- id: hg-12-4-10-2 + name: Tractor Wheels children: [] attributes: - color - pattern -- id: hg-12-1-12-1 - name: Inorganic Mulch - children: [] +- id: hg-12-4-11 + name: Weed Trimmer Accessories + children: + - hg-12-4-11-1 + - hg-12-4-11-2 attributes: - color - pattern -- id: hg-12-1-12-2 - name: Living Mulch - children: [] +- id: hg-12-4-11-1 + name: Weed Trimmer Blades & Spools + children: + - hg-12-4-11-1-1 + - hg-12-4-11-1-2 attributes: - color - pattern -- id: hg-12-1-12-3 - name: Organic Mulch +- id: hg-12-4-11-1-1 + name: Weed Trimmer Blades children: [] attributes: - color - pattern -- id: hg-12-1-13-1 - name: Plant Cages +- id: hg-12-4-11-1-2 + name: Weed Trimmer Spools children: [] attributes: - - pattern - color - - plant_support_material -- id: hg-12-1-13-2 - name: Plant Supports + - pattern +- id: hg-12-4-11-2 + name: Weed Trimmer Spool Covers children: [] attributes: - color - pattern - - plant_support_material -- id: hg-12-1-16-1 - name: Planters - children: [] +- id: hg-12-5 + name: Snow Removal + children: + - hg-12-5-1 + - hg-12-5-2 attributes: - color - pattern - - plant_support_material -- id: hg-12-1-16-2 - name: Pots - children: [] +- id: hg-12-5-1 + name: Ice Scrapers & Snow Brushes + children: + - hg-12-5-1-1 + - hg-12-5-1-2 attributes: - color - pattern - - plant_support_material -- id: hg-12-2-1-1 - name: Awning Arms +- id: hg-12-5-1-1 + name: Ice Scrapers children: [] attributes: - color - - material - pattern -- id: hg-12-2-1-6 - name: Hanger Clips +- id: hg-12-5-1-2 + name: Snow Brushes children: [] attributes: - - pattern - color - - material -- id: hg-12-2-1-7 - name: Mesh Panels + - pattern +- id: hg-12-5-2 + name: Snow Shovels children: [] attributes: + - blade_material - color - - material + - handle_material - pattern -- id: hg-12-2-1-10 - name: Pole Rings - children: [] +- id: hg-12-6 + name: Watering & Irrigation + children: + - hg-12-6-1 + - hg-12-6-2 + - hg-12-6-3 + - hg-12-6-4 + - hg-12-6-5 + - hg-12-6-6 + - hg-12-6-7 + - hg-12-6-8 attributes: - color - pattern - - hardware_material -- id: hg-12-2-1-8 - name: Pull Rods - children: [] +- id: hg-12-6-1 + name: Garden Hose Fittings & Valves + children: + - hg-12-6-1-1 + - hg-12-6-1-2 attributes: - color - pattern - - hardware_material -- id: hg-12-2-1-9 - name: Pull Straps +- id: hg-12-6-1-1 + name: Garden Hose Fittings children: [] attributes: - color - - material - pattern -- id: hg-12-2-1-11 - name: Roof Linings +- id: hg-12-6-1-2 + name: Garden Hose Valves children: [] attributes: - color - pattern - - cover_material -- id: hg-12-2-1-12 - name: Side Walls +- id: hg-12-6-2 + name: Garden Hose Spray Nozzles children: [] attributes: - color - - material - pattern -- id: hg-12-2-1-13 - name: Storage Bags +- id: hg-12-6-3 + name: Garden Hoses children: [] attributes: - color - pattern - - bag_case_material -- id: hg-12-2-1-14 - name: Structural Frames - children: [] + - suitable_space +- id: hg-12-6-4 + name: Sprinkler Accessories + children: + - hg-12-6-4-1 + - hg-12-6-4-2 attributes: - color - - material - pattern -- id: hg-12-2-3-1 - name: Hammock Accessories +- id: hg-12-6-4-1 + name: Sprinkler Controls children: [] attributes: - color - - compatible_hammock_design - - material - pattern -- id: hg-12-2-3-2 - name: Hammock Parts +- id: hg-12-6-4-2 + name: Sprinkler Valves children: [] attributes: - color - - compatible_hammock_design - - material - pattern -- id: hg-12-2-6-1-1 - name: Canopies - children: [] +- id: hg-12-6-5 + name: Sprinklers & Sprinkler Heads + children: + - hg-12-6-5-1 + - hg-12-6-5-2 attributes: - color - pattern - - material -- id: hg-12-2-6-1-2 - name: Gazebos +- id: hg-12-6-5-1 + name: Sprinkler Heads children: [] attributes: - color - - material - pattern -- id: hg-12-2-6-3-1 - name: Arbors +- id: hg-12-6-5-2 + name: Sprinklers children: [] attributes: - color - - material - pattern -- id: hg-12-2-6-3-2 - name: Arches - children: [] +- id: hg-12-6-6 + name: Watering Can Accessories + children: + - hg-12-6-6-1 + - hg-12-6-6-2 attributes: - color - - material - pattern -- id: hg-12-2-6-3-3 - name: Pergolas +- id: hg-12-6-6-1 + name: Spout Extensions children: [] attributes: - color - - material - pattern -- id: hg-12-2-6-3-4 - name: Trellises +- id: hg-12-6-6-2 + name: Watering Can Nozzles children: [] attributes: - color - - material - pattern -- id: hg-12-2-6-5-1 - name: Carports +- id: hg-12-6-7 + name: Watering Cans children: [] attributes: - color - material - pattern -- id: hg-12-2-6-5-2 - name: Garages - children: [] + - sprinkler_head_type +- id: hg-12-6-8 + name: Watering Globes & Spikes + children: + - hg-12-6-8-1 + - hg-12-6-8-2 attributes: - color - - material - pattern -- id: hg-12-2-6-5-3 - name: Sheds +- id: hg-12-6-8-1 + name: Watering Globes children: [] attributes: - color - - material - pattern -- id: hg-12-2-8-1 - name: Outdoor Umbrellas +- id: hg-12-6-8-2 + name: Watering Spikes children: [] attributes: - - canopy_material - color - pattern - - shape -- id: hg-12-2-8-2 - name: Sunshades - children: [] +- id: hg-13 + name: Lighting + children: + - hg-13-1 + - hg-13-2 + - hg-13-3 + - hg-13-4 + - hg-13-5 + - hg-13-6 + - hg-13-7 + - hg-13-8 + - hg-13-9 + - hg-13-10 + - hg-13-11 + - hg-13-12 + - hg-13-13 attributes: - - canopy_material + - bulb_size - color + - energy_efficiency_class + - light_color + - light_temperature - pattern - - shape -- id: hg-12-2-9-1 - name: Porch Swing Chains +- id: hg-13-1 + name: Emergency Lighting children: [] attributes: - - pattern + - bulb_size + - bulb_type - color -- id: hg-12-2-9-2 - name: Porch Swing Covers + - energy_efficiency_class + - light_color + - light_temperature + - pattern +- id: hg-13-2 + name: Floating & Submersible Lights children: [] attributes: + - bulb_size + - bulb_type - color + - energy_efficiency_class + - light_color + - light_temperature - pattern -- id: hg-12-2-9-3 - name: Porch Swing Cushions +- id: hg-13-3 + name: Flood & Spot Lights children: [] attributes: + - bulb_size + - bulb_type - color + - energy_efficiency_class + - light_color + - light_temperature - pattern -- id: hg-12-2-9-4 - name: Porch Swing Hangers +- id: hg-13-4 + name: In-Ground Lights children: [] attributes: + - bulb_size + - bulb_type + - color + - energy_efficiency_class + - light_color + - light_temperature + - pattern +- id: hg-13-5 + name: Lamps + children: + - hg-13-5-1 + - hg-13-5-2 + - hg-13-5-3 + - hg-13-5-4 + - hg-13-5-5 + attributes: + - bulb_size + - bulb_type - color + - energy_efficiency_class + - light_color + - light_temperature - pattern -- id: hg-12-2-9-5 - name: Porch Swing Stands +- id: hg-13-5-1 + name: Bedside Lamps children: [] attributes: + - bulb_size + - bulb_type - color + - energy_efficiency_class + - light_color + - light_temperature - pattern -- id: hg-12-3-4-1 - name: Dethatchers +- id: hg-13-5-2 + name: Desk Lamps children: [] attributes: + - bulb_size + - bulb_type - color + - energy_efficiency_class + - light_color + - light_temperature - pattern - - power_source -- id: hg-12-3-4-2 - name: Lawn Aerators +- id: hg-13-5-3 + name: Floor Lamps children: [] attributes: - - pattern - - power_source + - bulb_size + - bulb_type - color -- id: hg-12-3-11-1 - name: Power Cultivators + - energy_efficiency_class + - light_color + - light_temperature + - pattern +- id: hg-13-5-4 + name: Reading Lamps children: [] attributes: + - bulb_size + - bulb_type - color - - material + - energy_efficiency_class + - light_color + - light_temperature - pattern - - power_source -- id: hg-12-3-11-2 - name: Power Tillers +- id: hg-13-5-5 + name: Table Lamps children: [] attributes: + - bulb_size + - bulb_type - color - - material + - energy_efficiency_class + - light_color + - light_temperature - pattern - - power_source -- id: hg-12-4-2-1 - name: Edger Belts +- id: hg-13-6 + name: Landscape Pathway Lighting children: [] attributes: + - bulb_size + - bulb_type - color + - energy_efficiency_class + - light_color + - light_temperature - pattern -- id: hg-12-4-2-2 - name: Edger Blades - children: [] +- id: hg-13-7 + name: Light Bulbs + children: + - hg-13-7-1 + - hg-13-7-2 + - hg-13-7-3 + - hg-13-7-4 attributes: + - bulb_cap_type + - bulb_shape + - bulb_size - color + - energy_efficiency_class + - light_color + - light_temperature - pattern -- id: hg-12-4-2-3 - name: Edger Guards +- id: hg-13-7-1 + name: Compact Fluorescent Lamps children: [] attributes: + - bulb_cap_type + - bulb_shape + - bulb_size - color + - energy_efficiency_class + - light_color + - light_temperature - pattern -- id: hg-12-4-2-4 - name: Edger Springs +- id: hg-13-7-2 + name: Fluorescent Tubes children: [] attributes: + - bulb_cap_type + - bulb_shape + - bulb_size - color + - energy_efficiency_class + - light_color + - light_temperature - pattern -- id: hg-12-4-2-5 - name: Edger Wheels +- id: hg-13-7-3 + name: Incandescent Light Bulbs children: [] attributes: + - bulb_cap_type + - bulb_shape + - bulb_size - color + - energy_efficiency_class + - light_color + - light_temperature - pattern -- id: hg-12-4-3-3 - name: Replacement Blades +- id: hg-13-7-4 + name: LED Light Bulbs children: [] attributes: + - bulb_cap_type + - bulb_shape + - bulb_size - color + - energy_efficiency_class + - light_color + - light_temperature - pattern -- id: hg-12-4-3-4 - name: Tip Protectors +- id: hg-13-8 + name: Light Ropes & Strings children: [] attributes: + - bulb_size + - bulb_type - color + - energy_efficiency_class + - light_color + - light_temperature - pattern -- id: hg-12-4-4-1-2 - name: Blades - children: [] + - suitable_space +- id: hg-13-9 + name: Lighting Fixtures + children: + - hg-13-9-1 + - hg-13-9-2 + - hg-13-9-3 + - hg-13-9-4 attributes: + - bulb_cap_type + - bulb_size + - bulb_type - color + - energy_efficiency_class + - light_color + - light_temperature + - mounting_type - pattern -- id: hg-12-4-4-1-3 - name: Pulleys +- id: hg-13-9-1 + name: Cabinet Light Fixtures children: [] attributes: + - bulb_cap_type + - bulb_size + - bulb_type - color + - energy_efficiency_class + - light_color + - light_temperature + - mounting_type - pattern -- id: hg-12-4-4-1-4 - name: Spindles +- id: hg-13-9-2 + name: Ceiling Light Fixtures children: [] attributes: - - pattern + - bulb_cap_type + - bulb_size + - bulb_type - color -- id: hg-12-4-4-7-1 - name: Lawn Mower Mulch Plugs + - energy_efficiency_class + - light_color + - light_temperature + - mounting_type + - pattern +- id: hg-13-9-3 + name: Chandeliers children: [] attributes: + - bulb_cap_type + - bulb_size + - bulb_type - color + - energy_efficiency_class + - light_color + - light_temperature + - material + - mounting_type - pattern -- id: hg-12-4-4-7-2 - name: Lawn Mower Plates + - style +- id: hg-13-9-4 + name: Wall Light Fixtures children: [] attributes: + - bulb_cap_type + - bulb_size + - bulb_type - color + - energy_efficiency_class + - light_color + - light_temperature + - mounting_type - pattern -- id: hg-12-4-4-8-1 - name: Lawn Mower Idles +- id: hg-13-10 + name: Night Lights & Ambient Lighting children: [] attributes: + - bulb_size + - bulb_type - color + - energy_efficiency_class + - light_color + - light_temperature - pattern -- id: hg-12-4-4-8-2 - name: Lawn Mower Pulleys +- id: hg-13-11 + name: Picture Lights children: [] attributes: + - bulb_size + - bulb_type - color + - energy_efficiency_class + - light_color + - light_temperature - pattern -- id: hg-12-4-8-4 - name: Cleaning Agents +- id: hg-13-12 + name: Tiki Torches & Oil Lamps children: [] attributes: + - bulb_size - color + - energy_efficiency_class + - light_color + - light_temperature - pattern -- id: hg-12-4-8-5 - name: Cone Nozzles - children: [] + - power_source +- id: hg-13-13 + name: Track Lighting + children: + - hg-13-13-1 + - hg-13-13-2 + - hg-13-13-3 attributes: + - bulb_size + - color + - energy_efficiency_class + - light_color + - light_temperature - pattern +- id: hg-13-13-1 + name: Track Lighting Accessories + children: + - hg-13-13-1-2 + - hg-13-13-1-3 + - hg-13-13-1-4 + - hg-13-13-1-5 + attributes: + - bulb_size - color -- id: hg-12-4-8-7 - name: Defoamers + - energy_efficiency_class + - light_color + - light_temperature + - pattern +- id: hg-13-13-1-2 + name: Heads children: [] attributes: + - bulb_size - color + - energy_efficiency_class + - light_color + - light_temperature - pattern -- id: hg-12-4-8-13 - name: Nozzles +- id: hg-13-13-1-3 + name: Pendants children: [] attributes: + - bulb_size - color + - energy_efficiency_class + - light_color + - light_temperature - pattern -- id: hg-12-4-8-15 - name: Pistol Heads +- id: hg-13-13-1-4 + name: Power Feeds children: [] attributes: + - bulb_size - color + - energy_efficiency_class + - light_color + - light_temperature - pattern -- id: hg-12-4-8-17 - name: Power Scrubbers +- id: hg-13-13-1-5 + name: Suspension Kits children: [] attributes: + - bulb_size - color + - energy_efficiency_class + - light_color + - light_temperature - pattern -- id: hg-12-4-8-18 - name: Roof Cleaners +- id: hg-13-13-2 + name: Track Lighting Fixtures children: [] attributes: + - bulb_size - color + - energy_efficiency_class + - light_color + - light_temperature - pattern -- id: hg-12-4-8-20 - name: Splash Guards +- id: hg-13-13-3 + name: Track Lighting Rails children: [] attributes: - - pattern + - bulb_size - color -- id: hg-12-4-8-21 - name: Spray Lances - children: [] + - energy_efficiency_class + - light_color + - light_temperature + - pattern +- id: hg-14 + name: Lighting Accessories + children: + - hg-14-1 + - hg-14-2 + - hg-14-3 + - hg-14-4 + - hg-14-5 attributes: - color - pattern -- id: hg-12-4-8-22 - name: Straps +- id: hg-14-1 + name: Lamp Post Bases children: [] attributes: - color - pattern -- id: hg-12-4-8-23 - name: Suction Hoses +- id: hg-14-2 + name: Lamp Post Mounts children: [] attributes: - color + - mount_material - pattern -- id: hg-12-4-8-24 - name: Suction Nozzles +- id: hg-14-3 + name: Lamp Shades children: [] attributes: - color + - mounting_type - pattern -- id: hg-12-4-8-29 - name: Water Sand Blasters + - suitable_space +- id: hg-14-4 + name: Lighting Timers children: [] attributes: - color + - display_technology - pattern -- id: hg-12-4-9-1 - name: Snow Blower Covers + - timer_type +- id: hg-14-5 + name: Oil Lamp Fuel children: [] attributes: - color + - oil_type - pattern -- id: hg-12-4-10-1-1 - name: Garden Tractor Tires - children: [] + - suitable_space +- id: hg-15 + name: Linens & Bedding + children: + - hg-15-1 + - hg-15-2 + - hg-15-3 + - hg-15-4 attributes: - color + - fabric - pattern -- id: hg-12-4-10-1-2 - name: Lawn Tractor Tires - children: [] +- id: hg-15-1 + name: Bedding + children: + - hg-15-1-1 + - hg-15-1-2 + - hg-15-1-3 + - hg-15-1-4 + - hg-15-1-5 + - hg-15-1-6 + - hg-15-1-7 + - hg-15-1-8 + - hg-15-1-9 + - hg-15-1-10 attributes: - color + - fabric - pattern -- id: hg-12-4-10-1-5 - name: Tractor Trailer Tires +- id: hg-15-1-1 + name: Bed Canopies children: [] attributes: + - bedding_size - color + - fabric - pattern -- id: hg-12-4-11-1-1 - name: Weed Trimmer Blades +- id: hg-15-1-2 + name: Bed Sheets children: [] attributes: + - bedding_pieces_included + - bedding_size - color + - fabric - pattern -- id: hg-12-4-11-1-2 - name: Weed Trimmer Spools +- id: hg-15-1-3 + name: Bedskirts children: [] attributes: + - bedding_size - color + - fabric - pattern -- id: hg-12-5-1-1 - name: Ice Scrapers +- id: hg-15-1-4 + name: Blankets children: [] attributes: + - bedding_size - color + - fabric - pattern -- id: hg-12-5-1-2 - name: Snow Brushes +- id: hg-15-1-5 + name: Duvet Covers children: [] attributes: + - bedding_size - color + - fabric - pattern -- id: hg-12-6-1-1 - name: Garden Hose Fittings - children: [] +- id: hg-15-1-6 + name: Mattress Protectors + children: + - hg-15-1-6-1 + - hg-15-1-6-2 attributes: + - bedding_size - color + - fabric - pattern -- id: hg-12-6-1-2 - name: Garden Hose Valves +- id: hg-15-1-6-1 + name: Mattress Encasements children: [] attributes: + - bedding_size - color + - fabric - pattern -- id: hg-12-6-5-1 - name: Sprinkler Heads +- id: hg-15-1-6-2 + name: Mattress Pads children: [] attributes: + - bedding_size - color + - fabric - pattern -- id: hg-12-6-5-2 - name: Sprinklers +- id: hg-15-1-7 + name: Nap Mats children: [] attributes: - color + - fabric - pattern -- id: hg-12-6-6-1 - name: Spout Extensions +- id: hg-15-1-8 + name: Pillowcases & Shams children: [] attributes: + - bedding_size + - closure_style - color + - fabric - pattern -- id: hg-12-6-6-2 - name: Watering Can Nozzles +- id: hg-15-1-9 + name: Pillows children: [] attributes: - - pattern + - bedding_size - color -- id: hg-12-6-8-1 - name: Watering Globes + - upholstery_material + - filler_material + - filler_support + - pattern +- id: hg-15-1-10 + name: Quilts & Comforters children: [] attributes: + - bedding_size - color + - fabric - pattern -- id: hg-12-6-8-2 - name: Watering Spikes +- id: hg-15-2 + name: Kitchen Linens Sets children: [] attributes: - color + - fabric - pattern -- id: hg-13-5-1 - name: Bedside Lamps - children: [] +- id: hg-15-3 + name: Table Linens + children: + - hg-15-3-1 + - hg-15-3-2 + - hg-15-3-3 + - hg-15-3-4 + - hg-15-3-5 + - hg-15-3-6 attributes: - - bulb_size - - bulb_type - color - - energy_efficiency_class - - light_color - - light_temperature + - fabric - pattern -- id: hg-13-5-2 - name: Desk Lamps +- id: hg-15-3-1 + name: Cloth Napkins children: [] attributes: - - light_color - - bulb_size - - bulb_type - color - - energy_efficiency_class - - light_temperature + - fabric - pattern -- id: hg-13-5-3 - name: Floor Lamps +- id: hg-15-3-2 + name: Doilies children: [] attributes: - - bulb_size - - bulb_type - color - - energy_efficiency_class - - light_color - - light_temperature + - fabric - pattern -- id: hg-13-5-4 - name: Reading Lamps + - shape +- id: hg-15-3-3 + name: Placemats children: [] attributes: - - bulb_size - - bulb_type - color - - energy_efficiency_class - - light_color - - light_temperature + - fabric - pattern -- id: hg-13-5-5 - name: Table Lamps + - shape +- id: hg-15-3-4 + name: Table Runners children: [] attributes: - - bulb_size - color - - bulb_type - - energy_efficiency_class - - light_color - - light_temperature + - fabric - pattern -- id: hg-13-13-1-2 - name: Heads +- id: hg-15-3-5 + name: Table Skirts children: [] attributes: - - bulb_size - color - - energy_efficiency_class - - light_color - - light_temperature + - fabric - pattern -- id: hg-13-13-1-3 - name: Pendants +- id: hg-15-3-6 + name: Tablecloths children: [] attributes: - - light_temperature - - pattern - - bulb_size - color - - energy_efficiency_class - - light_color -- id: hg-13-13-1-4 - name: Power Feeds - children: [] + - fabric + - pattern + - shape +- id: hg-15-4 + name: Towels + children: + - hg-15-4-1 + - hg-15-4-2 + - hg-15-4-3 attributes: - - bulb_size - color - - energy_efficiency_class - - light_color - - light_temperature + - fabric - pattern -- id: hg-13-13-1-5 - name: Suspension Kits - children: [] +- id: hg-15-4-1 + name: Bath Towels & Washcloths + children: + - hg-15-4-1-1 + - hg-15-4-1-2 attributes: - - bulb_size - - color - - energy_efficiency_class - - light_color - - light_temperature + - color + - fabric - pattern - id: hg-15-4-1-1 name: Bath Towels children: [] attributes: - - pattern - color - fabric + - pattern - id: hg-15-4-1-2 name: Washcloths children: [] attributes: - color + - fabric + - pattern +- id: hg-15-4-2 + name: Beach Towels + children: [] + attributes: + - color + - fabric - pattern +- id: hg-15-4-3 + name: Kitchen Towels + children: [] + attributes: + - color - fabric + - pattern +- id: hg-16 + name: Parasols & Rain Umbrellas + children: + - hg-16-1 + - hg-16-2 + attributes: + - canopy_material + - color + - pattern + - pole_material - id: hg-16-1 name: Parasols children: [] @@ -12913,15 +12515,76 @@ - color - pattern - pole_material -- id: hg-17-3-1-1 - name: Bushes +- id: hg-17 + name: Plants + children: + - hg-17-1 + - hg-17-2 + - hg-17-3 + - hg-17-4 + - hg-17-5 + - hg-17-6 + attributes: + - color + - pattern + - plant_class + - plant_name + - suitable_space +- id: hg-17-1 + name: Aquatic Plants + children: [] + attributes: + - flower_color + - pattern + - plant_characteristics + - plant_class + - plant_name + - suitable_space + - sunlight +- id: hg-17-2 + name: Flowers children: [] attributes: + - flower_color + - pattern + - plant_characteristics + - plant_class + - plant_name + - suitable_space + - sunlight +- id: hg-17-3 + name: Indoor & Outdoor Plants + children: + - hg-17-3-1 + - hg-17-3-2 + - hg-17-3-3 + - hg-17-3-4 + attributes: + - color + - pattern + - plant_class + - plant_name + - suitable_space +- id: hg-17-3-1 + name: Bushes & Shrubs + children: + - hg-17-3-1-1 + - hg-17-3-1-2 + attributes: + - color + - pattern - plant_class - plant_name + - suitable_space +- id: hg-17-3-1-1 + name: Bushes + children: [] + attributes: - flower_color - pattern - plant_characteristics + - plant_class + - plant_name - suitable_space - sunlight - id: hg-17-3-1-2 @@ -12946,15 +12609,26 @@ - plant_name - suitable_space - sunlight +- id: hg-17-3-3 + name: Landscaping & Garden Plants + children: + - hg-17-3-3-1 + - hg-17-3-3-2 + attributes: + - color + - pattern + - plant_class + - plant_name + - suitable_space - id: hg-17-3-3-1 name: Garden Plants children: [] attributes: - - plant_name - flower_color - pattern - plant_characteristics - plant_class + - plant_name - suitable_space - sunlight - id: hg-17-3-3-2 @@ -12968,14 +12642,36 @@ - plant_name - suitable_space - sunlight +- id: hg-17-3-4 + name: Potted Houseplants + children: [] + attributes: + - flower_color + - pattern + - plant_characteristics + - plant_class + - plant_name + - suitable_space + - sunlight +- id: hg-17-4 + name: Plant & Herb Growing Kits + children: + - hg-17-4-1 + - hg-17-4-2 + attributes: + - color + - pattern + - plant_class + - plant_name + - suitable_space - id: hg-17-4-1 name: Herb Growing Kits children: [] attributes: - - plant_class - flower_color - pattern - plant_characteristics + - plant_class - plant_name - suitable_space - sunlight @@ -12983,11 +12679,11 @@ name: Plant Growing Kits children: [] attributes: - - plant_name - flower_color - pattern - plant_characteristics - plant_class + - plant_name - suitable_space - sunlight - id: hg-17-5 @@ -13007,64 +12703,167 @@ - hg-17-5-1-1 - hg-17-5-1-2 attributes: - - plant_class - color - pattern + - plant_class - plant_name - suitable_space - id: hg-17-5-1-1 name: Flower Bulbs children: [] attributes: - - plant_name - - flower_color + - flower_color + - pattern + - plant_characteristics + - plant_class + - plant_name + - suitable_space + - sunlight +- id: hg-17-5-1-2 + name: Plant Bulbs + children: [] + attributes: + - flower_color + - pattern + - plant_characteristics + - plant_class + - plant_name + - suitable_space + - sunlight +- id: hg-17-5-2 + name: Seeds & Seed Tape + children: + - hg-17-5-2-1 + - hg-17-5-2-2 + attributes: + - color + - pattern + - plant_class + - plant_name + - suitable_space +- id: hg-17-5-2-1 + name: Seed Tape + children: [] + attributes: + - color + - pattern + - plant_class + - plant_name + - suitable_space +- id: hg-17-5-2-2 + name: Seeds + children: [] + attributes: + - flower_color + - pattern + - plant_characteristics + - plant_class + - plant_name + - suitable_space + - sunlight +- id: hg-17-6 + name: Trees + children: [] + attributes: + - flower_color + - pattern + - plant_characteristics + - plant_class + - plant_name + - suitable_space + - sunlight +- id: hg-18 + name: Pool & Spa + children: + - hg-18-1 + - hg-18-2 + - hg-18-3 + - hg-18-4 + - hg-18-5 + attributes: + - color + - pattern +- id: hg-18-1 + name: Pool & Spa Accessories + children: + - hg-18-1-1 + - hg-18-1-2 + - hg-18-1-3 + - hg-18-1-4 + - hg-18-1-5 + - hg-18-1-6 + - hg-18-1-7 + - hg-18-1-8 + - hg-18-1-9 + - hg-18-1-10 + - hg-18-1-11 + - hg-18-1-12 + - hg-18-1-13 + - hg-18-1-14 + - hg-18-1-15 + - hg-18-1-16 + - hg-18-1-17 + - hg-18-1-18 + attributes: + - color + - pattern +- id: hg-18-1-1 + name: Diving Boards + children: [] + attributes: + - color + - pattern +- id: hg-18-1-2 + name: Pool & Spa Chlorine Generators + children: [] + attributes: + - color + - pattern + - power_source +- id: hg-18-1-3 + name: Pool & Spa Filters + children: [] + attributes: + - color + - pattern +- id: hg-18-1-4 + name: Pool & Spa Maintenance Kits + children: [] + attributes: + - color + - pattern +- id: hg-18-1-5 + name: Pool Brushes & Brooms + children: [] + attributes: + - color - pattern - - plant_characteristics - - plant_class - - suitable_space - - sunlight -- id: hg-17-5-1-2 - name: Plant Bulbs +- id: hg-18-1-6 + name: Pool Cleaner Hoses children: [] attributes: - - flower_color + - color - pattern - - plant_characteristics - - plant_class - - plant_name - - suitable_space - - sunlight -- id: hg-17-5-2 - name: Seeds & Seed Tape - children: - - hg-17-5-2-1 - - hg-17-5-2-2 +- id: hg-18-1-7 + name: Pool Cleaners & Chemicals + children: [] attributes: - - plant_class - color - pattern - - plant_name - - suitable_space -- id: hg-17-5-2-1 - name: Seed Tape +- id: hg-18-1-8 + name: Pool Cover Accessories children: [] attributes: - color - pattern - - plant_class - - plant_name - - suitable_space -- id: hg-17-5-2-2 - name: Seeds - children: [] +- id: hg-18-1-9 + name: Pool Covers & Ground Cloths + children: + - hg-18-1-9-1 + - hg-18-1-9-2 attributes: + - color - pattern - - flower_color - - plant_characteristics - - plant_class - - plant_name - - suitable_space - - sunlight - id: hg-18-1-9-1 name: Ground Cloths children: [] @@ -13077,18 +12876,48 @@ attributes: - color - pattern +- id: hg-18-1-10 + name: Pool Deck Kits + children: [] + attributes: + - color + - pattern +- id: hg-18-1-11 + name: Pool Floats & Loungers + children: + - hg-18-1-11-1 + - hg-18-1-11-2 + attributes: + - color + - pattern - id: hg-18-1-11-1 name: Pool Floats children: [] attributes: - - pattern - color + - pattern - id: hg-18-1-11-2 name: Pool Loungers children: [] attributes: - color - pattern +- id: hg-18-1-12 + name: Pool Heaters + children: [] + attributes: + - color + - pattern + - suitable_for_pool_type +- id: hg-18-1-13 + name: Pool Ladders, Steps & Ramps + children: + - hg-18-1-13-1 + - hg-18-1-13-2 + - hg-18-1-13-3 + attributes: + - color + - pattern - id: hg-18-1-13-1 name: Pool Ladders children: [] @@ -13107,6 +12936,26 @@ attributes: - color - pattern +- id: hg-18-1-14 + name: Pool Liners + children: [] + attributes: + - color + - pattern +- id: hg-18-1-15 + name: Pool Skimmers + children: [] + attributes: + - color + - pattern +- id: hg-18-1-16 + name: Pool Sweeps & Vacuums + children: + - hg-18-1-16-1 + - hg-18-1-16-2 + attributes: + - color + - pattern - id: hg-18-1-16-1 name: Pool Sweeps children: [] @@ -13117,8 +12966,18 @@ name: Pool Vacuums children: [] attributes: + - color - pattern +- id: hg-18-1-17 + name: Pool Toys + children: + - hg-18-1-17-1 + - hg-18-1-17-2 + - hg-18-1-17-3 + - hg-18-1-17-4 + attributes: - color + - pattern - id: hg-18-1-17-1 name: Pool Dive Toys children: [] @@ -13143,6 +13002,29 @@ attributes: - color - pattern +- id: hg-18-1-18 + name: Pool Water Slides + children: [] + attributes: + - color + - pattern +- id: hg-18-2 + name: Sauna Accessories + children: + - hg-18-2-1 + - hg-18-2-2 + - hg-18-2-3 + attributes: + - color + - pattern +- id: hg-18-2-1 + name: Sauna Buckets & Ladles + children: + - hg-18-2-1-1 + - hg-18-2-1-2 + attributes: + - color + - pattern - id: hg-18-2-1-1 name: Sauna Buckets children: [] @@ -13153,8 +13035,82 @@ name: Sauna Ladles children: [] attributes: + - color + - pattern +- id: hg-18-2-2 + name: Sauna Heaters + children: [] + attributes: + - color + - housing_material + - pattern + - power_source +- id: hg-18-2-3 + name: Sauna Kits + children: [] + attributes: + - color + - pattern +- id: hg-18-3 + name: Saunas + children: [] + attributes: + - color + - pattern + - suitable_space + - wall_material +- id: hg-18-4 + name: Spas + children: [] + attributes: + - color + - pattern + - suitable_space +- id: hg-18-5 + name: Swimming Pools + children: [] + attributes: + - color + - pattern + - shape + - suitable_space +- id: hg-19 + name: Smoking Accessories + children: + - hg-19-1 + - hg-19-2 + - hg-19-3 + - hg-19-4 + - hg-19-5 + - hg-19-6 + - hg-19-7 + attributes: + - color + - material + - pattern +- id: hg-19-1 + name: Ashtrays + children: [] + attributes: + - color + - material + - pattern +- id: hg-19-2 + name: Cigar Cases + children: [] + attributes: + - color + - bag_case_material - pattern +- id: hg-19-3 + name: Cigar Cutters & Punches + children: + - hg-19-3-1 + - hg-19-3-2 + attributes: - color + - material + - pattern - id: hg-19-3-1 name: Cigar Cutters children: [] @@ -13169,6 +13125,43 @@ - color - material - pattern +- id: hg-19-4 + name: Cigarette Cases + children: [] + attributes: + - color + - bag_case_material + - pattern +- id: hg-19-5 + name: Cigarette Holders + children: [] + attributes: + - color + - material + - pattern +- id: hg-19-6 + name: Humidor Accessories + children: [] + attributes: + - color + - material + - pattern +- id: hg-19-7 + name: Humidors + children: [] + attributes: + - color + - humidity_control + - material + - pattern +- id: hg-20 + name: Umbrella Sleeves & Cases + children: + - hg-20-1 + - hg-20-2 + attributes: + - color + - pattern - id: hg-20-1 name: Umbrella Cases children: [] @@ -13181,3 +13174,10 @@ attributes: - color - pattern +- id: hg-21 + name: Wood Stoves + children: [] + attributes: + - color + - mounting_type + - pattern diff --git a/data/categories/lb_luggage_bags.yml b/data/categories/lb_luggage_bags.yml index 5b2fa780..c2b3d394 100644 --- a/data/categories/lb_luggage_bags.yml +++ b/data/categories/lb_luggage_bags.yml @@ -14,8 +14,8 @@ - lb-10 - lb-11 - lb-12 - - lb-14 - lb-13 + - lb-14 attributes: - color - pattern @@ -24,10 +24,18 @@ children: - lb-1-12 attributes: + - bag_case_material - luggage_bag_closure - color - pattern +- id: lb-1-12 + name: School Backpacks + children: [] + attributes: - bag_case_material + - luggage_bag_closure + - color + - pattern - id: lb-2 name: Briefcases children: [] @@ -47,47 +55,79 @@ - color - pattern - bag_case_material +- id: lb-3-3 + name: Makeup Bags + children: [] + attributes: + - luggage_bag_closure + - color + - pattern + - bag_case_material +- id: lb-3-4 + name: Toiletry Bags + children: [] + attributes: + - luggage_bag_closure + - color + - pattern + - bag_case_material +- id: lb-3-5 + name: Travel Organizer Bags + children: [] + attributes: + - luggage_bag_closure + - color + - pattern + - bag_case_material - id: lb-4 name: Diaper Bags children: [] attributes: + - diaper_bag_material - color - pattern - - diaper_bag_material - id: lb-5 name: Dry Boxes children: [] attributes: + - bag_case_material - color - pattern - accessory_size - - bag_case_material - id: lb-6 name: Duffel Bags children: - lb-6-1 attributes: + - bag_case_material - color - pattern - accessory_size +- id: lb-6-1 + name: Gym Duffel Bags + children: [] + attributes: - bag_case_material + - color + - pattern + - accessory_size - id: lb-7 name: Fanny Packs children: [] attributes: - color - pattern - - accessory_size - bag_case_material + - accessory_size - id: lb-8 name: Garment Bags children: [] attributes: - color - pattern + - bag_case_material - accessory_size - luggage_bag_closure - - bag_case_material - id: lb-9 name: Luggage Accessories children: @@ -106,35 +146,35 @@ name: Dry Box Liners & Inserts children: [] attributes: + - fabric - color - pattern - thickness_type - - fabric - id: lb-9-2 name: Luggage Covers children: [] attributes: + - cover_material - color - accessory_size - luggage_bag_closure - pattern - - cover_material - id: lb-9-3 name: Luggage Racks & Stands children: [] attributes: + - furniture_fixture_material - color - pattern - accessory_size - - furniture_fixture_material - id: lb-9-4 name: Luggage Straps children: [] attributes: - color - pattern - - luggage_bag_closure - fabric + - luggage_bag_closure - id: lb-9-5 name: Luggage Tags children: [] @@ -150,8 +190,8 @@ attributes: - color - pattern - - luggage_bag_closure - fabric + - luggage_bag_closure - id: lb-9-7 name: Travel Bottles & Containers children: [] @@ -166,29 +206,29 @@ attributes: - color - pattern + - bag_case_material - luggage_bag_closure - accessory_size - - bag_case_material - id: lb-10 name: Messenger Bags children: [] attributes: - color - pattern + - bag_case_material - luggage_bag_closure - bag_strap_type - accessory_size - - bag_case_material - id: lb-11 name: Shopping Totes children: [] attributes: - color - pattern + - bag_case_material - tote_handle_type - luggage_bag_closure - accessory_size - - bag_case_material - id: lb-12 name: Suitcases children: @@ -199,101 +239,61 @@ attributes: - color - pattern + - bag_case_material - spinner_type - suitcase_handle_type - - bag_case_material -- id: lb-14 - name: Train Cases - children: [] - attributes: - - color - - pattern - - luggage_bag_closure - - carry_options - - interior_features - - accessory_size - - bag_case_material -- id: lb-1-12 - name: School Backpacks - children: [] - attributes: - - luggage_bag_closure - - color - - pattern - - bag_case_material -- id: lb-3-3 - name: Makeup Bags - children: [] - attributes: - - luggage_bag_closure - - color - - pattern - - bag_case_material -- id: lb-3-4 - name: Toiletry Bags - children: [] - attributes: - - luggage_bag_closure - - color - - pattern - - bag_case_material -- id: lb-3-5 - name: Travel Organizer Bags - children: [] - attributes: - - luggage_bag_closure - - color - - pattern - - bag_case_material -- id: lb-6-1 - name: Gym Duffel Bags - children: [] - attributes: - - color - - pattern - - accessory_size - - bag_case_material -- id: lb-13 - name: Tote Bags - children: [] - attributes: - - color - - pattern - - accessory_size - - bag_case_material - id: lb-12-2 name: Carry-On Suitcases children: [] attributes: - color - pattern + - bag_case_material - spinner_type - suitcase_handle_type - - bag_case_material - id: lb-12-3 name: Checked Suitcases children: [] attributes: - color - pattern + - bag_case_material - spinner_type - suitcase_handle_type - - bag_case_material - id: lb-12-5 name: Kids' Suitcases children: [] attributes: - color - pattern + - bag_case_material - spinner_type - suitcase_handle_type - - bag_case_material - id: lb-12-9 name: Suitcase Travel Sets children: [] attributes: - color - pattern + - bag_case_material - spinner_type - suitcase_handle_type +- id: lb-13 + name: Tote Bags + children: [] + attributes: - bag_case_material + - color + - pattern + - accessory_size +- id: lb-14 + name: Train Cases + children: [] + attributes: + - color + - pattern + - bag_case_material + - luggage_bag_closure + - carry_options + - interior_features + - accessory_size diff --git a/data/categories/me_media.yml b/data/categories/me_media.yml index 7f760ed1..61981a79 100644 --- a/data/categories/me_media.yml +++ b/data/categories/me_media.yml @@ -5,11 +5,11 @@ - me-1 - me-2 - me-3 + - me-4 - me-5 - me-6 - - me-8 - - me-4 - me-7 + - me-8 attributes: [] - id: me-1 name: Books @@ -62,77 +62,6 @@ - media_access - media_theme - publication_frequency -- id: me-2-2 - name: Newspapers - children: - - me-2-2-1 - - me-2-2-2 - - me-2-2-3 - attributes: - - language_version - - media_access - - media_section - - publication_frequency -- id: me-3 - name: Music & Sound Recordings - children: - - me-3-1 - - me-3-3 - - me-3-2 - - me-3-4 - - me-3-5 - - me-3-6 - attributes: - - music_genre -- id: me-3-1 - name: Digital Music Downloads - children: [] - attributes: - - download_format - - music_genre -- id: me-3-3 - name: Music CDs - children: [] - attributes: - - music_genre -- id: me-3-2 - name: Music Cassette Tapes - children: [] - attributes: - - music_genre -- id: me-3-4 - name: Records & LPs - children: [] - attributes: - - music_genre -- id: me-3-5 - name: Spoken Word & Field Recordings - children: [] - attributes: - - music_genre -- id: me-5 - name: Product Manuals - children: [] - attributes: - - language_version - - product_manual_area -- id: me-6 - name: Sheet Music - children: [] - attributes: - - book_cover_type - - compatible_instrument - - music_genre -- id: me-8 - name: Academic Papers & Studies - children: [] - attributes: - - academic_level - - publication_type - - research_focus - - research_methodology - - subject_area - - time_period - id: me-2-1-1 name: Consumer Magazines children: [] @@ -157,6 +86,17 @@ - media_access - media_theme - publication_frequency +- id: me-2-2 + name: Newspapers + children: + - me-2-2-1 + - me-2-2-2 + - me-2-2-3 + attributes: + - language_version + - media_access + - media_section + - publication_frequency - id: me-2-2-1 name: International Newspapers children: [] @@ -181,6 +121,43 @@ - media_access - media_section - publication_frequency +- id: me-3 + name: Music & Sound Recordings + children: + - me-3-1 + - me-3-2 + - me-3-3 + - me-3-4 + - me-3-5 + - me-3-6 + attributes: + - music_genre +- id: me-3-1 + name: Digital Music Downloads + children: [] + attributes: + - download_format + - music_genre +- id: me-3-2 + name: Music Cassette Tapes + children: [] + attributes: + - music_genre +- id: me-3-3 + name: Music CDs + children: [] + attributes: + - music_genre +- id: me-3-4 + name: Records & LPs + children: [] + attributes: + - music_genre +- id: me-3-5 + name: Spoken Word & Field Recordings + children: [] + attributes: + - music_genre - id: me-3-6 name: Vinyl children: [] @@ -217,6 +194,19 @@ - genre - language - release_schedule +- id: me-5 + name: Product Manuals + children: [] + attributes: + - language_version + - product_manual_area +- id: me-6 + name: Sheet Music + children: [] + attributes: + - book_cover_type + - compatible_instrument + - music_genre - id: me-7 name: Videos children: @@ -266,3 +256,13 @@ - media_content_type - mpaa_rating - target_audience +- id: me-8 + name: Academic Papers & Studies + children: [] + attributes: + - academic_level + - publication_type + - research_focus + - research_methodology + - subject_area + - time_period diff --git a/data/categories/os_office_supplies.yml b/data/categories/os_office_supplies.yml index 18361382..9bf3306b 100644 --- a/data/categories/os_office_supplies.yml +++ b/data/categories/os_office_supplies.yml @@ -32,8 +32,8 @@ attributes: - closure_type - color - - pattern - book_cover_material + - pattern - id: os-1-2 name: Book Lights children: [] @@ -60,9 +60,9 @@ children: [] attributes: - color + - office_supply_material - pattern - shape - - office_supply_material - id: os-3 name: Filing & Organization children: @@ -70,11 +70,11 @@ - os-3-2 - os-3-3 - os-3-4 - - os-3-9 - os-3-5 - os-3-6 - os-3-7 - os-3-8 + - os-3-9 - os-3-10 - os-3-11 - os-3-12 @@ -90,9 +90,9 @@ children: [] attributes: - color + - book_cover_material - page_layout - pattern - - book_cover_material - id: os-3-2 name: Binding Supplies children: @@ -119,24 +119,24 @@ name: Index Dividers children: [] attributes: + - office_supply_material - paper_size - tab_style - - office_supply_material - id: os-3-2-1-3 name: Sheet Protectors children: [] attributes: - - paper_size - office_supply_material + - paper_size - id: os-3-2-2 name: Binders children: [] attributes: - color + - office_supply_material - paper_size - pattern - ring_type - - office_supply_material - id: os-3-2-3 name: Binding Combs & Spines children: [] @@ -150,13 +150,23 @@ - os-3-2-4-2 attributes: - binding_style +- id: os-3-2-4-1 + name: Electric Binding Machines + children: [] + attributes: + - binding_style +- id: os-3-2-4-2 + name: Manual Binding Machines + children: [] + attributes: + - binding_style - id: os-3-3 name: Business Card Books children: [] attributes: - color - - pattern - office_supply_material + - pattern - id: os-3-4 name: Business Card Stands children: [] @@ -164,13 +174,6 @@ - color - material - pattern -- id: os-3-9 - name: CD/DVD Cases & Organizers - children: [] - attributes: - - color - - pattern - - bag_case_material - id: os-3-5 name: Calendars, Organizers & Planners children: @@ -181,6 +184,34 @@ attributes: - color - pattern +- id: os-3-5-1 + name: Desk Calendars + children: [] + attributes: + - calendar_format + - color + - pattern +- id: os-3-5-2 + name: Organizers + children: [] + attributes: + - calendar_format + - color + - pattern +- id: os-3-5-3 + name: Planners + children: [] + attributes: + - calendar_format + - color + - pattern +- id: os-3-5-4 + name: Wall Calendars + children: [] + attributes: + - calendar_format + - color + - pattern - id: os-3-6 name: Card Files children: [] @@ -198,8 +229,15 @@ children: [] attributes: - color - - pattern - office_supply_material + - pattern +- id: os-3-9 + name: CD/DVD Cases & Organizers + children: [] + attributes: + - color + - bag_case_material + - pattern - id: os-3-10 name: Desk Organizers children: @@ -211,22 +249,50 @@ - color - material - pattern +- id: os-3-10-1 + name: Desktop Organizers + children: [] + attributes: + - color + - material + - pattern +- id: os-3-10-2 + name: Drawer Organizers + children: [] + attributes: + - color + - material + - pattern +- id: os-3-10-3 + name: File Sorters + children: [] + attributes: + - color + - material + - pattern +- id: os-3-10-4 + name: Pen Holders + children: [] + attributes: + - color + - material + - pattern - id: os-3-11 name: File Boxes children: [] attributes: - color + - office_supply_material - paper_size - pattern - - office_supply_material - id: os-3-12 name: File Folders children: [] attributes: - color + - office_supply_material - paper_size - pattern - - office_supply_material - id: os-3-13 name: Folders & Report Covers children: @@ -234,32 +300,32 @@ - os-3-13-2 attributes: - color + - folder_report_cover_material - paper_size - pattern - - folder_report_cover_material - id: os-3-13-1 name: Pocket Folders children: [] attributes: - color + - folder_report_cover_material - paper_size - pattern - - folder_report_cover_material - id: os-3-13-2 name: Report Covers children: [] attributes: - color + - folder_report_cover_material - paper_size - pattern - - folder_report_cover_material - id: os-3-14 name: Greeting Card Organizers children: [] attributes: - color - - pattern - office_supply_material + - pattern - id: os-3-15 name: Mail Sorters children: [] @@ -272,8 +338,8 @@ children: [] attributes: - color - - pattern - bag_case_material + - pattern - id: os-3-17 name: Portfolios & Padfolios children: @@ -281,24 +347,24 @@ - os-3-17-2 attributes: - color - - pattern - office_supply_material + - pattern - id: os-3-17-1 name: Padfolios children: [] attributes: - color + - office_supply_material - paper_size - pattern - - office_supply_material - id: os-3-17-2 name: Portfolios children: [] attributes: - color + - office_supply_material - paper_size - pattern - - office_supply_material - id: os-3-18 name: Recipe Card Boxes children: [] @@ -355,6 +421,28 @@ attributes: - color - pattern +- id: os-4-3-1 + name: Kneaded Erasers + children: [] + attributes: + - color + - material + - pattern +- id: os-4-3-2 + name: Mechanical Erasers + children: [] + attributes: + - color + - material + - pattern +- id: os-4-3-3 + name: Standard Erasers + children: [] + attributes: + - color + - material + - pattern + - supply_shape - id: os-4-4 name: Labels & Tags children: @@ -371,43 +459,43 @@ children: [] attributes: - color - - pattern - office_supply_material + - pattern - id: os-4-4-2 name: Folder Tabs children: [] attributes: - color - - pattern - office_supply_material + - pattern - id: os-4-4-3 name: Label Clips children: [] attributes: - color - - pattern - office_supply_material + - pattern - id: os-4-4-4 name: Label Tapes & Refill Rolls children: [] attributes: - color - - pattern - tape_material + - pattern - id: os-4-4-5 name: Shipping Labels children: [] attributes: - color - - pattern - office_supply_material + - pattern - id: os-4-4-6 name: Shipping Tags children: [] attributes: - color - - pattern - office_supply_material + - pattern - id: os-4-5 name: Laminating Film, Pouches & Sheets children: @@ -416,6 +504,24 @@ - os-4-5-3 attributes: - finish +- id: os-4-5-1 + name: Laminating Film Rolls + children: [] + attributes: + - finish + - paper_size +- id: os-4-5-2 + name: Laminating Pouches + children: [] + attributes: + - finish + - paper_size +- id: os-4-5-3 + name: Laminating Sheets + children: [] + attributes: + - finish + - paper_size - id: os-4-6 name: Mounting Putty children: [] @@ -427,6 +533,16 @@ - os-4-7-1 - os-4-7-2 attributes: [] +- id: os-4-7-1 + name: Invisible Tape + children: [] + attributes: + - color +- id: os-4-7-2 + name: Transparent Tape + children: [] + attributes: + - color - id: os-4-8 name: Paper Clips & Clamps children: @@ -520,6 +636,54 @@ - paper_type - pattern - sheet_color +- id: os-4-9-9-1 + name: Composition Notebooks + children: [] + attributes: + - color + - paper_type + - pattern + - sheet_color +- id: os-4-9-9-3 + name: Journals + children: [] + attributes: + - color + - paper_type + - pattern + - sheet_color +- id: os-4-9-9-4 + name: Memo Pads + children: [] + attributes: + - color + - paper_type + - pattern + - sheet_color +- id: os-4-9-9-5 + name: Notepads + children: [] + attributes: + - color + - paper_type + - pattern + - sheet_color +- id: os-4-9-9-6 + name: Pocket Notebooks + children: [] + attributes: + - color + - paper_type + - pattern + - sheet_color +- id: os-4-9-9-9 + name: Subject Notebooks + children: [] + attributes: + - color + - paper_type + - pattern + - sheet_color - id: os-4-9-10 name: Post Cards children: [] @@ -567,15 +731,23 @@ attributes: - accessory_size - color + - office_supply_material - point_design - tack_pushpin_head_design - - office_supply_material - id: os-5 name: Impulse Sealers children: - os-5-1 - os-5-2 attributes: [] +- id: os-5-1 + name: Handheld Impulse Sealers + children: [] + attributes: [] +- id: os-5-2 + name: Tabletop Impulse Sealers + children: [] + attributes: [] - id: os-6 name: Lap Desks children: [] @@ -590,6 +762,16 @@ - os-7-2 attributes: - office_supply_material +- id: os-7-1 + name: Desk Name Plates + children: [] + attributes: + - office_supply_material +- id: os-7-2 + name: Door Name Plates + children: [] + attributes: + - office_supply_material - id: os-8 name: Office & Chair Mats children: @@ -744,29 +926,29 @@ - os-11-2 - os-11-3 - os-11-4 + - os-11-5 - os-11-6 - os-11-7 - os-11-8 - os-11-9 - os-11-10 - os-11-11 - - os-11-5 attributes: [] - id: os-11-1 name: Call Bells children: [] attributes: - color - - pattern - office_instrument_material + - pattern - id: os-11-2 name: Clipboards children: [] attributes: - clip_type - color - - pattern - office_instrument_material + - pattern - id: os-11-3 name: Letter Openers children: [] @@ -782,8 +964,88 @@ - color - handle_material - lens_configuration -- id: os-11-6 - name: Pencil Sharpeners +- id: os-11-5 + name: Office Stamps + children: + - os-11-5-1 + - os-11-5-2 + - os-11-5-3 + - os-11-5-4 + - os-11-5-5 + - os-11-5-6 + - os-11-5-7 + - os-11-5-8 + attributes: + - color + - ink_color + - stamp_type + - text_plate_material +- id: os-11-5-1 + name: Address Stamps + children: [] + attributes: + - color + - ink_color + - stamp_type + - text_plate_material +- id: os-11-5-2 + name: Date Stamps + children: [] + attributes: + - color + - ink_color + - stamp_type + - text_plate_material +- id: os-11-5-3 + name: Embossing Stamps + children: [] + attributes: + - color + - ink_color + - stamp_type + - text_plate_material +- id: os-11-5-4 + name: Notary Stamps + children: [] + attributes: + - color + - ink_color + - stamp_type + - text_plate_material +- id: os-11-5-5 + name: Passport Stamps + children: [] + attributes: + - color + - ink_color + - stamp_type + - text_plate_material +- id: os-11-5-6 + name: Postage Stamps + children: [] + attributes: + - color + - ink_color + - stamp_type + - text_plate_material +- id: os-11-5-7 + name: Signature Stamps + children: [] + attributes: + - color + - ink_color + - stamp_type + - text_plate_material +- id: os-11-5-8 + name: Vintage Stamps + children: [] + attributes: + - color + - ink_color + - stamp_type + - text_plate_material +- id: os-11-6 + name: Pencil Sharpeners children: - os-11-6-1 - os-11-6-2 @@ -793,15 +1055,58 @@ - os-11-6-6 attributes: - color + - office_instrument_material + - pattern +- id: os-11-6-1 + name: Bladeless Sharpeners + children: [] + attributes: + - color + - office_instrument_material + - pattern +- id: os-11-6-2 + name: Carpenter Sharpeners + children: [] + attributes: + - color + - office_instrument_material + - pattern +- id: os-11-6-3 + name: Double Sharpeners + children: [] + attributes: + - color + - office_instrument_material + - pattern +- id: os-11-6-4 + name: Electric Pencil Sharpeners + children: [] + attributes: + - color + - office_instrument_material + - pattern + - power_source +- id: os-11-6-5 + name: Mechanical Sharpeners + children: [] + attributes: + - color + - office_instrument_material - pattern +- id: os-11-6-6 + name: Standard Sharpeners + children: [] + attributes: + - color - office_instrument_material + - pattern - id: os-11-7 name: Staple Removers children: [] attributes: - color - - pattern - office_instrument_material + - pattern - id: os-11-8 name: Staplers children: @@ -815,13 +1120,76 @@ - os-11-8-8 - os-11-8-9 attributes: [] +- id: os-11-8-1 + name: Bookbinding Staplers + children: [] + attributes: + - color + - office_instrument_material + - pattern +- id: os-11-8-2 + name: Electric Staplers + children: [] + attributes: + - color + - office_instrument_material + - pattern +- id: os-11-8-3 + name: Full Strip Staplers + children: [] + attributes: + - color + - office_instrument_material + - pattern +- id: os-11-8-4 + name: Half Strip Staplers + children: [] + attributes: + - color + - office_instrument_material + - pattern +- id: os-11-8-5 + name: Heavy Duty Staplers + children: [] + attributes: + - color + - office_instrument_material + - pattern +- id: os-11-8-6 + name: Long Reach Staplers + children: [] + attributes: + - color + - office_instrument_material + - pattern +- id: os-11-8-7 + name: Mini Staplers + children: [] + attributes: + - color + - office_instrument_material + - pattern +- id: os-11-8-8 + name: Plier Staplers + children: [] + attributes: + - color + - office_instrument_material + - pattern +- id: os-11-8-9 + name: Saddle Staplers + children: [] + attributes: + - color + - office_instrument_material + - pattern - id: os-11-9 name: Tape Dispensers children: [] attributes: - color - - pattern - office_instrument_material + - pattern - id: os-11-10 name: Writing & Drawing Instrument Accessories children: @@ -884,6 +1252,60 @@ - os-11-11-1-9 attributes: - color +- id: os-11-11-1-1 + name: Charcoal Pencils + children: [] + attributes: + - color + - hardness +- id: os-11-11-1-2 + name: Compressed Charcoals + children: [] + attributes: + - color + - hardness +- id: os-11-11-1-3 + name: Conté Charcoals + children: [] + attributes: + - color + - hardness +- id: os-11-11-1-4 + name: Graphite Charcoals + children: [] + attributes: + - color + - hardness +- id: os-11-11-1-5 + name: Nitram Charcoals + children: [] + attributes: + - color + - hardness +- id: os-11-11-1-6 + name: Pastel Charcoals + children: [] + attributes: + - color + - hardness +- id: os-11-11-1-7 + name: Powdered Charcoals + children: [] + attributes: + - color + - hardness +- id: os-11-11-1-8 + name: Vine Charcoals + children: [] + attributes: + - color + - hardness +- id: os-11-11-1-9 + name: Willow Charcoals + children: [] + attributes: + - color + - hardness - id: os-11-11-2 name: Chalk children: [] @@ -902,15 +1324,55 @@ - os-11-11-3-8 attributes: - color -- id: os-11-11-4 - name: Markers & Highlighters - children: - - os-11-11-4-1 - - os-11-11-4-2 +- id: os-11-11-3-1 + name: Gel Crayons + children: [] attributes: - color -- id: os-11-11-4-1 - name: Highlighters +- id: os-11-11-3-2 + name: Jumbo Crayons + children: [] + attributes: + - color +- id: os-11-11-3-3 + name: Metallic Crayons + children: [] + attributes: + - color +- id: os-11-11-3-4 + name: Neon Crayons + children: [] + attributes: + - color +- id: os-11-11-3-5 + name: Regular Crayons + children: [] + attributes: + - color +- id: os-11-11-3-6 + name: Scented Crayons + children: [] + attributes: + - color +- id: os-11-11-3-7 + name: Twistable Crayons + children: [] + attributes: + - color +- id: os-11-11-3-8 + name: Watercolor Crayons + children: [] + attributes: + - color +- id: os-11-11-4 + name: Markers & Highlighters + children: + - os-11-11-4-1 + - os-11-11-4-2 + attributes: + - color +- id: os-11-11-4-1 + name: Highlighters children: [] attributes: - color @@ -938,6 +1400,36 @@ - os-11-11-6-6 attributes: - color +- id: os-11-11-6-1 + name: Chalk Pastels + children: [] + attributes: + - color +- id: os-11-11-6-2 + name: Hard Pastels + children: [] + attributes: + - color +- id: os-11-11-6-3 + name: Oil Pastels + children: [] + attributes: + - color +- id: os-11-11-6-4 + name: Pan Pastels + children: [] + attributes: + - color +- id: os-11-11-6-5 + name: Pastel Pencils + children: [] + attributes: + - color +- id: os-11-11-6-6 + name: Soft Pastels + children: [] + attributes: + - color - id: os-11-11-7 name: Pens & Pencils children: @@ -992,6 +1484,41 @@ - os-11-11-7-3-5 attributes: - ink_color +- id: os-11-11-7-3-1 + name: Ballpoint Pens + children: [] + attributes: + - ink_color + - pen_color + - pen_tip_design +- id: os-11-11-7-3-2 + name: Felt Tips + children: [] + attributes: + - felt_tip_design + - ink_color + - pen_color +- id: os-11-11-7-3-3 + name: Fountain Pens + children: [] + attributes: + - ink_color + - pen_color + - pen_tip_design +- id: os-11-11-7-3-4 + name: Gel Pens + children: [] + attributes: + - ink_color + - pen_color + - pen_tip_design +- id: os-11-11-7-3-5 + name: Rollerball Pens + children: [] + attributes: + - ink_color + - pen_color + - pen_tip_design - id: os-12 name: Paper Handling children: @@ -1085,15 +1612,15 @@ children: [] attributes: - color - - pattern - office_supply_material + - pattern - id: os-13-2-1-2 name: Bulletin Board Trim Sets children: [] attributes: - color - - pattern - office_supply_material + - pattern - id: os-13-2-2 name: Bulletin Boards children: [] @@ -1195,530 +1722,3 @@ children: [] attributes: - color -- id: os-3-2-4-1 - name: Electric Binding Machines - children: [] - attributes: - - binding_style -- id: os-3-2-4-2 - name: Manual Binding Machines - children: [] - attributes: - - binding_style -- id: os-3-5-1 - name: Desk Calendars - children: [] - attributes: - - calendar_format - - color - - pattern -- id: os-3-5-2 - name: Organizers - children: [] - attributes: - - calendar_format - - color - - pattern -- id: os-3-5-3 - name: Planners - children: [] - attributes: - - calendar_format - - color - - pattern -- id: os-3-5-4 - name: Wall Calendars - children: [] - attributes: - - calendar_format - - color - - pattern -- id: os-3-10-1 - name: Desktop Organizers - children: [] - attributes: - - color - - material - - pattern -- id: os-3-10-2 - name: Drawer Organizers - children: [] - attributes: - - color - - material - - pattern -- id: os-3-10-3 - name: File Sorters - children: [] - attributes: - - color - - material - - pattern -- id: os-3-10-4 - name: Pen Holders - children: [] - attributes: - - color - - material - - pattern -- id: os-4-3-1 - name: Kneaded Erasers - children: [] - attributes: - - color - - material - - pattern -- id: os-4-3-2 - name: Mechanical Erasers - children: [] - attributes: - - color - - material - - pattern -- id: os-4-3-3 - name: Standard Erasers - children: [] - attributes: - - color - - material - - pattern - - supply_shape -- id: os-4-5-1 - name: Laminating Film Rolls - children: [] - attributes: - - finish - - paper_size -- id: os-4-5-2 - name: Laminating Pouches - children: [] - attributes: - - finish - - paper_size -- id: os-4-5-3 - name: Laminating Sheets - children: [] - attributes: - - finish - - paper_size -- id: os-4-7-1 - name: Invisible Tape - children: [] - attributes: - - color -- id: os-4-7-2 - name: Transparent Tape - children: [] - attributes: - - color -- id: os-4-9-9-1 - name: Composition Notebooks - children: [] - attributes: - - color - - paper_type - - pattern - - sheet_color -- id: os-4-9-9-3 - name: Journals - children: [] - attributes: - - color - - paper_type - - pattern - - sheet_color -- id: os-4-9-9-4 - name: Memo Pads - children: [] - attributes: - - color - - paper_type - - pattern - - sheet_color -- id: os-4-9-9-5 - name: Notepads - children: [] - attributes: - - color - - paper_type - - pattern - - sheet_color -- id: os-4-9-9-6 - name: Pocket Notebooks - children: [] - attributes: - - color - - paper_type - - pattern - - sheet_color -- id: os-4-9-9-9 - name: Subject Notebooks - children: [] - attributes: - - color - - paper_type - - pattern - - sheet_color -- id: os-7-1 - name: Desk Name Plates - children: [] - attributes: - - office_supply_material -- id: os-7-2 - name: Door Name Plates - children: [] - attributes: - - office_supply_material -- id: os-11-5 - name: Office Stamps - children: - - os-11-5-1 - - os-11-5-2 - - os-11-5-3 - - os-11-5-4 - - os-11-5-5 - - os-11-5-6 - - os-11-5-7 - - os-11-5-8 - attributes: - - color - - ink_color - - stamp_type - - text_plate_material -- id: os-11-5-1 - name: Address Stamps - children: [] - attributes: - - color - - ink_color - - stamp_type - - text_plate_material -- id: os-11-5-2 - name: Date Stamps - children: [] - attributes: - - color - - ink_color - - stamp_type - - text_plate_material -- id: os-11-5-3 - name: Embossing Stamps - children: [] - attributes: - - color - - ink_color - - stamp_type - - text_plate_material -- id: os-11-5-4 - name: Notary Stamps - children: [] - attributes: - - color - - ink_color - - stamp_type - - text_plate_material -- id: os-11-5-5 - name: Passport Stamps - children: [] - attributes: - - color - - ink_color - - stamp_type - - text_plate_material -- id: os-11-5-6 - name: Postage Stamps - children: [] - attributes: - - color - - ink_color - - stamp_type - - text_plate_material -- id: os-11-5-7 - name: Signature Stamps - children: [] - attributes: - - color - - ink_color - - stamp_type - - text_plate_material -- id: os-11-5-8 - name: Vintage Stamps - children: [] - attributes: - - color - - ink_color - - stamp_type - - text_plate_material -- id: os-11-6-1 - name: Bladeless Sharpeners - children: [] - attributes: - - color - - pattern - - office_instrument_material -- id: os-11-6-2 - name: Carpenter Sharpeners - children: [] - attributes: - - color - - pattern - - office_instrument_material -- id: os-11-6-3 - name: Double Sharpeners - children: [] - attributes: - - color - - pattern - - office_instrument_material -- id: os-11-6-4 - name: Electric Pencil Sharpeners - children: [] - attributes: - - color - - pattern - - power_source - - office_instrument_material -- id: os-11-6-5 - name: Mechanical Sharpeners - children: [] - attributes: - - color - - pattern - - office_instrument_material -- id: os-11-6-6 - name: Standard Sharpeners - children: [] - attributes: - - color - - pattern - - office_instrument_material -- id: os-11-8-1 - name: Bookbinding Staplers - children: [] - attributes: - - color - - pattern - - office_instrument_material -- id: os-11-8-2 - name: Electric Staplers - children: [] - attributes: - - color - - pattern - - office_instrument_material -- id: os-11-8-3 - name: Full Strip Staplers - children: [] - attributes: - - color - - pattern - - office_instrument_material -- id: os-11-8-4 - name: Half Strip Staplers - children: [] - attributes: - - color - - pattern - - office_instrument_material -- id: os-11-8-5 - name: Heavy Duty Staplers - children: [] - attributes: - - color - - pattern - - office_instrument_material -- id: os-11-8-6 - name: Long Reach Staplers - children: [] - attributes: - - color - - pattern - - office_instrument_material -- id: os-11-8-7 - name: Mini Staplers - children: [] - attributes: - - color - - pattern - - office_instrument_material -- id: os-11-8-8 - name: Plier Staplers - children: [] - attributes: - - color - - pattern - - office_instrument_material -- id: os-11-8-9 - name: Saddle Staplers - children: [] - attributes: - - color - - pattern - - office_instrument_material -- id: os-11-11-1-1 - name: Charcoal Pencils - children: [] - attributes: - - color - - hardness -- id: os-11-11-1-2 - name: Compressed Charcoals - children: [] - attributes: - - color - - hardness -- id: os-11-11-1-3 - name: Conté Charcoals - children: [] - attributes: - - color - - hardness -- id: os-11-11-1-4 - name: Graphite Charcoals - children: [] - attributes: - - color - - hardness -- id: os-11-11-1-5 - name: Nitram Charcoals - children: [] - attributes: - - color - - hardness -- id: os-11-11-1-6 - name: Pastel Charcoals - children: [] - attributes: - - color - - hardness -- id: os-11-11-1-7 - name: Powdered Charcoals - children: [] - attributes: - - color - - hardness -- id: os-11-11-1-8 - name: Vine Charcoals - children: [] - attributes: - - color - - hardness -- id: os-11-11-1-9 - name: Willow Charcoals - children: [] - attributes: - - color - - hardness -- id: os-11-11-3-1 - name: Gel Crayons - children: [] - attributes: - - color -- id: os-11-11-3-2 - name: Jumbo Crayons - children: [] - attributes: - - color -- id: os-11-11-3-3 - name: Metallic Crayons - children: [] - attributes: - - color -- id: os-11-11-3-4 - name: Neon Crayons - children: [] - attributes: - - color -- id: os-11-11-3-5 - name: Regular Crayons - children: [] - attributes: - - color -- id: os-11-11-3-6 - name: Scented Crayons - children: [] - attributes: - - color -- id: os-11-11-3-7 - name: Twistable Crayons - children: [] - attributes: - - color -- id: os-11-11-3-8 - name: Watercolor Crayons - children: [] - attributes: - - color -- id: os-11-11-6-1 - name: Chalk Pastels - children: [] - attributes: - - color -- id: os-11-11-6-2 - name: Hard Pastels - children: [] - attributes: - - color -- id: os-11-11-6-3 - name: Oil Pastels - children: [] - attributes: - - color -- id: os-11-11-6-4 - name: Pan Pastels - children: [] - attributes: - - color -- id: os-11-11-6-5 - name: Pastel Pencils - children: [] - attributes: - - color -- id: os-11-11-6-6 - name: Soft Pastels - children: [] - attributes: - - color -- id: os-11-11-7-3-1 - name: Ballpoint Pens - children: [] - attributes: - - ink_color - - pen_color - - pen_tip_design -- id: os-11-11-7-3-2 - name: Felt Tips - children: [] - attributes: - - felt_tip_design - - ink_color - - pen_color -- id: os-11-11-7-3-3 - name: Fountain Pens - children: [] - attributes: - - ink_color - - pen_color - - pen_tip_design -- id: os-11-11-7-3-4 - name: Gel Pens - children: [] - attributes: - - ink_color - - pen_color - - pen_tip_design -- id: os-11-11-7-3-5 - name: Rollerball Pens - children: [] - attributes: - - ink_color - - pen_color - - pen_tip_design -- id: os-5-1 - name: Handheld Impulse Sealers - children: [] - attributes: [] -- id: os-5-2 - name: Tabletop Impulse Sealers - children: [] - attributes: [] diff --git a/data/categories/sg_sporting_goods.yml b/data/categories/sg_sporting_goods.yml index 1b8728ec..3a2734a0 100644 --- a/data/categories/sg_sporting_goods.yml +++ b/data/categories/sg_sporting_goods.yml @@ -3,15 +3,16 @@ name: Sporting Goods children: - sg-1 + - sg-2 - sg-3 - sg-4 - - sg-2 attributes: - color - pattern - id: sg-1 name: Athletics children: + - sg-1-1 - sg-1-2 - sg-1-3 - sg-1-4 @@ -23,7 +24,6 @@ - sg-1-10 - sg-1-11 - sg-1-12 - - sg-1-1 - sg-1-13 - sg-1-14 - sg-1-15 @@ -40,23 +40,198 @@ attributes: - color - pattern +- id: sg-1-1 + name: American Football + children: + - sg-1-1-1 + - sg-1-1-2 + - sg-1-1-3 + - sg-1-1-4 + - sg-1-1-5 + - sg-1-1-6 + attributes: + - color + - pattern +- id: sg-1-1-1 + name: American Football Gloves + children: [] + attributes: + - accessory_size + - age_group + - color + - handwear_material + - pattern + - target_gender +- id: sg-1-1-2 + name: American Football Goal Posts + children: [] + attributes: + - age_group + - color + - mounting_type + - pattern +- id: sg-1-1-3 + name: American Football Kicking Tees & Holders + children: [] + attributes: + - color + - pattern +- id: sg-1-1-4 + name: American Football Protective Gear + children: + - sg-1-1-4-1 + - sg-1-1-4-2 + - sg-1-1-4-3 + - sg-1-1-4-4 + - sg-1-1-4-5 + - sg-1-1-4-6 + attributes: + - accessory_size + - age_group + - color + - pattern +- id: sg-1-1-4-1 + name: American Football Girdles + children: [] + attributes: + - accessory_size + - age_group + - color + - gear_material + - pattern + - target_gender +- id: sg-1-1-4-2 + name: American Football Helmet Accessories + children: + - sg-1-1-4-2-1 + - sg-1-1-4-2-2 + - sg-1-1-4-2-3 + - sg-1-1-4-2-4 + attributes: + - accessory_size + - age_group + - color + - pattern +- id: sg-1-1-4-2-1 + name: American Football Chin Straps + children: [] + attributes: + - accessory_size + - age_group + - color + - pattern +- id: sg-1-1-4-2-2 + name: American Football Face Masks + children: [] + attributes: + - accessory_size + - age_group + - color + - pattern +- id: sg-1-1-4-2-3 + name: American Football Helmet Padding + children: [] + attributes: + - accessory_size + - age_group + - color + - pattern +- id: sg-1-1-4-2-4 + name: American Football Helmet Visors + children: [] + attributes: + - accessory_size + - age_group + - color + - pattern +- id: sg-1-1-4-3 + name: American Football Helmets + children: [] + attributes: + - accessory_size + - age_group + - color + - pattern +- id: sg-1-1-4-4 + name: American Football Neck Rolls + children: [] + attributes: + - accessory_size + - age_group + - color + - gear_material + - pattern + - target_gender +- id: sg-1-1-4-5 + name: American Football Rib Protection Shirts & Vests + children: [] + attributes: + - accessory_size + - age_group + - color + - gear_material + - pattern + - target_gender +- id: sg-1-1-4-6 + name: American Football Shoulder Pads + children: [] + attributes: + - accessory_size + - age_group + - color + - pattern +- id: sg-1-1-5 + name: American Football Training Equipment + children: + - sg-1-1-5-1 + attributes: + - color + - pattern +- id: sg-1-1-5-1 + name: American Football Dummies & Sleds + children: + - sg-1-1-5-1-1 + - sg-1-1-5-1-2 + attributes: + - color + - pattern +- id: sg-1-1-5-1-1 + name: American Football Dummies + children: [] + attributes: + - color + - pattern +- id: sg-1-1-5-1-2 + name: American Football Sleds + children: [] + attributes: + - color + - pattern +- id: sg-1-1-6 + name: American Footballs + children: [] + attributes: + - ball_size + - color + - ball_material + - pattern - id: sg-1-2 name: Baseball & Softball children: - sg-1-2-1 - sg-1-2-2 - sg-1-2-3 + - sg-1-2-4 - sg-1-2-5 - sg-1-2-6 + - sg-1-2-7 - sg-1-2-8 + - sg-1-2-9 - sg-1-2-10 - sg-1-2-11 - sg-1-2-12 - sg-1-2-13 - sg-1-2-14 - - sg-1-2-4 - - sg-1-2-7 - - sg-1-2-9 attributes: - color - pattern @@ -69,6 +244,20 @@ - color - pattern - sport +- id: sg-1-2-1-1 + name: Baseball & Softball Bases + children: [] + attributes: + - color + - pattern + - sport +- id: sg-1-2-1-2 + name: Baseball & Softball Plates + children: [] + attributes: + - color + - pattern + - sport - id: sg-1-2-2 name: Baseball & Softball Batting Gloves children: [] @@ -77,9 +266,9 @@ - age_group - color - hand_side + - handwear_material - pattern - target_gender - - handwear_material - id: sg-1-2-3 name: Baseball & Softball Gloves & Mitts children: @@ -89,9 +278,27 @@ - age_group - color - hand_side + - handwear_material - pattern - target_gender +- id: sg-1-2-3-1 + name: Baseball & Softball Fielding Gloves + children: [] + attributes: + - accessory_size + - age_group + - color + - hand_side - handwear_material + - pattern + - target_gender +- id: sg-1-2-4 + name: Baseball & Softball Pitching Grips + children: [] + attributes: + - age_group + - color + - pattern - id: sg-1-2-5 name: Baseball & Softball Pitching Mats children: [] @@ -106,6 +313,13 @@ - color - pattern - sport +- id: sg-1-2-7 + name: Baseball & Softball Pitching Rubbers + children: [] + attributes: + - age_group + - color + - pattern - id: sg-1-2-8 name: Baseball & Softball Protective Gear children: @@ -160,31 +374,94 @@ - age_group - color - pattern -- id: sg-1-2-10 - name: Baseball Bats - children: [] +- id: sg-1-2-9 + name: Baseball & Softball Training Aids + children: + - sg-1-2-9-1 + - sg-1-2-9-2 + - sg-1-2-9-3 + - sg-1-2-9-4 + - sg-1-2-9-5 + - sg-1-2-9-6 + - sg-1-2-9-7 attributes: - age_group - - bat_standard - color - pattern - - swing_weighting - - bat_material -- id: sg-1-2-11 - name: Baseballs +- id: sg-1-2-9-1 + name: Baseball & Softball Batting Cages children: [] attributes: - - ball_size + - age_group - color - pattern - - baseball_softball_ball_type - - ball_material -- id: sg-1-2-12 - name: Pitching Machines +- id: sg-1-2-9-2 + name: Baseball & Softball Batting Tees children: [] attributes: + - age_group - color - - compatible_ball_type + - pattern +- id: sg-1-2-9-3 + name: Baseball & Softball Hitting Nets + children: [] + attributes: + - age_group + - color + - pattern +- id: sg-1-2-9-4 + name: Baseball & Softball Pitching Screens + children: [] + attributes: + - age_group + - color + - pattern +- id: sg-1-2-9-5 + name: Baseball & Softball Pitching Targets + children: [] + attributes: + - age_group + - color + - pattern +- id: sg-1-2-9-6 + name: Baseball & Softball Radar Guns + children: [] + attributes: + - age_group + - color + - pattern +- id: sg-1-2-9-7 + name: Baseball & Softball Swing Trainers + children: [] + attributes: + - age_group + - color + - pattern +- id: sg-1-2-10 + name: Baseball Bats + children: [] + attributes: + - age_group + - bat_standard + - color + - bat_material + - pattern + - swing_weighting +- id: sg-1-2-11 + name: Baseballs + children: [] + attributes: + - ball_size + - baseball_softball_ball_type + - color + - ball_material + - pattern +- id: sg-1-2-12 + name: Pitching Machines + children: [] + attributes: + - color + - compatible_ball_type - pattern - id: sg-1-2-13 name: Softball Bats @@ -193,17 +470,17 @@ - age_group - bat_standard - color + - bat_material - pattern - sports_discipline - - bat_material - id: sg-1-2-14 name: Softballs children: [] attributes: - ball_size - color - - pattern - ball_material + - pattern - id: sg-1-3 name: Basketball children: @@ -238,19 +515,19 @@ children: [] attributes: - age_group + - basketball_equipment_included - color - material - pattern - - basketball_equipment_included - id: sg-1-3-1-3 name: Basketball Hoop Posts children: [] attributes: - age_group - - color - - pattern - basketball_equipment_included + - color - post_material + - pattern - id: sg-1-3-1-4 name: Basketball Nets children: [] @@ -273,11 +550,11 @@ children: [] attributes: - age_group + - basketball_equipment_included - color - material - pattern - suitable_space - - basketball_equipment_included - id: sg-1-3-3 name: Basketball Training Aids children: @@ -289,14 +566,42 @@ - age_group - color - pattern +- id: sg-1-3-3-1 + name: Basketball Defensive Mannequins + children: [] + attributes: + - age_group + - color + - pattern +- id: sg-1-3-3-2 + name: Basketball Dribble Goggles + children: [] + attributes: + - age_group + - color + - pattern +- id: sg-1-3-3-3 + name: Basketball Jump Trainers + children: [] + attributes: + - age_group + - color + - pattern +- id: sg-1-3-3-4 + name: Basketball Shooting Aids + children: [] + attributes: + - age_group + - color + - pattern - id: sg-1-3-4 name: Basketballs children: [] attributes: - ball_size - color - - pattern - ball_material + - pattern - id: sg-1-4 name: Boxing & Martial Arts children: @@ -312,53 +617,107 @@ - id: sg-1-4-1 name: Boxing & Martial Arts Protective Gear children: - - sg-1-4-1-5 - sg-1-4-1-1 - sg-1-4-1-2 - sg-1-4-1-3 - - sg-1-4-1-6 - sg-1-4-1-4 + - sg-1-4-1-5 + - sg-1-4-1-6 attributes: - accessory_size - age_group - color - pattern -- id: sg-1-4-1-5 - name: Boxing & MMA Hand Wraps +- id: sg-1-4-1-1 + name: Boxing & Martial Arts Arm Guards children: [] attributes: - accessory_size - age_group - color - pattern - - target_gender +- id: sg-1-4-1-2 + name: Boxing & Martial Arts Body Protectors + children: [] + attributes: + - accessory_size + - age_group + - color + - pattern +- id: sg-1-4-1-3 + name: Boxing & Martial Arts Headgear + children: [] + attributes: + - accessory_size + - age_group + - color - gear_material -- id: sg-1-4-1-1 - name: Boxing & Martial Arts Arm Guards + - pattern + - target_gender +- id: sg-1-4-1-4 + name: Boxing & MMA Gloves & Mitts + children: + - sg-1-4-1-4-1 + - sg-1-4-1-4-2 + - sg-1-4-1-4-3 + - sg-1-4-1-4-4 + attributes: + - accessory_size + - age_group + - color + - handwear_material + - pattern + - target_gender +- id: sg-1-4-1-4-1 + name: Bag Mitts children: [] attributes: - accessory_size - age_group - color + - handwear_material - pattern -- id: sg-1-4-1-2 - name: Boxing & Martial Arts Body Protectors + - target_gender +- id: sg-1-4-1-4-2 + name: Fight Gloves children: [] attributes: - accessory_size - age_group - color + - handwear_material - pattern -- id: sg-1-4-1-3 - name: Boxing & Martial Arts Headgear + - target_gender +- id: sg-1-4-1-4-3 + name: MMA Gloves + children: [] + attributes: + - accessory_size + - age_group + - color + - handwear_material + - pattern + - target_gender +- id: sg-1-4-1-4-4 + name: Sparring Gloves children: [] attributes: - accessory_size - age_group - color + - handwear_material - pattern - target_gender +- id: sg-1-4-1-5 + name: Boxing & MMA Hand Wraps + children: [] + attributes: + - accessory_size + - age_group + - color - gear_material + - pattern + - target_gender - id: sg-1-4-1-6 name: MMA Shin Guards children: [] @@ -385,9 +744,9 @@ - accessory_size - age_group - color + - handwear_material - pattern - target_gender - - handwear_material - id: sg-1-4-2-2 name: Grappling Dummies children: [] @@ -405,6 +764,27 @@ - age_group - color - pattern +- id: sg-1-4-2-3-1 + name: Punching & Training Cases + children: [] + attributes: + - age_group + - color + - pattern +- id: sg-1-4-2-3-2 + name: Punching & Training Hooks + children: [] + attributes: + - age_group + - color + - pattern +- id: sg-1-4-2-3-3 + name: Punching & Training Ropes + children: [] + attributes: + - age_group + - color + - pattern - id: sg-1-4-2-4 name: Punching & Training Bags children: @@ -420,11787 +800,11233 @@ attributes: - age_group - color - - pattern - punching_training_bag_material -- id: sg-1-4-2-5 - name: Strike Shields + - pattern +- id: sg-1-4-2-4-1 + name: Punching & Training Body Opponent Bags children: [] attributes: - age_group - color + - punching_training_bag_material - pattern -- id: sg-1-4-3 - name: Boxing Ring Parts - children: - - sg-1-4-3-1 - - sg-1-4-3-2 - - sg-1-4-3-3 +- id: sg-1-4-2-4-2 + name: Punching & Training Double-End Bags + children: [] attributes: + - age_group - color - - material + - punching_training_bag_material - pattern -- id: sg-1-4-4 - name: Boxing Rings +- id: sg-1-4-2-4-3 + name: Punching & Training Heavy Bags children: [] attributes: + - age_group - color - - material + - punching_training_bag_material - pattern -- id: sg-1-4-5 - name: Martial Arts Belts +- id: sg-1-4-2-4-4 + name: Punching & Training Maize Bags children: [] attributes: - - accessory_size - age_group - color + - punching_training_bag_material - pattern - - target_gender - - clothing_accessory_material -- id: sg-1-4-6 - name: Martial Arts Weapons - children: - - sg-1-4-6-1 - - sg-1-4-6-2 - - sg-1-4-6-3 - - sg-1-4-6-4 +- id: sg-1-4-2-4-5 + name: Punching & Training Pedestal Bags + children: [] attributes: - age_group - color + - punching_training_bag_material - pattern -- id: sg-1-5 - name: Broomball Equipment - children: - - sg-1-5-1 - - sg-1-5-2 - - sg-1-5-3 +- id: sg-1-4-2-4-6 + name: Punching & Training Punch Pads + children: [] attributes: - age_group - color + - punching_training_bag_material - pattern -- id: sg-1-6 - name: Cheerleading - children: - - sg-1-6-1 - attributes: - - color - - pattern -- id: sg-1-6-1 - name: Cheerleading Pom Poms +- id: sg-1-4-2-4-7 + name: Punching & Training Speed Bags children: [] attributes: + - age_group - color + - punching_training_bag_material - pattern -- id: sg-1-7 - name: Coaching & Officiating - children: - - sg-1-7-1 - - sg-1-7-2 - - sg-1-7-3 - - sg-1-7-5 - - sg-1-7-6 - - sg-1-7-7 - - sg-1-7-8 - - sg-1-7-9 - - sg-1-7-10 - - sg-1-7-11 - - sg-1-7-4 - attributes: - - color - - pattern -- id: sg-1-7-1 - name: Captains Armbands +- id: sg-1-4-2-4-8 + name: Punching & Training Uppercut Bags children: [] attributes: - - accessory_size - age_group - color + - punching_training_bag_material - pattern -- id: sg-1-7-2 - name: Field & Court Boundary Markers - children: - - sg-1-7-2-1 - - sg-1-7-2-2 - - sg-1-7-2-3 +- id: sg-1-4-2-4-9 + name: Punching & Training Wall Bags + children: [] attributes: + - age_group - color + - punching_training_bag_material - pattern -- id: sg-1-7-3 - name: Flip Coins & Discs - children: - - sg-1-7-3-1 - - sg-1-7-3-2 +- id: sg-1-4-2-5 + name: Strike Shields + children: [] attributes: + - age_group - color - pattern -- id: sg-1-7-5 - name: Penalty Cards & Flags +- id: sg-1-4-3 + name: Boxing Ring Parts children: - - sg-1-7-5-1 - - sg-1-7-5-2 + - sg-1-4-3-1 + - sg-1-4-3-2 + - sg-1-4-3-3 attributes: - color + - material - pattern - - sport -- id: sg-1-7-6 - name: Pitch Counters +- id: sg-1-4-3-1 + name: Boxing Ring Ceiling Hangers children: [] attributes: - color + - material - pattern -- id: sg-1-7-7 - name: Referee Stands & Chairs - children: - - sg-1-7-7-1 - - sg-1-7-7-2 - attributes: - - color - - pattern - - sport - - furniture_fixture_material -- id: sg-1-7-8 - name: Referee Wallets +- id: sg-1-4-3-2 + name: Boxing Ring Nets children: [] attributes: - color + - net_material - pattern - - sport - - clothing_accessory_material -- id: sg-1-7-9 - name: Scoreboards - children: - - sg-1-7-9-1 - - sg-1-7-9-2 +- id: sg-1-4-3-3 + name: Boxing Ring Poles + children: [] attributes: - color + - material - pattern - - sport -- id: sg-1-7-10 - name: Sport & Safety Whistles - children: - - sg-1-7-10-1 - - sg-1-7-10-2 - - sg-1-7-10-3 +- id: sg-1-4-4 + name: Boxing Rings + children: [] attributes: - color - material - pattern - - sport -- id: sg-1-7-11 - name: Umpire Indicators +- id: sg-1-4-5 + name: Martial Arts Belts children: [] attributes: + - accessory_size + - age_group - color - - material + - clothing_accessory_material - pattern -- id: sg-1-8 - name: Cricket + - target_gender +- id: sg-1-4-6 + name: Martial Arts Weapons children: - - sg-1-8-1 - - sg-1-8-2 - - sg-1-8-3 - - sg-1-8-4 - - sg-1-8-5 - - sg-1-8-6 - - sg-1-8-7 + - sg-1-4-6-1 + - sg-1-4-6-2 + - sg-1-4-6-3 + - sg-1-4-6-4 attributes: + - age_group - color - pattern -- id: sg-1-8-1 - name: Cricket Balls +- id: sg-1-4-6-1 + name: Bo Staffs children: [] attributes: - - ball_size - - color - - pattern - - ball_material -- id: sg-1-8-2 - name: Cricket Bat Accessories - children: - - sg-1-8-2-1 - attributes: + - age_group - color - pattern -- id: sg-1-8-2-1 - name: Cricket Bat Grips +- id: sg-1-4-6-2 + name: Nunchucks children: [] attributes: + - age_group - color - - material - pattern -- id: sg-1-8-3 - name: Cricket Bats +- id: sg-1-4-6-3 + name: Sais children: [] attributes: - age_group - color - pattern - - bat_material -- id: sg-1-8-4 - name: Cricket Equipment Sets +- id: sg-1-4-6-4 + name: Tonfas children: [] attributes: + - age_group - color - pattern - - cricket_equipment_included -- id: sg-1-8-5 - name: Cricket Protective Gear +- id: sg-1-5 + name: Broomball Equipment children: - - sg-1-8-5-2 - - sg-1-8-5-3 - - sg-1-8-5-1 + - sg-1-5-1 + - sg-1-5-2 + - sg-1-5-3 attributes: - - accessory_size - age_group - color - pattern -- id: sg-1-8-5-2 - name: Cricket Helmets +- id: sg-1-5-1 + name: Broomball Balls children: [] attributes: - - accessory_size - age_group - color - pattern -- id: sg-1-8-5-3 - name: Cricket Leg Guards +- id: sg-1-5-2 + name: Broomball Brooms children: [] attributes: - - accessory_size - age_group - color - pattern -- id: sg-1-8-6 - name: Cricket Stumps +- id: sg-1-5-3 + name: Broomball Goals children: [] attributes: - age_group - color - - material + - mounting_type - pattern -- id: sg-1-9 - name: Dancing +- id: sg-1-6 + name: Cheerleading children: - - sg-1-9-1 + - sg-1-6-1 attributes: - color - pattern -- id: sg-1-9-1 - name: Ballet Barres +- id: sg-1-6-1 + name: Cheerleading Pom Poms children: [] attributes: - color - - material - pattern -- id: sg-1-10 - name: Fencing +- id: sg-1-7 + name: Coaching & Officiating children: - - sg-1-10-1 - - sg-1-10-4 - - sg-1-10-2 - - sg-1-10-3 + - sg-1-7-1 + - sg-1-7-2 + - sg-1-7-3 + - sg-1-7-4 + - sg-1-7-5 + - sg-1-7-6 + - sg-1-7-7 + - sg-1-7-8 + - sg-1-7-9 + - sg-1-7-10 + - sg-1-7-11 attributes: - color - pattern -- id: sg-1-10-1 - name: Fencing Protective Gear - children: - - sg-1-10-1-2 - - sg-1-10-1-3 - - sg-1-10-1-4 - - sg-1-10-1-1 - - sg-1-10-1-5 +- id: sg-1-7-1 + name: Captains Armbands + children: [] attributes: - accessory_size - age_group - color - pattern -- id: sg-1-10-1-2 - name: Fencing Gloves & Cuffs - children: [] +- id: sg-1-7-2 + name: Field & Court Boundary Markers + children: + - sg-1-7-2-1 + - sg-1-7-2-2 + - sg-1-7-2-3 attributes: - - accessory_size - - age_group - color - pattern - - target_gender - - handwear_material -- id: sg-1-10-1-3 - name: Fencing Jackets & Lamés +- id: sg-1-7-2-1 + name: Boundary Cones children: [] attributes: - - accessory_size - - age_group - color - pattern - - target_gender - - gear_material -- id: sg-1-10-1-4 - name: Fencing Masks +- id: sg-1-7-2-2 + name: Field Marking Paint children: [] attributes: - - accessory_size - - age_group - - color - - pattern -- id: sg-1-10-4 - name: Fencing Weapons - children: - - sg-1-10-4-1 - - sg-1-10-4-2 - - sg-1-10-4-3 - - sg-1-10-4-4 - attributes: - - accessory_size - color - - grip_type - - hand_side - pattern -- id: sg-1-11 - name: Field Hockey & Lacrosse - children: - - sg-1-11-1 - - sg-1-11-2 - - sg-1-11-3 - - sg-1-11-4 - - sg-1-11-6 - - sg-1-11-7 - - sg-1-11-8 - - sg-1-11-9 - - sg-1-11-10 - - sg-1-11-11 - - sg-1-11-5 +- id: sg-1-7-2-3 + name: Field Marking Tape + children: [] attributes: - color - pattern -- id: sg-1-11-1 - name: Field Hockey & Lacrosse Protective Gear +- id: sg-1-7-3 + name: Flip Coins & Discs children: - - sg-1-11-1-1 - - sg-1-11-1-2 - - sg-1-11-1-3 - - sg-1-11-1-4 + - sg-1-7-3-1 + - sg-1-7-3-2 attributes: - - accessory_size - - age_group - color - pattern -- id: sg-1-11-1-1 - name: Field Hockey & Lacrosse Gloves +- id: sg-1-7-3-1 + name: Flip Coins children: [] attributes: - - accessory_size - - age_group - color - pattern - - target_gender - - handwear_material -- id: sg-1-11-1-2 - name: Field Hockey & Lacrosse Helmets +- id: sg-1-7-3-2 + name: Flip Discs children: [] attributes: - - accessory_size - - age_group - color - pattern -- id: sg-1-11-1-3 - name: Field Hockey & Lacrosse Masks & Goggles - children: [] +- id: sg-1-7-4 + name: Officiating Flags + children: + - sg-1-7-4-1 + - sg-1-7-4-2 + - sg-1-7-4-3 attributes: - - accessory_size - - age_group - color - pattern -- id: sg-1-11-1-4 - name: Field Hockey & Lacrosse Pads + - sport +- id: sg-1-7-4-1 + name: Checkered Flags children: [] attributes: - - accessory_size - - age_group - color - pattern -- id: sg-1-11-2 - name: Field Hockey Balls + - sport +- id: sg-1-7-4-2 + name: Corner Flags children: [] attributes: - - ball_size - color - pattern - - ball_material -- id: sg-1-11-3 - name: Field Hockey Goals + - sport +- id: sg-1-7-4-3 + name: Linesman Flags children: [] attributes: - - age_group - color - - mounting_type - pattern -- id: sg-1-11-4 - name: Field Hockey Sticks - children: [] + - sport +- id: sg-1-7-5 + name: Penalty Cards & Flags + children: + - sg-1-7-5-1 + - sg-1-7-5-2 attributes: - - age_group - color - pattern - - stick_material -- id: sg-1-11-6 - name: Lacrosse Balls + - sport +- id: sg-1-7-5-1 + name: Penalty Cards children: [] attributes: - - ball_size - color - pattern - - ball_material -- id: sg-1-11-7 - name: Lacrosse Equipment Sets + - sport +- id: sg-1-7-5-2 + name: Penalty Flags children: [] attributes: - color - pattern - - lacrosse_equipment_included -- id: sg-1-11-8 - name: Lacrosse Goals + - sport +- id: sg-1-7-6 + name: Pitch Counters children: [] attributes: - - age_group - color - - mounting_type - pattern -- id: sg-1-11-9 - name: Lacrosse Stick Parts +- id: sg-1-7-7 + name: Referee Stands & Chairs children: - - sg-1-11-9-1 - - sg-1-11-9-2 - - sg-1-11-9-3 - attributes: - - color - - pattern -- id: sg-1-11-9-1 - name: Lacrosse Mesh & String - children: [] + - sg-1-7-7-1 + - sg-1-7-7-2 attributes: - color + - furniture_fixture_material - pattern -- id: sg-1-11-9-2 - name: Lacrosse Stick Heads + - sport +- id: sg-1-7-7-1 + name: Referee Chairs children: [] attributes: - color + - furniture_fixture_material - pattern - - player_position - - recommended_skill_level -- id: sg-1-11-9-3 - name: Lacrosse Stick Shafts + - sport +- id: sg-1-7-7-2 + name: Referee Stands children: [] attributes: - color - - hand_side + - furniture_fixture_material - pattern - - stick_material -- id: sg-1-11-10 - name: Lacrosse Sticks + - sport +- id: sg-1-7-8 + name: Referee Wallets children: [] attributes: - - age_group - - color - - pattern - - stick_material -- id: sg-1-11-11 - name: Lacrosse Training Aids - children: - - sg-1-11-11-1 - - sg-1-11-11-2 - attributes: - - age_group - color + - clothing_accessory_material - pattern -- id: sg-1-12 - name: Figure Skating & Hockey + - sport +- id: sg-1-7-9 + name: Scoreboards children: - - sg-1-12-2 - - sg-1-12-3 - - sg-1-12-4 - - sg-1-12-5 - - sg-1-12-6 - - sg-1-12-7 - - sg-1-12-8 - - sg-1-12-9 - - sg-1-12-10 - - sg-1-12-1 + - sg-1-7-9-1 + - sg-1-7-9-2 attributes: - color - pattern -- id: sg-1-12-2 - name: Hockey Balls & Pucks - children: - - sg-1-12-2-1 - - sg-1-12-2-2 + - sport +- id: sg-1-7-9-1 + name: Electronic Scoreboards + children: [] attributes: - - ball_size - color - pattern - - ball_material -- id: sg-1-12-3 - name: Hockey Goals + - sport +- id: sg-1-7-9-2 + name: Manual Scoreboards children: [] attributes: - - age_group - color - - mounting_type - pattern -- id: sg-1-12-4 - name: Hockey Protective Gear + - sport +- id: sg-1-7-10 + name: Sport & Safety Whistles children: - - sg-1-12-4-1 - - sg-1-12-4-2 - - sg-1-12-4-3 - - sg-1-12-4-4 - - sg-1-12-4-5 - - sg-1-12-4-6 - - sg-1-12-4-7 - - sg-1-12-4-8 + - sg-1-7-10-1 + - sg-1-7-10-2 + - sg-1-7-10-3 attributes: - color + - material - pattern -- id: sg-1-12-4-1 - name: Hockey Elbow Pads + - sport +- id: sg-1-7-10-1 + name: Flip Grip Whistles children: [] attributes: - - accessory_size - - age_group - color + - material - pattern -- id: sg-1-12-4-2 - name: Hockey Gloves + - sport +- id: sg-1-7-10-2 + name: Ginger Grip Whistles children: [] attributes: - - accessory_size - - age_group - - color - - pattern - - target_gender - - handwear_material -- id: sg-1-12-4-3 - name: Hockey Goalie Equipment Sets + - sport +- id: sg-1-7-10-3 + name: Traditional Whistles children: [] attributes: - color + - material - pattern - - hockey_equipment_included -- id: sg-1-12-4-4 - name: Hockey Helmets + - sport +- id: sg-1-7-11 + name: Umpire Indicators children: [] attributes: - - accessory_size - - age_group - color + - material - pattern - - player_position -- id: sg-1-12-4-5 - name: Hockey Pants - children: [] +- id: sg-1-8 + name: Cricket + children: + - sg-1-8-1 + - sg-1-8-2 + - sg-1-8-3 + - sg-1-8-4 + - sg-1-8-5 + - sg-1-8-6 + - sg-1-8-7 attributes: - - accessory_size - - age_group - color - pattern - - target_gender - - gear_material -- id: sg-1-12-4-6 - name: Hockey Shin Guards & Leg Pads +- id: sg-1-8-1 + name: Cricket Balls children: [] attributes: - - accessory_size - - age_group + - ball_size - color + - ball_material - pattern -- id: sg-1-12-4-7 - name: Hockey Shoulder Pads & Chest Protectors - children: [] +- id: sg-1-8-2 + name: Cricket Bat Accessories + children: + - sg-1-8-2-1 attributes: - - accessory_size - - age_group - color - pattern -- id: sg-1-12-4-8 - name: Hockey Suspenders & Belts +- id: sg-1-8-2-1 + name: Cricket Bat Grips children: [] attributes: - - accessory_size - - age_group - color - - fastener_type + - material - pattern -- id: sg-1-12-5 - name: Hockey Sledges +- id: sg-1-8-3 + name: Cricket Bats children: [] attributes: - age_group - color + - bat_material - pattern -- id: sg-1-12-6 - name: Hockey Stick Care - children: - - sg-1-12-6-1 - - sg-1-12-6-2 - - sg-1-12-6-3 - - sg-1-12-6-4 +- id: sg-1-8-4 + name: Cricket Equipment Sets + children: [] attributes: - color + - cricket_equipment_included - pattern -- id: sg-1-12-7 - name: Hockey Stick Parts +- id: sg-1-8-5 + name: Cricket Protective Gear children: - - sg-1-12-7-1 - - sg-1-12-7-2 + - sg-1-8-5-1 + - sg-1-8-5-2 + - sg-1-8-5-3 attributes: + - accessory_size + - age_group - color - pattern -- id: sg-1-12-7-1 - name: Hockey Stick Blades +- id: sg-1-8-5-1 + name: Cricket Gloves & Mitts children: [] attributes: + - accessory_size - age_group - - blade_curve - color - - hand_side + - handwear_material - pattern - - blade_material -- id: sg-1-12-7-2 - name: Hockey Stick Shafts + - target_gender +- id: sg-1-8-5-2 + name: Cricket Helmets children: [] attributes: + - accessory_size - age_group - color - - hand_side - pattern - - stick_material -- id: sg-1-12-8 - name: Hockey Sticks +- id: sg-1-8-5-3 + name: Cricket Leg Guards children: [] attributes: + - accessory_size - age_group - color - pattern - - stick_material -- id: sg-1-12-9 - name: Ice Skate Parts & Accessories - children: - - sg-1-12-9-1 - - sg-1-12-9-2 - - sg-1-12-9-3 - - sg-1-12-9-4 - - sg-1-12-9-5 +- id: sg-1-8-6 + name: Cricket Stumps + children: [] attributes: + - age_group - color + - material - pattern -- id: sg-1-12-9-1 - name: Figure Skate Boots - children: [] +- id: sg-1-8-7 + name: Cricket Training Aids + children: + - sg-1-8-7-1 + - sg-1-8-7-2 + - sg-1-8-7-3 + - sg-1-8-7-4 + - sg-1-8-7-5 + - sg-1-8-7-6 + - sg-1-8-7-7 + - sg-1-8-7-8 + - sg-1-8-7-9 attributes: - age_group - color - pattern - - shoe_size -- id: sg-1-12-9-2 - name: Ice Skate Blades +- id: sg-1-8-7-1 + name: Cricket Batting Tees children: [] attributes: + - age_group - color - pattern -- id: sg-1-12-9-3 - name: Ice Skate Sharpeners +- id: sg-1-8-7-2 + name: Cricket Boundary Ropes children: [] attributes: + - age_group - color - pattern - - hardware_material -- id: sg-1-12-9-4 - name: Skate Blade Guards +- id: sg-1-8-7-3 + name: Cricket Bowling Machines children: [] attributes: + - age_group - color - pattern -- id: sg-1-12-9-5 - name: Skate Lace Tighteners +- id: sg-1-8-7-4 + name: Cricket Bowling Markers children: [] attributes: + - age_group - color - pattern -- id: sg-1-12-10 - name: Ice Skates - children: - - sg-1-12-10-1 - - sg-1-12-10-2 - - sg-1-12-10-3 - - sg-1-12-10-4 - - sg-1-12-10-5 - - sg-1-12-10-6 +- id: sg-1-8-7-5 + name: Cricket Fielding Aids + children: [] attributes: - age_group - color - pattern - - shoe_size - - target_gender -- id: sg-1-1 - name: American Football - children: - - sg-1-1-1 - - sg-1-1-2 - - sg-1-1-3 - - sg-1-1-4 - - sg-1-1-5 - - sg-1-1-6 +- id: sg-1-8-7-6 + name: Cricket Nets + children: [] attributes: + - age_group - color - pattern -- id: sg-1-1-1 - name: American Football Gloves +- id: sg-1-8-7-7 + name: Cricket Pitch Mats children: [] attributes: - - accessory_size - age_group - color - pattern - - target_gender - - handwear_material -- id: sg-1-1-2 - name: American Football Goal Posts +- id: sg-1-8-7-8 + name: Cricket Rebounders children: [] attributes: - age_group - color - - mounting_type - pattern -- id: sg-1-1-3 - name: American Football Kicking Tees & Holders +- id: sg-1-8-7-9 + name: Cricket Stump Targets children: [] attributes: + - age_group - color - pattern -- id: sg-1-1-4 - name: American Football Protective Gear +- id: sg-1-9 + name: Dancing children: - - sg-1-1-4-1 - - sg-1-1-4-2 - - sg-1-1-4-3 - - sg-1-1-4-4 - - sg-1-1-4-5 - - sg-1-1-4-6 + - sg-1-9-1 attributes: - - accessory_size - - age_group - color - pattern -- id: sg-1-1-4-1 - name: American Football Girdles +- id: sg-1-9-1 + name: Ballet Barres children: [] attributes: - - accessory_size - - age_group - color + - material - pattern - - target_gender - - gear_material -- id: sg-1-1-4-2 - name: American Football Helmet Accessories +- id: sg-1-10 + name: Fencing children: - - sg-1-1-4-2-1 - - sg-1-1-4-2-2 - - sg-1-1-4-2-3 - - sg-1-1-4-2-4 + - sg-1-10-1 + - sg-1-10-2 + - sg-1-10-3 + - sg-1-10-4 + attributes: + - color + - pattern +- id: sg-1-10-1 + name: Fencing Protective Gear + children: + - sg-1-10-1-1 + - sg-1-10-1-2 + - sg-1-10-1-3 + - sg-1-10-1-4 + - sg-1-10-1-5 attributes: - accessory_size - age_group - color - pattern -- id: sg-1-1-4-2-1 - name: American Football Chin Straps +- id: sg-1-10-1-1 + name: Fencing Chest Protectors children: [] attributes: - - accessory_size - age_group - color - pattern -- id: sg-1-1-4-2-2 - name: American Football Face Masks +- id: sg-1-10-1-2 + name: Fencing Gloves & Cuffs children: [] attributes: - accessory_size - age_group - color + - handwear_material - pattern -- id: sg-1-1-4-2-3 - name: American Football Helmet Padding + - target_gender +- id: sg-1-10-1-3 + name: Fencing Jackets & Lamés children: [] attributes: - accessory_size - age_group - color + - gear_material - pattern -- id: sg-1-1-4-2-4 - name: American Football Helmet Visors + - target_gender +- id: sg-1-10-1-4 + name: Fencing Masks children: [] attributes: - accessory_size - age_group - color - pattern -- id: sg-1-1-4-3 - name: American Football Helmets +- id: sg-1-10-1-5 + name: Fencing Plastrons children: [] attributes: - - accessory_size - age_group - color - pattern -- id: sg-1-1-4-4 - name: American Football Neck Rolls +- id: sg-1-10-2 + name: Fencing Scoring Equipment children: [] attributes: - - accessory_size - age_group - color - pattern - - target_gender - - gear_material -- id: sg-1-1-4-5 - name: American Football Rib Protection Shirts & Vests - children: [] +- id: sg-1-10-3 + name: Fencing Training Aids + children: + - sg-1-10-3-1 + - sg-1-10-3-2 + - sg-1-10-3-3 + - sg-1-10-3-4 + - sg-1-10-3-5 + - sg-1-10-3-6 + - sg-1-10-3-7 + - sg-1-10-3-8 attributes: - - accessory_size - age_group - color - pattern - - target_gender - - gear_material -- id: sg-1-1-4-6 - name: American Football Shoulder Pads +- id: sg-1-10-3-1 + name: Fencing Body Cords children: [] attributes: - - accessory_size - age_group - color - pattern -- id: sg-1-1-5 - name: American Football Training Equipment - children: - - sg-1-1-5-1 +- id: sg-1-10-3-2 + name: Fencing Dummies + children: [] attributes: + - age_group - color - pattern -- id: sg-1-1-5-1 - name: American Football Dummies & Sleds - children: - - sg-1-1-5-1-1 - - sg-1-1-5-1-2 +- id: sg-1-10-3-3 + name: Fencing Footwork Trainers + children: [] attributes: + - age_group - color - pattern -- id: sg-1-1-6 - name: American Footballs +- id: sg-1-10-3-4 + name: Fencing Grip Trainers children: [] attributes: - - ball_size + - age_group - color - pattern - - ball_material -- id: sg-1-13 - name: General Purpose Athletic Equipment - children: - - sg-1-13-1 - - sg-1-13-2 - - sg-1-13-3 - - sg-1-13-4 - - sg-1-13-5 - - sg-1-13-6 - - sg-1-13-8 - - sg-1-13-9 - - sg-1-13-10 - - sg-1-13-11 - - sg-1-13-12 - - sg-1-13-13 - - sg-1-13-14 - - sg-1-13-15 - - sg-1-13-7 - - sg-1-13-16 +- id: sg-1-10-3-5 + name: Fencing Lunge Trainers + children: [] attributes: + - age_group - color - pattern -- id: sg-1-13-1 - name: Altitude Training Masks +- id: sg-1-10-3-6 + name: Fencing Practice Strips children: [] attributes: - - accessory_size - age_group - color - pattern -- id: sg-1-13-2 - name: Athletic Cups +- id: sg-1-10-3-7 + name: Fencing Targets children: [] attributes: - - accessory_size - age_group - color - pattern -- id: sg-1-13-3 - name: Ball Carrying Bags & Carts - children: - - sg-1-13-3-1 - - sg-1-13-3-2 - - sg-1-13-3-3 +- id: sg-1-10-3-8 + name: Fencing Training Bags + children: [] attributes: + - age_group - color - pattern - - bag_case_material -- id: sg-1-13-4 - name: Ball Pump Accessories +- id: sg-1-10-4 + name: Fencing Weapons children: - - sg-1-13-4-1 + - sg-1-10-4-1 + - sg-1-10-4-2 + - sg-1-10-4-3 + - sg-1-10-4-4 attributes: + - accessory_size - color + - grip_type + - hand_side - pattern -- id: sg-1-13-4-1 - name: Ball Pump Needles +- id: sg-1-10-4-1 + name: Fencing Epees children: [] attributes: + - accessory_size - color + - grip_type + - hand_side - pattern - - hardware_material -- id: sg-1-13-5 - name: Ball Pumps +- id: sg-1-10-4-2 + name: Fencing Foil Blades children: [] attributes: + - accessory_size - color - - material + - grip_type + - hand_side - pattern - - power_source -- id: sg-1-13-6 - name: Exercise & Gym Mat Storage Racks & Carts - children: - - sg-1-13-6-1 - - sg-1-13-6-2 - - sg-1-13-6-3 +- id: sg-1-10-4-3 + name: Fencing Practice Swords + children: [] attributes: + - age_group - color - - material - pattern -- id: sg-1-13-8 - name: Grip Spray & Chalk +- id: sg-1-10-4-4 + name: Fencing Sabres children: [] attributes: + - accessory_size - color - - material + - grip_type + - hand_side - pattern -- id: sg-1-13-9 - name: Gym Mats - children: [] +- id: sg-1-11 + name: Field Hockey & Lacrosse + children: + - sg-1-11-1 + - sg-1-11-2 + - sg-1-11-3 + - sg-1-11-4 + - sg-1-11-5 + - sg-1-11-6 + - sg-1-11-7 + - sg-1-11-8 + - sg-1-11-9 + - sg-1-11-10 + - sg-1-11-11 attributes: - color - pattern - - exercise_mat_material -- id: sg-1-13-10 - name: Practice Nets & Screens - children: [] +- id: sg-1-11-1 + name: Field Hockey & Lacrosse Protective Gear + children: + - sg-1-11-1-1 + - sg-1-11-1-2 + - sg-1-11-1-3 + - sg-1-11-1-4 attributes: + - accessory_size + - age_group - color - - mounting_type - pattern - - net_material -- id: sg-1-13-11 - name: Speed & Agility Ladders & Hurdles +- id: sg-1-11-1-1 + name: Field Hockey & Lacrosse Gloves children: [] attributes: + - accessory_size + - age_group - color + - handwear_material - pattern -- id: sg-1-13-12 - name: Sports & Agility Cones + - target_gender +- id: sg-1-11-1-2 + name: Field Hockey & Lacrosse Helmets children: [] attributes: + - accessory_size + - age_group - color - pattern - - sport -- id: sg-1-13-13 - name: Sports Megaphones +- id: sg-1-11-1-3 + name: Field Hockey & Lacrosse Masks & Goggles children: [] attributes: + - accessory_size + - age_group - color - pattern - - power_source - - suitable_space -- id: sg-1-13-14 - name: Sports Mouthguards +- id: sg-1-11-1-4 + name: Field Hockey & Lacrosse Pads children: [] attributes: - accessory_size - age_group - color - pattern - - sport - - fit -- id: sg-1-13-15 - name: Stadium Seats & Cushions - children: - - sg-1-13-15-1 - - sg-1-13-15-2 +- id: sg-1-11-2 + name: Field Hockey Balls + children: [] attributes: + - ball_size - color + - ball_material - pattern -- id: sg-1-14 - name: Gymnastics - children: - - sg-1-14-1 - - sg-1-14-2 - - sg-1-14-3 - - sg-1-14-4 - - sg-1-14-6 - - sg-1-14-5 +- id: sg-1-11-3 + name: Field Hockey Goals + children: [] attributes: + - age_group - color + - mounting_type - pattern -- id: sg-1-14-1 - name: Gymnastics Bars & Balance Beams +- id: sg-1-11-4 + name: Field Hockey Sticks children: [] attributes: + - age_group - color + - stick_material - pattern -- id: sg-1-14-2 - name: Gymnastics Protective Gear +- id: sg-1-11-5 + name: Field Hockey Training Aids children: - - sg-1-14-2-1 + - sg-1-11-5-1 + - sg-1-11-5-2 + - sg-1-11-5-3 + - sg-1-11-5-4 + - sg-1-11-5-5 attributes: + - age_group - color - pattern -- id: sg-1-14-2-1 - name: Gymnastics Grips +- id: sg-1-11-5-1 + name: Field Hockey Goalkeeper Training Aids children: [] attributes: + - age_group - color - pattern - - gear_material -- id: sg-1-14-3 - name: Gymnastics Rings +- id: sg-1-11-5-2 + name: Field Hockey Grip Enhancers children: [] attributes: - age_group - color - pattern -- id: sg-1-14-4 - name: Gymnastics Springboards +- id: sg-1-11-5-3 + name: Field Hockey Rebound Boards children: [] attributes: + - age_group - color - - material_hardness - pattern -- id: sg-1-14-6 - name: Pommel Horses +- id: sg-1-11-5-4 + name: Field Hockey Shooting Targets children: [] attributes: + - age_group - color - pattern - - shape -- id: sg-1-15 - name: Racquetball & Squash - children: - - sg-1-15-1 - - sg-1-15-2 - - sg-1-15-3 - - sg-1-15-4 - - sg-1-15-5 - - sg-1-15-6 +- id: sg-1-11-5-5 + name: Field Hockey Training Backpacks + children: [] attributes: + - age_group - color - pattern -- id: sg-1-15-1 - name: Racquetball & Squash Balls +- id: sg-1-11-6 + name: Lacrosse Balls children: [] attributes: - ball_size - color - - dynamic_level - - pattern - - sport - ball_material -- id: sg-1-15-2 - name: Racquetball & Squash Eyewear + - pattern +- id: sg-1-11-7 + name: Lacrosse Equipment Sets children: [] attributes: - - age_group - color + - lacrosse_equipment_included - pattern - - eyewear_frame_material - - eyewear_lens_material -- id: sg-1-15-3 - name: Racquetball & Squash Gloves +- id: sg-1-11-8 + name: Lacrosse Goals children: [] attributes: - - accessory_size - age_group - color + - mounting_type - pattern -- id: sg-1-16 - name: Rounders +- id: sg-1-11-9 + name: Lacrosse Stick Parts children: - - sg-1-16-1 - - sg-1-16-2 - - sg-1-16-3 + - sg-1-11-9-1 + - sg-1-11-9-2 + - sg-1-11-9-3 attributes: - color - pattern -- id: sg-1-16-1 - name: Rounders Bats +- id: sg-1-11-9-1 + name: Lacrosse Mesh & String children: [] attributes: - - age_group - color - pattern - - bat_material -- id: sg-1-17 - name: Rugby - children: - - sg-1-17-1 - - sg-1-17-2 - - sg-1-17-3 - - sg-1-17-4 - - sg-1-17-5 +- id: sg-1-11-9-2 + name: Lacrosse Stick Heads + children: [] attributes: - color - pattern -- id: sg-1-17-1 - name: Rugby Balls + - player_position + - recommended_skill_level +- id: sg-1-11-9-3 + name: Lacrosse Stick Shafts children: [] attributes: - - ball_size - color + - hand_side + - stick_material - pattern - - ball_material -- id: sg-1-17-2 - name: Rugby Gloves +- id: sg-1-11-10 + name: Lacrosse Sticks children: [] attributes: - - accessory_size - age_group - color + - stick_material - pattern - - target_gender - - handwear_material -- id: sg-1-17-3 - name: Rugby Posts - children: [] +- id: sg-1-11-11 + name: Lacrosse Training Aids + children: + - sg-1-11-11-1 + - sg-1-11-11-2 attributes: - age_group - color - pattern - - post_material -- id: sg-1-17-4 - name: Rugby Protective Gear - children: - - sg-1-17-4-1 +- id: sg-1-11-11-1 + name: Lacrosse Bounce-Back Trainers + children: [] attributes: + - age_group - color - pattern -- id: sg-1-17-4-1 - name: Rugby Headgear +- id: sg-1-11-11-2 + name: Lacrosse Rebounders children: [] attributes: - - accessory_size - age_group - color - pattern - - gear_material -- id: sg-1-17-5 - name: Rugby Training Aids +- id: sg-1-12 + name: Figure Skating & Hockey children: - - sg-1-17-5-1 - - sg-1-17-5-2 + - sg-1-12-1 + - sg-1-12-2 + - sg-1-12-3 + - sg-1-12-4 + - sg-1-12-5 + - sg-1-12-6 + - sg-1-12-7 + - sg-1-12-8 + - sg-1-12-9 + - sg-1-12-10 attributes: - - age_group - color - pattern -- id: sg-1-18 - name: Soccer +- id: sg-1-12-1 + name: Figure Skating & Hockey Training Aids children: - - sg-1-18-1 - - sg-1-18-2 - - sg-1-18-3 - - sg-1-18-4 - - sg-1-18-5 - - sg-1-18-6 - - sg-1-18-7 + - sg-1-12-1-1 + - sg-1-12-1-2 + - sg-1-12-1-3 + - sg-1-12-1-4 + - sg-1-12-1-5 + - sg-1-12-1-6 + - sg-1-12-1-7 + - sg-1-12-1-8 + - sg-1-12-1-9 + - sg-1-12-1-10 + - sg-1-12-1-11 + - sg-1-12-1-12 attributes: + - age_group - color - pattern -- id: sg-1-18-1 - name: Soccer Balls +- id: sg-1-12-1-1 + name: Figure Skating & Hockey Balance Boards children: [] attributes: - age_group - - ball_size - color - pattern - - ball_material -- id: sg-1-18-2 - name: Soccer Corner Flags +- id: sg-1-12-1-2 + name: Figure Skating & Hockey Jump Ropes children: [] attributes: + - age_group - color - pattern -- id: sg-1-18-3 - name: Soccer Gloves +- id: sg-1-12-1-3 + name: Figure Skating & Hockey Shooting Targets children: [] attributes: - - accessory_size - age_group - color - pattern - - target_gender - - handwear_material -- id: sg-1-18-4 - name: Soccer Goal Accessories - children: - - sg-1-18-4-1 - - sg-1-18-4-2 - - sg-1-18-4-3 - - sg-1-18-4-4 - - sg-1-18-4-5 - - sg-1-18-4-6 +- id: sg-1-12-1-4 + name: Figure Skating & Hockey Slide Boards + children: [] attributes: + - age_group - color - pattern -- id: sg-1-18-5 - name: Soccer Goals +- id: sg-1-12-1-5 + name: Figure Skating & Hockey Stretching Bands children: [] attributes: - age_group - color - - mounting_type - pattern -- id: sg-1-18-6 - name: Soccer Protective Gear - children: - - sg-1-18-6-1 +- id: sg-1-12-1-6 + name: Figure Skating & Hockey Training Harnesses + children: [] attributes: + - age_group - color - pattern -- id: sg-1-18-6-1 - name: Soccer Shin Guards - children: - - sg-1-18-6-1-1 - - sg-1-18-6-1-2 +- id: sg-1-12-1-7 + name: Figure Skating & Hockey Training Mats + children: [] attributes: - age_group - color - pattern -- id: sg-1-19 - name: Team Handball - children: - - sg-1-19-1 - - sg-1-19-2 +- id: sg-1-12-1-8 + name: Figure Skating Jump Trainers + children: [] attributes: + - age_group - color - pattern -- id: sg-1-19-1 - name: Handballs +- id: sg-1-12-1-9 + name: Figure Skating Spinners children: [] attributes: - - ball_size + - age_group - color - pattern - - ball_material -- id: sg-1-20 - name: Tennis - children: - - sg-1-20-1 - - sg-1-20-2 - - sg-1-20-3 - - sg-1-20-4 - - sg-1-20-5 - - sg-1-20-6 - - sg-1-20-7 - - sg-1-20-8 +- id: sg-1-12-1-10 + name: Hockey Passing Trainers + children: [] attributes: + - age_group - color - pattern -- id: sg-1-20-1 - name: Tennis Ball Hoppers & Carts +- id: sg-1-12-1-11 + name: Hockey Shooting Pads children: [] attributes: + - age_group - color - pattern -- id: sg-1-20-2 - name: Tennis Ball Machines +- id: sg-1-12-1-12 + name: Hockey Speed Trainers children: [] attributes: + - age_group - color - pattern - - power_source -- id: sg-1-20-3 - name: Tennis Ball Savers +- id: sg-1-12-2 + name: Hockey Balls & Pucks + children: + - sg-1-12-2-1 + - sg-1-12-2-2 + attributes: + - ball_size + - color + - ball_material + - pattern +- id: sg-1-12-2-1 + name: Hockey Balls children: [] attributes: + - ball_size - color + - ball_material - pattern -- id: sg-1-20-4 - name: Tennis Balls +- id: sg-1-12-2-2 + name: Hockey Pucks children: [] attributes: - ball_size - color + - material - pattern - - ball_material -- id: sg-1-20-5 - name: Tennis Nets +- id: sg-1-12-3 + name: Hockey Goals children: [] attributes: + - age_group - color + - mounting_type - pattern - - net_mounting_type -- id: sg-1-21 - name: Track & Field +- id: sg-1-12-4 + name: Hockey Protective Gear children: - - sg-1-21-1 - - sg-1-21-2 - - sg-1-21-3 - - sg-1-21-4 - - sg-1-21-5 - - sg-1-21-6 - - sg-1-21-7 - - sg-1-21-8 - - sg-1-21-9 - - sg-1-21-11 - - sg-1-21-13 - - sg-1-21-14 - - sg-1-21-10 - - sg-1-21-12 + - sg-1-12-4-1 + - sg-1-12-4-2 + - sg-1-12-4-3 + - sg-1-12-4-4 + - sg-1-12-4-5 + - sg-1-12-4-6 + - sg-1-12-4-7 + - sg-1-12-4-8 attributes: - color - pattern -- id: sg-1-21-1 - name: Discus +- id: sg-1-12-4-1 + name: Hockey Elbow Pads children: [] attributes: + - accessory_size + - age_group - color - pattern -- id: sg-1-21-2 - name: High Jump Crossbars +- id: sg-1-12-4-2 + name: Hockey Gloves children: [] attributes: + - accessory_size + - age_group - color + - handwear_material - pattern -- id: sg-1-21-3 - name: High Jump Pits + - target_gender +- id: sg-1-12-4-3 + name: Hockey Goalie Equipment Sets children: [] attributes: - color + - hockey_equipment_included - pattern -- id: sg-1-21-4 - name: Javelins +- id: sg-1-12-4-4 + name: Hockey Helmets children: [] attributes: + - accessory_size + - age_group - color - pattern - - recommended_skill_level -- id: sg-1-21-5 - name: Pole Vault Pits + - player_position +- id: sg-1-12-4-5 + name: Hockey Pants children: [] attributes: + - accessory_size + - age_group - color + - gear_material - pattern -- id: sg-1-21-6 - name: Relay Batons + - target_gender +- id: sg-1-12-4-6 + name: Hockey Shin Guards & Leg Pads children: [] attributes: + - accessory_size + - age_group - color - pattern -- id: sg-1-21-7 - name: Shot Puts +- id: sg-1-12-4-7 + name: Hockey Shoulder Pads & Chest Protectors children: [] attributes: + - accessory_size + - age_group - color - - material - pattern -- id: sg-1-21-8 - name: Starter Pistols +- id: sg-1-12-4-8 + name: Hockey Suspenders & Belts children: [] attributes: + - accessory_size + - age_group - color + - fastener_type - pattern -- id: sg-1-21-9 - name: Throwing Hammers +- id: sg-1-12-5 + name: Hockey Sledges children: [] attributes: + - age_group - color - pattern - - recommended_skill_level -- id: sg-1-21-11 - name: Track Hurdles - children: [] +- id: sg-1-12-6 + name: Hockey Stick Care + children: + - sg-1-12-6-1 + - sg-1-12-6-2 + - sg-1-12-6-3 + - sg-1-12-6-4 attributes: - - age_group - color - pattern -- id: sg-1-21-13 - name: Track Starting Blocks +- id: sg-1-12-6-1 + name: Hockey Stick Bags children: [] attributes: - color - pattern -- id: sg-1-21-14 - name: Vaulting Poles +- id: sg-1-12-6-2 + name: Hockey Stick Blade Covers children: [] attributes: - color - pattern -- id: sg-1-22 - name: Volleyball - children: - - sg-1-22-1 - - sg-1-22-2 - - sg-1-22-3 - - sg-1-22-4 +- id: sg-1-12-6-3 + name: Hockey Stick Tape + children: [] attributes: - color - pattern -- id: sg-1-22-1 - name: Volleyball Nets +- id: sg-1-12-6-4 + name: Hockey Stick Wax children: [] attributes: - color - - mounting_type - pattern -- id: sg-1-22-2 - name: Volleyball Protective Gear +- id: sg-1-12-7 + name: Hockey Stick Parts children: - - sg-1-22-2-1 + - sg-1-12-7-1 + - sg-1-12-7-2 attributes: - color - pattern -- id: sg-1-22-2-1 - name: Volleyball Knee Pads +- id: sg-1-12-7-1 + name: Hockey Stick Blades children: [] attributes: - - accessory_size - age_group + - blade_curve - color + - hand_side + - blade_material - pattern -- id: sg-1-22-3 - name: Volleyball Training Aids - children: - - sg-1-22-3-1 - - sg-1-22-3-2 +- id: sg-1-12-7-2 + name: Hockey Stick Shafts + children: [] attributes: - age_group - color + - hand_side + - stick_material - pattern -- id: sg-1-22-4 - name: Volleyballs +- id: sg-1-12-8 + name: Hockey Sticks children: [] attributes: - - ball_size + - age_group - color + - stick_material - pattern - - ball_material -- id: sg-1-23 - name: Wallyball Equipment +- id: sg-1-12-9 + name: Ice Skate Parts & Accessories children: - - sg-1-23-1 - - sg-1-23-2 - - sg-1-23-3 + - sg-1-12-9-1 + - sg-1-12-9-2 + - sg-1-12-9-3 + - sg-1-12-9-4 + - sg-1-12-9-5 attributes: - color - pattern -- id: sg-1-24 - name: Water Polo - children: - - sg-1-24-1 - - sg-1-24-2 - - sg-1-24-3 - - sg-1-24-4 +- id: sg-1-12-9-1 + name: Figure Skate Boots + children: [] attributes: + - age_group - color - pattern -- id: sg-1-24-1 - name: Water Polo Balls + - shoe_size +- id: sg-1-12-9-2 + name: Ice Skate Blades children: [] attributes: - - ball_size - color - pattern - - ball_material -- id: sg-1-24-2 - name: Water Polo Caps +- id: sg-1-12-9-3 + name: Ice Skate Sharpeners children: [] attributes: - color + - hardware_material - pattern -- id: sg-1-24-3 - name: Water Polo Goals +- id: sg-1-12-9-4 + name: Skate Blade Guards children: [] attributes: - - age_group - color - - mounting_type - pattern -- id: sg-1-25 - name: Wrestling - children: - - sg-1-25-1 - - sg-1-25-2 +- id: sg-1-12-9-5 + name: Skate Lace Tighteners + children: [] attributes: - color - pattern -- id: sg-1-25-1 - name: Wrestling Protective Gear +- id: sg-1-12-10 + name: Ice Skates children: - - sg-1-25-1-1 - - sg-1-25-1-2 + - sg-1-12-10-1 + - sg-1-12-10-2 + - sg-1-12-10-3 + - sg-1-12-10-4 + - sg-1-12-10-5 + - sg-1-12-10-6 attributes: + - age_group - color - pattern -- id: sg-1-25-1-1 - name: Wrestling Headgear + - shoe_size + - target_gender +- id: sg-1-12-10-1 + name: Double Blade Ice Skates children: [] attributes: - - accessory_size + - age_group - color - pattern - - gear_material -- id: sg-1-25-1-2 - name: Wrestling Knee Pads - children: [] + - shoe_size + - target_gender +- id: sg-1-12-10-2 + name: Figure Ice Skates + children: [] attributes: - - accessory_size - age_group - color - pattern -- id: sg-3 - name: Indoor Games - children: - - sg-3-1 - - sg-3-2 - - sg-3-3 - - sg-3-4 - - sg-3-5 - - sg-3-6 - - sg-3-7 - - sg-3-8 - attributes: - - color - - pattern -- id: sg-3-1 - name: Air Hockey - children: - - sg-3-1-1 - - sg-3-1-2 - - sg-3-1-3 + - shoe_size + - target_gender +- id: sg-1-12-10-3 + name: Hockey Ice Skates + children: [] attributes: + - age_group - color - pattern -- id: sg-3-1-1 - name: Air Hockey Equipment - children: - - sg-3-1-1-1 - - sg-3-1-1-2 + - shoe_size + - target_gender +- id: sg-1-12-10-4 + name: Recreational Ice Skates + children: [] attributes: + - age_group - color - - material - pattern -- id: sg-3-1-2 - name: Air Hockey Table Parts - children: - - sg-3-1-2-1 - - sg-3-1-2-2 - - sg-3-1-2-3 - - sg-3-1-2-4 - - sg-3-1-2-5 + - shoe_size + - target_gender +- id: sg-1-12-10-5 + name: Snow Gliders + children: [] attributes: - age_group - color - - material - pattern -- id: sg-3-1-3 - name: Air Hockey Tables + - shoe_size + - target_gender +- id: sg-1-12-10-6 + name: Speed Ice Skates children: [] attributes: - age_group - color - - material - pattern -- id: sg-3-2 - name: Billiards + - shoe_size + - target_gender +- id: sg-1-13 + name: General Purpose Athletic Equipment children: - - sg-3-2-1 - - sg-3-2-2 - - sg-3-2-3 - - sg-3-2-4 - - sg-3-2-5 - - sg-3-2-6 - - sg-3-2-7 - - sg-3-2-8 + - sg-1-13-1 + - sg-1-13-2 + - sg-1-13-3 + - sg-1-13-4 + - sg-1-13-5 + - sg-1-13-6 + - sg-1-13-7 + - sg-1-13-8 + - sg-1-13-9 + - sg-1-13-10 + - sg-1-13-11 + - sg-1-13-12 + - sg-1-13-13 + - sg-1-13-14 + - sg-1-13-15 + - sg-1-13-16 attributes: - color - pattern -- id: sg-3-2-1 - name: Billiard Ball Racks +- id: sg-1-13-1 + name: Altitude Training Masks children: [] attributes: + - accessory_size + - age_group - color - - material - pattern -- id: sg-3-2-2 - name: Billiard Balls +- id: sg-1-13-2 + name: Athletic Cups children: [] attributes: + - accessory_size + - age_group - color - pattern - - ball_material -- id: sg-3-2-3 - name: Billiard Cue Accessories +- id: sg-1-13-3 + name: Ball Carrying Bags & Carts children: - - sg-3-2-3-1 - - sg-3-2-3-2 - - sg-3-2-3-3 + - sg-1-13-3-1 + - sg-1-13-3-2 + - sg-1-13-3-3 attributes: - color + - bag_case_material - pattern -- id: sg-3-2-3-1 - name: Billiard Cue Cases +- id: sg-1-13-3-1 + name: Ball Carrying Bags children: [] attributes: - color - - pattern - bag_case_material -- id: sg-3-2-3-2 - name: Billiard Cue Chalk + - pattern +- id: sg-1-13-3-2 + name: Ball Carrying Carts children: [] attributes: - color + - furniture_fixture_material - pattern -- id: sg-3-2-3-3 - name: Billiard Cue Racks +- id: sg-1-13-3-3 + name: Ball Carrying Nets children: [] attributes: - color - - material + - fabric - pattern -- id: sg-3-2-4 - name: Billiard Cues & Bridges +- id: sg-1-13-4 + name: Ball Pump Accessories children: - - sg-3-2-4-1 - - sg-3-2-4-2 - - sg-3-2-4-3 + - sg-1-13-4-1 attributes: - color - - material - pattern -- id: sg-3-2-5 - name: Billiard Gloves +- id: sg-1-13-4-1 + name: Ball Pump Needles children: [] attributes: - - accessory_size - - age_group - color + - hardware_material - pattern - - target_gender - - handwear_material -- id: sg-3-2-6 - name: Billiard Table Lights +- id: sg-1-13-5 + name: Ball Pumps children: [] attributes: - color - - light_color - - light_temperature - - mounting_type + - material - pattern -- id: sg-3-2-7 - name: Billiard Table Parts & Accessories + - power_source +- id: sg-1-13-6 + name: Exercise & Gym Mat Storage Racks & Carts children: - - sg-3-2-7-1 - - sg-3-2-7-2 - - sg-3-2-7-3 - - sg-3-2-7-4 + - sg-1-13-6-1 + - sg-1-13-6-2 + - sg-1-13-6-3 attributes: - color + - material - pattern -- id: sg-3-2-7-1 - name: Billiard Pockets +- id: sg-1-13-6-1 + name: Exercise & Gym Mat Storage Cages children: [] attributes: - color + - material - pattern -- id: sg-3-2-7-2 - name: Billiard Table Brushes +- id: sg-1-13-6-2 + name: Exercise & Gym Mat Storage Carts children: [] attributes: - color + - material - pattern -- id: sg-3-2-7-3 - name: Billiard Table Cloth +- id: sg-1-13-6-3 + name: Exercise & Gym Mat Storage Racks children: [] attributes: - color + - material - pattern -- id: sg-3-2-7-4 - name: Billiard Table Covers +- id: sg-1-13-7 + name: Grip Chalk Bags children: [] attributes: + - age_group - color - pattern - - cover_material -- id: sg-3-2-8 - name: Billiard Tables +- id: sg-1-13-8 + name: Grip Spray & Chalk children: [] attributes: - color + - material - pattern -- id: sg-3-3 - name: Bowling - children: - - sg-3-3-1 - - sg-3-3-2 - - sg-3-3-3 - - sg-3-3-4 - - sg-3-3-6 - - sg-3-3-5 +- id: sg-1-13-9 + name: Gym Mats + children: [] attributes: - color + - exercise_mat_material - pattern -- id: sg-3-3-1 - name: Bowling Ball Bags +- id: sg-1-13-10 + name: Practice Nets & Screens children: [] attributes: - color + - net_material + - mounting_type - pattern -- id: sg-3-3-2 - name: Bowling Balls +- id: sg-1-13-11 + name: Speed & Agility Ladders & Hurdles children: [] attributes: - - ball_size - color - pattern - - ball_material -- id: sg-3-3-3 - name: Bowling Gloves +- id: sg-1-13-12 + name: Sports & Agility Cones children: [] attributes: - - accessory_size - - age_group - color - pattern - - target_gender - - handwear_material -- id: sg-3-3-4 - name: Bowling Pins + - sport +- id: sg-1-13-13 + name: Sports Megaphones children: [] attributes: - - age_group - color - - material - pattern -- id: sg-3-3-6 - name: Bowling Wrist Supports + - power_source + - suitable_space +- id: sg-1-13-14 + name: Sports Mouthguards children: [] attributes: - accessory_size - age_group - color - - material - pattern -- id: sg-3-4 - name: Foosball + - sport +- id: sg-1-13-15 + name: Stadium Seats & Cushions children: - - sg-3-4-1 - - sg-3-4-2 - - sg-3-4-3 + - sg-1-13-15-1 + - sg-1-13-15-2 attributes: - color - pattern -- id: sg-3-4-1 - name: Foosball Balls +- id: sg-1-13-15-1 + name: Stadium Cushions children: [] attributes: - - ball_size - color - pattern - - ball_material -- id: sg-3-4-2 - name: Foosball Table Parts & Accessories - children: - - sg-3-4-2-1 - - sg-3-4-2-2 - - sg-3-4-2-3 +- id: sg-1-13-15-2 + name: Stadium Seats + children: [] attributes: - color - pattern -- id: sg-3-4-3 - name: Foosball Tables +- id: sg-1-13-16 + name: Training Bibs children: [] attributes: - age_group - color - pattern -- id: sg-3-5 - name: Multi-Game Tables +- id: sg-1-14 + name: Gymnastics children: - - sg-3-5-1 - - sg-3-5-2 - - sg-3-5-3 + - sg-1-14-1 + - sg-1-14-2 + - sg-1-14-3 + - sg-1-14-4 + - sg-1-14-5 + - sg-1-14-6 attributes: - - age_group - color - - games_included - pattern - - furniture_fixture_material -- id: sg-3-6 - name: Ping Pong +- id: sg-1-14-1 + name: Gymnastics Bars & Balance Beams + children: [] + attributes: + - color + - pattern +- id: sg-1-14-2 + name: Gymnastics Protective Gear children: - - sg-3-6-1 - - sg-3-6-2 - - sg-3-6-3 - - sg-3-6-4 - - sg-3-6-5 - - sg-3-6-6 - - sg-3-6-8 - - sg-3-6-7 + - sg-1-14-2-1 attributes: - color - pattern -- id: sg-3-6-1 - name: Ping Pong Balls +- id: sg-1-14-2-1 + name: Gymnastics Grips children: [] attributes: - color + - gear_material - pattern -- id: sg-3-6-2 - name: Ping Pong Nets & Posts - children: - - sg-3-6-2-1 - - sg-3-6-2-2 +- id: sg-1-14-3 + name: Gymnastics Rings + children: [] attributes: + - age_group - color - - mounting_type - pattern -- id: sg-3-6-3 - name: Ping Pong Paddle Accessories +- id: sg-1-14-4 + name: Gymnastics Springboards + children: [] + attributes: + - color + - material_hardness + - pattern +- id: sg-1-14-5 + name: Gymnastics Training Aids children: - - sg-3-6-3-1 + - sg-1-14-5-1 + - sg-1-14-5-2 + - sg-1-14-5-3 + - sg-1-14-5-4 + - sg-1-14-5-5 + - sg-1-14-5-6 + - sg-1-14-5-7 attributes: + - age_group - color - - frame_color - pattern - - recommended_skill_level -- id: sg-3-6-4 - name: Ping Pong Paddles & Sets +- id: sg-1-14-5-1 + name: Gymnastics Beam Pads children: [] attributes: + - age_group - color - pattern - - ping_pong_equipment_included -- id: sg-3-6-5 - name: Ping Pong Robot Accessories +- id: sg-1-14-5-2 + name: Gymnastics Floor Exercise Trainers children: [] attributes: + - age_group - color - pattern -- id: sg-3-6-6 - name: Ping Pong Robots +- id: sg-1-14-5-3 + name: Gymnastics Foam Pits children: [] attributes: + - age_group - color - pattern -- id: sg-3-6-8 - name: Ping Pong Tables +- id: sg-1-14-5-4 + name: Gymnastics Pommel Trainers children: [] attributes: - age_group - color - - mounting_type - pattern - - suitable_space -- id: sg-3-7 - name: Table Shuffleboard - children: - - sg-3-7-1 - - sg-3-7-2 - - sg-3-7-3 +- id: sg-1-14-5-5 + name: Gymnastics Spotting Blocks + children: [] attributes: + - age_group - color - pattern -- id: sg-3-7-1 - name: Shuffleboard Tables +- id: sg-1-14-5-6 + name: Gymnastics Training Straps children: [] attributes: - age_group - color - pattern -- id: sg-3-7-2 - name: Table Shuffleboard Powder +- id: sg-1-14-5-7 + name: Gymnastics Vaulting Trainers children: [] attributes: + - age_group - color - pattern -- id: sg-3-7-3 - name: Table Shuffleboard Pucks +- id: sg-1-14-6 + name: Pommel Horses children: [] attributes: - color - pattern -- id: sg-3-8 - name: Throwing Darts + - shape +- id: sg-1-15 + name: Racquetball & Squash children: - - sg-3-8-1 - - sg-3-8-2 - - sg-3-8-3 - - sg-3-8-4 + - sg-1-15-1 + - sg-1-15-2 + - sg-1-15-3 + - sg-1-15-4 + - sg-1-15-5 + - sg-1-15-6 attributes: - color - pattern -- id: sg-3-8-1 - name: Dart Backboards +- id: sg-1-15-1 + name: Racquetball & Squash Balls children: [] attributes: - - age_group + - ball_size - color + - dynamic_level + - ball_material - pattern -- id: sg-3-8-2 - name: Dart Parts - children: - - sg-3-8-2-1 - - sg-3-8-2-2 - - sg-3-8-2-3 + - sport +- id: sg-1-15-2 + name: Racquetball & Squash Eyewear + children: [] attributes: + - age_group - color + - eyewear_frame_material + - eyewear_lens_material - pattern -- id: sg-3-8-2-1 - name: Dart Flights +- id: sg-1-15-3 + name: Racquetball & Squash Gloves children: [] attributes: + - accessory_size + - age_group - color - - material - pattern -- id: sg-3-8-2-2 - name: Dart Shafts - children: [] +- id: sg-1-15-4 + name: Racquetball & Squash Training Aids + children: + - sg-1-15-4-1 + - sg-1-15-4-2 + - sg-1-15-4-3 + - sg-1-15-4-4 + - sg-1-15-4-5 + - sg-1-15-4-6 + - sg-1-15-4-7 + - sg-1-15-4-8 attributes: + - age_group - color - - material - pattern -- id: sg-3-8-2-3 - name: Dart Tips +- id: sg-1-15-4-1 + name: Racquetball & Squash Fitness Equipment children: [] attributes: + - age_group - color - - material - pattern -- id: sg-3-8-3 - name: Dartboards +- id: sg-1-15-4-2 + name: Racquetball & Squash Grip Enhancers children: [] attributes: - age_group - color - pattern -- id: sg-3-8-4 - name: Darts +- id: sg-1-15-4-3 + name: Racquetball & Squash Practice Walls children: [] attributes: + - age_group - color - - material - pattern -- id: sg-4 - name: Outdoor Recreation - children: - - sg-4-1 - - sg-4-2 - - sg-4-3 - - sg-4-4 - - sg-4-5 - - sg-4-6 - - sg-4-7 - - sg-4-8 - - sg-4-9 - - sg-4-10 - - sg-4-11 - - sg-4-12 - - sg-4-13 - - sg-4-14 - - sg-4-15 - - sg-4-16 - - sg-4-17 +- id: sg-1-15-4-4 + name: Racquetball & Squash Rebounders + children: [] attributes: + - age_group - color - pattern -- id: sg-4-1 - name: Boating & Water Sports - children: - - sg-4-1-1 - - sg-4-1-2 - - sg-4-1-3 - - sg-4-1-4 - - sg-4-1-5 - - sg-4-1-6 - - sg-4-1-7 - - sg-4-1-8 - - sg-4-1-9 +- id: sg-1-15-4-5 + name: Racquetball & Squash Target Trainers + children: [] attributes: + - age_group - color - pattern -- id: sg-4-1-1 - name: Boating & Rafting - children: - - sg-4-1-1-1 - - sg-4-1-1-2 - - sg-4-1-1-3 - - sg-4-1-1-4 - - sg-4-1-1-5 - - sg-4-1-1-6 - - sg-4-1-1-7 - - sg-4-1-1-8 - - sg-4-1-1-9 - - sg-4-1-1-10 +- id: sg-1-15-4-6 + name: Racquetball & Squash Training Backpacks + children: [] attributes: + - age_group - color - pattern -- id: sg-4-1-1-1 - name: Boating Gloves +- id: sg-1-15-4-7 + name: Racquetball & Squash Training Bags children: [] attributes: - - accessory_size - age_group - color - pattern - - target_gender - - handwear_material -- id: sg-4-1-1-2 - name: Canoe Accessories - children: - - sg-4-1-1-2-1 - - sg-4-1-1-2-2 +- id: sg-1-15-4-8 + name: Racquetball & Squash Training Goggles + children: [] attributes: - age_group - color - pattern -- id: sg-4-1-1-3 - name: Canoes - children: - - sg-4-1-1-3-1 - - sg-4-1-1-3-2 - - sg-4-1-1-3-3 - - sg-4-1-1-3-4 - - sg-4-1-1-3-5 - - sg-4-1-1-3-6 +- id: sg-1-15-5 + name: Racquetball Rackets + children: [] attributes: + - age_group - color - - material + - racket_material - pattern -- id: sg-4-1-1-4 - name: Kayak Accessories - children: - - sg-4-1-1-4-1 - - sg-4-1-1-4-2 - - sg-4-1-1-4-3 + - recommended_skill_level +- id: sg-1-15-6 + name: Squash Rackets + children: [] attributes: + - age_group - color + - racket_material - pattern -- id: sg-4-1-1-5 - name: Kayaks + - recommended_skill_level +- id: sg-1-16 + name: Rounders children: - - sg-4-1-1-5-1 - - sg-4-1-1-5-2 - - sg-4-1-1-5-3 - - sg-4-1-1-5-4 - - sg-4-1-1-5-5 - - sg-4-1-1-5-6 - - sg-4-1-1-5-7 - - sg-4-1-1-5-8 - - sg-4-1-1-5-9 + - sg-1-16-1 + - sg-1-16-2 + - sg-1-16-3 attributes: - color - - material - pattern - - watercraft_propulsion_type -- id: sg-4-1-1-6 - name: Paddle Leashes +- id: sg-1-16-1 + name: Rounders Bats children: [] attributes: + - age_group - color + - bat_material - pattern -- id: sg-4-1-1-7 - name: Paddles & Oars +- id: sg-1-16-2 + name: Rounders Gloves & Mitts children: [] attributes: + - accessory_size + - age_group - color + - handwear_material - pattern -- id: sg-4-1-1-8 - name: Pedal Boats - children: [] + - target_gender +- id: sg-1-16-3 + name: Rounders Training Aids + children: + - sg-1-16-3-1 + - sg-1-16-3-2 + - sg-1-16-3-3 attributes: + - age_group - color - pattern - - watercraft_propulsion_type -- id: sg-4-1-1-9 - name: Row Boats +- id: sg-1-16-3-1 + name: Rounders Batting Tees children: [] attributes: + - age_group - color - pattern - - watercraft_propulsion_type -- id: sg-4-1-1-10 - name: Whitewater Rafts +- id: sg-1-16-3-2 + name: Rounders Rebound Boards children: [] attributes: + - age_group - color - pattern -- id: sg-4-1-2 - name: Boating & Water Sport Apparel - children: - - sg-4-1-2-1 - - sg-4-1-2-2 - - sg-4-1-2-3 - - sg-4-1-2-4 - - sg-4-1-2-5 - - sg-4-1-2-6 - - sg-4-1-2-7 - attributes: - - color - - pattern -- id: sg-4-1-2-1 - name: Drysuits +- id: sg-1-16-3-3 + name: Rounders Training Bases children: [] attributes: - - accessory_size + - age_group - color - pattern - - target_gender -- id: sg-4-1-2-2 - name: Life Jacket Accessories +- id: sg-1-17 + name: Rugby children: - - sg-4-1-2-2-1 - - sg-4-1-2-2-2 - - sg-4-1-2-2-3 + - sg-1-17-1 + - sg-1-17-2 + - sg-1-17-3 + - sg-1-17-4 + - sg-1-17-5 attributes: - color - pattern -- id: sg-4-1-2-3 - name: Life Jackets +- id: sg-1-17-1 + name: Rugby Balls children: [] attributes: - - accessory_size + - ball_size - color + - ball_material - pattern -- id: sg-4-1-2-4 - name: Rash Guards & Swim Shirts +- id: sg-1-17-2 + name: Rugby Gloves children: [] attributes: - accessory_size - age_group - color - - material + - handwear_material - pattern - target_gender -- id: sg-4-1-2-5 - name: Water Sport Helmets +- id: sg-1-17-3 + name: Rugby Posts children: [] attributes: - - accessory_size - age_group - color + - post_material - pattern -- id: sg-4-1-2-6 - name: Wetsuit Pieces +- id: sg-1-17-4 + name: Rugby Protective Gear children: - - sg-4-1-2-6-1 - - sg-4-1-2-6-2 - - sg-4-1-2-6-3 + - sg-1-17-4-1 attributes: - - age_group - color - pattern -- id: sg-4-1-2-6-1 - name: Wetsuit Bottoms +- id: sg-1-17-4-1 + name: Rugby Headgear children: [] attributes: - accessory_size - age_group - color + - gear_material - pattern -- id: sg-4-1-2-6-2 - name: Wetsuit Hoods, Gloves & Boots +- id: sg-1-17-5 + name: Rugby Training Aids children: - - sg-4-1-2-6-2-1 - - sg-4-1-2-6-2-2 - - sg-4-1-2-6-2-3 + - sg-1-17-5-1 + - sg-1-17-5-2 attributes: - - accessory_size - age_group - color - pattern - - shoe_size - - target_gender - - handwear_material -- id: sg-4-1-2-6-3 - name: Wetsuit Tops +- id: sg-1-17-5-1 + name: Rugby Kicking Tees children: [] attributes: - - accessory_size - age_group - color - pattern -- id: sg-4-1-2-7 - name: Wetsuits - children: - - sg-4-1-2-7-1 - - sg-4-1-2-7-2 +- id: sg-1-17-5-2 + name: Rugby Tackle Bags + children: [] attributes: - - accessory_size - age_group - color - - material - pattern - - target_gender -- id: sg-4-1-3 - name: Diving & Snorkeling +- id: sg-1-18 + name: Soccer children: - - sg-4-1-3-1 - - sg-4-1-3-2 - - sg-4-1-3-3 - - sg-4-1-3-4 - - sg-4-1-3-5 - - sg-4-1-3-6 - - sg-4-1-3-7 - - sg-4-1-3-8 - - sg-4-1-3-9 + - sg-1-18-1 + - sg-1-18-2 + - sg-1-18-3 + - sg-1-18-4 + - sg-1-18-5 + - sg-1-18-6 + - sg-1-18-7 attributes: - color - pattern -- id: sg-4-1-3-1 - name: Buoyancy Compensators +- id: sg-1-18-1 + name: Soccer Balls children: [] attributes: - - accessory_size + - age_group + - ball_size - color + - ball_material - pattern -- id: sg-4-1-3-2 - name: Dive Computers +- id: sg-1-18-2 + name: Soccer Corner Flags children: [] attributes: - color - - display_technology - pattern - - power_source -- id: sg-4-1-3-3 - name: Diving & Snorkeling Equipment Sets +- id: sg-1-18-3 + name: Soccer Gloves children: [] attributes: + - accessory_size + - age_group - color + - handwear_material - pattern - - water_sport - - diving_snorkeling_equipment_included -- id: sg-4-1-3-4 - name: Diving & Snorkeling Fins + - target_gender +- id: sg-1-18-4 + name: Soccer Goal Accessories children: - - sg-4-1-3-4-1 - - sg-4-1-3-4-2 + - sg-1-18-4-1 + - sg-1-18-4-2 + - sg-1-18-4-3 + - sg-1-18-4-4 + - sg-1-18-4-5 + - sg-1-18-4-6 attributes: - - accessory_size - color - - fin_pocket_type - pattern - - fin_material -- id: sg-4-1-3-5 - name: Diving & Snorkeling Masks +- id: sg-1-18-4-1 + name: Soccer Goal Anchors children: [] attributes: - - accessory_size - - age_group - color - pattern - - water_sport - - eyewear_frame_material - - eyewear_lens_material -- id: sg-4-1-3-6 - name: Diving Belts +- id: sg-1-18-4-2 + name: Soccer Goal Counterweights children: [] attributes: - - accessory_size - - age_group - color - pattern -- id: sg-4-1-3-7 - name: Diving Knives & Shears - children: - - sg-4-1-3-7-1 - - sg-4-1-3-7-2 +- id: sg-1-18-4-3 + name: Soccer Goal Dummies + children: [] attributes: - color - pattern - - edge_type -- id: sg-4-1-3-8 - name: Diving Regulators +- id: sg-1-18-4-4 + name: Soccer Goal Mounting Kits children: [] attributes: - color - pattern - - diving_regulator_style -- id: sg-4-1-3-9 - name: Snorkels - children: - - sg-4-1-3-9-1 - - sg-4-1-3-9-2 - - sg-4-1-3-9-3 +- id: sg-1-18-4-5 + name: Soccer Goal Nets + children: [] attributes: - - age_group - color - pattern - - snorkel_shape -- id: sg-4-1-4 - name: Kitesurfing - children: - - sg-4-1-4-1 - - sg-4-1-4-2 - - sg-4-1-4-3 - - sg-4-1-4-4 - - sg-4-1-4-5 +- id: sg-1-18-4-6 + name: Soccer Goal Targets + children: [] attributes: - color - pattern -- id: sg-4-1-4-1 - name: Kiteboard Cases +- id: sg-1-18-5 + name: Soccer Goals children: [] attributes: + - age_group - color + - mounting_type - pattern -- id: sg-4-1-4-2 - name: Kiteboard Parts +- id: sg-1-18-6 + name: Soccer Protective Gear children: - - sg-4-1-4-2-1 - - sg-4-1-4-2-2 - - sg-4-1-4-2-3 - - sg-4-1-4-2-4 + - sg-1-18-6-1 attributes: - color - pattern -- id: sg-4-1-4-3 - name: Kiteboards - children: [] +- id: sg-1-18-6-1 + name: Soccer Shin Guards + children: + - sg-1-18-6-1-1 + - sg-1-18-6-1-2 attributes: + - age_group - color - pattern - - recommended_skill_level -- id: sg-4-1-4-4 - name: Kitesurfing & Windsurfing Harnesses +- id: sg-1-18-6-1-1 + name: Ankle Guards children: [] attributes: + - age_group - color - pattern -- id: sg-4-1-4-5 - name: Kitesurfing Kites +- id: sg-1-18-6-1-2 + name: Shin Guard Sleeves children: [] attributes: - - accessory_size + - age_group - color - - kitesurfing_style - pattern -- id: sg-4-1-5 - name: Surfing +- id: sg-1-18-7 + name: Soccer Training Aids children: - - sg-4-1-5-1 - - sg-4-1-5-2 - - sg-4-1-5-3 - - sg-4-1-5-4 - - sg-4-1-5-5 - - sg-4-1-5-6 - - sg-4-1-5-7 - - sg-4-1-5-8 - - sg-4-1-5-9 - - sg-4-1-5-10 - attributes: - - color - - pattern -- id: sg-4-1-5-1 - name: Bodyboards - children: [] + - sg-1-18-7-1 + - sg-1-18-7-2 + - sg-1-18-7-3 + - sg-1-18-7-4 + - sg-1-18-7-5 + - sg-1-18-7-6 attributes: + - age_group - color - pattern - - recommended_skill_level -- id: sg-4-1-5-2 - name: Paddleboards +- id: sg-1-18-7-1 + name: Soccer Agility Poles children: [] attributes: + - age_group - color - pattern - - recommended_skill_level -- id: sg-4-1-5-3 - name: Skimboards +- id: sg-1-18-7-2 + name: Soccer Ball Launchers children: [] attributes: - age_group - color - - material - pattern -- id: sg-4-1-5-4 - name: Surf Leashes +- id: sg-1-18-7-3 + name: Soccer Passing Arcs children: [] attributes: + - age_group - color - pattern -- id: sg-4-1-5-5 - name: Surfboard Cases & Bags +- id: sg-1-18-7-4 + name: Soccer Rebounders children: [] attributes: + - age_group - color - pattern -- id: sg-4-1-5-6 - name: Surfboard Fins +- id: sg-1-18-7-5 + name: Soccer Training Backpacks children: [] attributes: - - accessory_size + - age_group - color - - fin_profile - pattern -- id: sg-4-1-5-7 - name: Surfboard Wax +- id: sg-1-18-7-6 + name: Soccer Training Mannequins children: [] attributes: + - age_group - color - pattern -- id: sg-4-1-5-8 - name: Surfboards +- id: sg-1-19 + name: Team Handball children: - - sg-4-1-5-8-1 - - sg-4-1-5-8-2 - - sg-4-1-5-8-3 - - sg-4-1-5-8-4 + - sg-1-19-1 + - sg-1-19-2 attributes: - - board_concave_shape - - board_profile - color - - material - pattern -- id: sg-4-1-5-9 - name: Surfing Gloves +- id: sg-1-19-1 + name: Handballs children: [] attributes: - - accessory_size - - age_group + - ball_size - color + - ball_material - pattern - - target_gender - - handwear_material -- id: sg-4-1-5-10 - name: Surfing Tail Pads - children: [] +- id: sg-1-19-2 + name: Team Handball Training Aids + children: + - sg-1-19-2-1 + - sg-1-19-2-2 + - sg-1-19-2-3 + - sg-1-19-2-4 + - sg-1-19-2-5 + - sg-1-19-2-6 + - sg-1-19-2-7 attributes: - - accessory_size - age_group - color - - material - pattern -- id: sg-4-1-6 - name: Swimming - children: - - sg-4-1-6-1 - - sg-4-1-6-2 - - sg-4-1-6-3 - - sg-4-1-6-4 - - sg-4-1-6-5 - - sg-4-1-6-6 - - sg-4-1-6-7 - - sg-4-1-6-8 - - sg-4-1-6-9 - - sg-4-1-6-10 - - sg-4-1-6-11 - - sg-4-1-6-12 - - sg-4-1-6-13 +- id: sg-1-19-2-1 + name: Team Handball Agility Hoops + children: [] attributes: + - age_group - color - pattern -- id: sg-4-1-6-1 - name: Child Swimming Aids - children: - - sg-4-1-6-1-1 - - sg-4-1-6-1-2 - - sg-4-1-6-1-3 - - sg-4-1-6-1-4 - - sg-4-1-6-1-5 - - sg-4-1-6-1-6 - - sg-4-1-6-1-7 - - sg-4-1-6-1-8 - - sg-4-1-6-1-9 - - sg-4-1-6-1-10 +- id: sg-1-19-2-2 + name: Team Handball Fitness Equipment + children: [] attributes: - age_group - color - pattern -- id: sg-4-1-6-2 - name: Hand Paddles +- id: sg-1-19-2-3 + name: Team Handball Goalkeeper Training Aids children: [] attributes: - - accessory_size - age_group - color - pattern -- id: sg-4-1-6-3 - name: Kickboards +- id: sg-1-19-2-4 + name: Team Handball Passing Targets children: [] attributes: + - age_group - color - pattern -- id: sg-4-1-6-4 - name: Pull Buoys +- id: sg-1-19-2-5 + name: Team Handball Rebound Boards children: [] attributes: + - age_group - color - pattern -- id: sg-4-1-6-5 - name: Swim Belts +- id: sg-1-19-2-6 + name: Team Handball Shooting Targets children: [] attributes: - - accessory_size - age_group - color - pattern -- id: sg-4-1-6-6 - name: Swim Caps +- id: sg-1-19-2-7 + name: Team Handball Training Bags children: [] attributes: - age_group - color - - material - pattern -- id: sg-4-1-6-7 - name: Swim Gloves - children: [] +- id: sg-1-20 + name: Tennis + children: + - sg-1-20-1 + - sg-1-20-2 + - sg-1-20-3 + - sg-1-20-4 + - sg-1-20-5 + - sg-1-20-6 + - sg-1-20-7 + - sg-1-20-8 attributes: - - accessory_size - - age_group - color - pattern - - target_gender - - handwear_material -- id: sg-4-1-6-8 - name: Swim Goggle & Mask Accessories - children: - - sg-4-1-6-8-1 - - sg-4-1-6-8-2 +- id: sg-1-20-1 + name: Tennis Ball Hoppers & Carts + children: [] attributes: - color - pattern -- id: sg-4-1-6-9 - name: Swim Goggles & Masks +- id: sg-1-20-2 + name: Tennis Ball Machines children: [] attributes: - - accessory_size - - age_group - color - pattern - - target_gender - - eyewear_frame_material - - eyewear_lens_material -- id: sg-4-1-6-10 - name: Swim Weights + - power_source +- id: sg-1-20-3 + name: Tennis Ball Savers children: [] attributes: - color - pattern -- id: sg-4-1-6-11 - name: Swimming Fins - children: - - sg-4-1-6-11-1 - - sg-4-1-6-11-2 +- id: sg-1-20-4 + name: Tennis Balls + children: [] attributes: + - ball_size - color + - ball_material - pattern -- id: sg-4-1-6-11-1 - name: Monofins +- id: sg-1-20-5 + name: Tennis Nets children: [] attributes: - color + - net_mounting_type - pattern -- id: sg-4-1-6-11-2 - name: Training Fins - children: [] +- id: sg-1-20-6 + name: Tennis Racket Accessories + children: + - sg-1-20-6-1 + - sg-1-20-6-2 + - sg-1-20-6-3 + - sg-1-20-6-4 + - sg-1-20-6-5 attributes: - - accessory_size - color - pattern -- id: sg-4-1-6-12 - name: Swimming Machines +- id: sg-1-20-6-1 + name: Racket Vibration Dampeners children: [] attributes: - color + - material - pattern - - power_source -- id: sg-4-1-6-13 - name: Swimming Nose Clips + - sport +- id: sg-1-20-6-2 + name: Tennis Racket Bags children: [] attributes: - color - - material - pattern - - water_sport -- id: sg-4-1-7 - name: Towed Water Sports +- id: sg-1-20-6-3 + name: Tennis Racket Grips & Tape children: - - sg-4-1-7-1 - - sg-4-1-7-2 - - sg-4-1-7-3 - - sg-4-1-7-4 - - sg-4-1-7-5 - - sg-4-1-7-6 + - sg-1-20-6-3-1 + - sg-1-20-6-3-2 + - sg-1-20-6-3-3 attributes: - color + - tape_material - pattern -- id: sg-4-1-7-1 - name: Kneeboarding - children: - - sg-4-1-7-1-1 + - sport +- id: sg-1-20-6-3-1 + name: Tennis Racket Overgrips + children: [] attributes: - color + - tape_material - pattern -- id: sg-4-1-7-1-1 - name: Kneeboards + - sport +- id: sg-1-20-6-3-2 + name: Tennis Racket Replacement Grips children: [] attributes: - color + - tape_material - pattern -- id: sg-4-1-7-2 - name: Towable Rafts & Tubes + - sport +- id: sg-1-20-6-3-3 + name: Tennis Racket Tape children: [] attributes: - color + - tape_material - pattern -- id: sg-4-1-7-3 - name: Towed Water Sport Gloves + - sport +- id: sg-1-20-6-4 + name: Tennis Racket Grommets children: [] attributes: - - accessory_size - - age_group - color - pattern - - target_gender - - handwear_material -- id: sg-4-1-7-4 - name: Wakeboarding - children: - - sg-4-1-7-4-1 - - sg-4-1-7-4-2 - - sg-4-1-7-4-3 +- id: sg-1-20-6-5 + name: Tennis Racket String + children: [] attributes: - color + - racket_string_design + - racket_string_material - pattern -- id: sg-4-1-7-4-1 - name: Kiteboard & Wakeboard Bindings + - racket_gauge + - shape + - sport +- id: sg-1-20-7 + name: Tennis Rackets children: [] attributes: - age_group - color + - racket_material - pattern -- id: sg-4-1-7-4-2 - name: Wakeboard Parts + - recommended_skill_level + - swing_style +- id: sg-1-20-8 + name: Tennis Training Aids children: - - sg-4-1-7-4-2-1 - - sg-4-1-7-4-2-2 - - sg-4-1-7-4-2-3 - - sg-4-1-7-4-2-4 + - sg-1-20-8-1 + - sg-1-20-8-2 + - sg-1-20-8-3 + - sg-1-20-8-4 + - sg-1-20-8-5 + - sg-1-20-8-6 attributes: + - age_group - color - pattern -- id: sg-4-1-7-4-3 - name: Wakeboards +- id: sg-1-20-8-1 + name: Tennis Fitness Equipment children: [] attributes: - age_group - color - pattern -- id: sg-4-1-7-5 - name: Water Skiing - children: - - sg-4-1-7-5-1 - - sg-4-1-7-5-2 - - sg-4-1-7-5-3 - - sg-4-1-7-5-4 - attributes: - - color - - pattern -- id: sg-4-1-7-5-1 - name: Sit-Down Hydrofoils +- id: sg-1-20-8-2 + name: Tennis Footwork Trainers children: [] attributes: + - age_group - color - pattern -- id: sg-4-1-7-5-2 - name: Water Ski Bindings +- id: sg-1-20-8-3 + name: Tennis Grip Trainers children: [] attributes: - - accessory_size - age_group - color - pattern -- id: sg-4-1-7-5-3 - name: Water Ski Cases & Bags +- id: sg-1-20-8-4 + name: Tennis Rebounders children: [] attributes: + - age_group - color - pattern -- id: sg-4-1-7-5-4 - name: Water Skis - children: - - sg-4-1-7-5-4-1 - - sg-4-1-7-5-4-2 - - sg-4-1-7-5-4-3 +- id: sg-1-20-8-5 + name: Tennis Target Trainers + children: [] attributes: - age_group - color - pattern - - rocker_type - - ski_construction -- id: sg-4-1-7-6 - name: Water Sport Tow Cables +- id: sg-1-20-8-6 + name: Tennis Training Backpacks children: [] attributes: - - anchor_type + - age_group - color - pattern -- id: sg-4-1-8 - name: Watercraft Storage Racks +- id: sg-1-21 + name: Track & Field children: - - sg-4-1-8-1 - - sg-4-1-8-2 + - sg-1-21-1 + - sg-1-21-2 + - sg-1-21-3 + - sg-1-21-4 + - sg-1-21-5 + - sg-1-21-6 + - sg-1-21-7 + - sg-1-21-8 + - sg-1-21-9 + - sg-1-21-10 + - sg-1-21-11 + - sg-1-21-12 + - sg-1-21-13 + - sg-1-21-14 attributes: - color - pattern -- id: sg-4-1-8-1 - name: Boat Storage Racks +- id: sg-1-21-1 + name: Discus children: [] attributes: - color - - material - pattern -- id: sg-4-1-8-2 - name: Water Sport Board Storage Racks +- id: sg-1-21-2 + name: High Jump Crossbars children: [] attributes: - color - - material - pattern -- id: sg-4-1-9 - name: Windsurfing - children: - - sg-4-1-9-1 - - sg-4-1-9-2 - - sg-4-1-9-3 +- id: sg-1-21-3 + name: High Jump Pits + children: [] attributes: - color - pattern -- id: sg-4-1-9-1 - name: Windsurfing Board Parts - children: - - sg-4-1-9-1-1 - - sg-4-1-9-1-2 +- id: sg-1-21-4 + name: Javelins + children: [] attributes: - color - pattern -- id: sg-4-1-9-1-1 - name: Windsurfing Board Fins + - recommended_skill_level +- id: sg-1-21-5 + name: Pole Vault Pits children: [] attributes: - color - pattern -- id: sg-4-1-9-1-2 - name: Windsurfing Board Masts +- id: sg-1-21-6 + name: Relay Batons children: [] attributes: - color - pattern -- id: sg-4-1-9-2 - name: Windsurfing Boards +- id: sg-1-21-7 + name: Shot Puts children: [] attributes: - color + - material - pattern - - recommended_skill_level - - windsurfing_board_style -- id: sg-4-1-9-3 - name: Windsurfing Sails +- id: sg-1-21-8 + name: Starter Pistols children: [] attributes: - color - pattern -- id: sg-4-2 - name: Camping & Hiking - children: - - sg-4-2-1 - - sg-4-2-2 - - sg-4-2-3 - - sg-4-2-4 - - sg-4-2-5 - - sg-4-2-6 - - sg-4-2-7 - - sg-4-2-8 - - sg-4-2-9 - - sg-4-2-10 - - sg-4-2-11 - - sg-4-2-12 - - sg-4-2-13 - - sg-4-2-14 - - sg-4-2-15 - - sg-4-2-16 - - sg-4-2-17 - - sg-4-2-18 +- id: sg-1-21-9 + name: Throwing Hammers + children: [] attributes: - color - pattern -- id: sg-4-2-1 - name: Camp Furniture + - recommended_skill_level +- id: sg-1-21-10 + name: Track & Field Training Aids children: - - sg-4-2-1-1 - - sg-4-2-1-2 - - sg-4-2-1-3 + - sg-1-21-10-1 + - sg-1-21-10-2 + - sg-1-21-10-3 + - sg-1-21-10-4 attributes: + - age_group - color - pattern -- id: sg-4-2-1-1 - name: Air Mattress & Sleeping Pad Accessories - children: - - sg-4-2-1-1-1 - - sg-4-2-1-1-2 +- id: sg-1-21-10-1 + name: Track & Field Long Jump Boards + children: [] attributes: - age_group - color - - material - pattern -- id: sg-4-2-1-2 - name: Air Mattresses +- id: sg-1-21-10-2 + name: Track & Field Resistance Bands children: [] attributes: - age_group - - bedding_size - color - - material - pattern -- id: sg-4-2-1-3 - name: Cots +- id: sg-1-21-10-3 + name: Track & Field Shot Puts children: [] attributes: - - bedding_size + - age_group - color - - frame_material - pattern - - cover_material -- id: sg-4-2-2 - name: Camping Cookware & Dinnerware - children: - - sg-4-2-2-1 - - sg-4-2-2-2 - - sg-4-2-2-3 - - sg-4-2-2-4 +- id: sg-1-21-10-4 + name: Track & Field Stopwatch Systems + children: [] attributes: + - age_group - color - pattern - - certifications_and_standards -- id: sg-4-2-3 - name: Camping Lights & Lanterns +- id: sg-1-21-11 + name: Track Hurdles children: [] attributes: + - age_group - color - - light_color - - light_temperature - pattern - - power_source -- id: sg-4-2-4 - name: Camping Tools - children: - - sg-4-2-4-7 - - sg-4-2-4-8 - - sg-4-2-4-1 - - sg-4-2-4-2 - - sg-4-2-4-3 - - sg-4-2-4-4 - - sg-4-2-4-5 - - sg-4-2-4-6 +- id: sg-1-21-12 + name: Track Spikes + children: [] attributes: + - age_group - color - pattern -- id: sg-4-2-4-7 - name: Hunting & Survival Knives - children: - - sg-4-2-4-7-1 - - sg-4-2-4-7-2 - - sg-4-2-4-7-3 +- id: sg-1-21-13 + name: Track Starting Blocks + children: [] attributes: - color - - knife_type - pattern - - hunting_survival_knife_design -- id: sg-4-2-4-8 - name: Multifunction Tools & Knives +- id: sg-1-21-14 + name: Vaulting Poles children: [] attributes: - color - pattern -- id: sg-4-2-5 - name: Chemical Hand Warmers - children: [] +- id: sg-1-22 + name: Volleyball + children: + - sg-1-22-1 + - sg-1-22-2 + - sg-1-22-3 + - sg-1-22-4 attributes: - color - pattern -- id: sg-4-2-6 - name: Compression Sacks +- id: sg-1-22-1 + name: Volleyball Nets children: [] attributes: - color - - material + - mounting_type - pattern -- id: sg-4-2-7 - name: Hiking Pole Accessories +- id: sg-1-22-2 + name: Volleyball Protective Gear children: - - sg-4-2-7-1 - - sg-4-2-7-2 - - sg-4-2-7-3 - - sg-4-2-7-4 - - sg-4-2-7-5 - - sg-4-2-7-6 - - sg-4-2-7-7 + - sg-1-22-2-1 attributes: - color - pattern -- id: sg-4-2-8 - name: Hiking Poles +- id: sg-1-22-2-1 + name: Volleyball Knee Pads children: [] attributes: + - accessory_size - age_group - color - - outdoor_walking_activity - - pattern -- id: sg-4-2-9 - name: Mosquito Nets & Insect Screens - children: - - sg-4-2-9-1 - - sg-4-2-9-2 - attributes: - - color - pattern - - net_material -- id: sg-4-2-10 - name: Navigational Compasses +- id: sg-1-22-3 + name: Volleyball Training Aids children: - - sg-4-2-10-1 - - sg-4-2-10-2 - - sg-4-2-10-3 + - sg-1-22-3-1 + - sg-1-22-3-2 attributes: + - age_group - color - - material - pattern - - compass_style -- id: sg-4-2-11 - name: Portable Toilets & Showers - children: - - sg-4-2-11-1 - - sg-4-2-11-2 +- id: sg-1-22-3-1 + name: Volleyball Ball Machines + children: [] attributes: + - age_group - color - pattern -- id: sg-4-2-11-1 - name: Portable Showers & Privacy Enclosures - children: - - sg-4-2-11-1-1 - - sg-4-2-11-1-2 - - sg-4-2-11-1-3 +- id: sg-1-22-3-2 + name: Volleyball Serving Targets + children: [] attributes: + - age_group - color - pattern -- id: sg-4-2-11-2 - name: Portable Toilets & Urination Devices - children: - - sg-4-2-11-2-1 - - sg-4-2-11-2-2 - - sg-4-2-11-2-3 +- id: sg-1-22-4 + name: Volleyballs + children: [] attributes: + - ball_size - color + - ball_material - pattern -- id: sg-4-2-12 - name: Portable Water Filters & Purifiers +- id: sg-1-23 + name: Wallyball Equipment children: - - sg-4-2-12-1 - - sg-4-2-12-2 + - sg-1-23-1 + - sg-1-23-2 + - sg-1-23-3 attributes: - color - pattern -- id: sg-4-2-13 - name: Sleeping Bag Liners +- id: sg-1-23-1 + name: Wallyball Balls children: [] attributes: - color - pattern -- id: sg-4-2-14 - name: Sleeping Bags +- id: sg-1-23-2 + name: Wallyball Nets children: [] attributes: - color - pattern -- id: sg-4-2-15 - name: Sleeping Pads +- id: sg-1-23-3 + name: Wallyball Sets children: [] attributes: - - accessory_size - - age_group - color - - material - pattern -- id: sg-4-2-16 - name: Tent Accessories +- id: sg-1-24 + name: Water Polo children: - - sg-4-2-16-1 - - sg-4-2-16-2 - - sg-4-2-16-3 - - sg-4-2-16-4 + - sg-1-24-1 + - sg-1-24-2 + - sg-1-24-3 + - sg-1-24-4 attributes: - color - pattern -- id: sg-4-2-16-1 - name: Inner Tents +- id: sg-1-24-1 + name: Water Polo Balls children: [] attributes: + - ball_size - color + - ball_material - pattern - - cover_material -- id: sg-4-2-16-2 - name: Tent Footprints +- id: sg-1-24-2 + name: Water Polo Caps children: [] attributes: - color - pattern -- id: sg-4-2-16-3 - name: Tent Poles & Stakes - children: - - sg-4-2-16-3-1 - - sg-4-2-16-3-2 - attributes: - - color - - material - - pattern -- id: sg-4-2-16-4 - name: Tent Vestibules +- id: sg-1-24-3 + name: Water Polo Goals children: [] attributes: + - age_group - color + - mounting_type - pattern -- id: sg-4-2-17 - name: Tents +- id: sg-1-24-4 + name: Water Polo Training Aids children: - - sg-4-2-17-1 - - sg-4-2-17-2 - - sg-4-2-17-3 - - sg-4-2-17-4 - - sg-4-2-17-5 - - sg-4-2-17-6 - - sg-4-2-17-7 - - sg-4-2-17-8 - - sg-4-2-17-9 - - sg-4-2-17-10 + - sg-1-24-4-1 + - sg-1-24-4-2 + - sg-1-24-4-3 + - sg-1-24-4-4 + - sg-1-24-4-5 + - sg-1-24-4-6 + - sg-1-24-4-7 + - sg-1-24-4-8 + - sg-1-24-4-9 attributes: + - age_group - color - pattern -- id: sg-4-2-18 - name: Windbreaks +- id: sg-1-24-4-1 + name: Goalkeeper Training Aids children: [] attributes: + - age_group - color - - material - pattern -- id: sg-4-3 - name: Climbing - children: - - sg-4-3-1 - - sg-4-3-2 - - sg-4-3-3 - - sg-4-3-4 - - sg-4-3-5 - - sg-4-3-6 - - sg-4-3-8 - - sg-4-3-9 - - sg-4-3-10 - - sg-4-3-11 - - sg-4-3-12 - - sg-4-3-13 - - sg-4-3-14 - - sg-4-3-15 - - sg-4-3-16 - - sg-4-3-7 +- id: sg-1-24-4-2 + name: Water Polo Fitness Equipment + children: [] attributes: + - age_group - color - pattern -- id: sg-4-3-1 - name: Belay Devices - children: - - sg-4-3-1-1 - - sg-4-3-1-2 - - sg-4-3-1-3 +- id: sg-1-24-4-3 + name: Water Polo Passing Targets + children: [] attributes: + - age_group - color - - material - pattern -- id: sg-4-3-2 - name: Carabiners +- id: sg-1-24-4-4 + name: Water Polo Rebound Boards children: [] attributes: - - carabiner_gate_type + - age_group - color - - material - pattern - - carabiner_shape -- id: sg-4-3-3 - name: Climbing Apparel & Accessories - children: - - sg-4-3-3-1 - - sg-4-3-3-2 - - sg-4-3-3-3 +- id: sg-1-24-4-5 + name: Water Polo Shooting Targets + children: [] attributes: + - age_group - color - pattern -- id: sg-4-3-3-1 - name: Climbing Gloves +- id: sg-1-24-4-6 + name: Water Polo Training Backpacks children: [] attributes: - - accessory_size - age_group - color - pattern - - target_gender - - handwear_material -- id: sg-4-3-3-2 - name: Climbing Helmets +- id: sg-1-24-4-7 + name: Water Polo Training Bags children: [] attributes: - - accessory_size - age_group - color - pattern -- id: sg-4-3-3-3 - name: Crampons +- id: sg-1-24-4-8 + name: Water Polo Training Fins children: [] attributes: + - age_group - color - pattern - - crampon_attachment_type -- id: sg-4-3-4 - name: Climbing Ascenders & Descenders +- id: sg-1-24-4-9 + name: Water Polo Training Vests children: [] attributes: + - age_group - color - pattern -- id: sg-4-3-5 - name: Climbing Chalk Bags - children: [] +- id: sg-1-25 + name: Wrestling + children: + - sg-1-25-1 + - sg-1-25-2 attributes: - color - pattern -- id: sg-4-3-6 - name: Climbing Crash Pads +- id: sg-1-25-1 + name: Wrestling Protective Gear + children: + - sg-1-25-1-1 + - sg-1-25-1-2 + attributes: + - color + - pattern +- id: sg-1-25-1-1 + name: Wrestling Headgear children: [] attributes: + - accessory_size - color - - material + - gear_material - pattern -- id: sg-4-3-8 - name: Climbing Harnesses +- id: sg-1-25-1-2 + name: Wrestling Knee Pads children: [] attributes: - accessory_size - - climbing_activity + - age_group - color - - harness_closure_type - pattern -- id: sg-4-3-9 - name: Climbing Protection Devices +- id: sg-1-25-2 + name: Wrestling Training Aids + children: + - sg-1-25-2-1 + - sg-1-25-2-2 + - sg-1-25-2-3 + - sg-1-25-2-4 + - sg-1-25-2-5 + - sg-1-25-2-6 + - sg-1-25-2-7 + - sg-1-25-2-8 + - sg-1-25-2-9 + attributes: + - age_group + - color + - pattern +- id: sg-1-25-2-1 + name: Wrestling Dummies children: [] attributes: + - age_group - color - - material - pattern -- id: sg-4-3-10 - name: Climbing Rope +- id: sg-1-25-2-2 + name: Wrestling Grip Trainers children: [] attributes: + - age_group - color - - material - pattern -- id: sg-4-3-11 - name: Climbing Rope Bags +- id: sg-1-25-2-3 + name: Wrestling Mats children: [] attributes: + - age_group - color - pattern -- id: sg-4-3-12 - name: Climbing Webbing - children: - - sg-4-3-12-1 - - sg-4-3-12-2 +- id: sg-1-25-2-4 + name: Wrestling Practice Targets + children: [] attributes: + - age_group - color - - material - pattern -- id: sg-4-3-13 - name: Ice Climbing Tools - children: - - sg-4-3-13-1 - - sg-4-3-13-2 - - sg-4-3-13-3 +- id: sg-1-25-2-5 + name: Wrestling Resistance Bands + children: [] attributes: + - age_group - color - pattern -- id: sg-4-3-14 - name: Ice Screws +- id: sg-1-25-2-6 + name: Wrestling Singlets children: [] attributes: + - age_group - color - - material - pattern -- id: sg-4-3-15 - name: Indoor Climbing Holds +- id: sg-1-25-2-7 + name: Wrestling Training Backpacks children: [] attributes: + - age_group - color - pattern -- id: sg-4-3-16 - name: Quickdraws +- id: sg-1-25-2-8 + name: Wrestling Training Vests children: [] attributes: + - age_group - color - pattern -- id: sg-4-4 - name: Cycling - children: - - sg-4-4-1 - - sg-4-4-2 - - sg-4-4-3 - - sg-4-4-4 - - sg-4-4-5 - - sg-4-4-6 - - sg-4-4-7 - - sg-4-4-8 +- id: sg-1-25-2-9 + name: Wrestling Weightlifting Equipment + children: [] attributes: + - age_group - color - pattern -- id: sg-4-4-1 - name: Bicycle Accessories +- id: sg-2 + name: Fitness & General Exercise Equipment children: - - sg-4-4-1-1 - - sg-4-4-1-2 - - sg-4-4-1-3 - - sg-4-4-1-4 - - sg-4-4-1-6 - - sg-4-4-1-7 - - sg-4-4-1-8 - - sg-4-4-1-9 - - sg-4-4-1-10 - - sg-4-4-1-11 - - sg-4-4-1-12 - - sg-4-4-1-13 - - sg-4-4-1-14 - - sg-4-4-1-15 - - sg-4-4-1-16 - - sg-4-4-1-17 - - sg-4-4-1-18 - - sg-4-4-1-19 - - sg-4-4-1-20 - - sg-4-4-1-21 - - sg-4-4-1-22 - - sg-4-4-1-23 - - sg-4-4-1-24 - - sg-4-4-1-25 - - sg-4-4-1-26 - - sg-4-4-1-27 - - sg-4-4-1-28 - - sg-4-4-1-5 + - sg-2-1 + - sg-2-2 + - sg-2-3 + - sg-2-4 + - sg-2-5 + - sg-2-6 + - sg-2-7 + - sg-2-8 + - sg-2-9 + - sg-2-10 + - sg-2-11 + - sg-2-12 + - sg-2-13 + - sg-2-14 + - sg-2-15 + - sg-2-16 + - sg-2-17 + - sg-2-18 + - sg-2-19 + - sg-2-20 + - sg-2-21 + - sg-2-22 + - sg-2-23 + - sg-2-24 + - sg-2-25 + - sg-2-26 attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-1-1 - name: Bicycle Bags & Panniers +- id: sg-2-1 + name: Ab Wheels & Rollers children: - - sg-4-4-1-1-1 - - sg-4-4-1-1-2 - - sg-4-4-1-1-3 + - sg-2-1-1 + - sg-2-1-2 attributes: - color - - compatible_bike_type + - exercise_equipment_material - pattern - - vehicle_placement - - bag_case_material -- id: sg-4-4-1-2 - name: Bicycle Baskets +- id: sg-2-1-1 + name: Ab Rollers children: [] attributes: - color - - compatible_bike_type + - exercise_equipment_material - pattern - - vehicle_placement - - basket_material -- id: sg-4-4-1-3 - name: Bicycle Bells & Horns +- id: sg-2-1-2 + name: Ab Wheels children: [] attributes: - color - - compatible_bike_type - - pattern -- id: sg-4-4-1-4 - name: Bicycle Cages - children: - - sg-4-4-1-4-1 - - sg-4-4-1-4-2 - attributes: - - color - - compatible_bike_type + - exercise_equipment_material - pattern -- id: sg-4-4-1-6 - name: Bicycle Child Seats +- id: sg-2-2 + name: Aerobic Steps children: [] attributes: - color - - compatible_bike_type + - exercise_equipment_material - pattern - - child_seat_placement -- id: sg-4-4-1-7 - name: Bicycle Computer Accessories +- id: sg-2-3 + name: Balance Trainers children: - - sg-4-4-1-7-1 - - sg-4-4-1-7-2 - - sg-4-4-1-7-3 - - sg-4-4-1-7-4 - - sg-4-4-1-7-5 - - sg-4-4-1-7-6 + - sg-2-3-1 + - sg-2-3-2 + - sg-2-3-3 + - sg-2-3-4 attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-1-8 - name: Bicycle Computers +- id: sg-2-3-1 + name: Balance Boards children: [] attributes: - color - - compatible_bike_type - - connectivity_technology - pattern - - speed_settings -- id: sg-4-4-1-9 - name: Bicycle Covers +- id: sg-2-3-2 + name: Balance Cushions children: [] attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-1-10 - name: Bicycle Fenders +- id: sg-2-3-3 + name: Balance Pads children: [] attributes: - color - - compatible_bike_type - pattern - - vehicle_placement -- id: sg-4-4-1-11 - name: Bicycle Front & Rear Racks +- id: sg-2-3-4 + name: Balance Steps children: [] attributes: - color - - compatible_bike_type - pattern - - vehicle_placement -- id: sg-4-4-1-12 - name: Bicycle Handlebar Grips & Decor - children: [] +- id: sg-2-4 + name: Cardio + children: + - sg-2-4-1 + - sg-2-4-2 + - sg-2-4-3 attributes: - color - - compatible_bike_type - - material - pattern -- id: sg-4-4-1-13 - name: Bicycle Locks +- id: sg-2-4-1 + name: Cardio Machine Accessories & Parts children: - - sg-4-4-1-13-1 - - sg-4-4-1-13-2 - - sg-4-4-1-13-3 - - sg-4-4-1-13-4 - - sg-4-4-1-13-5 - - sg-4-4-1-13-6 - - sg-4-4-1-13-7 - - sg-4-4-1-13-8 - - sg-4-4-1-13-9 - - sg-4-4-1-13-10 + - sg-2-4-1-1 + - sg-2-4-1-2 + - sg-2-4-1-3 + - sg-2-4-1-4 + - sg-2-4-1-5 attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-1-14 - name: Bicycle Mirrors - children: [] +- id: sg-2-4-1-1 + name: Elliptical Trainer Accessories & Parts + children: + - sg-2-4-1-1-1 + - sg-2-4-1-1-2 attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-1-15 - name: Bicycle Pumps +- id: sg-2-4-1-1-1 + name: Elliptical Trainer Replacement Parts children: [] attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-1-16 - name: Bicycle Saddle Pads & Seat Covers +- id: sg-2-4-1-1-2 + name: Elliptical Trainer Tablet Holders children: [] attributes: - color - - compatible_bike_type - pattern - - shape -- id: sg-4-4-1-17 - name: Bicycle Shock Pumps - children: [] +- id: sg-2-4-1-2 + name: Exercise Bike Accessories & Parts + children: + - sg-2-4-1-2-1 + - sg-2-4-1-2-2 + - sg-2-4-1-2-3 + - sg-2-4-1-2-4 + - sg-2-4-1-2-5 + - sg-2-4-1-2-6 attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-1-18 - name: Bicycle Spoke Beads +- id: sg-2-4-1-2-1 + name: Exercise Bike Bottle Holders children: [] attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-1-19 - name: Bicycle Stands & Storage +- id: sg-2-4-1-2-2 + name: Exercise Bike Computers children: [] attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-1-20 - name: Bicycle Tire Repair Supplies & Kits - children: - - sg-4-4-1-20-1 - - sg-4-4-1-20-2 - - sg-4-4-1-20-3 - - sg-4-4-1-20-4 - - sg-4-4-1-20-5 +- id: sg-2-4-1-2-3 + name: Exercise Bike Covers + children: [] attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-1-21 - name: Bicycle Toe Straps & Clips +- id: sg-2-4-1-2-4 + name: Exercise Bike Cushions children: [] attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-1-22 - name: Bicycle Tools - children: - - sg-4-4-1-22-1 - - sg-4-4-1-22-2 +- id: sg-2-4-1-2-5 + name: Exercise Bike Heart Rate Monitors + children: [] attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-1-23 - name: Bicycle Trailers +- id: sg-2-4-1-2-6 + name: Exercise Bike Stands children: [] attributes: - color - - compatible_bike_type - - hitch_type - pattern -- id: sg-4-4-1-24 - name: Bicycle Trainers +- id: sg-2-4-1-3 + name: Rowing Machine Accessories & Parts children: - - sg-4-4-1-24-1 - - sg-4-4-1-24-2 - - sg-4-4-1-24-3 - - sg-4-4-1-24-4 - attributes: - - color - - compatible_bike_type - - pattern -- id: sg-4-4-1-25 - name: Bicycle Training Wheels - children: [] + - sg-2-4-1-3-1 + - sg-2-4-1-3-2 attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-1-26 - name: Bicycle Transport Bags & Cases +- id: sg-2-4-1-3-1 + name: Rowing Machine Replacement Parts children: [] attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-1-27 - name: Bicycle Water Sport Board Racks +- id: sg-2-4-1-3-2 + name: Rowing Machine Tablet Holders children: [] attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-1-28 - name: Electric Bicycle Conversion Kits - children: [] - attributes: - - color - - compatible_bike_type - - pattern -- id: sg-4-4-2 - name: Bicycle Parts +- id: sg-2-4-1-4 + name: Stair Climber & Stepper Accessories & Parts children: - - sg-4-4-2-1 - - sg-4-4-2-2 - - sg-4-4-2-3 - - sg-4-4-2-4 - - sg-4-4-2-5 - - sg-4-4-2-6 - - sg-4-4-2-7 - - sg-4-4-2-8 - - sg-4-4-2-9 - - sg-4-4-2-10 - - sg-4-4-2-11 - - sg-4-4-2-12 - - sg-4-4-2-13 - - sg-4-4-2-14 - - sg-4-4-2-15 - - sg-4-4-2-16 - - sg-4-4-2-17 - - sg-4-4-2-18 - - sg-4-4-2-19 - - sg-4-4-2-20 - - sg-4-4-2-21 - - sg-4-4-2-22 - - sg-4-4-2-23 - - sg-4-4-2-24 + - sg-2-4-1-4-1 + - sg-2-4-1-4-2 attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-2-1 - name: Bicycle Brake Parts - children: - - sg-4-4-2-1-1 - - sg-4-4-2-1-2 - - sg-4-4-2-1-3 - - sg-4-4-2-1-4 +- id: sg-2-4-1-4-1 + name: Stair Climber & Stepper Replacement Parts + children: [] attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-2-1-1 - name: Bicycle Brake Calipers +- id: sg-2-4-1-4-2 + name: Stair Climber & Stepper Tablet Holders children: [] attributes: - - bicycle_brake_type - color - - compatible_bike_type - pattern -- id: sg-4-4-2-1-2 - name: Bicycle Brake Levers - children: [] +- id: sg-2-4-1-5 + name: Treadmill Accessories & Parts + children: + - sg-2-4-1-5-1 + - sg-2-4-1-5-2 + - sg-2-4-1-5-3 + - sg-2-4-1-5-4 + - sg-2-4-1-5-5 + - sg-2-4-1-5-6 + - sg-2-4-1-5-7 + - sg-2-4-1-5-8 + - sg-2-4-1-5-9 + - sg-2-4-1-5-10 + - sg-2-4-1-5-11 + - sg-2-4-1-5-12 + - sg-2-4-1-5-13 + - sg-2-4-1-5-14 attributes: - - bicycle_brake_type - color - - compatible_bike_type - pattern -- id: sg-4-4-2-1-3 - name: Bicycle Brake Rotors +- id: sg-2-4-1-5-1 + name: Treadmill Belts children: [] attributes: - - bicycle_brake_type - color - - compatible_bike_type - pattern -- id: sg-4-4-2-1-4 - name: Bicycle Brake Sets +- id: sg-2-4-1-5-2 + name: Treadmill Bluetooth Modules children: [] attributes: - - bicycle_brake_type - color - - compatible_bike_type - pattern -- id: sg-4-4-2-2 - name: Bicycle Cable Housings +- id: sg-2-4-1-5-3 + name: Treadmill Consoles children: [] attributes: - - bicycle_brake_type - color - - compatible_bike_type - pattern -- id: sg-4-4-2-3 - name: Bicycle Cables +- id: sg-2-4-1-5-4 + name: Treadmill Hirise Adapters children: [] attributes: - - cable_type - color - - compatible_bike_type - pattern -- id: sg-4-4-2-4 - name: Bicycle Drivetrain Parts - children: - - sg-4-4-2-4-1 - - sg-4-4-2-4-2 - - sg-4-4-2-4-3 - - sg-4-4-2-4-4 - - sg-4-4-2-4-5 - - sg-4-4-2-4-6 - - sg-4-4-2-4-7 - - sg-4-4-2-4-8 +- id: sg-2-4-1-5-5 + name: Treadmill Keys + children: [] attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-2-4-1 - name: Bicycle Bottom Brackets +- id: sg-2-4-1-5-6 + name: Treadmill Laptop Stands children: [] attributes: - color - - compatible_bike_type - - material - pattern -- id: sg-4-4-2-4-2 - name: Bicycle Cassettes & Freewheels - children: - - sg-4-4-2-4-2-1 - - sg-4-4-2-4-2-2 +- id: sg-2-4-1-5-7 + name: Treadmill Lower Control Boards + children: [] attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-2-4-3 - name: Bicycle Chainrings +- id: sg-2-4-1-5-8 + name: Treadmill Motor Belts children: [] attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-2-4-4 - name: Bicycle Chains +- id: sg-2-4-1-5-9 + name: Treadmill Motors children: [] attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-2-4-5 - name: Bicycle Cranks +- id: sg-2-4-1-5-10 + name: Treadmill Rails children: [] attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-2-4-6 - name: Bicycle Derailleurs +- id: sg-2-4-1-5-11 + name: Treadmill Replacement Parts children: [] attributes: - color - - compatible_bike_type - pattern - - vehicle_placement -- id: sg-4-4-2-4-7 - name: Bicycle Pedals +- id: sg-2-4-1-5-12 + name: Treadmill Speed Sensors children: [] attributes: - color - - compatible_bike_type - - material - pattern -- id: sg-4-4-2-4-8 - name: Bicycle Shifters +- id: sg-2-4-1-5-13 + name: Treadmill Upper Control Boards children: [] attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-2-5 - name: Bicycle Forks +- id: sg-2-4-1-5-14 + name: Treadmill Wifi Modules children: [] attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-2-6 - name: Bicycle Frames - children: [] +- id: sg-2-4-2 + name: Cardio Machines + children: + - sg-2-4-2-1 + - sg-2-4-2-2 + - sg-2-4-2-3 + - sg-2-4-2-4 + - sg-2-4-2-5 attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-2-7 - name: Bicycle Groupsets - children: [] +- id: sg-2-4-2-1 + name: Elliptical Trainers + children: + - sg-2-4-2-1-1 + - sg-2-4-2-1-2 attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-2-8 - name: Bicycle Handlebar Extensions +- id: sg-2-4-2-1-1 + name: Electromagnetic Elliptical Trainers children: [] attributes: - color - - compatible_bike_type - - material - pattern -- id: sg-4-4-2-9 - name: Bicycle Handlebars +- id: sg-2-4-2-1-2 + name: Magnetic Elliptical Trainers children: [] attributes: - color - - compatible_bike_type - - material - pattern -- id: sg-4-4-2-10 - name: Bicycle Headset Parts +- id: sg-2-4-2-2 + name: Exercise Bikes children: - - sg-4-4-2-10-1 - - sg-4-4-2-10-2 + - sg-2-4-2-2-1 + - sg-2-4-2-2-2 + - sg-2-4-2-2-3 + - sg-2-4-2-2-4 attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-2-10-1 - name: Bicycle Headset Bearings + - resistance_system +- id: sg-2-4-2-2-1 + name: Mini Exercise Bikes children: [] attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-2-10-2 - name: Bicycle Headset Spacers + - resistance_system +- id: sg-2-4-2-2-2 + name: Recumbent Exercise Bikes children: [] attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-2-11 - name: Bicycle Headsets + - resistance_system +- id: sg-2-4-2-2-3 + name: Spin Exercise Bikes children: [] attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-2-12 - name: Bicycle Kickstands + - resistance_system +- id: sg-2-4-2-2-4 + name: Upright Exercise Bikes children: [] attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-2-13 - name: Bicycle Saddles + - resistance_system +- id: sg-2-4-2-3 + name: Rowing Machines children: [] attributes: - color - - compatible_bike_type - - cycling_style - pattern - - target_gender - - saddle_base_material - - saddle_seat_material -- id: sg-4-4-2-14 - name: Bicycle Seatpost Clamps - children: [] + - resistance_system +- id: sg-2-4-2-4 + name: Stair Climbers & Steppers + children: + - sg-2-4-2-4-1 + - sg-2-4-2-4-2 attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-2-15 - name: Bicycle Seatposts +- id: sg-2-4-2-4-1 + name: Stair Climbers children: [] attributes: - color - - compatible_bike_type - - pattern -- id: sg-4-4-2-16 - name: Bicycle Small Parts - children: - - sg-4-4-2-16-1 - - sg-4-4-2-16-2 - - sg-4-4-2-16-3 - attributes: - - color - - compatible_bike_type - pattern -- id: sg-4-4-2-17 - name: Bicycle Stems +- id: sg-2-4-2-4-2 + name: Stair Steppers children: [] attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-2-18 - name: Bicycle Tire Valve Adapters +- id: sg-2-4-2-5 + name: Treadmills children: [] attributes: - color - - compatible_bike_type - pattern - - valve_type -- id: sg-4-4-2-19 - name: Bicycle Tire Valve Caps +- id: sg-2-4-3 + name: Jump Ropes children: [] attributes: + - age_group - color - - compatible_bike_type + - exercise_equipment_material - pattern - - valve_type -- id: sg-4-4-2-20 - name: Bicycle Tire Valves +- id: sg-2-5 + name: Exercise Balls children: [] attributes: - color - - compatible_bike_type + - exercise_equipment_included + - ball_material - pattern - - valve_type -- id: sg-4-4-2-21 - name: Bicycle Tires - children: - - sg-4-4-2-21-1 - - sg-4-4-2-21-2 - - sg-4-4-2-21-3 - - sg-4-4-2-21-4 +- id: sg-2-6 + name: Exercise Bands & Loops + children: [] attributes: - color - - compatible_bike_type - - cycling_style - pattern - - tire_bead_type -- id: sg-4-4-2-22 - name: Bicycle Tubes + - resistance_level +- id: sg-2-7 + name: Exercise Benches children: [] attributes: - color - - compatible_bike_type + - compatible_bench_positions - pattern - - valve_type -- id: sg-4-4-2-23 - name: Bicycle Wheel Parts +- id: sg-2-8 + name: Exercise Equipment Mats children: - - sg-4-4-2-23-1 - - sg-4-4-2-23-2 - - sg-4-4-2-23-3 - - sg-4-4-2-23-4 - - sg-4-4-2-23-5 - - sg-4-4-2-23-6 - - sg-4-4-2-23-7 - - sg-4-4-2-23-8 + - sg-2-8-1 + - sg-2-8-2 + - sg-2-8-3 + - sg-2-8-4 + - sg-2-8-5 attributes: - color - - compatible_bike_type + - exercise_mat_material - pattern -- id: sg-4-4-2-23-1 - name: Bicycle Foot Pegs +- id: sg-2-8-1 + name: Elliptical Trainer Mats children: [] attributes: - color - - compatible_bike_type - - pattern -- id: sg-4-4-2-23-2 - name: Bicycle Hub Parts - children: - - sg-4-4-2-23-2-1 - - sg-4-4-2-23-2-2 - - sg-4-4-2-23-2-3 - attributes: - - color - - compatible_bike_type - pattern -- id: sg-4-4-2-23-3 - name: Bicycle Hubs +- id: sg-2-8-2 + name: Exercise Bike Floor Mats children: [] attributes: - - color - - compatible_bike_type - - pattern -- id: sg-4-4-2-23-4 - name: Bicycle Rim Strips + - exercise_mat_material +- id: sg-2-8-3 + name: Floor Protection Mats children: [] attributes: - color - - compatible_bike_type + - exercise_mat_material - pattern -- id: sg-4-4-2-23-5 - name: Bicycle Spokes +- id: sg-2-8-4 + name: Rowing Machine Mats children: [] attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-2-23-6 - name: Bicycle Wheel Axles & Skewers +- id: sg-2-8-5 + name: Stair Climber & Stepper Mats children: [] attributes: - - color - - compatible_bike_type - - pattern - - vehicle_placement -- id: sg-4-4-2-23-7 - name: Bicycle Wheel Nipples + - exercise_mat_material +- id: sg-2-9 + name: Exercise Machine & Equipment Sets children: [] attributes: - color - - compatible_bike_type + - exercise_equipment_included - pattern -- id: sg-4-4-2-23-8 - name: Bicycle Wheel Rims +- id: sg-2-10 + name: Exercise Wedges children: [] attributes: - color - - compatible_bike_type + - material_hardness - pattern -- id: sg-4-4-2-24 - name: Bicycle Wheels +- id: sg-2-11 + name: Foam Roller Accessories children: - - sg-4-4-2-24-1 - - sg-4-4-2-24-2 - - sg-4-4-2-24-3 - - sg-4-4-2-24-4 + - sg-2-11-1 + - sg-2-11-2 + - sg-2-11-3 + - sg-2-11-4 + - sg-2-11-5 attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-3 - name: Bicycles - children: - - sg-4-4-3-1 - - sg-4-4-3-2 - - sg-4-4-3-3 - - sg-4-4-3-4 - - sg-4-4-3-5 - - sg-4-4-3-6 - - sg-4-4-3-7 - - sg-4-4-3-8 - - sg-4-4-3-9 - - sg-4-4-3-10 - - sg-4-4-3-11 - - sg-4-4-3-12 - - sg-4-4-3-13 +- id: sg-2-11-1 + name: Foam Roller Covers + children: [] attributes: - - age_group - color - - gearing_type - - material - pattern - - target_gender -- id: sg-4-4-4 - name: Cycling Apparel & Accessories - children: - - sg-4-4-4-1 - - sg-4-4-4-2 - - sg-4-4-4-3 - - sg-4-4-4-4 - - sg-4-4-4-5 - - sg-4-4-4-6 - - sg-4-4-4-7 +- id: sg-2-11-2 + name: Foam Roller Handles + children: [] attributes: - color - pattern -- id: sg-4-4-4-1 - name: Bicycle Cleat Accessories - children: - - sg-4-4-4-1-1 - - sg-4-4-4-1-2 - - sg-4-4-4-1-3 +- id: sg-2-11-3 + name: Foam Roller Storage Bags + children: [] attributes: - color - pattern -- id: sg-4-4-4-1-1 - name: Bicycle Cleat Bolts +- id: sg-2-11-4 + name: Foam Roller Straps children: [] attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-4-1-2 - name: Bicycle Cleat Covers +- id: sg-2-11-5 + name: Foam Roller Wall Mounts children: [] attributes: - color - pattern -- id: sg-4-4-4-1-3 - name: Bicycle Cleat Shims & Wedges +- id: sg-2-12 + name: Foam Rollers children: [] attributes: - color + - exercise_equipment_material - pattern -- id: sg-4-4-4-2 - name: Bicycle Cleats +- id: sg-2-13 + name: Hand Exercisers children: [] attributes: - - accessory_size - color - pattern -- id: sg-4-4-4-3 - name: Bicycle Gloves +- id: sg-2-14 + name: Inversion Tables & Systems children: [] attributes: - - accessory_size - - age_group - color - pattern - - target_gender - - handwear_material -- id: sg-4-4-4-4 - name: Bicycle Helmet Parts & Accessories - children: [] +- id: sg-2-15 + name: Medicine Balls + children: + - sg-2-15-1 + - sg-2-15-2 + - sg-2-15-3 + - sg-2-15-4 + - sg-2-15-5 + - sg-2-15-6 attributes: - - accessory_size - - age_group - color + - ball_material - pattern -- id: sg-4-4-4-5 - name: Bicycle Helmets +- id: sg-2-15-1 + name: Dual-Grip Balls children: [] attributes: - - accessory_size - - age_group - color + - ball_material - pattern -- id: sg-4-4-4-6 - name: Bicycle Protective Pads +- id: sg-2-15-2 + name: Slam Balls children: [] attributes: - - accessory_size - - age_group - color + - ball_material - pattern -- id: sg-4-4-4-7 - name: Bicycle Shoe Covers +- id: sg-2-15-3 + name: Soft Balls children: [] attributes: - color + - ball_material - pattern - - fabric -- id: sg-4-4-5 - name: Tricycle Accessories - children: - - sg-4-4-5-1 - - sg-4-4-5-2 - - sg-4-4-5-3 - attributes: - - color - - pattern -- id: sg-4-4-6 - name: Tricycles - children: [] - attributes: - - age_group - - color - - pattern - - target_gender - - wheel_type - - tricycle_design - - tricycle_propulsion_type -- id: sg-4-4-7 - name: Unicycle Accessories - children: - - sg-4-4-7-1 - - sg-4-4-7-2 - attributes: - - color - - pattern -- id: sg-4-4-8 - name: Unicycles - children: [] - attributes: - - color - - material - - pattern -- id: sg-4-5 - name: Equestrian - children: - - sg-4-5-1 - - sg-4-5-2 - - sg-4-5-3 - - sg-4-5-5 - - sg-4-5-4 - attributes: - - color - - pattern -- id: sg-4-5-1 - name: Horse Care - children: - - sg-4-5-1-1 - - sg-4-5-1-2 - - sg-4-5-1-3 - - sg-4-5-1-4 - - sg-4-5-1-5 - - sg-4-5-1-6 - - sg-4-5-1-7 - - sg-4-5-1-8 - attributes: - - color - - pattern -- id: sg-4-5-1-1 - name: Horse Blankets & Sheets - children: [] - attributes: - - color - - material - - pattern -- id: sg-4-5-1-2 - name: Horse Boots & Leg Wraps - children: [] - attributes: - - accessory_size - - age_group - - boot_type - - color - - material - - pattern - - shoe_size - - target_gender -- id: sg-4-5-1-3 - name: Horse Feed - children: - - sg-4-5-1-3-1 - attributes: - - color - - pattern - - animal_feed_form -- id: sg-4-5-1-4 - name: Horse Fly Masks - children: [] - attributes: - - accessory_size - - age_group - - color - - pattern -- id: sg-4-5-1-5 - name: Horse Grooming - children: - - sg-4-5-1-5-1 - - sg-4-5-1-5-2 - attributes: - - color - - pattern -- id: sg-4-5-1-5-1 - name: Horse Clippers & Trimmers - children: [] - attributes: - - color - - pattern - - horse_grooming_accessories_included -- id: sg-4-5-1-5-2 - name: Horse Grooming Combs, Brushes & Mitts - children: - - sg-4-5-1-5-2-1 - - sg-4-5-1-5-2-2 - - sg-4-5-1-5-2-3 - - sg-4-5-1-5-2-4 - - sg-4-5-1-5-2-5 - - sg-4-5-1-5-2-6 - attributes: - - color - - pattern -- id: sg-4-5-1-6 - name: Horse Treats - children: [] - attributes: - - color - - pattern -- id: sg-4-5-1-7 - name: Horse Vitamins & Supplements - children: [] - attributes: - - color - - pattern -- id: sg-4-5-1-8 - name: Horse Wormers - children: [] - attributes: - - color - - pattern -- id: sg-4-5-2 - name: Horse Tack - children: - - sg-4-5-2-1 - - sg-4-5-2-2 - - sg-4-5-2-3 - - sg-4-5-2-4 - - sg-4-5-2-5 - - sg-4-5-2-6 - - sg-4-5-2-7 - - sg-4-5-2-8 - - sg-4-5-2-9 - attributes: - - color - - pattern -- id: sg-4-5-2-1 - name: Bridle Bits - children: - - sg-4-5-2-1-1 - - sg-4-5-2-1-2 - - sg-4-5-2-1-3 - attributes: - - color - - pattern -- id: sg-4-5-2-2 - name: Bridles - children: - - sg-4-5-2-2-1 - - sg-4-5-2-2-2 - attributes: - - color - - horse_category - - pattern -- id: sg-4-5-2-3 - name: Cinches - children: [] - attributes: - - color - - material - - pattern -- id: sg-4-5-2-4 - name: Horse Halters +- id: sg-2-15-4 + name: Toning Balls children: [] attributes: - - accessory_size - color + - ball_material - pattern -- id: sg-4-5-2-5 - name: Horse Harnesses +- id: sg-2-15-5 + name: Tornado Balls children: [] attributes: - - accessory_size - color + - ball_material - pattern -- id: sg-4-5-2-6 - name: Horse Leads +- id: sg-2-15-6 + name: Wall Balls children: [] attributes: - color + - ball_material - pattern -- id: sg-4-5-2-7 - name: Reins +- id: sg-2-16 + name: Power Towers children: [] attributes: - color - - horse_category - - material + - compatible_exercises - pattern -- id: sg-4-5-2-8 - name: Saddles +- id: sg-2-17 + name: Push Up & Pull Up Bars children: [] attributes: + - bar_mounting_type - color - material - pattern -- id: sg-4-5-2-9 - name: Stirrups +- id: sg-2-18 + name: Reaction Balls children: [] attributes: - - accessory_size - - color - - pattern -- id: sg-4-5-3 - name: Horse Tack Accessories - children: - - sg-4-5-3-1 - - sg-4-5-3-2 - attributes: + - ball_size - color + - ball_material - pattern -- id: sg-4-5-3-1 - name: Horse Tack Boxes +- id: sg-2-19 + name: Speed & Resistance Parachutes children: [] attributes: - color - pattern -- id: sg-4-5-3-2 - name: Saddle Accessories +- id: sg-2-20 + name: Sport Safety Lights & Reflectors children: - - sg-4-5-3-2-1 - - sg-4-5-3-2-2 - - sg-4-5-3-2-3 - - sg-4-5-3-2-4 - attributes: - - color - - pattern -- id: sg-4-5-3-2-1 - name: Saddle Bags & Panniers - children: [] - attributes: - - color - - pattern -- id: sg-4-5-3-2-2 - name: Saddle Covers & Cases - children: [] - attributes: - - color - - pattern - - shape -- id: sg-4-5-3-2-3 - name: Saddle Pads & Blankets - children: [] + - sg-2-20-1 + - sg-2-20-2 attributes: - accessory_size - - age_group - - color - - pattern -- id: sg-4-5-3-2-4 - name: Saddle Racks - children: [] - attributes: + - activity - color - material - pattern -- id: sg-4-5-5 - name: Riding Apparel & Accessories - children: - - sg-4-5-5-1 - - sg-4-5-5-2 - - sg-4-5-5-3 - - sg-4-5-5-4 - attributes: - - color - - pattern -- id: sg-4-5-5-1 - name: Equestrian Gloves - children: [] - attributes: - - accessory_size - - age_group - - color - - pattern - - target_gender - - handwear_material -- id: sg-4-5-5-2 - name: Equestrian Helmets - children: [] - attributes: - - accessory_size - - age_group - - color - - pattern -- id: sg-4-5-5-3 - name: Riding Crops & Whips - children: [] - attributes: - - color - - pattern -- id: sg-4-5-5-4 - name: Riding Pants +- id: sg-2-20-1 + name: Sport Safety Lights children: [] attributes: - accessory_size - - age_group + - activity - color - material - pattern - - target_gender -- id: sg-4-6 - name: Fishing - children: - - sg-4-6-1 - - sg-4-6-2 - - sg-4-6-3 - - sg-4-6-4 - - sg-4-6-5 - - sg-4-6-6 - - sg-4-6-7 - - sg-4-6-8 - - sg-4-6-9 - - sg-4-6-10 - - sg-4-6-11 - - sg-4-6-12 - - sg-4-6-13 - - sg-4-6-14 - - sg-4-6-15 - - sg-4-6-16 - - sg-4-6-17 - attributes: - - color - - pattern -- id: sg-4-6-1 - name: Bite Alarms - children: - - sg-4-6-1-1 - - sg-4-6-1-2 - - sg-4-6-1-3 - attributes: - - color - - pattern -- id: sg-4-6-2 - name: Fishing & Hunting Waders - children: - - sg-4-6-2-1 - - sg-4-6-2-2 - - sg-4-6-2-3 - attributes: - - accessory_size - - clothing_type - - color - - pattern - - target_gender -- id: sg-4-6-3 - name: Fishing Bait & Chum Containers - children: [] - attributes: - - color - - pattern -- id: sg-4-6-4 - name: Fishing Gaffs +- id: sg-2-20-2 + name: Sport Safety Reflectors children: [] attributes: - - color - - pattern -- id: sg-4-6-5 - name: Fishing Hook Removal Tools - children: - - sg-4-6-5-1 - - sg-4-6-5-2 - - sg-4-6-5-3 - - sg-4-6-5-4 - - sg-4-6-5-5 - - sg-4-6-5-6 - - sg-4-6-5-7 - - sg-4-6-5-8 - - sg-4-6-5-9 - - sg-4-6-5-10 - - sg-4-6-5-11 - - sg-4-6-5-12 - - sg-4-6-5-13 - - sg-4-6-5-14 - - sg-4-6-5-15 - - sg-4-6-5-16 - - sg-4-6-5-17 - - sg-4-6-5-18 - - sg-4-6-5-19 - - sg-4-6-5-20 - attributes: - - color - - material - - pattern -- id: sg-4-6-6 - name: Fishing Lines & Leaders - children: - - sg-4-6-6-1 - - sg-4-6-6-2 - - sg-4-6-6-3 - - sg-4-6-6-4 - attributes: + - accessory_size + - activity - color - material - pattern -- id: sg-4-6-7 - name: Fishing Nets - children: [] - attributes: - - color - - hoop_shape - - pattern -- id: sg-4-6-8 - name: Fishing Reel Accessories - children: - - sg-4-6-8-1 - - sg-4-6-8-2 - - sg-4-6-8-3 - attributes: - - color - - pattern -- id: sg-4-6-8-1 - name: Fishing Reel Bags & Cases - children: [] - attributes: - - color - - pattern -- id: sg-4-6-8-2 - name: Fishing Reel Lubricants - children: [] - attributes: - - color - - pattern -- id: sg-4-6-8-3 - name: Fishing Reel Replacement Spools +- id: sg-2-21 + name: Stopwatches children: [] attributes: - - angling_style - - color - - pattern -- id: sg-4-6-9 - name: Fishing Reels - children: - - sg-4-6-9-1 - - sg-4-6-9-2 - - sg-4-6-9-3 - - sg-4-6-9-4 - - sg-4-6-9-5 - - sg-4-6-9-6 - - sg-4-6-9-7 - attributes: - color - - gear_ratio - pattern - - spool_material - - body_material -- id: sg-4-6-10 - name: Fishing Rod Accessories +- id: sg-2-22 + name: Suspension Trainers children: - - sg-4-6-10-1 - - sg-4-6-10-2 - attributes: - - color - - pattern -- id: sg-4-6-10-1 - name: Fishing Rod Bags & Cases - children: [] - attributes: - - color - - pattern -- id: sg-4-6-10-2 - name: Fishing Rod Holders & Storage Racks - children: [] + - sg-2-22-1 + - sg-2-22-2 + - sg-2-22-3 attributes: - color - - material - pattern -- id: sg-4-6-11 - name: Fishing Rods +- id: sg-2-22-1 + name: Full Body Suspension Kits children: - - sg-4-6-11-1 - - sg-4-6-11-2 - - sg-4-6-11-3 - - sg-4-6-11-4 - - sg-4-6-11-5 - - sg-4-6-11-6 - - sg-4-6-11-7 - - sg-4-6-11-8 - - sg-4-6-11-9 - - sg-4-6-11-10 - - sg-4-6-11-11 - - sg-4-6-11-12 + - sg-2-22-1-1 + - sg-2-22-1-2 attributes: - - butt_cap_material - color - - fishing_rod_action - - fishing_rod_power - - handle_material - - pattern - - rod_material -- id: sg-4-6-12 - name: Fishing Spears + - pattern +- id: sg-2-22-1-1 + name: Jungle Gyms children: [] attributes: - color - pattern - - tip_type -- id: sg-4-6-13 - name: Fishing Tackle - children: - - sg-4-6-13-1 - - sg-4-6-13-2 - - sg-4-6-13-3 - - sg-4-6-13-4 - - sg-4-6-13-5 +- id: sg-2-22-1-2 + name: Total Body Straps + children: [] attributes: - color - pattern -- id: sg-4-6-13-1 - name: Fishing Baits & Lures +- id: sg-2-22-2 + name: Suspension Handles & Straps children: - - sg-4-6-13-1-1 - - sg-4-6-13-1-2 - - sg-4-6-13-1-3 - - sg-4-6-13-1-4 - - sg-4-6-13-1-5 - - sg-4-6-13-1-6 - - sg-4-6-13-1-7 - - sg-4-6-13-1-8 - - sg-4-6-13-1-9 - - sg-4-6-13-1-10 - - sg-4-6-13-1-11 + - sg-2-22-2-1 + - sg-2-22-2-2 attributes: - color - pattern -- id: sg-4-6-13-2 - name: Fishing Floats +- id: sg-2-22-2-1 + name: Suspension Handles children: [] attributes: - color - - material - pattern -- id: sg-4-6-13-3 - name: Fishing Hooks - children: - - sg-4-6-13-3-1 - - sg-4-6-13-3-2 +- id: sg-2-22-2-2 + name: Suspension Straps + children: [] attributes: - color - pattern -- id: sg-4-6-13-4 - name: Fishing Sinkers +- id: sg-2-22-3 + name: Suspension Training Accessories children: - - sg-4-6-13-4-1 - - sg-4-6-13-4-2 - - sg-4-6-13-4-3 - - sg-4-6-13-4-4 - - sg-4-6-13-4-5 - - sg-4-6-13-4-6 + - sg-2-22-3-1 + - sg-2-22-3-2 + - sg-2-22-3-3 + - sg-2-22-3-4 + - sg-2-22-3-5 attributes: - color - pattern - - sinker_material -- id: sg-4-6-13-5 - name: Fishing Snaps & Swivels +- id: sg-2-22-3-1 + name: Strap Extenders children: [] attributes: - - accessory_size - color - pattern -- id: sg-4-6-14 - name: Fishing Traps +- id: sg-2-22-3-2 + name: Suspension Training Anchors children: [] attributes: - color - - material - pattern -- id: sg-4-6-15 - name: Fly Tying Materials - children: - - sg-4-6-15-1 - - sg-4-6-15-2 +- id: sg-2-22-3-3 + name: Suspension Training Carabiners + children: [] attributes: - color - pattern -- id: sg-4-6-15-1 - name: Fishing Beads +- id: sg-2-22-3-4 + name: Suspension Training Connectors children: [] attributes: - color - - material - pattern -- id: sg-4-6-15-2 - name: Fishing Yarn +- id: sg-2-22-3-5 + name: Suspension Training Mounts children: [] attributes: - color - pattern -- id: sg-4-6-16 - name: Live Bait +- id: sg-2-23 + name: Vibration Exercise Machines + children: + - sg-2-23-1 + - sg-2-23-2 + attributes: + - color + - pattern +- id: sg-2-23-1 + name: Lineal Vibration Exercise Machines children: [] attributes: - color - pattern -- id: sg-4-6-17 - name: Tackle Bags & Boxes +- id: sg-2-23-2 + name: Pivotal Vibration Exercise Machines children: [] attributes: - color - pattern -- id: sg-4-7 - name: Golf +- id: sg-2-24 + name: Weight Lifting children: - - sg-4-7-1 - - sg-4-7-2 - - sg-4-7-3 - - sg-4-7-4 - - sg-4-7-5 - - sg-4-7-6 - - sg-4-7-7 - - sg-4-7-9 - - sg-4-7-10 - - sg-4-7-11 - - sg-4-7-12 - - sg-4-7-13 - - sg-4-7-14 - - sg-4-7-8 + - sg-2-24-1 + - sg-2-24-2 + - sg-2-24-3 + - sg-2-24-4 + - sg-2-24-5 + - sg-2-24-6 attributes: - color - pattern -- id: sg-4-7-1 - name: Divot Tools +- id: sg-2-24-1 + name: Free Weight Accessories + children: + - sg-2-24-1-1 + - sg-2-24-1-2 + - sg-2-24-1-3 + attributes: + - color + - pattern +- id: sg-2-24-1-1 + name: Barbells & Weightlifting Bars children: [] attributes: - color - material - pattern -- id: sg-4-7-2 - name: Golf Accessory Sets + - weight_bar_activity + - weight_bar_type +- id: sg-2-24-1-2 + name: Free Weight Storage Racks children: [] attributes: - color - material - pattern - - golf_equipment_included -- id: sg-4-7-3 - name: Golf Bag Accessories - children: - - sg-4-7-3-1 - - sg-4-7-3-2 +- id: sg-2-24-1-3 + name: Weight Bar Collars + children: [] attributes: + - collar_lock_type - color + - compatible_weight_lifting_accessory + - material - pattern -- id: sg-4-7-3-1 - name: Golf Bag Carts - children: [] +- id: sg-2-24-2 + name: Free Weights, Dumbbells & Kettlebells + children: + - sg-2-24-2-1 + - sg-2-24-2-2 + - sg-2-24-2-3 + - sg-2-24-2-4 attributes: - color + - material - pattern - - power_source -- id: sg-4-7-3-2 - name: Golf Bag Covers & Cases +- id: sg-2-24-2-1 + name: Dumbbells children: [] attributes: - color + - material - pattern -- id: sg-4-7-4 - name: Golf Bags +- id: sg-2-24-2-2 + name: Kettlebells children: [] attributes: - color + - material - pattern -- id: sg-4-7-5 - name: Golf Ball Markers +- id: sg-2-24-2-3 + name: Sandbags children: [] attributes: - color + - material - pattern -- id: sg-4-7-6 - name: Golf Balls +- id: sg-2-24-2-4 + name: Weight Plates children: [] attributes: - color - material - pattern - - golf_ball_type -- id: sg-4-7-7 - name: Golf Club Parts & Accessories - children: - - sg-4-7-7-1 - - sg-4-7-7-2 - - sg-4-7-7-3 +- id: sg-2-24-3 + name: Weight Lifting Belts + children: [] attributes: + - accessory_size + - age_group - color - pattern -- id: sg-4-7-7-1 - name: Golf Club Grips +- id: sg-2-24-4 + name: Weight Lifting Gloves & Hand Supports children: [] attributes: - - club_subset - - club_type + - accessory_size + - age_group - color - - hand_side - - material + - handwear_material - pattern - - shaft_flex -- id: sg-4-7-7-2 - name: Golf Club Headcovers - children: [] + - target_gender +- id: sg-2-24-5 + name: Weight Lifting Machine & Exercise Bench Accessories + children: + - sg-2-24-5-1 + - sg-2-24-5-2 + - sg-2-24-5-3 attributes: - color - - material - pattern -- id: sg-4-7-7-3 - name: Golf Club Shafts +- id: sg-2-24-5-1 + name: Cables children: [] attributes: - - club_subset - - club_type - color - - hand_side - - material - pattern - - shaft_flex -- id: sg-4-7-9 - name: Golf Clubs +- id: sg-2-24-5-2 + name: Handles children: [] attributes: - - club_subset - - club_type - color - - hand_side - - material - pattern - - shaft_flex -- id: sg-4-7-10 - name: Golf Flags +- id: sg-2-24-5-3 + name: Weights children: [] attributes: - color - pattern -- id: sg-4-7-11 - name: Golf Gloves +- id: sg-2-24-6 + name: Weight Lifting Machines & Racks + children: + - sg-2-24-6-1 + - sg-2-24-6-2 + - sg-2-24-6-3 + - sg-2-24-6-4 + attributes: + - color + - pattern +- id: sg-2-24-6-1 + name: Power Racks children: [] attributes: - - accessory_size - - age_group - color + - j_cup_type - pattern - - target_gender - - handwear_material -- id: sg-4-7-12 - name: Golf Tees + - pull_up_bar +- id: sg-2-24-6-2 + name: Smith Machines children: [] attributes: - color - pattern -- id: sg-4-7-13 - name: Golf Towels + - pull_up_bar +- id: sg-2-24-6-3 + name: Weight Lifting Machines with Pulleys children: [] attributes: - - accessory_size - color + - j_cup_type - pattern - - fabric -- id: sg-4-7-14 - name: Golf Training Aids - children: - - sg-4-7-14-1 - - sg-4-7-14-2 - - sg-4-7-14-3 - - sg-4-7-14-4 + - pull_up_bar +- id: sg-2-24-6-4 + name: Weight Lifting Racks + children: [] attributes: - - age_group - color + - j_cup_type - pattern -- id: sg-4-8 - name: Hang Gliding & Skydiving + - pull_up_bar +- id: sg-2-25 + name: Weighted Clothing children: - - sg-4-8-1 - - sg-4-8-2 - - sg-4-8-3 + - sg-2-25-1 + - sg-2-25-2 + - sg-2-25-3 attributes: - color - pattern -- id: sg-4-8-1 - name: Air Suits +- id: sg-2-25-1 + name: Ankle Weights children: [] attributes: - - accessory_size - - age_group - color - - material - pattern - - target_gender -- id: sg-4-8-2 - name: Hang Gliders +- id: sg-2-25-2 + name: Weighted Vest Sets children: [] attributes: - color - pattern - - recommended_skill_level -- id: sg-4-8-3 - name: Parachutes +- id: sg-2-25-3 + name: Weighted Vests children: [] attributes: - color - - parachuting_activity - pattern -- id: sg-4-9 - name: Hunting & Shooting +- id: sg-2-26 + name: Yoga & Pilates children: - - sg-4-9-1 - - sg-4-9-2 - - sg-4-9-3 - - sg-4-9-4 - - sg-4-9-5 - - sg-4-9-6 + - sg-2-26-1 + - sg-2-26-2 + - sg-2-26-3 + - sg-2-26-4 + - sg-2-26-5 attributes: - color - pattern -- id: sg-4-9-1 - name: Archery +- id: sg-2-26-1 + name: Pilates Machines children: - - sg-4-9-1-1 - - sg-4-9-1-2 - - sg-4-9-1-3 - - sg-4-9-1-4 - - sg-4-9-1-5 - - sg-4-9-1-6 - - sg-4-9-1-7 - - sg-4-9-1-8 + - sg-2-26-1-1 + - sg-2-26-1-2 + - sg-2-26-1-3 attributes: - color - pattern -- id: sg-4-9-1-1 - name: Archery Armguards +- id: sg-2-26-1-1 + name: Pilates Chairs children: [] attributes: - - accessory_size - - age_group - color - pattern -- id: sg-4-9-1-2 - name: Archery Gloves & Releases +- id: sg-2-26-1-2 + name: Pilates Reformers children: [] attributes: - - accessory_size - - age_group - color - pattern - - target_gender - - handwear_material -- id: sg-4-9-1-3 - name: Archery Targets +- id: sg-2-26-1-3 + name: Pilates Towers children: [] attributes: - - age_group - - archery_activity - - archery_style - color - - material - pattern -- id: sg-4-9-1-4 - name: Arrow Parts & Accessories - children: - - sg-4-9-1-4-1 - - sg-4-9-1-4-2 - - sg-4-9-1-4-3 +- id: sg-2-26-2 + name: Yoga & Pilates Blocks + children: [] attributes: - - archery_style - color + - material - pattern -- id: sg-4-9-1-4-1 - name: Arrow Fletchings +- id: sg-2-26-3 + name: Yoga & Pilates Mats children: [] attributes: - - age_group - - archery_style - color + - exercise_mat_material - pattern - - arrow_fletching_material -- id: sg-4-9-1-4-2 - name: Arrow Nocks - children: - - sg-4-9-1-4-2-1 - - sg-4-9-1-4-2-2 - - sg-4-9-1-4-2-3 - - sg-4-9-1-4-2-4 - - sg-4-9-1-4-2-5 +- id: sg-2-26-4 + name: Yoga & Pilates Towels + children: [] attributes: - - archery_style + - accessory_size - color + - fabric - pattern - - nock_material -- id: sg-4-9-1-4-3 - name: Broadheads & Field Points +- id: sg-2-26-5 + name: Yoga Mat Bags & Straps children: - - sg-4-9-1-4-3-1 - - sg-4-9-1-4-3-2 + - sg-2-26-5-1 + - sg-2-26-5-2 attributes: - - archery_style - color - pattern - - broadhead_field_point_material -- id: sg-4-9-1-5 - name: Arrows & Bolts - children: - - sg-4-9-1-5-1 - - sg-4-9-1-5-2 +- id: sg-2-26-5-1 + name: Yoga Mat Bags + children: [] attributes: - - age_group - - archery_style - color - pattern - - material -- id: sg-4-9-1-6 - name: Bow & Crossbow Accessories - children: - - sg-4-9-1-6-1 +- id: sg-2-26-5-2 + name: Yoga Mat Straps + children: [] attributes: - - archery_activity - color - pattern -- id: sg-4-9-1-7 - name: Bows & Crossbows +- id: sg-3 + name: Indoor Games children: - - sg-4-9-1-7-1 - - sg-4-9-1-7-2 - - sg-4-9-1-7-3 - - sg-4-9-1-7-4 + - sg-3-1 + - sg-3-2 + - sg-3-3 + - sg-3-4 + - sg-3-5 + - sg-3-6 + - sg-3-7 + - sg-3-8 attributes: - - archery_style - color - - hand_side - pattern - - core_material - - riser_material - - string_material -- id: sg-4-9-1-7-1 - name: Compound Bows - children: [] +- id: sg-3-1 + name: Air Hockey + children: + - sg-3-1-1 + - sg-3-1-2 + - sg-3-1-3 attributes: - - archery_style - color - - hand_side - pattern - - core_material - - riser_material - - string_material -- id: sg-4-9-1-7-2 - name: Crossbows - children: [] +- id: sg-3-1-1 + name: Air Hockey Equipment + children: + - sg-3-1-1-1 + - sg-3-1-1-2 attributes: - - archery_style - color + - material - pattern - - core_material - - riser_material - - string_material -- id: sg-4-9-1-7-3 - name: Recurve & Longbows - children: - - sg-4-9-1-7-3-1 - - sg-4-9-1-7-3-2 +- id: sg-3-1-1-1 + name: Air Hockey Pucks + children: [] attributes: - - archery_style - color + - material - pattern - - core_material - - riser_material - - string_material -- id: sg-4-9-1-8 - name: Quivers +- id: sg-3-1-1-2 + name: Air Hockey Pushers children: [] attributes: - color - - hand_side + - material - pattern - - quiver_style -- id: sg-4-9-2 - name: Clay Pigeon Shooting +- id: sg-3-1-2 + name: Air Hockey Table Parts children: - - sg-4-9-2-1 - - sg-4-9-2-2 + - sg-3-1-2-1 + - sg-3-1-2-2 + - sg-3-1-2-3 + - sg-3-1-2-4 + - sg-3-1-2-5 attributes: + - age_group - color + - material - pattern -- id: sg-4-9-2-1 - name: Clay Pigeon Throwers +- id: sg-3-1-2-1 + name: Air Hockey Table Boards children: [] attributes: + - age_group - color + - material - pattern -- id: sg-4-9-2-2 - name: Clay Pigeons +- id: sg-3-1-2-2 + name: Air Hockey Table Bolts children: [] attributes: + - age_group - color + - material - pattern -- id: sg-4-9-3 - name: Hunting - children: - - sg-4-9-3-1 - - sg-4-9-3-2 - - sg-4-9-3-3 - - sg-4-9-3-4 - - sg-4-9-3-5 - - sg-4-9-3-6 - - sg-4-9-3-7 +- id: sg-3-1-2-3 + name: Air Hockey Table Cables + children: [] attributes: + - age_group - color + - material - pattern -- id: sg-4-9-4 - name: Hunting & Shooting Protective Gear - children: - - sg-4-9-4-1 - - sg-4-9-4-2 +- id: sg-3-1-2-4 + name: Air Hockey Table Clamps + children: [] attributes: + - age_group - color + - material - pattern -- id: sg-4-9-4-1 - name: Hunting & Shooting Gloves +- id: sg-3-1-2-5 + name: Air Hockey Table Feet children: [] attributes: - - accessory_size - age_group - color + - material - pattern - - target_gender - - handwear_material -- id: sg-4-9-4-2 - name: Hunting & Shooting Jackets +- id: sg-3-1-3 + name: Air Hockey Tables children: [] attributes: - - accessory_size + - age_group - color + - material - pattern - - target_gender - - gear_material -- id: sg-4-9-3-1 - name: Animal Traps +- id: sg-3-2 + name: Billiards + children: + - sg-3-2-1 + - sg-3-2-2 + - sg-3-2-3 + - sg-3-2-4 + - sg-3-2-5 + - sg-3-2-6 + - sg-3-2-7 + - sg-3-2-8 + attributes: + - color + - pattern +- id: sg-3-2-1 + name: Billiard Ball Racks children: [] attributes: - - animal_type - color + - material - pattern -- id: sg-4-9-3-2 - name: Hearing Enhancers +- id: sg-3-2-2 + name: Billiard Balls children: [] attributes: - color + - ball_material - pattern -- id: sg-4-9-3-3 - name: Hunting Blinds & Screens +- id: sg-3-2-3 + name: Billiard Cue Accessories children: - - sg-4-9-3-3-1 + - sg-3-2-3-1 + - sg-3-2-3-2 + - sg-3-2-3-3 attributes: - color - pattern - - fabric -- id: sg-4-9-3-4 - name: Hunting Dog Equipment - children: - - sg-4-9-3-4-1 - - sg-4-9-3-4-2 - - sg-4-9-3-4-3 +- id: sg-3-2-3-1 + name: Billiard Cue Cases + children: [] attributes: - color + - bag_case_material - pattern -- id: sg-4-9-3-5 - name: Tree Stands +- id: sg-3-2-3-2 + name: Billiard Cue Chalk children: [] attributes: - color - pattern -- id: sg-4-9-3-6 - name: Wild Game Feeders +- id: sg-3-2-3-3 + name: Billiard Cue Racks children: [] attributes: - - animal_type - color + - material - pattern -- id: sg-4-9-3-7 - name: Wildlife Attractants +- id: sg-3-2-4 + name: Billiard Cues & Bridges children: - - sg-4-9-3-7-1 - - sg-4-9-3-7-2 - - sg-4-9-3-7-3 - - sg-4-9-3-7-4 + - sg-3-2-4-1 + - sg-3-2-4-2 + - sg-3-2-4-3 attributes: - color + - material - pattern -- id: sg-4-9-3-7-1 - name: Cover Scents & Scent Attractants +- id: sg-3-2-4-1 + name: Billiard Bridges children: [] attributes: - - animal_type - color + - material - pattern -- id: sg-4-9-3-7-2 - name: Hunting & Wildlife Calls +- id: sg-3-2-4-2 + name: Billiard Cues children: [] attributes: - - animal_type - color + - cue_style + - cue_type + - cue_wrap + - joint_style + - material - pattern -- id: sg-4-9-3-7-3 - name: Hunting & Wildlife Decoys +- id: sg-3-2-4-3 + name: Billiard Shafts children: [] attributes: - - animal_type - color + - cue_style + - cue_type + - joint_style + - material - pattern -- id: sg-4-9-3-7-4 - name: Wildlife Bait, Feed & Minerals - children: - - sg-4-9-3-7-4-1 - - sg-4-9-3-7-4-2 - - sg-4-9-3-7-4-3 +- id: sg-3-2-5 + name: Billiard Gloves + children: [] attributes: + - accessory_size + - age_group - color + - handwear_material - pattern - - animal_feed_form -- id: sg-4-9-5 - name: Paintball & Airsoft - children: - - sg-4-9-5-1 - - sg-4-9-5-2 - - sg-4-9-5-3 + - target_gender +- id: sg-3-2-6 + name: Billiard Table Lights + children: [] attributes: - color + - light_color + - light_temperature + - mounting_type - pattern -- id: sg-4-9-5-1 - name: Airsoft +- id: sg-3-2-7 + name: Billiard Table Parts & Accessories children: - - sg-4-9-5-1-1 - - sg-4-9-5-1-2 - - sg-4-9-5-1-3 + - sg-3-2-7-1 + - sg-3-2-7-2 + - sg-3-2-7-3 + - sg-3-2-7-4 attributes: - color - pattern -- id: sg-4-9-5-1-1 - name: Airsoft Gun Parts & Accessories - children: - - sg-4-9-5-1-1-1 +- id: sg-3-2-7-1 + name: Billiard Pockets + children: [] attributes: - color - pattern -- id: sg-4-9-5-1-1-1 - name: Airsoft Gun Batteries +- id: sg-3-2-7-2 + name: Billiard Table Brushes children: [] attributes: - color - pattern -- id: sg-4-9-5-1-2 - name: Airsoft Guns +- id: sg-3-2-7-3 + name: Billiard Table Cloth children: [] attributes: - color - pattern - - paintball_airsoft_equipment_included -- id: sg-4-9-5-1-3 - name: Airsoft Pellets +- id: sg-3-2-7-4 + name: Billiard Table Covers children: [] attributes: - color + - cover_material - pattern -- id: sg-4-9-5-2 - name: Paintball - children: - - sg-4-9-5-2-1 - - sg-4-9-5-2-2 - - sg-4-9-5-2-3 - - sg-4-9-5-2-4 - - sg-4-9-5-2-5 - - sg-4-9-5-2-6 +- id: sg-3-2-8 + name: Billiard Tables + children: [] attributes: - color - pattern -- id: sg-4-9-5-3 - name: Paintball & Airsoft Protective Gear +- id: sg-3-3 + name: Bowling children: - - sg-4-9-5-3-1 - - sg-4-9-5-3-2 - - sg-4-9-5-3-3 - - sg-4-9-5-3-4 + - sg-3-3-1 + - sg-3-3-2 + - sg-3-3-3 + - sg-3-3-4 + - sg-3-3-5 + - sg-3-3-6 attributes: - color - pattern -- id: sg-4-9-5-3-1 - name: Paintball & Airsoft Gloves +- id: sg-3-3-1 + name: Bowling Ball Bags + children: [] + attributes: + - color + - pattern +- id: sg-3-3-2 + name: Bowling Balls + children: [] + attributes: + - ball_size + - color + - ball_material + - pattern +- id: sg-3-3-3 + name: Bowling Gloves children: [] attributes: - accessory_size - age_group - color + - handwear_material - pattern - target_gender - - handwear_material -- id: sg-4-9-5-3-2 - name: Paintball & Airsoft Goggles & Masks +- id: sg-3-3-4 + name: Bowling Pins children: [] attributes: - - accessory_size - age_group - color + - material - pattern -- id: sg-4-9-5-3-3 - name: Paintball & Airsoft Pads +- id: sg-3-3-5 + name: Bowling Sets children: [] attributes: + - age_group - color + - material - pattern - - gear_material -- id: sg-4-9-5-3-4 - name: Paintball & Airsoft Vests +- id: sg-3-3-6 + name: Bowling Wrist Supports children: [] attributes: - accessory_size + - age_group - color + - material - pattern -- id: sg-4-9-5-2-1 - name: Paintball Grenade Launchers - children: [] +- id: sg-3-4 + name: Foosball + children: + - sg-3-4-1 + - sg-3-4-2 + - sg-3-4-3 attributes: - color - pattern -- id: sg-4-9-5-2-2 - name: Paintball Grenades +- id: sg-3-4-1 + name: Foosball Balls children: [] attributes: + - ball_size - color + - ball_material - pattern -- id: sg-4-9-5-2-3 - name: Paintball Gun Parts & Accessories +- id: sg-3-4-2 + name: Foosball Table Parts & Accessories children: - - sg-4-9-5-2-3-1 - - sg-4-9-5-2-3-2 - - sg-4-9-5-2-3-3 - - sg-4-9-5-2-3-4 + - sg-3-4-2-1 + - sg-3-4-2-2 + - sg-3-4-2-3 attributes: - color - pattern -- id: sg-4-9-5-2-3-1 - name: Paintball Air Tanks +- id: sg-3-4-2-1 + name: Foosball Table Handles children: [] attributes: - color - pattern -- id: sg-4-9-5-2-3-2 - name: Paintball Gun Barrels +- id: sg-3-4-2-2 + name: Football Table Players children: [] attributes: - color - pattern -- id: sg-4-9-5-2-3-3 - name: Paintball Gun Drop Forwards +- id: sg-3-4-2-3 + name: Football Table Rods children: [] attributes: - color - pattern -- id: sg-4-9-5-2-3-4 - name: Paintball Hoppers +- id: sg-3-4-3 + name: Foosball Tables children: [] attributes: + - age_group - color - pattern -- id: sg-4-9-5-2-4 - name: Paintball Guns - children: [] +- id: sg-3-5 + name: Multi-Game Tables + children: + - sg-3-5-1 + - sg-3-5-2 + - sg-3-5-3 attributes: + - age_group - color + - games_included + - furniture_fixture_material - pattern -- id: sg-4-9-5-2-5 - name: Paintball Harnesses & Packs +- id: sg-3-5-1 + name: Attachable Multi-Game Tables children: [] attributes: + - age_group - color + - games_included + - furniture_fixture_material - pattern -- id: sg-4-9-5-2-6 - name: Paintballs +- id: sg-3-5-2 + name: Flip Multi-Game Tables children: [] attributes: + - age_group - color + - games_included + - furniture_fixture_material - pattern -- id: sg-4-9-6 - name: Shooting & Range Accessories - children: - - sg-4-9-6-1 - - sg-4-9-6-2 - - sg-4-9-6-3 - attributes: - - color - - pattern -- id: sg-4-9-6-1 - name: Shooting Rests +- id: sg-3-5-3 + name: Hybrid Multi-Game Tables children: [] attributes: + - age_group - color + - games_included + - furniture_fixture_material - pattern -- id: sg-4-9-6-2 - name: Shooting Sticks & Bipods +- id: sg-3-6 + name: Ping Pong children: - - sg-4-9-6-2-1 - - sg-4-9-6-2-2 - - sg-4-9-6-2-3 + - sg-3-6-1 + - sg-3-6-2 + - sg-3-6-3 + - sg-3-6-4 + - sg-3-6-5 + - sg-3-6-6 + - sg-3-6-7 + - sg-3-6-8 attributes: - color - pattern -- id: sg-4-9-6-3 - name: Shooting Targets +- id: sg-3-6-1 + name: Ping Pong Balls children: [] attributes: - color - - material - pattern -- id: sg-4-10 - name: Hydration System Accessories +- id: sg-3-6-2 + name: Ping Pong Nets & Posts children: - - sg-4-10-1 - - sg-4-10-2 - - sg-4-10-3 - - sg-4-10-4 - - sg-4-10-5 - - sg-4-10-6 - - sg-4-10-7 - - sg-4-10-8 - - sg-4-10-9 - - sg-4-10-10 + - sg-3-6-2-1 + - sg-3-6-2-2 attributes: - color + - mounting_type - pattern -- id: sg-4-11 - name: Hydration Systems +- id: sg-3-6-2-1 + name: Ping Pong Nets children: [] attributes: - - activity - color - - material + - mounting_type - pattern -- id: sg-4-12 - name: Inline & Roller Skating - children: - - sg-4-12-1 - - sg-4-12-2 - - sg-4-12-3 - - sg-4-12-4 - - sg-4-12-5 - - sg-4-12-6 +- id: sg-3-6-2-2 + name: Ping Pong Posts + children: [] attributes: - color + - mounting_type - pattern -- id: sg-4-12-1 - name: Inline & Roller Skating Protective Gear +- id: sg-3-6-3 + name: Ping Pong Paddle Accessories children: - - sg-4-12-1-1 + - sg-3-6-3-1 attributes: - color + - frame_color - pattern -- id: sg-4-12-1-1 - name: Roller Skating Pads + - recommended_skill_level +- id: sg-3-6-3-1 + name: Ping Pong Paddle Cases children: [] attributes: - - accessory_size - - age_group - color + - frame_color - pattern -- id: sg-4-12-2 - name: Inline Skate Parts - children: - - sg-4-12-2-1 - - sg-4-12-2-2 - - sg-4-12-2-3 + - recommended_skill_level +- id: sg-3-6-4 + name: Ping Pong Paddles & Sets + children: [] attributes: - color - pattern -- id: sg-4-12-3 - name: Inline Skates - children: - - sg-4-12-3-1 - - sg-4-12-3-2 - - sg-4-12-3-3 - - sg-4-12-3-4 + - ping_pong_equipment_included +- id: sg-3-6-5 + name: Ping Pong Robot Accessories + children: [] attributes: - - age_group - - boot_type - color - - inline_skating_style - pattern - - shoe_size - - target_gender - - footwear_material - - shell_frame_material -- id: sg-4-12-4 - name: Roller Skate Parts - children: - - sg-4-12-4-1 - - sg-4-12-4-2 - - sg-4-12-4-3 +- id: sg-3-6-6 + name: Ping Pong Robots + children: [] attributes: - color - pattern -- id: sg-4-12-5 - name: Roller Skates - children: - - sg-4-12-5-1 - - sg-4-12-5-2 - - sg-4-12-5-3 - - sg-4-12-5-4 +- id: sg-3-6-7 + name: Ping Pong Table Covers + children: [] attributes: - - age_group - - boot_type - color - - inline_skating_style - pattern - - shoe_size - - target_gender - - footwear_material - - shell_frame_material -- id: sg-4-12-6 - name: Roller Skis - children: - - sg-4-12-6-1 - - sg-4-12-6-2 - - sg-4-12-6-3 - - sg-4-12-6-4 +- id: sg-3-6-8 + name: Ping Pong Tables + children: [] attributes: - age_group - color - - inline_skating_style + - mounting_type - pattern - - rocker_type - - target_gender - - ski_construction -- id: sg-4-13 - name: Kite Buggying + - suitable_space +- id: sg-3-7 + name: Table Shuffleboard children: - - sg-4-13-1 - - sg-4-13-2 + - sg-3-7-1 + - sg-3-7-2 + - sg-3-7-3 attributes: - color - pattern -- id: sg-4-13-1 - name: Kite Buggies +- id: sg-3-7-1 + name: Shuffleboard Tables children: [] attributes: + - age_group - color - pattern -- id: sg-4-13-2 - name: Kite Buggy Accessories - children: - - sg-4-13-2-1 - - sg-4-13-2-2 - - sg-4-13-2-3 +- id: sg-3-7-2 + name: Table Shuffleboard Powder + children: [] attributes: - color - pattern -- id: sg-4-14 - name: Outdoor Games - children: - - sg-4-14-1 - - sg-4-14-2 - - sg-4-14-3 - - sg-4-14-4 - - sg-4-14-5 - - sg-4-14-6 - - sg-4-14-7 - - sg-4-14-8 +- id: sg-3-7-3 + name: Table Shuffleboard Pucks + children: [] attributes: - color - pattern -- id: sg-4-14-1 - name: Badminton +- id: sg-3-8 + name: Throwing Darts children: - - sg-4-14-1-1 - - sg-4-14-1-3 - - sg-4-14-1-2 + - sg-3-8-1 + - sg-3-8-2 + - sg-3-8-3 + - sg-3-8-4 attributes: - color - pattern -- id: sg-4-14-1-1 - name: Badminton Nets +- id: sg-3-8-1 + name: Dart Backboards children: [] attributes: - - color - - mounting_type - - pattern -- id: sg-4-14-1-3 - name: Shuttlecocks - children: - - sg-4-14-1-3-1 - - sg-4-14-1-3-2 - attributes: + - age_group - color - pattern -- id: sg-4-14-2 - name: Deck Shuffleboard +- id: sg-3-8-2 + name: Dart Parts children: - - sg-4-14-2-1 - - sg-4-14-2-2 + - sg-3-8-2-1 + - sg-3-8-2-2 + - sg-3-8-2-3 attributes: - color - pattern -- id: sg-4-14-2-1 - name: Deck Shuffleboard Cues +- id: sg-3-8-2-1 + name: Dart Flights children: [] attributes: - color - material - pattern -- id: sg-4-14-2-2 - name: Deck Shuffleboard Pucks +- id: sg-3-8-2-2 + name: Dart Shafts children: [] attributes: - color - material - pattern -- id: sg-4-14-3 - name: Disc Golf - children: - - sg-4-14-3-1 - - sg-4-14-3-2 +- id: sg-3-8-2-3 + name: Dart Tips + children: [] attributes: - color + - material - pattern -- id: sg-4-14-3-1 - name: Disc Golf Bags +- id: sg-3-8-3 + name: Dartboards children: [] attributes: + - age_group - color - pattern -- id: sg-4-14-3-2 - name: Disc Golf Baskets +- id: sg-3-8-4 + name: Darts children: [] attributes: - color + - material - pattern -- id: sg-4-14-4 - name: Lawn Games +- id: sg-4 + name: Outdoor Recreation children: - - sg-4-14-4-1 - - sg-4-14-4-2 - - sg-4-14-4-3 - - sg-4-14-4-4 - attributes: - - color - - pattern -- id: sg-4-14-5 - name: Paddle Ball Sets - children: [] + - sg-4-1 + - sg-4-2 + - sg-4-3 + - sg-4-4 + - sg-4-5 + - sg-4-6 + - sg-4-7 + - sg-4-8 + - sg-4-9 + - sg-4-10 + - sg-4-11 + - sg-4-12 + - sg-4-13 + - sg-4-14 + - sg-4-15 + - sg-4-16 + - sg-4-17 attributes: - color - pattern - - paddle_equipment_included -- id: sg-4-14-6 - name: Pickleball +- id: sg-4-1 + name: Boating & Water Sports children: - - sg-4-14-6-1 - - sg-4-14-6-2 + - sg-4-1-1 + - sg-4-1-2 + - sg-4-1-3 + - sg-4-1-4 + - sg-4-1-5 + - sg-4-1-6 + - sg-4-1-7 + - sg-4-1-8 + - sg-4-1-9 attributes: - color - pattern -- id: sg-4-14-6-1 - name: Pickleball Paddles - children: [] +- id: sg-4-1-1 + name: Boating & Rafting + children: + - sg-4-1-1-1 + - sg-4-1-1-2 + - sg-4-1-1-3 + - sg-4-1-1-4 + - sg-4-1-1-5 + - sg-4-1-1-6 + - sg-4-1-1-7 + - sg-4-1-1-8 + - sg-4-1-1-9 + - sg-4-1-1-10 attributes: - color - pattern -- id: sg-4-14-6-2 - name: Pickleballs +- id: sg-4-1-1-1 + name: Boating Gloves children: [] attributes: + - accessory_size + - age_group - color + - handwear_material - pattern -- id: sg-4-14-7 - name: Platform & Paddle Tennis + - target_gender +- id: sg-4-1-1-2 + name: Canoe Accessories children: - - sg-4-14-7-1 - - sg-4-14-7-2 + - sg-4-1-1-2-1 + - sg-4-1-1-2-2 attributes: + - age_group - color - pattern -- id: sg-4-14-7-1 - name: Platform & Paddle Tennis Paddles +- id: sg-4-1-1-2-1 + name: Canoe Deck Bags children: [] attributes: - - accessory_size - age_group - color - pattern -- id: sg-4-14-7-2 - name: Platform Tennis Balls +- id: sg-4-1-1-2-2 + name: Canoe Storage Bags children: [] attributes: - - ball_size - color - pattern - - ball_material -- id: sg-4-14-8 - name: Tetherball +- id: sg-4-1-1-3 + name: Canoes children: - - sg-4-14-8-1 - - sg-4-14-8-2 - - sg-4-14-8-3 + - sg-4-1-1-3-1 + - sg-4-1-1-3-2 + - sg-4-1-1-3-3 + - sg-4-1-1-3-4 + - sg-4-1-1-3-5 + - sg-4-1-1-3-6 attributes: - color + - material - pattern -- id: sg-4-14-8-1 - name: Tetherball Poles +- id: sg-4-1-1-3-1 + name: Freestyle Canoes children: [] attributes: - - age_group - color + - material - pattern -- id: sg-4-14-8-2 - name: Tetherball Sets +- id: sg-4-1-1-3-2 + name: Marathon Canoes children: [] attributes: - color + - material - pattern - - tetherball_equipment_included -- id: sg-4-14-8-3 - name: Tetherballs +- id: sg-4-1-1-3-3 + name: Sprint Canoes children: [] attributes: - - ball_size - color + - material - pattern - - ball_material -- id: sg-4-15 - name: Riding Scooters - children: - - sg-4-15-1 - - sg-4-15-2 +- id: sg-4-1-1-3-4 + name: Square-Stern Canoes + children: [] attributes: - - age_group - color + - material - pattern -- id: sg-4-16 - name: Skateboarding - children: - - sg-4-16-2 - - sg-4-16-3 - - sg-4-16-4 - - sg-4-16-5 - - sg-4-16-1 +- id: sg-4-1-1-3-5 + name: Touring Canoes + children: [] attributes: - color + - material - pattern -- id: sg-4-16-2 - name: Skate Rails +- id: sg-4-1-1-3-6 + name: Whitewater Canoes children: [] attributes: - color + - material - pattern -- id: sg-4-16-3 - name: Skate Ramps - children: [] +- id: sg-4-1-1-4 + name: Kayak Accessories + children: + - sg-4-1-1-4-1 + - sg-4-1-1-4-2 + - sg-4-1-1-4-3 attributes: - color - pattern - - ramp_type -- id: sg-4-16-4 - name: Skateboard Parts - children: - - sg-4-16-4-1 - - sg-4-16-4-2 - - sg-4-16-4-3 - - sg-4-16-4-4 +- id: sg-4-1-1-4-1 + name: Kayak Deck Bags + children: [] attributes: - color - pattern -- id: sg-4-16-4-1 - name: Skateboard Decks +- id: sg-4-1-1-4-2 + name: Kayak Sails children: [] attributes: - - board_type - color - pattern -- id: sg-4-16-4-2 - name: Skateboard Small Parts - children: - - sg-4-16-4-2-1 - - sg-4-16-4-2-2 - - sg-4-16-4-2-3 - - sg-4-16-4-2-4 - - sg-4-16-4-2-5 - - sg-4-16-4-2-6 - - sg-4-16-4-2-7 +- id: sg-4-1-1-4-3 + name: Kayak Storage Bags + children: [] attributes: - color - pattern -- id: sg-4-16-4-3 - name: Skateboard Trucks - children: [] +- id: sg-4-1-1-5 + name: Kayaks + children: + - sg-4-1-1-5-1 + - sg-4-1-1-5-2 + - sg-4-1-1-5-3 + - sg-4-1-1-5-4 + - sg-4-1-1-5-5 + - sg-4-1-1-5-6 + - sg-4-1-1-5-7 + - sg-4-1-1-5-8 + - sg-4-1-1-5-9 attributes: - color + - material - pattern -- id: sg-4-16-4-4 - name: Skateboard Wheels + - watercraft_propulsion_type +- id: sg-4-1-1-5-1 + name: Creekboats children: [] attributes: - color + - material - pattern - - skateboarding_style - - wheel_hardness - - wheel_hub_placement -- id: sg-4-16-5 - name: Skateboarding Protective Gear - children: - - sg-4-16-5-1 - - sg-4-16-5-2 - - sg-4-16-5-3 + - watercraft_propulsion_type +- id: sg-4-1-1-5-2 + name: Flatwater Kayaks + children: [] attributes: - - accessory_size - - age_group - color + - material - pattern -- id: sg-4-16-5-1 - name: Skate Helmets + - watercraft_propulsion_type +- id: sg-4-1-1-5-3 + name: Folding Kayaks children: [] attributes: - - accessory_size - - age_group - color + - material - pattern -- id: sg-4-16-5-2 - name: Skateboarding Gloves + - watercraft_propulsion_type +- id: sg-4-1-1-5-4 + name: Inflatable Kayaks children: [] attributes: - - accessory_size - - age_group - color + - material - pattern - - target_gender - - handwear_material -- id: sg-4-16-5-3 - name: Skateboarding Pads + - watercraft_propulsion_type +- id: sg-4-1-1-5-5 + name: Playboats children: [] attributes: - - accessory_size - - age_group - color + - material - pattern -- id: sg-4-17 - name: Winter Sports & Activities - children: - - sg-4-17-1 - - sg-4-17-2 - - sg-4-17-3 - - sg-4-17-4 +- id: sg-4-1-1-5-6 + name: Sit-On-Top Kayaks + children: [] attributes: - color + - material - pattern -- id: sg-4-17-1 - name: Avalanche Safety - children: - - sg-4-17-1-1 - - sg-4-17-1-2 + - watercraft_propulsion_type +- id: sg-4-1-1-5-7 + name: Slalom Kayaks + children: [] attributes: - color + - material - pattern -- id: sg-4-17-1-1 - name: Avalanche Probes + - watercraft_propulsion_type +- id: sg-4-1-1-5-8 + name: Surf Kayaks children: [] attributes: - color - material - pattern -- id: sg-4-17-1-2 - name: Avalanche Safety Airbags + - watercraft_propulsion_type +- id: sg-4-1-1-5-9 + name: Whitewater Kayaks children: [] attributes: - color - material - pattern -- id: sg-4-17-2 - name: Skiing & Snowboarding - children: - - sg-4-17-2-1 - - sg-4-17-2-2 - - sg-4-17-2-3 - - sg-4-17-2-4 - - sg-4-17-2-5 - - sg-4-17-2-6 - - sg-4-17-2-7 - - sg-4-17-2-8 - - sg-4-17-2-9 - - sg-4-17-2-10 - - sg-4-17-2-11 - - sg-4-17-2-12 - - sg-4-17-2-13 - - sg-4-17-2-14 - - sg-4-17-2-15 - - sg-4-17-2-16 - - sg-4-17-2-17 + - watercraft_propulsion_type +- id: sg-4-1-1-6 + name: Paddle Leashes + children: [] attributes: - color - pattern -- id: sg-4-17-2-1 - name: Ski & Snowboard Bags +- id: sg-4-1-1-7 + name: Paddles & Oars children: [] attributes: - color - pattern -- id: sg-4-17-2-2 - name: Ski & Snowboard Goggle Accessories - children: - - sg-4-17-2-2-1 +- id: sg-4-1-1-8 + name: Pedal Boats + children: [] attributes: - color - pattern -- id: sg-4-17-2-2-1 - name: Ski & Snowboard Goggle Lenses + - watercraft_propulsion_type +- id: sg-4-1-1-9 + name: Row Boats children: [] attributes: - color - pattern - - eyewear_frame_material - - eyewear_lens_material -- id: sg-4-17-2-3 - name: Ski & Snowboard Goggles + - watercraft_propulsion_type +- id: sg-4-1-1-10 + name: Whitewater Rafts children: [] attributes: - color - pattern - - eyewear_frame_material - - eyewear_lens_material -- id: sg-4-17-2-4 - name: Ski & Snowboard Helmets +- id: sg-4-1-2 + name: Boating & Water Sport Apparel + children: + - sg-4-1-2-1 + - sg-4-1-2-2 + - sg-4-1-2-3 + - sg-4-1-2-4 + - sg-4-1-2-5 + - sg-4-1-2-6 + - sg-4-1-2-7 + attributes: + - color + - pattern +- id: sg-4-1-2-1 + name: Drysuits children: [] attributes: - accessory_size - - age_group - color - pattern -- id: sg-4-17-2-5 - name: Ski & Snowboard Leashes + - target_gender +- id: sg-4-1-2-2 + name: Life Jacket Accessories + children: + - sg-4-1-2-2-1 + - sg-4-1-2-2-2 + - sg-4-1-2-2-3 + attributes: + - color + - pattern +- id: sg-4-1-2-2-1 + name: Life Jacket Lights children: [] attributes: - color - pattern -- id: sg-4-17-2-6 - name: Ski & Snowboard Storage Racks +- id: sg-4-1-2-2-2 + name: Life Jacket Storage Bags children: [] attributes: - color - - material - pattern -- id: sg-4-17-2-7 - name: Ski & Snowboard Tuning Tools - children: - - sg-4-17-2-7-1 - - sg-4-17-2-7-2 - - sg-4-17-2-7-3 - - sg-4-17-2-7-4 - - sg-4-17-2-7-5 - - sg-4-17-2-7-6 - - sg-4-17-2-7-7 - - sg-4-17-2-7-8 - - sg-4-17-2-7-9 +- id: sg-4-1-2-2-3 + name: Life Jacket Whistles + children: [] attributes: - color - pattern - - sport -- id: sg-4-17-2-8 - name: Ski & Snowboard Wax - children: - - sg-4-17-2-8-1 - - sg-4-17-2-8-2 +- id: sg-4-1-2-3 + name: Life Jackets + children: [] attributes: - - application_method + - accessory_size - color - pattern - - skiing_style - - sport - - wax_application_method -- id: sg-4-17-2-9 - name: Ski Binding Parts - children: - - sg-4-17-2-9-1 +- id: sg-4-1-2-4 + name: Rash Guards & Swim Shirts + children: [] attributes: + - accessory_size + - age_group - color + - material - pattern -- id: sg-4-17-2-10 - name: Ski Bindings + - target_gender +- id: sg-4-1-2-5 + name: Water Sport Helmets children: [] attributes: + - accessory_size - age_group - color - pattern - - riding_style -- id: sg-4-17-2-11 - name: Ski Boots +- id: sg-4-1-2-6 + name: Wetsuit Pieces children: - - sg-4-17-2-11-1 - - sg-4-17-2-11-2 - - sg-4-17-2-11-3 + - sg-4-1-2-6-1 + - sg-4-1-2-6-2 + - sg-4-1-2-6-3 attributes: - age_group - color - pattern - - shoe_size - - skiing_style - - target_gender -- id: sg-4-17-2-12 - name: Ski Poles +- id: sg-4-1-2-6-1 + name: Wetsuit Bottoms children: [] attributes: + - accessory_size - age_group - color - - material - pattern - - skiing_style - - target_gender -- id: sg-4-17-2-13 - name: Skis +- id: sg-4-1-2-6-2 + name: Wetsuit Hoods, Gloves & Boots children: - - sg-4-17-2-13-1 - - sg-4-17-2-13-2 - attributes: - - color - - pattern -- id: sg-4-17-2-13-1 - name: Cross-Country Skis - children: [] + - sg-4-1-2-6-2-1 + - sg-4-1-2-6-2-2 + - sg-4-1-2-6-2-3 attributes: + - accessory_size - age_group - color + - handwear_material - pattern - - rocker_type - - skiing_style + - shoe_size - target_gender - - ski_construction -- id: sg-4-17-2-13-2 - name: Downhill Skis +- id: sg-4-1-2-6-2-1 + name: Wetsuit Boots children: [] attributes: + - accessory_size - age_group - color + - handwear_material - pattern - - rocker_type - - skiing_style + - shoe_size - target_gender - - ski_construction -- id: sg-4-17-2-14 - name: Snowboard Binding Parts - children: - - sg-4-17-2-14-1 - - sg-4-17-2-14-2 - - sg-4-17-2-14-3 - attributes: - - color - - pattern -- id: sg-4-17-2-15 - name: Snowboard Bindings +- id: sg-4-1-2-6-2-2 + name: Wetsuit Gloves children: [] attributes: - accessory_size - age_group - - binding_mount - color - - flexibility_rating - - material + - handwear_material - pattern - - riding_style - - shoe_binding_type - - toe_strap_type -- id: sg-4-17-2-16 - name: Snowboard Boots + - shoe_size + - target_gender +- id: sg-4-1-2-6-2-3 + name: Wetsuit Hoods children: [] attributes: + - accessory_size - age_group - color + - handwear_material - pattern - shoe_size - - snowboarding_style - - stiffness - target_gender -- id: sg-4-17-2-17 - name: Snowboards +- id: sg-4-1-2-6-3 + name: Wetsuit Tops children: [] attributes: + - accessory_size - age_group - color - pattern - - recommended_skill_level - - snowboard_design - - snowboarding_style - - target_gender - - snowboard_construction -- id: sg-4-17-3 - name: Sleds +- id: sg-4-1-2-7 + name: Wetsuits children: - - sg-4-17-3-1 - - sg-4-17-3-2 - - sg-4-17-3-3 - - sg-4-17-3-4 - - sg-4-17-3-5 - - sg-4-17-3-6 + - sg-4-1-2-7-1 + - sg-4-1-2-7-2 attributes: + - accessory_size + - age_group - color - material - pattern -- id: sg-4-17-4 - name: Snowshoeing - children: - - sg-4-17-4-1 - - sg-4-17-4-2 - attributes: - - color - - pattern -- id: sg-4-17-4-1 - name: Snowshoe Bindings + - target_gender +- id: sg-4-1-2-7-1 + name: Full Wetsuits children: [] attributes: - accessory_size - age_group - - binding_mount - color - - flexibility_rating - material - pattern - - riding_style - - shoe_binding_type - - toe_strap_type -- id: sg-4-17-4-2 - name: Snowshoes + - target_gender +- id: sg-4-1-2-7-2 + name: Shorty Wetsuits children: [] attributes: + - accessory_size - age_group - color - material - pattern - - shoe_binding_type - target_gender - - terrain - - suitable_for_snowshoeing_activity -- id: sg-1-1-5-1-1 - name: American Football Dummies - children: [] +- id: sg-4-1-3 + name: Diving & Snorkeling + children: + - sg-4-1-3-1 + - sg-4-1-3-2 + - sg-4-1-3-3 + - sg-4-1-3-4 + - sg-4-1-3-5 + - sg-4-1-3-6 + - sg-4-1-3-7 + - sg-4-1-3-8 + - sg-4-1-3-9 attributes: - color - pattern -- id: sg-1-1-5-1-2 - name: American Football Sleds +- id: sg-4-1-3-1 + name: Buoyancy Compensators children: [] attributes: + - accessory_size - color - pattern -- id: sg-1-2-1-1 - name: Baseball & Softball Bases +- id: sg-4-1-3-2 + name: Dive Computers children: [] attributes: - color + - display_technology - pattern - - sport -- id: sg-1-2-1-2 - name: Baseball & Softball Plates + - power_source +- id: sg-4-1-3-3 + name: Diving & Snorkeling Equipment Sets children: [] attributes: - color + - diving_snorkeling_equipment_included - pattern - - sport -- id: sg-1-2-3-1 - name: Baseball & Softball Fielding Gloves - children: [] + - water_sport +- id: sg-4-1-3-4 + name: Diving & Snorkeling Fins + children: + - sg-4-1-3-4-1 + - sg-4-1-3-4-2 attributes: - accessory_size - - age_group - - color - - hand_side - - pattern - - target_gender - - handwear_material -- id: sg-1-2-4 - name: Baseball & Softball Pitching Grips - children: [] - attributes: - - age_group - color + - fin_pocket_type + - fin_material - pattern -- id: sg-1-2-7 - name: Baseball & Softball Pitching Rubbers +- id: sg-4-1-3-4-1 + name: Paddle Fins children: [] attributes: - - age_group - - color - - pattern -- id: sg-1-2-9 - name: Baseball & Softball Training Aids - children: - - sg-1-2-9-1 - - sg-1-2-9-2 - - sg-1-2-9-3 - - sg-1-2-9-4 - - sg-1-2-9-5 - - sg-1-2-9-6 - - sg-1-2-9-7 - attributes: - - age_group + - accessory_size - color + - fin_pocket_type + - fin_material - pattern -- id: sg-1-2-9-1 - name: Baseball & Softball Batting Cages +- id: sg-4-1-3-4-2 + name: Split Fins children: [] attributes: - - age_group + - accessory_size - color + - fin_pocket_type + - fin_material - pattern -- id: sg-1-2-9-2 - name: Baseball & Softball Batting Tees +- id: sg-4-1-3-5 + name: Diving & Snorkeling Masks children: [] attributes: + - accessory_size - age_group - color + - eyewear_frame_material + - eyewear_lens_material - pattern -- id: sg-1-2-9-3 - name: Baseball & Softball Hitting Nets + - water_sport +- id: sg-4-1-3-6 + name: Diving Belts children: [] attributes: + - accessory_size - age_group - color - pattern -- id: sg-1-2-9-4 - name: Baseball & Softball Pitching Screens - children: [] +- id: sg-4-1-3-7 + name: Diving Knives & Shears + children: + - sg-4-1-3-7-1 + - sg-4-1-3-7-2 attributes: - - age_group - color + - edge_type - pattern -- id: sg-1-2-9-5 - name: Baseball & Softball Pitching Targets +- id: sg-4-1-3-7-1 + name: Diving Knives children: [] attributes: - - age_group - color + - edge_type - pattern -- id: sg-1-2-9-6 - name: Baseball & Softball Radar Guns +- id: sg-4-1-3-7-2 + name: Diving Shears children: [] attributes: - - age_group - color + - edge_type - pattern -- id: sg-1-2-9-7 - name: Baseball & Softball Swing Trainers +- id: sg-4-1-3-8 + name: Diving Regulators children: [] attributes: - - age_group - color + - diving_regulator_style - pattern -- id: sg-1-3-3-1 - name: Basketball Defensive Mannequins - children: [] +- id: sg-4-1-3-9 + name: Snorkels + children: + - sg-4-1-3-9-1 + - sg-4-1-3-9-2 + - sg-4-1-3-9-3 attributes: - age_group - color - pattern -- id: sg-1-3-3-2 - name: Basketball Dribble Goggles + - snorkel_shape +- id: sg-4-1-3-9-1 + name: Dry Snorkels children: [] attributes: - age_group - color - pattern -- id: sg-1-3-3-3 - name: Basketball Jump Trainers + - snorkel_shape +- id: sg-4-1-3-9-2 + name: Semi-Dry Snorkels children: [] attributes: - age_group - color - pattern -- id: sg-1-3-3-4 - name: Basketball Shooting Aids + - snorkel_shape +- id: sg-4-1-3-9-3 + name: Traditional Snorkels children: [] attributes: - age_group - color - pattern -- id: sg-1-4-1-4 - name: Boxing & MMA Gloves & Mitts + - snorkel_shape +- id: sg-4-1-4 + name: Kitesurfing children: - - sg-1-4-1-4-1 - - sg-1-4-1-4-2 - - sg-1-4-1-4-3 - - sg-1-4-1-4-4 + - sg-4-1-4-1 + - sg-4-1-4-2 + - sg-4-1-4-3 + - sg-4-1-4-4 + - sg-4-1-4-5 attributes: - - accessory_size - - age_group - color - pattern - - target_gender - - handwear_material -- id: sg-1-4-1-4-1 - name: Bag Mitts +- id: sg-4-1-4-1 + name: Kiteboard Cases children: [] attributes: - - accessory_size - - age_group - color - pattern - - target_gender - - handwear_material -- id: sg-1-4-1-4-2 - name: Fight Gloves - children: [] +- id: sg-4-1-4-2 + name: Kiteboard Parts + children: + - sg-4-1-4-2-1 + - sg-4-1-4-2-2 + - sg-4-1-4-2-3 + - sg-4-1-4-2-4 attributes: - - accessory_size - - age_group - color - pattern - - target_gender - - handwear_material -- id: sg-1-4-1-4-3 - name: MMA Gloves +- id: sg-4-1-4-2-1 + name: Kiteboard Fins children: [] attributes: - - accessory_size - - age_group - color - pattern - - target_gender - - handwear_material -- id: sg-1-4-1-4-4 - name: Sparring Gloves +- id: sg-4-1-4-2-2 + name: Kiteboard Footstraps children: [] attributes: - - accessory_size - - age_group - color - pattern - - target_gender - - handwear_material -- id: sg-1-4-2-3-1 - name: Punching & Training Cases +- id: sg-4-1-4-2-3 + name: Kiteboard Handles children: [] attributes: - - age_group - color - pattern -- id: sg-1-4-2-3-2 - name: Punching & Training Hooks +- id: sg-4-1-4-2-4 + name: Kiteboard Lines children: [] attributes: - - age_group - color - pattern -- id: sg-1-4-2-3-3 - name: Punching & Training Ropes +- id: sg-4-1-4-3 + name: Kiteboards children: [] attributes: - - age_group - color - pattern -- id: sg-1-4-2-4-1 - name: Punching & Training Body Opponent Bags + - recommended_skill_level +- id: sg-4-1-4-4 + name: Kitesurfing & Windsurfing Harnesses children: [] attributes: - - age_group - color - pattern - - punching_training_bag_material -- id: sg-1-4-2-4-2 - name: Punching & Training Double-End Bags +- id: sg-4-1-4-5 + name: Kitesurfing Kites children: [] attributes: - - age_group + - accessory_size - color + - kitesurfing_style - pattern - - punching_training_bag_material -- id: sg-1-4-2-4-3 - name: Punching & Training Heavy Bags - children: [] +- id: sg-4-1-5 + name: Surfing + children: + - sg-4-1-5-1 + - sg-4-1-5-2 + - sg-4-1-5-3 + - sg-4-1-5-4 + - sg-4-1-5-5 + - sg-4-1-5-6 + - sg-4-1-5-7 + - sg-4-1-5-8 + - sg-4-1-5-9 + - sg-4-1-5-10 attributes: - - age_group - color - pattern - - punching_training_bag_material -- id: sg-1-4-2-4-4 - name: Punching & Training Maize Bags +- id: sg-4-1-5-1 + name: Bodyboards children: [] attributes: - - age_group - color - pattern - - punching_training_bag_material -- id: sg-1-4-2-4-5 - name: Punching & Training Pedestal Bags + - recommended_skill_level +- id: sg-4-1-5-2 + name: Paddleboards children: [] attributes: - - age_group - color - pattern - - punching_training_bag_material -- id: sg-1-4-2-4-6 - name: Punching & Training Punch Pads + - recommended_skill_level +- id: sg-4-1-5-3 + name: Skimboards children: [] attributes: - age_group - color + - material - pattern - - punching_training_bag_material -- id: sg-1-4-2-4-7 - name: Punching & Training Speed Bags +- id: sg-4-1-5-4 + name: Surf Leashes children: [] attributes: - - age_group - color - pattern - - punching_training_bag_material -- id: sg-1-4-2-4-8 - name: Punching & Training Uppercut Bags +- id: sg-4-1-5-5 + name: Surfboard Cases & Bags children: [] attributes: - - age_group - color - pattern - - punching_training_bag_material -- id: sg-1-4-2-4-9 - name: Punching & Training Wall Bags +- id: sg-4-1-5-6 + name: Surfboard Fins children: [] attributes: - - age_group + - accessory_size - color + - fin_profile - pattern - - punching_training_bag_material -- id: sg-1-4-3-1 - name: Boxing Ring Ceiling Hangers +- id: sg-4-1-5-7 + name: Surfboard Wax children: [] attributes: - color + - pattern +- id: sg-4-1-5-8 + name: Surfboards + children: + - sg-4-1-5-8-1 + - sg-4-1-5-8-2 + - sg-4-1-5-8-3 + - sg-4-1-5-8-4 + attributes: + - board_concave_shape + - board_profile + - color - material - pattern -- id: sg-1-4-3-2 - name: Boxing Ring Nets +- id: sg-4-1-5-8-1 + name: Longboard Surfboards children: [] attributes: + - board_concave_shape + - board_profile - color + - material - pattern - - net_material -- id: sg-1-4-3-3 - name: Boxing Ring Poles +- id: sg-4-1-5-8-2 + name: Shortboard Surfboards children: [] attributes: + - board_concave_shape + - board_profile - color - material - pattern -- id: sg-1-4-6-1 - name: Bo Staffs +- id: sg-4-1-5-8-3 + name: Stand Up Paddle Boards children: [] attributes: - - age_group + - board_concave_shape + - board_profile - color + - material - pattern -- id: sg-1-4-6-2 - name: Nunchucks +- id: sg-4-1-5-8-4 + name: Waveskis children: [] attributes: - - age_group + - board_concave_shape + - board_profile - color + - material - pattern -- id: sg-1-4-6-3 - name: Sais +- id: sg-4-1-5-9 + name: Surfing Gloves children: [] attributes: + - accessory_size - age_group - color + - handwear_material - pattern -- id: sg-1-4-6-4 - name: Tonfas + - target_gender +- id: sg-4-1-5-10 + name: Surfing Tail Pads children: [] attributes: + - accessory_size - age_group - color + - material - pattern -- id: sg-1-5-1 - name: Broomball Balls - children: [] +- id: sg-4-1-6 + name: Swimming + children: + - sg-4-1-6-1 + - sg-4-1-6-2 + - sg-4-1-6-3 + - sg-4-1-6-4 + - sg-4-1-6-5 + - sg-4-1-6-6 + - sg-4-1-6-7 + - sg-4-1-6-8 + - sg-4-1-6-9 + - sg-4-1-6-10 + - sg-4-1-6-11 + - sg-4-1-6-12 + - sg-4-1-6-13 attributes: - - age_group - color - pattern -- id: sg-1-5-2 - name: Broomball Brooms - children: [] +- id: sg-4-1-6-1 + name: Child Swimming Aids + children: + - sg-4-1-6-1-1 + - sg-4-1-6-1-2 + - sg-4-1-6-1-3 + - sg-4-1-6-1-4 + - sg-4-1-6-1-5 + - sg-4-1-6-1-6 + - sg-4-1-6-1-7 + - sg-4-1-6-1-8 + - sg-4-1-6-1-9 + - sg-4-1-6-1-10 attributes: - age_group - color - pattern -- id: sg-1-5-3 - name: Broomball Goals +- id: sg-4-1-6-1-1 + name: Swim Armbands children: [] attributes: - age_group - color - - mounting_type - - pattern -- id: sg-1-7-2-1 - name: Boundary Cones - children: [] - attributes: - - color - - pattern -- id: sg-1-7-2-2 - name: Field Marking Paint - children: [] - attributes: - - color - pattern -- id: sg-1-7-2-3 - name: Field Marking Tape +- id: sg-4-1-6-1-2 + name: Swim Boards children: [] attributes: + - age_group - color - pattern -- id: sg-1-7-3-1 - name: Flip Coins +- id: sg-4-1-6-1-3 + name: Swim Buoys children: [] attributes: + - age_group - color - pattern -- id: sg-1-7-3-2 - name: Flip Discs +- id: sg-4-1-6-1-4 + name: Swim Discs children: [] attributes: + - age_group - color - pattern -- id: sg-1-7-4 - name: Officiating Flags - children: - - sg-1-7-4-1 - - sg-1-7-4-2 - - sg-1-7-4-3 - attributes: - - color - - pattern - - sport -- id: sg-1-7-4-1 - name: Checkered Flags +- id: sg-4-1-6-1-5 + name: Swim Fins children: [] attributes: + - age_group - color - pattern - - sport -- id: sg-1-7-4-2 - name: Corner Flags +- id: sg-4-1-6-1-6 + name: Swim Kickboards children: [] attributes: + - age_group - color - pattern - - sport -- id: sg-1-7-4-3 - name: Linesman Flags +- id: sg-4-1-6-1-7 + name: Swim Rings children: [] attributes: + - age_group - color - pattern - - sport -- id: sg-1-7-5-1 - name: Penalty Cards +- id: sg-4-1-6-1-8 + name: Swim Seats children: [] attributes: + - age_group - color - pattern - - sport -- id: sg-1-7-5-2 - name: Penalty Flags +- id: sg-4-1-6-1-9 + name: Swim Trainers children: [] attributes: + - age_group - color - pattern - - sport -- id: sg-1-7-7-1 - name: Referee Chairs +- id: sg-4-1-6-1-10 + name: Swim Vests children: [] attributes: + - age_group - color - pattern - - sport - - furniture_fixture_material -- id: sg-1-7-7-2 - name: Referee Stands +- id: sg-4-1-6-2 + name: Hand Paddles children: [] attributes: + - accessory_size + - age_group - color - pattern - - sport - - furniture_fixture_material -- id: sg-1-7-9-1 - name: Electronic Scoreboards +- id: sg-4-1-6-3 + name: Kickboards children: [] attributes: - color - pattern - - sport -- id: sg-1-7-9-2 - name: Manual Scoreboards +- id: sg-4-1-6-4 + name: Pull Buoys children: [] attributes: - color - pattern - - sport -- id: sg-1-7-10-1 - name: Flip Grip Whistles +- id: sg-4-1-6-5 + name: Swim Belts children: [] attributes: + - accessory_size + - age_group - color - - material - pattern - - sport -- id: sg-1-7-10-2 - name: Ginger Grip Whistles - children: [] - attributes: - - sport -- id: sg-1-7-10-3 - name: Traditional Whistles +- id: sg-4-1-6-6 + name: Swim Caps children: [] attributes: + - age_group - color - material - pattern - - sport -- id: sg-1-8-5-1 - name: Cricket Gloves & Mitts +- id: sg-4-1-6-7 + name: Swim Gloves children: [] attributes: - accessory_size - age_group - color + - handwear_material - pattern - target_gender - - handwear_material -- id: sg-1-8-7 - name: Cricket Training Aids +- id: sg-4-1-6-8 + name: Swim Goggle & Mask Accessories children: - - sg-1-8-7-1 - - sg-1-8-7-2 - - sg-1-8-7-3 - - sg-1-8-7-4 - - sg-1-8-7-5 - - sg-1-8-7-6 - - sg-1-8-7-7 - - sg-1-8-7-8 - - sg-1-8-7-9 + - sg-4-1-6-8-1 + - sg-4-1-6-8-2 attributes: - - age_group - color - pattern -- id: sg-1-8-7-1 - name: Cricket Batting Tees +- id: sg-4-1-6-8-1 + name: Goggles Lenses children: [] attributes: - - age_group - color - pattern -- id: sg-1-8-7-2 - name: Cricket Boundary Ropes +- id: sg-4-1-6-8-2 + name: Swim Goggle & Mask Cases children: [] attributes: - - age_group - color - pattern -- id: sg-1-8-7-3 - name: Cricket Bowling Machines +- id: sg-4-1-6-9 + name: Swim Goggles & Masks children: [] attributes: + - accessory_size - age_group - color + - eyewear_frame_material + - eyewear_lens_material - pattern -- id: sg-1-8-7-4 - name: Cricket Bowling Markers + - target_gender +- id: sg-4-1-6-10 + name: Swim Weights children: [] attributes: - - age_group - color - pattern -- id: sg-1-8-7-5 - name: Cricket Fielding Aids - children: [] +- id: sg-4-1-6-11 + name: Swimming Fins + children: + - sg-4-1-6-11-1 + - sg-4-1-6-11-2 attributes: - - age_group - color - pattern -- id: sg-1-8-7-6 - name: Cricket Nets +- id: sg-4-1-6-11-1 + name: Monofins children: [] attributes: - - age_group - color - pattern -- id: sg-1-8-7-7 - name: Cricket Pitch Mats +- id: sg-4-1-6-11-2 + name: Training Fins children: [] attributes: - - age_group + - accessory_size - color - pattern -- id: sg-1-8-7-8 - name: Cricket Rebounders +- id: sg-4-1-6-12 + name: Swimming Machines children: [] attributes: - - age_group - color - pattern -- id: sg-1-8-7-9 - name: Cricket Stump Targets + - power_source +- id: sg-4-1-6-13 + name: Swimming Nose Clips children: [] attributes: - - age_group - color + - material - pattern -- id: sg-1-10-1-1 - name: Fencing Chest Protectors - children: [] + - water_sport +- id: sg-4-1-7 + name: Towed Water Sports + children: + - sg-4-1-7-1 + - sg-4-1-7-2 + - sg-4-1-7-3 + - sg-4-1-7-4 + - sg-4-1-7-5 + - sg-4-1-7-6 attributes: - - age_group - color - pattern -- id: sg-1-10-1-5 - name: Fencing Plastrons - children: [] +- id: sg-4-1-7-1 + name: Kneeboarding + children: + - sg-4-1-7-1-1 attributes: - - age_group - color - pattern -- id: sg-1-10-2 - name: Fencing Scoring Equipment +- id: sg-4-1-7-1-1 + name: Kneeboards children: [] attributes: - - age_group - color - pattern -- id: sg-1-10-3 - name: Fencing Training Aids - children: - - sg-1-10-3-1 - - sg-1-10-3-2 - - sg-1-10-3-3 - - sg-1-10-3-4 - - sg-1-10-3-5 - - sg-1-10-3-6 - - sg-1-10-3-7 - - sg-1-10-3-8 +- id: sg-4-1-7-2 + name: Towable Rafts & Tubes + children: [] attributes: - - age_group - color - pattern -- id: sg-1-10-3-1 - name: Fencing Body Cords +- id: sg-4-1-7-3 + name: Towed Water Sport Gloves children: [] attributes: + - accessory_size - age_group - color + - handwear_material - pattern -- id: sg-1-10-3-2 - name: Fencing Dummies - children: [] + - target_gender +- id: sg-4-1-7-4 + name: Wakeboarding + children: + - sg-4-1-7-4-1 + - sg-4-1-7-4-2 + - sg-4-1-7-4-3 attributes: - - age_group - color - pattern -- id: sg-1-10-3-3 - name: Fencing Footwork Trainers +- id: sg-4-1-7-4-1 + name: Kiteboard & Wakeboard Bindings children: [] attributes: - age_group - color - pattern -- id: sg-1-10-3-4 - name: Fencing Grip Trainers +- id: sg-4-1-7-4-2 + name: Wakeboard Parts + children: + - sg-4-1-7-4-2-1 + - sg-4-1-7-4-2-2 + - sg-4-1-7-4-2-3 + - sg-4-1-7-4-2-4 + attributes: + - color + - pattern +- id: sg-4-1-7-4-2-1 + name: Wakeboard Bindings children: [] attributes: - - age_group - color - pattern -- id: sg-1-10-3-5 - name: Fencing Lunge Trainers +- id: sg-4-1-7-4-2-2 + name: Wakeboard Fins children: [] attributes: - - age_group - color - pattern -- id: sg-1-10-3-6 - name: Fencing Practice Strips +- id: sg-4-1-7-4-2-3 + name: Wakeboard Handles children: [] attributes: - - age_group - color - pattern -- id: sg-1-10-3-7 - name: Fencing Targets +- id: sg-4-1-7-4-2-4 + name: Wakeboard Ropes children: [] attributes: - - age_group - color + - material - pattern -- id: sg-1-10-3-8 - name: Fencing Training Bags +- id: sg-4-1-7-4-3 + name: Wakeboards children: [] attributes: - age_group - color - pattern -- id: sg-1-10-4-1 - name: Fencing Epees - children: [] +- id: sg-4-1-7-5 + name: Water Skiing + children: + - sg-4-1-7-5-1 + - sg-4-1-7-5-2 + - sg-4-1-7-5-3 + - sg-4-1-7-5-4 attributes: - - accessory_size - color - - grip_type - - hand_side - pattern -- id: sg-1-10-4-2 - name: Fencing Foil Blades +- id: sg-4-1-7-5-1 + name: Sit-Down Hydrofoils children: [] attributes: - - accessory_size - color - - grip_type - - hand_side - pattern -- id: sg-1-10-4-3 - name: Fencing Practice Swords +- id: sg-4-1-7-5-2 + name: Water Ski Bindings children: [] attributes: + - accessory_size - age_group - color - pattern -- id: sg-1-10-4-4 - name: Fencing Sabres +- id: sg-4-1-7-5-3 + name: Water Ski Cases & Bags children: [] attributes: - - accessory_size - color - - grip_type - - hand_side - pattern -- id: sg-1-11-5 - name: Field Hockey Training Aids +- id: sg-4-1-7-5-4 + name: Water Skis children: - - sg-1-11-5-1 - - sg-1-11-5-2 - - sg-1-11-5-3 - - sg-1-11-5-4 - - sg-1-11-5-5 + - sg-4-1-7-5-4-1 + - sg-4-1-7-5-4-2 + - sg-4-1-7-5-4-3 attributes: - age_group - color + - ski_construction - pattern -- id: sg-1-11-5-1 - name: Field Hockey Goalkeeper Training Aids + - rocker_type +- id: sg-4-1-7-5-4-1 + name: Combo Water Skis children: [] attributes: - age_group - color + - ski_construction - pattern -- id: sg-1-11-5-2 - name: Field Hockey Grip Enhancers + - rocker_type +- id: sg-4-1-7-5-4-2 + name: Slalom Water Skis children: [] attributes: - age_group - color + - ski_construction - pattern -- id: sg-1-11-5-3 - name: Field Hockey Rebound Boards + - rocker_type +- id: sg-4-1-7-5-4-3 + name: Trick Water Skis children: [] attributes: - age_group - color + - ski_construction - pattern -- id: sg-1-11-5-4 - name: Field Hockey Shooting Targets + - rocker_type +- id: sg-4-1-7-6 + name: Water Sport Tow Cables children: [] attributes: - - age_group + - anchor_type - color - pattern -- id: sg-1-11-5-5 - name: Field Hockey Training Backpacks - children: [] +- id: sg-4-1-8 + name: Watercraft Storage Racks + children: + - sg-4-1-8-1 + - sg-4-1-8-2 attributes: - - age_group - color - pattern -- id: sg-1-11-11-1 - name: Lacrosse Bounce-Back Trainers +- id: sg-4-1-8-1 + name: Boat Storage Racks children: [] attributes: - - age_group - color + - material - pattern -- id: sg-1-11-11-2 - name: Lacrosse Rebounders +- id: sg-4-1-8-2 + name: Water Sport Board Storage Racks children: [] attributes: - - age_group - color + - material - pattern -- id: sg-1-12-1 - name: Figure Skating & Hockey Training Aids +- id: sg-4-1-9 + name: Windsurfing children: - - sg-1-12-1-1 - - sg-1-12-1-2 - - sg-1-12-1-3 - - sg-1-12-1-4 - - sg-1-12-1-5 - - sg-1-12-1-6 - - sg-1-12-1-7 - - sg-1-12-1-8 - - sg-1-12-1-9 - - sg-1-12-1-10 - - sg-1-12-1-11 - - sg-1-12-1-12 + - sg-4-1-9-1 + - sg-4-1-9-2 + - sg-4-1-9-3 attributes: - - age_group - color - pattern -- id: sg-1-12-1-1 - name: Figure Skating & Hockey Balance Boards - children: [] +- id: sg-4-1-9-1 + name: Windsurfing Board Parts + children: + - sg-4-1-9-1-1 + - sg-4-1-9-1-2 attributes: - - age_group - color - pattern -- id: sg-1-12-1-2 - name: Figure Skating & Hockey Jump Ropes +- id: sg-4-1-9-1-1 + name: Windsurfing Board Fins children: [] attributes: - - age_group - color - pattern -- id: sg-1-12-1-3 - name: Figure Skating & Hockey Shooting Targets +- id: sg-4-1-9-1-2 + name: Windsurfing Board Masts children: [] attributes: - - age_group - color - pattern -- id: sg-1-12-1-4 - name: Figure Skating & Hockey Slide Boards +- id: sg-4-1-9-2 + name: Windsurfing Boards children: [] attributes: - - age_group - color - pattern -- id: sg-1-12-1-5 - name: Figure Skating & Hockey Stretching Bands + - recommended_skill_level + - windsurfing_board_style +- id: sg-4-1-9-3 + name: Windsurfing Sails children: [] attributes: + - color + - pattern +- id: sg-4-2 + name: Camping & Hiking + children: + - sg-4-2-1 + - sg-4-2-2 + - sg-4-2-3 + - sg-4-2-4 + - sg-4-2-5 + - sg-4-2-6 + - sg-4-2-7 + - sg-4-2-8 + - sg-4-2-9 + - sg-4-2-10 + - sg-4-2-11 + - sg-4-2-12 + - sg-4-2-13 + - sg-4-2-14 + - sg-4-2-15 + - sg-4-2-16 + - sg-4-2-17 + - sg-4-2-18 + attributes: + - color + - pattern +- id: sg-4-2-1 + name: Camp Furniture + children: + - sg-4-2-1-1 + - sg-4-2-1-2 + - sg-4-2-1-3 + attributes: + - color + - pattern +- id: sg-4-2-1-1 + name: Air Mattress & Sleeping Pad Accessories + children: + - sg-4-2-1-1-1 + - sg-4-2-1-1-2 + attributes: - age_group - color + - material - pattern -- id: sg-1-12-1-6 - name: Figure Skating & Hockey Training Harnesses +- id: sg-4-2-1-1-1 + name: Air Mattress & Sleeping Pad Pumps children: [] attributes: - age_group - color + - material - pattern -- id: sg-1-12-1-7 - name: Figure Skating & Hockey Training Mats +- id: sg-4-2-1-1-2 + name: Air Mattress & Sleeping Pad Repair Kits children: [] attributes: - age_group - color + - material - pattern -- id: sg-1-12-1-8 - name: Figure Skating Jump Trainers +- id: sg-4-2-1-2 + name: Air Mattresses children: [] attributes: - age_group + - bedding_size - color + - material - pattern -- id: sg-1-12-1-9 - name: Figure Skating Spinners +- id: sg-4-2-1-3 + name: Cots children: [] attributes: - - age_group + - bedding_size - color + - frame_material + - cover_material - pattern -- id: sg-1-12-1-10 - name: Hockey Passing Trainers +- id: sg-4-2-2 + name: Camping Cookware & Dinnerware + children: + - sg-4-2-2-1 + - sg-4-2-2-2 + - sg-4-2-2-3 + - sg-4-2-2-4 + attributes: + - certifications_standards + - color + - pattern +- id: sg-4-2-2-1 + name: Camping Cups children: [] attributes: - - age_group + - certifications_standards - color - pattern -- id: sg-1-12-1-11 - name: Hockey Shooting Pads +- id: sg-4-2-2-2 + name: Camping Plates children: [] attributes: - - age_group + - certifications_standards - color - pattern -- id: sg-1-12-1-12 - name: Hockey Speed Trainers +- id: sg-4-2-2-3 + name: Camping Pots children: [] attributes: - - age_group + - certifications_standards - color - pattern -- id: sg-1-12-2-1 - name: Hockey Balls +- id: sg-4-2-2-4 + name: Camping Utensils children: [] attributes: - - ball_size + - certifications_standards - color - pattern - - ball_material -- id: sg-1-12-2-2 - name: Hockey Pucks +- id: sg-4-2-3 + name: Camping Lights & Lanterns children: [] attributes: - - ball_size - color - - material + - light_color + - light_temperature - pattern -- id: sg-1-12-6-1 - name: Hockey Stick Bags - children: [] + - power_source +- id: sg-4-2-4 + name: Camping Tools + children: + - sg-4-2-4-1 + - sg-4-2-4-2 + - sg-4-2-4-3 + - sg-4-2-4-4 + - sg-4-2-4-5 + - sg-4-2-4-6 + - sg-4-2-4-7 + - sg-4-2-4-8 attributes: - color - pattern -- id: sg-1-12-6-2 - name: Hockey Stick Blade Covers +- id: sg-4-2-4-1 + name: Camping Clips children: [] attributes: - color - pattern -- id: sg-1-12-6-3 - name: Hockey Stick Tape +- id: sg-4-2-4-2 + name: Camping Oil children: [] attributes: - color - pattern -- id: sg-1-12-6-4 - name: Hockey Stick Wax +- id: sg-4-2-4-3 + name: Camping Pens children: [] attributes: - color - pattern -- id: sg-1-12-10-1 - name: Double Blade Ice Skates +- id: sg-4-2-4-4 + name: Camping Sandbags children: [] attributes: - - age_group - color - pattern - - shoe_size - - target_gender -- id: sg-1-12-10-2 - name: Figure Ice Skates +- id: sg-4-2-4-5 + name: Camping Toothpicks children: [] attributes: - - age_group - color - pattern - - shoe_size - - target_gender -- id: sg-1-12-10-3 - name: Hockey Ice Skates +- id: sg-4-2-4-6 + name: Camping Tweezers children: [] attributes: - - age_group - color - pattern - - shoe_size - - target_gender -- id: sg-1-12-10-4 - name: Recreational Ice Skates - children: [] +- id: sg-4-2-4-7 + name: Hunting & Survival Knives + children: + - sg-4-2-4-7-1 + - sg-4-2-4-7-2 + - sg-4-2-4-7-3 attributes: - - age_group - color + - hunting_survival_knife_design + - knife_type - pattern - - shoe_size - - target_gender -- id: sg-1-12-10-5 - name: Snow Gliders +- id: sg-4-2-4-7-1 + name: Locking Blade Knives children: [] attributes: - - age_group - color + - hunting_survival_knife_design + - knife_type - pattern - - shoe_size - - target_gender -- id: sg-1-12-10-6 - name: Speed Ice Skates +- id: sg-4-2-4-7-2 + name: Peasant Knives children: [] attributes: - - age_group - color + - hunting_survival_knife_design + - knife_type - pattern - - shoe_size - - target_gender -- id: sg-1-13-3-1 - name: Ball Carrying Bags +- id: sg-4-2-4-7-3 + name: Slip Joint Knives children: [] attributes: - color + - hunting_survival_knife_design + - knife_type - pattern - - bag_case_material -- id: sg-1-13-3-2 - name: Ball Carrying Carts +- id: sg-4-2-4-8 + name: Multifunction Tools & Knives children: [] attributes: - color - pattern - - furniture_fixture_material -- id: sg-1-13-3-3 - name: Ball Carrying Nets +- id: sg-4-2-5 + name: Chemical Hand Warmers children: [] attributes: - color - pattern - - fabric -- id: sg-1-13-6-1 - name: Exercise & Gym Mat Storage Cages +- id: sg-4-2-6 + name: Compression Sacks children: [] attributes: - color - material - pattern -- id: sg-1-13-6-2 - name: Exercise & Gym Mat Storage Carts - children: [] +- id: sg-4-2-7 + name: Hiking Pole Accessories + children: + - sg-4-2-7-1 + - sg-4-2-7-2 + - sg-4-2-7-3 + - sg-4-2-7-4 + - sg-4-2-7-5 + - sg-4-2-7-6 + - sg-4-2-7-7 attributes: - color - - material - pattern -- id: sg-1-13-6-3 - name: Exercise & Gym Mat Storage Racks +- id: sg-4-2-7-1 + name: Hiking Pole Baskets children: [] attributes: - color - - material - pattern -- id: sg-1-13-7 - name: Grip Chalk Bags +- id: sg-4-2-7-2 + name: Hiking Pole Guard Kits children: [] attributes: - - age_group - color - pattern -- id: sg-1-13-15-1 - name: Stadium Cushions +- id: sg-4-2-7-3 + name: Hiking Pole Hand Guards children: [] attributes: - color - pattern -- id: sg-1-13-15-2 - name: Stadium Seats +- id: sg-4-2-7-4 + name: Hiking Pole Thumb Guards children: [] attributes: - color - pattern -- id: sg-1-13-16 - name: Training Bibs +- id: sg-4-2-7-5 + name: Hiking Pole Thumb Straps children: [] attributes: - - age_group - color - pattern -- id: sg-1-14-5 - name: Gymnastics Training Aids - children: - - sg-1-14-5-1 - - sg-1-14-5-2 - - sg-1-14-5-3 - - sg-1-14-5-4 - - sg-1-14-5-5 - - sg-1-14-5-6 - - sg-1-14-5-7 +- id: sg-4-2-7-6 + name: Hiking Pole Tips + children: [] attributes: - - age_group - color - pattern -- id: sg-1-14-5-1 - name: Gymnastics Beam Pads +- id: sg-4-2-7-7 + name: Hiking Pole Wrist Straps children: [] attributes: - - age_group - color - pattern -- id: sg-1-14-5-2 - name: Gymnastics Floor Exercise Trainers +- id: sg-4-2-8 + name: Hiking Poles children: [] attributes: - age_group - color + - outdoor_walking_activity - pattern -- id: sg-1-14-5-3 - name: Gymnastics Foam Pits - children: [] +- id: sg-4-2-9 + name: Mosquito Nets & Insect Screens + children: + - sg-4-2-9-1 + - sg-4-2-9-2 attributes: - - age_group - color + - net_material - pattern -- id: sg-1-14-5-4 - name: Gymnastics Pommel Trainers +- id: sg-4-2-9-1 + name: Box Mosquito Nets children: [] attributes: - - age_group - color + - net_material - pattern -- id: sg-1-14-5-5 - name: Gymnastics Spotting Blocks +- id: sg-4-2-9-2 + name: Pyramid Mosquito Nets children: [] attributes: - - age_group - color + - net_material - pattern -- id: sg-1-14-5-6 - name: Gymnastics Training Straps - children: [] +- id: sg-4-2-10 + name: Navigational Compasses + children: + - sg-4-2-10-1 + - sg-4-2-10-2 + - sg-4-2-10-3 attributes: - - age_group - color + - compass_style + - material - pattern -- id: sg-1-14-5-7 - name: Gymnastics Vaulting Trainers +- id: sg-4-2-10-1 + name: Electronic Navigational Compasses children: [] attributes: - - age_group - color + - compass_style + - material - pattern -- id: sg-1-15-4 - name: Racquetball & Squash Training Aids - children: - - sg-1-15-4-1 - - sg-1-15-4-2 - - sg-1-15-4-3 - - sg-1-15-4-4 - - sg-1-15-4-5 - - sg-1-15-4-6 - - sg-1-15-4-7 - - sg-1-15-4-8 +- id: sg-4-2-10-2 + name: Gyrocompasses + children: [] attributes: - - age_group - color + - compass_style + - material - pattern -- id: sg-1-15-4-1 - name: Racquetball & Squash Fitness Equipment +- id: sg-4-2-10-3 + name: Magnetic Navigational Compasses children: [] attributes: - - age_group + - color + - compass_style + - material + - pattern +- id: sg-4-2-11 + name: Portable Toilets & Showers + children: + - sg-4-2-11-1 + - sg-4-2-11-2 + attributes: - color - pattern -- id: sg-1-15-4-2 - name: Racquetball & Squash Grip Enhancers - children: [] +- id: sg-4-2-11-1 + name: Portable Showers & Privacy Enclosures + children: + - sg-4-2-11-1-1 + - sg-4-2-11-1-2 + - sg-4-2-11-1-3 attributes: - - age_group - color - pattern -- id: sg-1-15-4-3 - name: Racquetball & Squash Practice Walls +- id: sg-4-2-11-1-1 + name: Portable Showers children: [] attributes: - - age_group - color - pattern -- id: sg-1-15-4-4 - name: Racquetball & Squash Rebounders +- id: sg-4-2-11-1-2 + name: Privacy Enclosures children: [] attributes: - - age_group - color - pattern -- id: sg-1-15-4-5 - name: Racquetball & Squash Target Trainers +- id: sg-4-2-11-1-3 + name: Privacy Screens children: [] attributes: - - age_group - color - pattern -- id: sg-1-15-4-6 - name: Racquetball & Squash Training Backpacks - children: [] +- id: sg-4-2-11-2 + name: Portable Toilets & Urination Devices + children: + - sg-4-2-11-2-1 + - sg-4-2-11-2-2 + - sg-4-2-11-2-3 attributes: - - age_group - color - pattern -- id: sg-1-15-4-7 - name: Racquetball & Squash Training Bags +- id: sg-4-2-11-2-1 + name: Female Urination Devices children: [] attributes: - - age_group - color - pattern -- id: sg-1-15-4-8 - name: Racquetball & Squash Training Goggles +- id: sg-4-2-11-2-2 + name: Male Urination Devices children: [] attributes: - - age_group - color - pattern -- id: sg-1-15-5 - name: Racquetball Rackets +- id: sg-4-2-11-2-3 + name: Portable Camping Toilets children: [] attributes: - - age_group - color - pattern - - recommended_skill_level - - racket_material -- id: sg-1-15-6 - name: Squash Rackets - children: [] +- id: sg-4-2-12 + name: Portable Water Filters & Purifiers + children: + - sg-4-2-12-1 + - sg-4-2-12-2 attributes: - - age_group - color - pattern - - recommended_skill_level - - racket_material -- id: sg-1-16-2 - name: Rounders Gloves & Mitts +- id: sg-4-2-12-1 + name: Water Filter Pumps children: [] attributes: - - accessory_size - - age_group - color - pattern - - target_gender - - handwear_material -- id: sg-1-16-3 - name: Rounders Training Aids - children: - - sg-1-16-3-1 - - sg-1-16-3-2 - - sg-1-16-3-3 +- id: sg-4-2-12-2 + name: Water Purifier Tablets + children: [] attributes: - - age_group - color - pattern -- id: sg-1-16-3-1 - name: Rounders Batting Tees +- id: sg-4-2-13 + name: Sleeping Bag Liners children: [] attributes: - - age_group - color - pattern -- id: sg-1-16-3-2 - name: Rounders Rebound Boards +- id: sg-4-2-14 + name: Sleeping Bags children: [] attributes: - - age_group - color - pattern -- id: sg-1-16-3-3 - name: Rounders Training Bases +- id: sg-4-2-15 + name: Sleeping Pads children: [] attributes: + - accessory_size - age_group - color + - material - pattern -- id: sg-1-17-5-1 - name: Rugby Kicking Tees - children: [] +- id: sg-4-2-16 + name: Tent Accessories + children: + - sg-4-2-16-1 + - sg-4-2-16-2 + - sg-4-2-16-3 + - sg-4-2-16-4 attributes: - - age_group - color - pattern -- id: sg-1-17-5-2 - name: Rugby Tackle Bags +- id: sg-4-2-16-1 + name: Inner Tents children: [] attributes: - - age_group - color + - cover_material - pattern -- id: sg-1-18-4-1 - name: Soccer Goal Anchors +- id: sg-4-2-16-2 + name: Tent Footprints children: [] attributes: - color - pattern -- id: sg-1-18-4-2 - name: Soccer Goal Counterweights - children: [] +- id: sg-4-2-16-3 + name: Tent Poles & Stakes + children: + - sg-4-2-16-3-1 + - sg-4-2-16-3-2 attributes: - color + - material - pattern -- id: sg-1-18-4-3 - name: Soccer Goal Dummies +- id: sg-4-2-16-3-1 + name: Tent Poles children: [] attributes: - color + - material - pattern -- id: sg-1-18-4-4 - name: Soccer Goal Mounting Kits +- id: sg-4-2-16-3-2 + name: Tent Stakes children: [] attributes: - color + - material - pattern -- id: sg-1-18-4-5 - name: Soccer Goal Nets +- id: sg-4-2-16-4 + name: Tent Vestibules children: [] attributes: - color - pattern -- id: sg-1-18-4-6 - name: Soccer Goal Targets - children: [] +- id: sg-4-2-17 + name: Tents + children: + - sg-4-2-17-1 + - sg-4-2-17-2 + - sg-4-2-17-3 + - sg-4-2-17-4 + - sg-4-2-17-5 + - sg-4-2-17-6 + - sg-4-2-17-7 + - sg-4-2-17-8 + - sg-4-2-17-9 + - sg-4-2-17-10 attributes: - color - pattern -- id: sg-1-18-6-1-1 - name: Ankle Guards +- id: sg-4-2-17-1 + name: Bungalows children: [] attributes: - - age_group - color - pattern -- id: sg-1-18-6-1-2 - name: Shin Guard Sleeves + - suitable_for_camping_activity +- id: sg-4-2-17-2 + name: Domes children: [] attributes: - - age_group - color - pattern -- id: sg-1-18-7 - name: Soccer Training Aids - children: - - sg-1-18-7-1 - - sg-1-18-7-2 - - sg-1-18-7-3 - - sg-1-18-7-4 - - sg-1-18-7-5 - - sg-1-18-7-6 + - suitable_for_camping_activity +- id: sg-4-2-17-3 + name: Group Tents + children: [] attributes: - - age_group - color - pattern -- id: sg-1-18-7-1 - name: Soccer Agility Poles +- id: sg-4-2-17-4 + name: Igloo Tents children: [] attributes: - - age_group - color - pattern -- id: sg-1-18-7-2 - name: Soccer Ball Launchers +- id: sg-4-2-17-5 + name: Pop-Up Tents children: [] attributes: - - age_group - color - pattern -- id: sg-1-18-7-3 - name: Soccer Passing Arcs +- id: sg-4-2-17-6 + name: Pyramid Tents children: [] attributes: - - age_group - color - pattern -- id: sg-1-18-7-4 - name: Soccer Rebounders +- id: sg-4-2-17-7 + name: Ridge Tents children: [] attributes: - - age_group - color - pattern -- id: sg-1-18-7-5 - name: Soccer Training Backpacks +- id: sg-4-2-17-8 + name: Sail Tents children: [] attributes: - - age_group - color - pattern -- id: sg-1-18-7-6 - name: Soccer Training Mannequins +- id: sg-4-2-17-9 + name: Tunnel Tents children: [] attributes: - - age_group - color - pattern -- id: sg-1-19-2 - name: Team Handball Training Aids - children: - - sg-1-19-2-1 - - sg-1-19-2-2 - - sg-1-19-2-3 - - sg-1-19-2-4 - - sg-1-19-2-5 - - sg-1-19-2-6 - - sg-1-19-2-7 +- id: sg-4-2-17-10 + name: Vis-A-Vis Tents + children: [] attributes: - - age_group - color - pattern -- id: sg-1-19-2-1 - name: Team Handball Agility Hoops +- id: sg-4-2-18 + name: Windbreaks children: [] attributes: - - age_group - color + - material - pattern -- id: sg-1-19-2-2 - name: Team Handball Fitness Equipment - children: [] +- id: sg-4-3 + name: Climbing + children: + - sg-4-3-1 + - sg-4-3-2 + - sg-4-3-3 + - sg-4-3-4 + - sg-4-3-5 + - sg-4-3-6 + - sg-4-3-7 + - sg-4-3-8 + - sg-4-3-9 + - sg-4-3-10 + - sg-4-3-11 + - sg-4-3-12 + - sg-4-3-13 + - sg-4-3-14 + - sg-4-3-15 + - sg-4-3-16 attributes: - - age_group - color - pattern -- id: sg-1-19-2-3 - name: Team Handball Goalkeeper Training Aids - children: [] +- id: sg-4-3-1 + name: Belay Devices + children: + - sg-4-3-1-1 + - sg-4-3-1-2 + - sg-4-3-1-3 attributes: - - age_group - color + - material - pattern -- id: sg-1-19-2-4 - name: Team Handball Passing Targets +- id: sg-4-3-1-1 + name: Figure 8 Devices children: [] attributes: - - age_group - color + - material - pattern -- id: sg-1-19-2-5 - name: Team Handball Rebound Boards +- id: sg-4-3-1-2 + name: Sticht Plates children: [] attributes: - - age_group - color + - material - pattern -- id: sg-1-19-2-6 - name: Team Handball Shooting Targets +- id: sg-4-3-1-3 + name: Tubular Belay Devices children: [] attributes: - - age_group - color + - material - pattern -- id: sg-1-19-2-7 - name: Team Handball Training Bags +- id: sg-4-3-2 + name: Carabiners children: [] attributes: - - age_group + - carabiner_gate_type + - carabiner_shape - color + - material - pattern -- id: sg-1-20-6 - name: Tennis Racket Accessories +- id: sg-4-3-3 + name: Climbing Apparel & Accessories children: - - sg-1-20-6-1 - - sg-1-20-6-2 - - sg-1-20-6-3 - - sg-1-20-6-4 - - sg-1-20-6-5 + - sg-4-3-3-1 + - sg-4-3-3-2 + - sg-4-3-3-3 attributes: - color - pattern -- id: sg-1-20-6-1 - name: Racket Vibration Dampeners +- id: sg-4-3-3-1 + name: Climbing Gloves children: [] attributes: + - accessory_size + - age_group - color - - material + - handwear_material - pattern - - sport -- id: sg-1-20-6-2 - name: Tennis Racket Bags + - target_gender +- id: sg-4-3-3-2 + name: Climbing Helmets children: [] attributes: + - accessory_size + - age_group - color - pattern -- id: sg-1-20-6-3 - name: Tennis Racket Grips & Tape - children: - - sg-1-20-6-3-1 - - sg-1-20-6-3-2 - - sg-1-20-6-3-3 - attributes: - - color - - pattern - - sport - - tape_material -- id: sg-1-20-6-3-1 - name: Tennis Racket Overgrips +- id: sg-4-3-3-3 + name: Crampons children: [] attributes: - color + - crampon_attachment_type - pattern - - sport - - tape_material -- id: sg-1-20-6-3-2 - name: Tennis Racket Replacement Grips +- id: sg-4-3-4 + name: Climbing Ascenders & Descenders children: [] attributes: - color - pattern - - sport - - tape_material -- id: sg-1-20-6-3-3 - name: Tennis Racket Tape +- id: sg-4-3-5 + name: Climbing Chalk Bags children: [] attributes: - color - pattern - - sport - - tape_material -- id: sg-1-20-6-4 - name: Tennis Racket Grommets +- id: sg-4-3-6 + name: Climbing Crash Pads children: [] attributes: - color + - material - pattern -- id: sg-1-20-6-5 - name: Tennis Racket String +- id: sg-4-3-7 + name: Climbing Double Lanyards children: [] attributes: - color + - material - pattern - - racket_gauge - - shape - - sport - - racket_string_design - - racket_string_material -- id: sg-1-20-7 - name: Tennis Rackets +- id: sg-4-3-8 + name: Climbing Harnesses children: [] attributes: - - age_group - - color - - pattern - - recommended_skill_level - - swing_style - - racket_material -- id: sg-1-20-8 - name: Tennis Training Aids - children: - - sg-1-20-8-1 - - sg-1-20-8-2 - - sg-1-20-8-3 - - sg-1-20-8-4 - - sg-1-20-8-5 - - sg-1-20-8-6 - attributes: - - age_group + - accessory_size + - climbing_activity - color + - harness_closure_type - pattern -- id: sg-1-20-8-1 - name: Tennis Fitness Equipment +- id: sg-4-3-9 + name: Climbing Protection Devices children: [] attributes: - - age_group - color + - material - pattern -- id: sg-1-20-8-2 - name: Tennis Footwork Trainers +- id: sg-4-3-10 + name: Climbing Rope children: [] attributes: - - age_group - color + - material - pattern -- id: sg-1-20-8-3 - name: Tennis Grip Trainers +- id: sg-4-3-11 + name: Climbing Rope Bags children: [] attributes: - - age_group - color - pattern -- id: sg-1-20-8-4 - name: Tennis Rebounders - children: [] +- id: sg-4-3-12 + name: Climbing Webbing + children: + - sg-4-3-12-1 + - sg-4-3-12-2 attributes: - - age_group - color + - material - pattern -- id: sg-1-20-8-5 - name: Tennis Target Trainers +- id: sg-4-3-12-1 + name: Climbing Daisy Chains children: [] attributes: - - age_group - color + - material - pattern -- id: sg-1-20-8-6 - name: Tennis Training Backpacks +- id: sg-4-3-12-2 + name: Climbing Slings children: [] attributes: - - age_group - color + - material - pattern -- id: sg-1-21-10 - name: Track & Field Training Aids +- id: sg-4-3-13 + name: Ice Climbing Tools children: - - sg-1-21-10-1 - - sg-1-21-10-2 - - sg-1-21-10-3 - - sg-1-21-10-4 + - sg-4-3-13-1 + - sg-4-3-13-2 + - sg-4-3-13-3 attributes: - - age_group - color - pattern -- id: sg-1-21-10-1 - name: Track & Field Long Jump Boards +- id: sg-4-3-13-1 + name: Ice Climbing Axes children: [] attributes: - - age_group - color - pattern -- id: sg-1-21-10-2 - name: Track & Field Resistance Bands +- id: sg-4-3-13-2 + name: Ice Climbing Crampons children: [] attributes: - - age_group - color - pattern -- id: sg-1-21-10-3 - name: Track & Field Shot Puts +- id: sg-4-3-13-3 + name: Ice Climbing Screwdrivers children: [] attributes: - - age_group - color - pattern -- id: sg-1-21-10-4 - name: Track & Field Stopwatch Systems +- id: sg-4-3-14 + name: Ice Screws children: [] attributes: - - age_group - color + - material - pattern -- id: sg-1-21-12 - name: Track Spikes +- id: sg-4-3-15 + name: Indoor Climbing Holds children: [] attributes: - - age_group - color - pattern -- id: sg-1-22-3-1 - name: Volleyball Ball Machines +- id: sg-4-3-16 + name: Quickdraws children: [] attributes: - - age_group - color - pattern -- id: sg-1-22-3-2 - name: Volleyball Serving Targets - children: [] +- id: sg-4-4 + name: Cycling + children: + - sg-4-4-1 + - sg-4-4-2 + - sg-4-4-3 + - sg-4-4-4 + - sg-4-4-5 + - sg-4-4-6 + - sg-4-4-7 + - sg-4-4-8 attributes: - - age_group - color - pattern -- id: sg-1-23-1 - name: Wallyball Balls - children: [] +- id: sg-4-4-1 + name: Bicycle Accessories + children: + - sg-4-4-1-1 + - sg-4-4-1-2 + - sg-4-4-1-3 + - sg-4-4-1-4 + - sg-4-4-1-5 + - sg-4-4-1-6 + - sg-4-4-1-7 + - sg-4-4-1-8 + - sg-4-4-1-9 + - sg-4-4-1-10 + - sg-4-4-1-11 + - sg-4-4-1-12 + - sg-4-4-1-13 + - sg-4-4-1-14 + - sg-4-4-1-15 + - sg-4-4-1-16 + - sg-4-4-1-17 + - sg-4-4-1-18 + - sg-4-4-1-19 + - sg-4-4-1-20 + - sg-4-4-1-21 + - sg-4-4-1-22 + - sg-4-4-1-23 + - sg-4-4-1-24 + - sg-4-4-1-25 + - sg-4-4-1-26 + - sg-4-4-1-27 + - sg-4-4-1-28 attributes: - color + - compatible_bike_type - pattern -- id: sg-1-23-2 - name: Wallyball Nets - children: [] +- id: sg-4-4-1-1 + name: Bicycle Bags & Panniers + children: + - sg-4-4-1-1-1 + - sg-4-4-1-1-2 + - sg-4-4-1-1-3 attributes: - color + - compatible_bike_type + - bag_case_material - pattern -- id: sg-1-23-3 - name: Wallyball Sets + - vehicle_placement +- id: sg-4-4-1-1-1 + name: Bicycle Bags children: [] attributes: - color + - compatible_bike_type + - bag_case_material - pattern -- id: sg-1-24-4 - name: Water Polo Training Aids - children: - - sg-1-24-4-1 - - sg-1-24-4-2 - - sg-1-24-4-3 - - sg-1-24-4-4 - - sg-1-24-4-5 - - sg-1-24-4-6 - - sg-1-24-4-7 - - sg-1-24-4-8 - - sg-1-24-4-9 - attributes: - - age_group - - color - - pattern -- id: sg-1-24-4-1 - name: Goalkeeper Training Aids + - vehicle_placement +- id: sg-4-4-1-1-2 + name: Bicycle Panniers children: [] attributes: - - age_group - color + - compatible_bike_type + - bag_case_material - pattern -- id: sg-1-24-4-2 - name: Water Polo Fitness Equipment + - vehicle_placement +- id: sg-4-4-1-1-3 + name: Bicycle Top Cases children: [] attributes: - - age_group - color + - compatible_bike_type + - bag_case_material - pattern -- id: sg-1-24-4-3 - name: Water Polo Passing Targets + - vehicle_placement +- id: sg-4-4-1-2 + name: Bicycle Baskets children: [] attributes: - - age_group - color + - compatible_bike_type + - basket_material - pattern -- id: sg-1-24-4-4 - name: Water Polo Rebound Boards + - vehicle_placement +- id: sg-4-4-1-3 + name: Bicycle Bells & Horns children: [] attributes: - - age_group - color + - compatible_bike_type - pattern -- id: sg-1-24-4-5 - name: Water Polo Shooting Targets - children: [] +- id: sg-4-4-1-4 + name: Bicycle Cages + children: + - sg-4-4-1-4-1 + - sg-4-4-1-4-2 attributes: - - age_group - color + - compatible_bike_type - pattern -- id: sg-1-24-4-6 - name: Water Polo Training Backpacks +- id: sg-4-4-1-4-1 + name: Bicycle Bottle Cages children: [] attributes: - - age_group - color + - compatible_bike_type - pattern -- id: sg-1-24-4-7 - name: Water Polo Training Bags +- id: sg-4-4-1-4-2 + name: Bicycle Storage Cages children: [] attributes: - - age_group - color + - compatible_bike_type - pattern -- id: sg-1-24-4-8 - name: Water Polo Training Fins +- id: sg-4-4-1-5 + name: Bicycle Child Seat Accessories & Parts children: [] attributes: - - age_group - color + - compatible_bike_type - pattern -- id: sg-1-24-4-9 - name: Water Polo Training Vests +- id: sg-4-4-1-6 + name: Bicycle Child Seats children: [] attributes: - - age_group + - child_seat_placement - color + - compatible_bike_type - pattern -- id: sg-1-25-2 - name: Wrestling Training Aids +- id: sg-4-4-1-7 + name: Bicycle Computer Accessories children: - - sg-1-25-2-1 - - sg-1-25-2-2 - - sg-1-25-2-3 - - sg-1-25-2-4 - - sg-1-25-2-5 - - sg-1-25-2-6 - - sg-1-25-2-7 - - sg-1-25-2-8 - - sg-1-25-2-9 - attributes: - - age_group - - color - - pattern -- id: sg-1-25-2-1 - name: Wrestling Dummies - children: [] + - sg-4-4-1-7-1 + - sg-4-4-1-7-2 + - sg-4-4-1-7-3 + - sg-4-4-1-7-4 + - sg-4-4-1-7-5 + - sg-4-4-1-7-6 attributes: - - age_group - color + - compatible_bike_type - pattern -- id: sg-1-25-2-2 - name: Wrestling Grip Trainers +- id: sg-4-4-1-7-1 + name: Bicycle Computer Batteries children: [] attributes: - - age_group - color + - compatible_bike_type - pattern -- id: sg-1-25-2-3 - name: Wrestling Mats +- id: sg-4-4-1-7-2 + name: Bicycle Computer Cadence Sensors children: [] attributes: - - age_group - color + - compatible_bike_type - pattern -- id: sg-1-25-2-4 - name: Wrestling Practice Targets +- id: sg-4-4-1-7-3 + name: Bicycle Computer Cases children: [] attributes: - - age_group - color + - compatible_bike_type - pattern -- id: sg-1-25-2-5 - name: Wrestling Resistance Bands +- id: sg-4-4-1-7-4 + name: Bicycle Computer Mounts children: [] attributes: - - age_group - color + - compatible_bike_type - pattern -- id: sg-1-25-2-6 - name: Wrestling Singlets +- id: sg-4-4-1-7-5 + name: Bicycle Computer RPM Sensors children: [] attributes: - - age_group - color + - compatible_bike_type - pattern -- id: sg-1-25-2-7 - name: Wrestling Training Backpacks +- id: sg-4-4-1-7-6 + name: Bicycle Computer Transmitters children: [] attributes: - - age_group - color + - compatible_bike_type - pattern -- id: sg-1-25-2-8 - name: Wrestling Training Vests +- id: sg-4-4-1-8 + name: Bicycle Computers children: [] attributes: - - age_group - color + - compatible_bike_type + - connectivity_technology - pattern -- id: sg-1-25-2-9 - name: Wrestling Weightlifting Equipment + - speed_settings +- id: sg-4-4-1-9 + name: Bicycle Covers children: [] attributes: - - age_group - - color - - pattern -- id: sg-2 - name: Fitness & General Exercise Equipment - children: - - sg-2-1 - - sg-2-2 - - sg-2-3 - - sg-2-4 - - sg-2-5 - - sg-2-6 - - sg-2-7 - - sg-2-8 - - sg-2-9 - - sg-2-10 - - sg-2-11 - - sg-2-12 - - sg-2-13 - - sg-2-14 - - sg-2-15 - - sg-2-16 - - sg-2-17 - - sg-2-18 - - sg-2-19 - - sg-2-20 - - sg-2-21 - - sg-2-22 - - sg-2-23 - - sg-2-24 - - sg-2-25 - - sg-2-26 - attributes: - - color - - pattern -- id: sg-2-1 - name: Ab Wheels & Rollers - children: - - sg-2-1-1 - - sg-2-1-2 - attributes: - color + - compatible_bike_type - pattern - - exercise_equipment_material -- id: sg-2-1-1 - name: Ab Rollers +- id: sg-4-4-1-10 + name: Bicycle Fenders children: [] attributes: - color + - compatible_bike_type - pattern - - exercise_equipment_material -- id: sg-2-1-2 - name: Ab Wheels + - vehicle_placement +- id: sg-4-4-1-11 + name: Bicycle Front & Rear Racks children: [] attributes: - color + - compatible_bike_type - pattern - - exercise_equipment_material -- id: sg-2-2 - name: Aerobic Steps + - vehicle_placement +- id: sg-4-4-1-12 + name: Bicycle Handlebar Grips & Decor children: [] attributes: - color + - compatible_bike_type + - material - pattern - - exercise_equipment_material -- id: sg-2-3 - name: Balance Trainers +- id: sg-4-4-1-13 + name: Bicycle Locks children: - - sg-2-3-1 - - sg-2-3-2 - - sg-2-3-3 - - sg-2-3-4 + - sg-4-4-1-13-1 + - sg-4-4-1-13-2 + - sg-4-4-1-13-3 + - sg-4-4-1-13-4 + - sg-4-4-1-13-5 + - sg-4-4-1-13-6 + - sg-4-4-1-13-7 + - sg-4-4-1-13-8 + - sg-4-4-1-13-9 + - sg-4-4-1-13-10 attributes: - color + - compatible_bike_type - pattern -- id: sg-2-3-1 - name: Balance Boards +- id: sg-4-4-1-13-1 + name: Bicycle Cable Locks children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-3-2 - name: Balance Cushions +- id: sg-4-4-1-13-2 + name: Bicycle Chain Locks children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-3-3 - name: Balance Pads +- id: sg-4-4-1-13-3 + name: Bicycle Disc Locks children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-3-4 - name: Balance Steps +- id: sg-4-4-1-13-4 + name: Bicycle Folding Locks children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4 - name: Cardio - children: - - sg-2-4-1 - - sg-2-4-2 - - sg-2-4-3 +- id: sg-4-4-1-13-5 + name: Bicycle Ground Anchors + children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-1 - name: Cardio Machine Accessories & Parts - children: - - sg-2-4-1-1 - - sg-2-4-1-2 - - sg-2-4-1-3 - - sg-2-4-1-4 - - sg-2-4-1-5 +- id: sg-4-4-1-13-6 + name: Bicycle Locking Skewers + children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-1-1 - name: Elliptical Trainer Accessories & Parts - children: - - sg-2-4-1-1-1 - - sg-2-4-1-1-2 +- id: sg-4-4-1-13-7 + name: Bicycle Ring Locks + children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-1-1-1 - name: Elliptical Trainer Replacement Parts +- id: sg-4-4-1-13-8 + name: Bicycle U-Locks children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-1-1-2 - name: Elliptical Trainer Tablet Holders +- id: sg-4-4-1-13-9 + name: Bicycle Wheel Locks children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-1-2 - name: Exercise Bike Accessories & Parts - children: - - sg-2-4-1-2-1 - - sg-2-4-1-2-2 - - sg-2-4-1-2-3 - - sg-2-4-1-2-4 - - sg-2-4-1-2-5 - - sg-2-4-1-2-6 +- id: sg-4-4-1-13-10 + name: Bicycle Zip Ties + children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-1-2-1 - name: Exercise Bike Bottle Holders +- id: sg-4-4-1-14 + name: Bicycle Mirrors children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-1-2-2 - name: Exercise Bike Computers +- id: sg-4-4-1-15 + name: Bicycle Pumps children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-1-2-3 - name: Exercise Bike Covers +- id: sg-4-4-1-16 + name: Bicycle Saddle Pads & Seat Covers children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-1-2-4 - name: Exercise Bike Cushions + - shape +- id: sg-4-4-1-17 + name: Bicycle Shock Pumps children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-1-2-5 - name: Exercise Bike Heart Rate Monitors +- id: sg-4-4-1-18 + name: Bicycle Spoke Beads children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-1-2-6 - name: Exercise Bike Stands +- id: sg-4-4-1-19 + name: Bicycle Stands & Storage children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-1-3 - name: Rowing Machine Accessories & Parts +- id: sg-4-4-1-20 + name: Bicycle Tire Repair Supplies & Kits children: - - sg-2-4-1-3-1 - - sg-2-4-1-3-2 + - sg-4-4-1-20-1 + - sg-4-4-1-20-2 + - sg-4-4-1-20-3 + - sg-4-4-1-20-4 + - sg-4-4-1-20-5 attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-1-3-1 - name: Rowing Machine Replacement Parts +- id: sg-4-4-1-20-1 + name: Bicycle Tire Levers children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-1-3-2 - name: Rowing Machine Tablet Holders +- id: sg-4-4-1-20-2 + name: Bicycle Tire Repair Kits children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-1-4 - name: Stair Climber & Stepper Accessories & Parts - children: - - sg-2-4-1-4-1 - - sg-2-4-1-4-2 - attributes: - - color - - pattern -- id: sg-2-4-1-4-1 - name: Stair Climber & Stepper Replacement Parts +- id: sg-4-4-1-20-3 + name: Bicycle Tire Repair Patches children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-1-4-2 - name: Stair Climber & Stepper Tablet Holders +- id: sg-4-4-1-20-4 + name: Bicycle Tire Repair Stands children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-1-5 - name: Treadmill Accessories & Parts - children: - - sg-2-4-1-5-1 - - sg-2-4-1-5-2 - - sg-2-4-1-5-3 - - sg-2-4-1-5-4 - - sg-2-4-1-5-5 - - sg-2-4-1-5-6 - - sg-2-4-1-5-7 - - sg-2-4-1-5-8 - - sg-2-4-1-5-9 - - sg-2-4-1-5-10 - - sg-2-4-1-5-11 - - sg-2-4-1-5-12 - - sg-2-4-1-5-13 - - sg-2-4-1-5-14 +- id: sg-4-4-1-20-5 + name: Bicycle Tire Sealants + children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-1-5-1 - name: Treadmill Belts +- id: sg-4-4-1-21 + name: Bicycle Toe Straps & Clips children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-1-5-2 - name: Treadmill Bluetooth Modules - children: [] +- id: sg-4-4-1-22 + name: Bicycle Tools + children: + - sg-4-4-1-22-1 + - sg-4-4-1-22-2 attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-1-5-3 - name: Treadmill Consoles +- id: sg-4-4-1-22-1 + name: Bicycle Chain Tools children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-1-5-4 - name: Treadmill Hirise Adapters +- id: sg-4-4-1-22-2 + name: Bicycle Multi-Tools children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-1-5-5 - name: Treadmill Keys +- id: sg-4-4-1-23 + name: Bicycle Trailers children: [] attributes: - color + - compatible_bike_type + - hitch_type - pattern -- id: sg-2-4-1-5-6 - name: Treadmill Laptop Stands - children: [] +- id: sg-4-4-1-24 + name: Bicycle Trainers + children: + - sg-4-4-1-24-1 + - sg-4-4-1-24-2 + - sg-4-4-1-24-3 + - sg-4-4-1-24-4 attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-1-5-7 - name: Treadmill Lower Control Boards +- id: sg-4-4-1-24-1 + name: Fluid Bicycle Trainers children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-1-5-8 - name: Treadmill Motor Belts +- id: sg-4-4-1-24-2 + name: Magnetic Bicycle Trainers children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-1-5-9 - name: Treadmill Motors +- id: sg-4-4-1-24-3 + name: Roller Bicycle Trainers children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-1-5-10 - name: Treadmill Rails +- id: sg-4-4-1-24-4 + name: Wind Bicycle Trainers children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-1-5-11 - name: Treadmill Replacement Parts +- id: sg-4-4-1-25 + name: Bicycle Training Wheels children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-1-5-12 - name: Treadmill Speed Sensors +- id: sg-4-4-1-26 + name: Bicycle Transport Bags & Cases children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-1-5-13 - name: Treadmill Upper Control Boards +- id: sg-4-4-1-27 + name: Bicycle Water Sport Board Racks children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-1-5-14 - name: Treadmill Wifi Modules +- id: sg-4-4-1-28 + name: Electric Bicycle Conversion Kits children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-2 - name: Cardio Machines +- id: sg-4-4-2 + name: Bicycle Parts children: - - sg-2-4-2-1 - - sg-2-4-2-2 - - sg-2-4-2-3 - - sg-2-4-2-4 - - sg-2-4-2-5 + - sg-4-4-2-1 + - sg-4-4-2-2 + - sg-4-4-2-3 + - sg-4-4-2-4 + - sg-4-4-2-5 + - sg-4-4-2-6 + - sg-4-4-2-7 + - sg-4-4-2-8 + - sg-4-4-2-9 + - sg-4-4-2-10 + - sg-4-4-2-11 + - sg-4-4-2-12 + - sg-4-4-2-13 + - sg-4-4-2-14 + - sg-4-4-2-15 + - sg-4-4-2-16 + - sg-4-4-2-17 + - sg-4-4-2-18 + - sg-4-4-2-19 + - sg-4-4-2-20 + - sg-4-4-2-21 + - sg-4-4-2-22 + - sg-4-4-2-23 + - sg-4-4-2-24 attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-2-1 - name: Elliptical Trainers +- id: sg-4-4-2-1 + name: Bicycle Brake Parts children: - - sg-2-4-2-1-1 - - sg-2-4-2-1-2 + - sg-4-4-2-1-1 + - sg-4-4-2-1-2 + - sg-4-4-2-1-3 + - sg-4-4-2-1-4 attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-2-1-1 - name: Electromagnetic Elliptical Trainers +- id: sg-4-4-2-1-1 + name: Bicycle Brake Calipers children: [] attributes: + - bicycle_brake_type - color + - compatible_bike_type - pattern -- id: sg-2-4-2-1-2 - name: Magnetic Elliptical Trainers +- id: sg-4-4-2-1-2 + name: Bicycle Brake Levers children: [] attributes: + - bicycle_brake_type - color + - compatible_bike_type - pattern -- id: sg-2-4-2-2 - name: Exercise Bikes - children: - - sg-2-4-2-2-1 - - sg-2-4-2-2-2 - - sg-2-4-2-2-3 - - sg-2-4-2-2-4 +- id: sg-4-4-2-1-3 + name: Bicycle Brake Rotors + children: [] attributes: + - bicycle_brake_type - color + - compatible_bike_type - pattern - - resistance_system -- id: sg-2-4-2-2-1 - name: Mini Exercise Bikes +- id: sg-4-4-2-1-4 + name: Bicycle Brake Sets children: [] attributes: + - bicycle_brake_type - color + - compatible_bike_type - pattern - - resistance_system -- id: sg-2-4-2-2-2 - name: Recumbent Exercise Bikes +- id: sg-4-4-2-2 + name: Bicycle Cable Housings children: [] attributes: + - bicycle_brake_type - color + - compatible_bike_type - pattern - - resistance_system -- id: sg-2-4-2-2-3 - name: Spin Exercise Bikes +- id: sg-4-4-2-3 + name: Bicycle Cables children: [] attributes: + - cable_type - color + - compatible_bike_type - pattern - - resistance_system -- id: sg-2-4-2-2-4 - name: Upright Exercise Bikes - children: [] +- id: sg-4-4-2-4 + name: Bicycle Drivetrain Parts + children: + - sg-4-4-2-4-1 + - sg-4-4-2-4-2 + - sg-4-4-2-4-3 + - sg-4-4-2-4-4 + - sg-4-4-2-4-5 + - sg-4-4-2-4-6 + - sg-4-4-2-4-7 + - sg-4-4-2-4-8 attributes: - color + - compatible_bike_type - pattern - - resistance_system -- id: sg-2-4-2-3 - name: Rowing Machines +- id: sg-4-4-2-4-1 + name: Bicycle Bottom Brackets children: [] attributes: - color + - compatible_bike_type + - material - pattern - - resistance_system -- id: sg-2-4-2-4 - name: Stair Climbers & Steppers +- id: sg-4-4-2-4-2 + name: Bicycle Cassettes & Freewheels children: - - sg-2-4-2-4-1 - - sg-2-4-2-4-2 + - sg-4-4-2-4-2-1 + - sg-4-4-2-4-2-2 attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-2-4-1 - name: Stair Climbers +- id: sg-4-4-2-4-2-1 + name: Bicycle Cassettes children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-2-4-2 - name: Stair Steppers +- id: sg-4-4-2-4-2-2 + name: Bicycle Freewheels children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-2-5 - name: Treadmills +- id: sg-4-4-2-4-3 + name: Bicycle Chainrings children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-4-3 - name: Jump Ropes +- id: sg-4-4-2-4-4 + name: Bicycle Chains children: [] attributes: - - age_group - color + - compatible_bike_type - pattern - - exercise_equipment_material -- id: sg-2-5 - name: Exercise Balls +- id: sg-4-4-2-4-5 + name: Bicycle Cranks children: [] attributes: - color + - compatible_bike_type - pattern - - exercise_equipment_included - - ball_material -- id: sg-2-6 - name: Exercise Bands & Loops +- id: sg-4-4-2-4-6 + name: Bicycle Derailleurs children: [] attributes: - color + - compatible_bike_type - pattern - - resistance_level -- id: sg-2-7 - name: Exercise Benches + - vehicle_placement +- id: sg-4-4-2-4-7 + name: Bicycle Pedals children: [] attributes: - color - - compatible_bench_positions + - compatible_bike_type + - material - pattern -- id: sg-2-8 - name: Exercise Equipment Mats - children: - - sg-2-8-1 - - sg-2-8-2 - - sg-2-8-3 - - sg-2-8-4 - - sg-2-8-5 +- id: sg-4-4-2-4-8 + name: Bicycle Shifters + children: [] attributes: - color + - compatible_bike_type - pattern - - exercise_mat_material -- id: sg-2-8-1 - name: Elliptical Trainer Mats +- id: sg-4-4-2-5 + name: Bicycle Forks children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-8-2 - name: Exercise Bike Floor Mats - children: [] - attributes: - - exercise_mat_material -- id: sg-2-8-3 - name: Floor Protection Mats +- id: sg-4-4-2-6 + name: Bicycle Frames children: [] attributes: - color + - compatible_bike_type - pattern - - exercise_mat_material -- id: sg-2-8-4 - name: Rowing Machine Mats +- id: sg-4-4-2-7 + name: Bicycle Groupsets children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-8-5 - name: Stair Climber & Stepper Mats - children: [] - attributes: - - exercise_mat_material -- id: sg-2-9 - name: Exercise Machine & Equipment Sets +- id: sg-4-4-2-8 + name: Bicycle Handlebar Extensions children: [] attributes: - color + - compatible_bike_type + - material - pattern - - exercise_equipment_included -- id: sg-2-10 - name: Exercise Wedges +- id: sg-4-4-2-9 + name: Bicycle Handlebars children: [] attributes: - color - - material_hardness + - compatible_bike_type + - material - pattern -- id: sg-2-11 - name: Foam Roller Accessories +- id: sg-4-4-2-10 + name: Bicycle Headset Parts children: - - sg-2-11-1 - - sg-2-11-2 - - sg-2-11-3 - - sg-2-11-4 - - sg-2-11-5 - attributes: - - color - - pattern -- id: sg-2-11-1 - name: Foam Roller Covers - children: [] + - sg-4-4-2-10-1 + - sg-4-4-2-10-2 attributes: - color + - compatible_bike_type - pattern -- id: sg-2-11-2 - name: Foam Roller Handles +- id: sg-4-4-2-10-1 + name: Bicycle Headset Bearings children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-11-3 - name: Foam Roller Storage Bags +- id: sg-4-4-2-10-2 + name: Bicycle Headset Spacers children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-11-4 - name: Foam Roller Straps +- id: sg-4-4-2-11 + name: Bicycle Headsets children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-11-5 - name: Foam Roller Wall Mounts +- id: sg-4-4-2-12 + name: Bicycle Kickstands children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-12 - name: Foam Rollers +- id: sg-4-4-2-13 + name: Bicycle Saddles children: [] attributes: + - saddle_base_material - color + - compatible_bike_type + - cycling_style - pattern - - exercise_equipment_material -- id: sg-2-13 - name: Hand Exercisers + - saddle_seat_material + - target_gender +- id: sg-4-4-2-14 + name: Bicycle Seatpost Clamps children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-14 - name: Inversion Tables & Systems +- id: sg-4-4-2-15 + name: Bicycle Seatposts children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-15 - name: Medicine Balls +- id: sg-4-4-2-16 + name: Bicycle Small Parts children: - - sg-2-15-1 - - sg-2-15-2 - - sg-2-15-3 - - sg-2-15-4 - - sg-2-15-5 - - sg-2-15-6 + - sg-4-4-2-16-1 + - sg-4-4-2-16-2 + - sg-4-4-2-16-3 attributes: - color + - compatible_bike_type - pattern - - ball_material -- id: sg-2-15-1 - name: Dual-Grip Balls +- id: sg-4-4-2-16-1 + name: Bicycle Cable Ends children: [] attributes: - color + - compatible_bike_type - pattern - - ball_material -- id: sg-2-15-2 - name: Slam Balls +- id: sg-4-4-2-16-2 + name: Bicycle Chain Links children: [] attributes: - color + - compatible_bike_type - pattern - - ball_material -- id: sg-2-15-3 - name: Soft Balls +- id: sg-4-4-2-16-3 + name: Bicycle Spoke Nipples children: [] attributes: - color + - compatible_bike_type - pattern - - ball_material -- id: sg-2-15-4 - name: Toning Balls +- id: sg-4-4-2-17 + name: Bicycle Stems children: [] attributes: - color + - compatible_bike_type - pattern - - ball_material -- id: sg-2-15-5 - name: Tornado Balls +- id: sg-4-4-2-18 + name: Bicycle Tire Valve Adapters children: [] attributes: - color + - compatible_bike_type - pattern - - ball_material -- id: sg-2-15-6 - name: Wall Balls + - valve_type +- id: sg-4-4-2-19 + name: Bicycle Tire Valve Caps children: [] attributes: - color + - compatible_bike_type - pattern - - ball_material -- id: sg-2-16 - name: Power Towers + - valve_type +- id: sg-4-4-2-20 + name: Bicycle Tire Valves children: [] attributes: - color - - compatible_exercises + - compatible_bike_type - pattern -- id: sg-2-17 - name: Push Up & Pull Up Bars - children: [] + - valve_type +- id: sg-4-4-2-21 + name: Bicycle Tires + children: + - sg-4-4-2-21-1 + - sg-4-4-2-21-2 + - sg-4-4-2-21-3 + - sg-4-4-2-21-4 attributes: - color - - material + - compatible_bike_type + - cycling_style - pattern - - bar_mounting_type -- id: sg-2-18 - name: Reaction Balls + - tire_bead_type +- id: sg-4-4-2-21-1 + name: Clinchers children: [] attributes: - - ball_size - color + - compatible_bike_type + - cycling_style - pattern - - ball_material -- id: sg-2-19 - name: Speed & Resistance Parachutes + - tire_bead_type +- id: sg-4-4-2-21-2 + name: Tubeless Ready Tires children: [] attributes: - color + - compatible_bike_type + - cycling_style - pattern -- id: sg-2-20 - name: Sport Safety Lights & Reflectors - children: - - sg-2-20-1 - - sg-2-20-2 - attributes: - - accessory_size - - activity - - color - - material - - pattern -- id: sg-2-20-1 - name: Sport Safety Lights + - tire_bead_type +- id: sg-4-4-2-21-3 + name: Tubeless Tires children: [] attributes: - - accessory_size - - activity - color - - material + - compatible_bike_type + - cycling_style - pattern -- id: sg-2-20-2 - name: Sport Safety Reflectors + - tire_bead_type +- id: sg-4-4-2-21-4 + name: Tubular Tires children: [] attributes: - - accessory_size - - activity - color - - material + - compatible_bike_type + - cycling_style - pattern -- id: sg-2-21 - name: Stopwatches + - tire_bead_type +- id: sg-4-4-2-22 + name: Bicycle Tubes children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-22 - name: Suspension Trainers + - valve_type +- id: sg-4-4-2-23 + name: Bicycle Wheel Parts children: - - sg-2-22-1 - - sg-2-22-2 - - sg-2-22-3 + - sg-4-4-2-23-1 + - sg-4-4-2-23-2 + - sg-4-4-2-23-3 + - sg-4-4-2-23-4 + - sg-4-4-2-23-5 + - sg-4-4-2-23-6 + - sg-4-4-2-23-7 + - sg-4-4-2-23-8 attributes: - color + - compatible_bike_type - pattern -- id: sg-2-22-1 - name: Full Body Suspension Kits - children: - - sg-2-22-1-1 - - sg-2-22-1-2 +- id: sg-4-4-2-23-1 + name: Bicycle Foot Pegs + children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-22-1-1 - name: Jungle Gyms - children: [] +- id: sg-4-4-2-23-2 + name: Bicycle Hub Parts + children: + - sg-4-4-2-23-2-1 + - sg-4-4-2-23-2-2 + - sg-4-4-2-23-2-3 attributes: - color + - compatible_bike_type - pattern -- id: sg-2-22-1-2 - name: Total Body Straps +- id: sg-4-4-2-23-2-1 + name: Hub Bearings children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-22-2 - name: Suspension Handles & Straps - children: - - sg-2-22-2-1 - - sg-2-22-2-2 +- id: sg-4-4-2-23-2-2 + name: Hub Cones + children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-22-2-1 - name: Suspension Handles +- id: sg-4-4-2-23-2-3 + name: Quick Releases children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-22-2-2 - name: Suspension Straps +- id: sg-4-4-2-23-3 + name: Bicycle Hubs children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-22-3 - name: Suspension Training Accessories - children: - - sg-2-22-3-1 - - sg-2-22-3-2 - - sg-2-22-3-3 - - sg-2-22-3-4 - - sg-2-22-3-5 +- id: sg-4-4-2-23-4 + name: Bicycle Rim Strips + children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-22-3-1 - name: Strap Extenders +- id: sg-4-4-2-23-5 + name: Bicycle Spokes children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-22-3-2 - name: Suspension Training Anchors +- id: sg-4-4-2-23-6 + name: Bicycle Wheel Axles & Skewers children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-22-3-3 - name: Suspension Training Carabiners + - vehicle_placement +- id: sg-4-4-2-23-7 + name: Bicycle Wheel Nipples children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-22-3-4 - name: Suspension Training Connectors +- id: sg-4-4-2-23-8 + name: Bicycle Wheel Rims children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-22-3-5 - name: Suspension Training Mounts - children: [] +- id: sg-4-4-2-24 + name: Bicycle Wheels + children: + - sg-4-4-2-24-1 + - sg-4-4-2-24-2 + - sg-4-4-2-24-3 + - sg-4-4-2-24-4 attributes: - color + - compatible_bike_type - pattern -- id: sg-2-23 - name: Vibration Exercise Machines - children: - - sg-2-23-1 - - sg-2-23-2 +- id: sg-4-4-2-24-1 + name: Bicycle Front Wheels + children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-23-1 - name: Lineal Vibration Exercise Machines +- id: sg-4-4-2-24-2 + name: Bicycle Motorized Rear Wheels children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-23-2 - name: Pivotal Vibration Exercise Machines +- id: sg-4-4-2-24-3 + name: Bicycle Rear Wheels children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-24 - name: Weight Lifting - children: - - sg-2-24-1 - - sg-2-24-2 - - sg-2-24-3 - - sg-2-24-4 - - sg-2-24-5 - - sg-2-24-6 +- id: sg-4-4-2-24-4 + name: Bicycle Wheel Sets + children: [] attributes: - color + - compatible_bike_type - pattern -- id: sg-2-24-1 - name: Free Weight Accessories +- id: sg-4-4-3 + name: Bicycles children: - - sg-2-24-1-1 - - sg-2-24-1-2 - - sg-2-24-1-3 + - sg-4-4-3-1 + - sg-4-4-3-2 + - sg-4-4-3-3 + - sg-4-4-3-4 + - sg-4-4-3-5 + - sg-4-4-3-6 + - sg-4-4-3-7 + - sg-4-4-3-8 + - sg-4-4-3-9 + - sg-4-4-3-10 + - sg-4-4-3-11 + - sg-4-4-3-12 + - sg-4-4-3-13 attributes: + - age_group - color + - gearing_type + - material - pattern -- id: sg-2-24-1-1 - name: Barbells & Weightlifting Bars + - target_gender +- id: sg-4-4-3-1 + name: BMX Bikes children: [] attributes: + - age_group - color + - gearing_type - material - pattern - - weight_bar_activity - - weight_bar_type -- id: sg-2-24-1-2 - name: Free Weight Storage Racks + - target_gender +- id: sg-4-4-3-2 + name: City Bikes children: [] attributes: + - age_group - color + - gearing_type - material - pattern -- id: sg-2-24-1-3 - name: Weight Bar Collars + - target_gender +- id: sg-4-4-3-3 + name: Cross Country Bikes children: [] attributes: + - age_group - color - - compatible_weight_lifting_accessory + - gearing_type - material - pattern - - collar_lock_type -- id: sg-2-24-2 - name: Free Weights, Dumbbells & Kettlebells - children: - - sg-2-24-2-1 - - sg-2-24-2-2 - - sg-2-24-2-3 - - sg-2-24-2-4 + - target_gender +- id: sg-4-4-3-4 + name: Cruiser Bikes + children: [] attributes: + - age_group - color + - gearing_type - material - pattern -- id: sg-2-24-2-1 - name: Dumbbells + - target_gender +- id: sg-4-4-3-5 + name: Electric Bikes children: [] attributes: + - age_group - color + - gearing_type - material - pattern -- id: sg-2-24-2-2 - name: Kettlebells + - target_gender +- id: sg-4-4-3-6 + name: Fatbikes children: [] attributes: + - age_group - color + - gearing_type - material - pattern -- id: sg-2-24-2-3 - name: Sandbags + - target_gender +- id: sg-4-4-3-7 + name: Folding Bikes children: [] attributes: + - age_group - color + - gearing_type - material - pattern -- id: sg-2-24-2-4 - name: Weight Plates + - target_gender +- id: sg-4-4-3-8 + name: Freight Bicycles children: [] attributes: + - age_group - color + - gearing_type - material - pattern -- id: sg-2-24-3 - name: Weight Lifting Belts + - target_gender +- id: sg-4-4-3-9 + name: Hybrid Bikes children: [] attributes: - - accessory_size - age_group - color + - gearing_type + - material - pattern -- id: sg-2-24-4 - name: Weight Lifting Gloves & Hand Supports + - target_gender +- id: sg-4-4-3-10 + name: Mountain Bikes children: [] attributes: - - accessory_size - age_group - color + - gearing_type + - material - pattern - target_gender - - handwear_material -- id: sg-2-24-5 - name: Weight Lifting Machine & Exercise Bench Accessories - children: - - sg-2-24-5-1 - - sg-2-24-5-2 - - sg-2-24-5-3 - attributes: - - color - - pattern -- id: sg-2-24-5-1 - name: Cables +- id: sg-4-4-3-11 + name: Road Bikes children: [] attributes: + - age_group - color + - gearing_type + - material - pattern -- id: sg-2-24-5-2 - name: Handles + - target_gender +- id: sg-4-4-3-12 + name: Tandem Bikes children: [] attributes: + - age_group - color + - gearing_type + - material - pattern -- id: sg-2-24-5-3 - name: Weights + - target_gender +- id: sg-4-4-3-13 + name: Track Bikes children: [] attributes: + - age_group - color + - gearing_type + - material - pattern -- id: sg-2-24-6 - name: Weight Lifting Machines & Racks + - target_gender +- id: sg-4-4-4 + name: Cycling Apparel & Accessories children: - - sg-2-24-6-1 - - sg-2-24-6-2 - - sg-2-24-6-3 - - sg-2-24-6-4 - attributes: - - color - - pattern -- id: sg-2-24-6-1 - name: Power Racks - children: [] + - sg-4-4-4-1 + - sg-4-4-4-2 + - sg-4-4-4-3 + - sg-4-4-4-4 + - sg-4-4-4-5 + - sg-4-4-4-6 + - sg-4-4-4-7 attributes: - color - - j_cup_type - pattern - - pull_up_bar -- id: sg-2-24-6-2 - name: Smith Machines - children: [] +- id: sg-4-4-4-1 + name: Bicycle Cleat Accessories + children: + - sg-4-4-4-1-1 + - sg-4-4-4-1-2 + - sg-4-4-4-1-3 attributes: - color - pattern - - pull_up_bar -- id: sg-2-24-6-3 - name: Weight Lifting Machines with Pulleys +- id: sg-4-4-4-1-1 + name: Bicycle Cleat Bolts children: [] attributes: - color - - j_cup_type + - compatible_bike_type - pattern - - pull_up_bar -- id: sg-2-24-6-4 - name: Weight Lifting Racks +- id: sg-4-4-4-1-2 + name: Bicycle Cleat Covers children: [] attributes: - color - - j_cup_type - - pattern - - pull_up_bar -- id: sg-2-25 - name: Weighted Clothing - children: - - sg-2-25-1 - - sg-2-25-2 - - sg-2-25-3 - attributes: - - color - pattern -- id: sg-2-25-1 - name: Ankle Weights +- id: sg-4-4-4-1-3 + name: Bicycle Cleat Shims & Wedges children: [] attributes: - color - pattern -- id: sg-2-25-2 - name: Weighted Vest Sets +- id: sg-4-4-4-2 + name: Bicycle Cleats children: [] attributes: + - accessory_size - color - pattern -- id: sg-2-25-3 - name: Weighted Vests +- id: sg-4-4-4-3 + name: Bicycle Gloves children: [] attributes: + - accessory_size + - age_group - color + - handwear_material - pattern -- id: sg-2-26 - name: Yoga & Pilates - children: - - sg-2-26-1 - - sg-2-26-2 - - sg-2-26-3 - - sg-2-26-4 - - sg-2-26-5 + - target_gender +- id: sg-4-4-4-4 + name: Bicycle Helmet Parts & Accessories + children: [] attributes: + - accessory_size + - age_group - color - pattern -- id: sg-2-26-1 - name: Pilates Machines - children: - - sg-2-26-1-1 - - sg-2-26-1-2 - - sg-2-26-1-3 +- id: sg-4-4-4-5 + name: Bicycle Helmets + children: [] attributes: + - accessory_size + - age_group - color - pattern -- id: sg-2-26-1-1 - name: Pilates Chairs +- id: sg-4-4-4-6 + name: Bicycle Protective Pads children: [] attributes: + - accessory_size + - age_group - color - pattern -- id: sg-2-26-1-2 - name: Pilates Reformers +- id: sg-4-4-4-7 + name: Bicycle Shoe Covers children: [] attributes: - color + - fabric - pattern -- id: sg-2-26-1-3 - name: Pilates Towers +- id: sg-4-4-5 + name: Tricycle Accessories + children: + - sg-4-4-5-1 + - sg-4-4-5-2 + - sg-4-4-5-3 + attributes: + - color + - pattern +- id: sg-4-4-5-1 + name: Tricycle Baskets children: [] attributes: - color - pattern -- id: sg-2-26-2 - name: Yoga & Pilates Blocks +- id: sg-4-4-5-2 + name: Tricycle Bells children: [] attributes: - color - - material - pattern -- id: sg-2-26-3 - name: Yoga & Pilates Mats +- id: sg-4-4-5-3 + name: Tricycle Flags children: [] attributes: - color - pattern - - exercise_mat_material -- id: sg-2-26-4 - name: Yoga & Pilates Towels +- id: sg-4-4-6 + name: Tricycles children: [] attributes: - - accessory_size + - age_group - color - pattern - - fabric -- id: sg-2-26-5 - name: Yoga Mat Bags & Straps + - target_gender + - tricycle_design + - tricycle_propulsion_type + - wheel_type +- id: sg-4-4-7 + name: Unicycle Accessories children: - - sg-2-26-5-1 - - sg-2-26-5-2 + - sg-4-4-7-1 + - sg-4-4-7-2 attributes: - color - pattern -- id: sg-2-26-5-1 - name: Yoga Mat Bags +- id: sg-4-4-7-1 + name: Unicycle Pedals children: [] attributes: - color - pattern -- id: sg-2-26-5-2 - name: Yoga Mat Straps +- id: sg-4-4-7-2 + name: Unicycle Tires children: [] attributes: - color - pattern -- id: sg-3-1-1-1 - name: Air Hockey Pucks +- id: sg-4-4-8 + name: Unicycles children: [] attributes: - color - material - pattern -- id: sg-3-1-1-2 - name: Air Hockey Pushers - children: [] +- id: sg-4-5 + name: Equestrian + children: + - sg-4-5-1 + - sg-4-5-2 + - sg-4-5-3 + - sg-4-5-4 + - sg-4-5-5 attributes: - color - - material - pattern -- id: sg-3-1-2-1 - name: Air Hockey Table Boards - children: [] +- id: sg-4-5-1 + name: Horse Care + children: + - sg-4-5-1-1 + - sg-4-5-1-2 + - sg-4-5-1-3 + - sg-4-5-1-4 + - sg-4-5-1-5 + - sg-4-5-1-6 + - sg-4-5-1-7 + - sg-4-5-1-8 attributes: - - age_group - color - - material - pattern -- id: sg-3-1-2-2 - name: Air Hockey Table Bolts +- id: sg-4-5-1-1 + name: Horse Blankets & Sheets children: [] attributes: - - age_group - color - material - pattern -- id: sg-3-1-2-3 - name: Air Hockey Table Cables +- id: sg-4-5-1-2 + name: Horse Boots & Leg Wraps children: [] attributes: + - accessory_size - age_group + - boot_type - color - material - pattern -- id: sg-3-1-2-4 - name: Air Hockey Table Clamps - children: [] + - shoe_size + - target_gender +- id: sg-4-5-1-3 + name: Horse Feed + children: + - sg-4-5-1-3-1 attributes: - - age_group + - animal_feed_form - color - - material - pattern -- id: sg-3-1-2-5 - name: Air Hockey Table Feet +- id: sg-4-5-1-3-1 + name: Horse Feed Supplements children: [] attributes: - - age_group + - animal_feed_form - color - - material - pattern -- id: sg-3-2-4-1 - name: Billiard Bridges +- id: sg-4-5-1-4 + name: Horse Fly Masks children: [] attributes: + - accessory_size + - age_group - color - - material - pattern -- id: sg-3-2-4-2 - name: Billiard Cues - children: [] +- id: sg-4-5-1-5 + name: Horse Grooming + children: + - sg-4-5-1-5-1 + - sg-4-5-1-5-2 attributes: - color - - cue_style - - cue_type - - cue_wrap - - joint_style - - material - pattern -- id: sg-3-2-4-3 - name: Billiard Shafts +- id: sg-4-5-1-5-1 + name: Horse Clippers & Trimmers children: [] attributes: - color - - cue_style - - cue_type - - joint_style - - material + - horse_grooming_accessories_included - pattern -- id: sg-3-3-5 - name: Bowling Sets - children: [] +- id: sg-4-5-1-5-2 + name: Horse Grooming Combs, Brushes & Mitts + children: + - sg-4-5-1-5-2-1 + - sg-4-5-1-5-2-2 + - sg-4-5-1-5-2-3 + - sg-4-5-1-5-2-4 + - sg-4-5-1-5-2-5 + - sg-4-5-1-5-2-6 attributes: - - age_group - color - - material - pattern -- id: sg-3-4-2-1 - name: Foosball Table Handles +- id: sg-4-5-1-5-2-1 + name: Horse Grooming Brushes children: [] attributes: - color - pattern -- id: sg-3-4-2-2 - name: Football Table Players +- id: sg-4-5-1-5-2-2 + name: Horse Grooming Combs children: [] attributes: - color - pattern -- id: sg-3-4-2-3 - name: Football Table Rods +- id: sg-4-5-1-5-2-3 + name: Horse Grooming Deshedders children: [] attributes: - color - pattern -- id: sg-3-5-1 - name: Attachable Multi-Game Tables +- id: sg-4-5-1-5-2-4 + name: Horse Grooming Gloves children: [] attributes: - - age_group - color - - games_included - pattern - - furniture_fixture_material -- id: sg-3-5-2 - name: Flip Multi-Game Tables +- id: sg-4-5-1-5-2-5 + name: Horse Grooming Groomers children: [] attributes: - - age_group - color - - games_included - pattern - - furniture_fixture_material -- id: sg-3-5-3 - name: Hybrid Multi-Game Tables +- id: sg-4-5-1-5-2-6 + name: Horse Grooming Trimming Knives children: [] attributes: - - age_group - color - - games_included - pattern - - furniture_fixture_material -- id: sg-3-6-2-1 - name: Ping Pong Nets +- id: sg-4-5-1-6 + name: Horse Treats children: [] attributes: - color - - mounting_type - pattern -- id: sg-3-6-2-2 - name: Ping Pong Posts +- id: sg-4-5-1-7 + name: Horse Vitamins & Supplements children: [] attributes: - color - - mounting_type - pattern -- id: sg-3-6-3-1 - name: Ping Pong Paddle Cases +- id: sg-4-5-1-8 + name: Horse Wormers children: [] attributes: - color - - frame_color - pattern - - recommended_skill_level -- id: sg-3-6-7 - name: Ping Pong Table Covers - children: [] +- id: sg-4-5-2 + name: Horse Tack + children: + - sg-4-5-2-1 + - sg-4-5-2-2 + - sg-4-5-2-3 + - sg-4-5-2-4 + - sg-4-5-2-5 + - sg-4-5-2-6 + - sg-4-5-2-7 + - sg-4-5-2-8 + - sg-4-5-2-9 attributes: - color - pattern -- id: sg-4-1-1-2-1 - name: Canoe Deck Bags - children: [] +- id: sg-4-5-2-1 + name: Bridle Bits + children: + - sg-4-5-2-1-1 + - sg-4-5-2-1-2 + - sg-4-5-2-1-3 attributes: - - age_group - color - pattern -- id: sg-4-1-1-2-2 - name: Canoe Storage Bags +- id: sg-4-5-2-1-1 + name: Bridle Bit Guards children: [] attributes: - color - pattern -- id: sg-4-1-1-3-1 - name: Freestyle Canoes +- id: sg-4-5-2-1-2 + name: Bridle Curb Bits children: [] attributes: - color - - material - pattern -- id: sg-4-1-1-3-2 - name: Marathon Canoes +- id: sg-4-5-2-1-3 + name: Bridle Snaffle Bits children: [] attributes: - color - - material - pattern -- id: sg-4-1-1-3-3 - name: Sprint Canoes - children: [] +- id: sg-4-5-2-2 + name: Bridles + children: + - sg-4-5-2-2-1 + - sg-4-5-2-2-2 attributes: - color - - material + - horse_category - pattern -- id: sg-4-1-1-3-4 - name: Square-Stern Canoes +- id: sg-4-5-2-2-1 + name: Bridle Replacement Parts children: [] attributes: - color - - material + - horse_category - pattern -- id: sg-4-1-1-3-5 - name: Touring Canoes +- id: sg-4-5-2-2-2 + name: Headstalls children: [] attributes: - color - - material + - horse_category - pattern -- id: sg-4-1-1-3-6 - name: Whitewater Canoes +- id: sg-4-5-2-3 + name: Cinches children: [] attributes: - color - material - pattern -- id: sg-4-1-1-4-1 - name: Kayak Deck Bags +- id: sg-4-5-2-4 + name: Horse Halters children: [] attributes: + - accessory_size - color - pattern -- id: sg-4-1-1-4-2 - name: Kayak Sails +- id: sg-4-5-2-5 + name: Horse Harnesses children: [] attributes: + - accessory_size - color - pattern -- id: sg-4-1-1-4-3 - name: Kayak Storage Bags +- id: sg-4-5-2-6 + name: Horse Leads children: [] attributes: - color - pattern -- id: sg-4-1-1-5-1 - name: Creekboats +- id: sg-4-5-2-7 + name: Reins children: [] attributes: - color + - horse_category - material - pattern - - watercraft_propulsion_type -- id: sg-4-1-1-5-2 - name: Flatwater Kayaks +- id: sg-4-5-2-8 + name: Saddles children: [] attributes: - color - material - pattern - - watercraft_propulsion_type -- id: sg-4-1-1-5-3 - name: Folding Kayaks +- id: sg-4-5-2-9 + name: Stirrups children: [] attributes: + - accessory_size - color - - material - pattern - - watercraft_propulsion_type -- id: sg-4-1-1-5-4 - name: Inflatable Kayaks - children: [] +- id: sg-4-5-3 + name: Horse Tack Accessories + children: + - sg-4-5-3-1 + - sg-4-5-3-2 attributes: - color - - material - pattern - - watercraft_propulsion_type -- id: sg-4-1-1-5-5 - name: Playboats +- id: sg-4-5-3-1 + name: Horse Tack Boxes children: [] attributes: - color - - material - pattern -- id: sg-4-1-1-5-6 - name: Sit-On-Top Kayaks +- id: sg-4-5-3-2 + name: Saddle Accessories + children: + - sg-4-5-3-2-1 + - sg-4-5-3-2-2 + - sg-4-5-3-2-3 + - sg-4-5-3-2-4 + attributes: + - color + - pattern +- id: sg-4-5-3-2-1 + name: Saddle Bags & Panniers children: [] attributes: - color - - material - pattern - - watercraft_propulsion_type -- id: sg-4-1-1-5-7 - name: Slalom Kayaks +- id: sg-4-5-3-2-2 + name: Saddle Covers & Cases children: [] attributes: - color - - material - pattern - - watercraft_propulsion_type -- id: sg-4-1-1-5-8 - name: Surf Kayaks + - shape +- id: sg-4-5-3-2-3 + name: Saddle Pads & Blankets children: [] attributes: + - accessory_size + - age_group - color - - material - pattern - - watercraft_propulsion_type -- id: sg-4-1-1-5-9 - name: Whitewater Kayaks +- id: sg-4-5-3-2-4 + name: Saddle Racks children: [] attributes: - color - material - pattern - - watercraft_propulsion_type -- id: sg-4-1-2-2-1 - name: Life Jacket Lights - children: [] +- id: sg-4-5-4 + name: Horse Vaulting Accessories + children: + - sg-4-5-4-1 + - sg-4-5-4-2 + - sg-4-5-4-3 attributes: - color - pattern -- id: sg-4-1-2-2-2 - name: Life Jacket Storage Bags +- id: sg-4-5-4-1 + name: Vaulting Covers children: [] attributes: - color + - fabric - pattern -- id: sg-4-1-2-2-3 - name: Life Jacket Whistles +- id: sg-4-5-4-2 + name: Vaulting Reins children: [] attributes: - color + - material - pattern -- id: sg-4-1-2-6-2-1 - name: Wetsuit Boots +- id: sg-4-5-4-3 + name: Vaulting Supports children: [] attributes: - - accessory_size - - age_group - color + - material - pattern - - shoe_size - - target_gender - - handwear_material -- id: sg-4-1-2-6-2-2 - name: Wetsuit Gloves - children: [] +- id: sg-4-5-5 + name: Riding Apparel & Accessories + children: + - sg-4-5-5-1 + - sg-4-5-5-2 + - sg-4-5-5-3 + - sg-4-5-5-4 attributes: - - accessory_size - - age_group - color - pattern - - shoe_size - - target_gender - - handwear_material -- id: sg-4-1-2-6-2-3 - name: Wetsuit Hoods +- id: sg-4-5-5-1 + name: Equestrian Gloves children: [] attributes: - accessory_size - age_group - color + - handwear_material - pattern - - shoe_size - target_gender - - handwear_material -- id: sg-4-1-2-7-1 - name: Full Wetsuits +- id: sg-4-5-5-2 + name: Equestrian Helmets children: [] attributes: - accessory_size - age_group - color - - material - pattern - - target_gender -- id: sg-4-1-2-7-2 - name: Shorty Wetsuits +- id: sg-4-5-5-3 + name: Riding Crops & Whips children: [] attributes: - - accessory_size - - age_group - color - - material - pattern - - target_gender -- id: sg-4-1-3-4-1 - name: Paddle Fins +- id: sg-4-5-5-4 + name: Riding Pants children: [] attributes: - accessory_size + - age_group - color - - fin_pocket_type + - material - pattern - - fin_material -- id: sg-4-1-3-4-2 - name: Split Fins - children: [] + - target_gender +- id: sg-4-6 + name: Fishing + children: + - sg-4-6-1 + - sg-4-6-2 + - sg-4-6-3 + - sg-4-6-4 + - sg-4-6-5 + - sg-4-6-6 + - sg-4-6-7 + - sg-4-6-8 + - sg-4-6-9 + - sg-4-6-10 + - sg-4-6-11 + - sg-4-6-12 + - sg-4-6-13 + - sg-4-6-14 + - sg-4-6-15 + - sg-4-6-16 + - sg-4-6-17 attributes: - - accessory_size - color - - fin_pocket_type - pattern - - fin_material -- id: sg-4-1-3-7-1 - name: Diving Knives - children: [] +- id: sg-4-6-1 + name: Bite Alarms + children: + - sg-4-6-1-1 + - sg-4-6-1-2 + - sg-4-6-1-3 attributes: - color - pattern - - edge_type -- id: sg-4-1-3-7-2 - name: Diving Shears +- id: sg-4-6-1-1 + name: Fishing Bite Alarms children: [] attributes: - color - pattern - - edge_type -- id: sg-4-1-3-9-1 - name: Dry Snorkels +- id: sg-4-6-1-2 + name: Fishing Bite Indicators children: [] attributes: - - age_group - color - pattern - - snorkel_shape -- id: sg-4-1-3-9-2 - name: Semi-Dry Snorkels +- id: sg-4-6-1-3 + name: Fishing Chain Hangers children: [] attributes: - - age_group - color - pattern - - snorkel_shape -- id: sg-4-1-3-9-3 - name: Traditional Snorkels - children: [] +- id: sg-4-6-2 + name: Fishing & Hunting Waders + children: + - sg-4-6-2-1 + - sg-4-6-2-2 + - sg-4-6-2-3 attributes: - - age_group + - accessory_size + - clothing_type - color - pattern - - snorkel_shape -- id: sg-4-1-4-2-1 - name: Kiteboard Fins + - target_gender +- id: sg-4-6-2-1 + name: Fishing Waders children: [] attributes: + - accessory_size + - clothing_type - color - pattern -- id: sg-4-1-4-2-2 - name: Kiteboard Footstraps + - target_gender +- id: sg-4-6-2-2 + name: Hunting Waders children: [] attributes: + - accessory_size + - clothing_type - color - pattern -- id: sg-4-1-4-2-3 - name: Kiteboard Handles + - target_gender +- id: sg-4-6-2-3 + name: Wader Repair Kits children: [] attributes: + - accessory_size + - clothing_type - color - pattern -- id: sg-4-1-4-2-4 - name: Kiteboard Lines + - target_gender +- id: sg-4-6-3 + name: Fishing Bait & Chum Containers children: [] attributes: - color - pattern -- id: sg-4-1-5-8-1 - name: Longboard Surfboards +- id: sg-4-6-4 + name: Fishing Gaffs children: [] attributes: - - board_concave_shape - - board_profile - color - - material - pattern -- id: sg-4-1-5-8-2 - name: Shortboard Surfboards - children: [] +- id: sg-4-6-5 + name: Fishing Hook Removal Tools + children: + - sg-4-6-5-1 + - sg-4-6-5-2 + - sg-4-6-5-3 + - sg-4-6-5-4 + - sg-4-6-5-5 + - sg-4-6-5-6 + - sg-4-6-5-7 + - sg-4-6-5-8 + - sg-4-6-5-9 + - sg-4-6-5-10 + - sg-4-6-5-11 + - sg-4-6-5-12 + - sg-4-6-5-13 + - sg-4-6-5-14 + - sg-4-6-5-15 + - sg-4-6-5-16 + - sg-4-6-5-17 + - sg-4-6-5-18 + - sg-4-6-5-19 + - sg-4-6-5-20 attributes: - - board_concave_shape - - board_profile - color - material - pattern -- id: sg-4-1-5-8-3 - name: Stand Up Paddle Boards +- id: sg-4-6-5-1 + name: All-Purpose Needle Sets children: [] attributes: - - board_concave_shape - - board_profile - color - - material + - needle_material - pattern -- id: sg-4-1-5-8-4 - name: Waveskis +- id: sg-4-6-5-2 + name: Bait Drills children: [] attributes: - - board_concave_shape - - board_profile - color - material - pattern -- id: sg-4-1-6-1-1 - name: Swim Armbands - children: [] - attributes: - - age_group - - color - - pattern -- id: sg-4-1-6-1-2 - name: Swim Boards +- id: sg-4-6-5-3 + name: Bait Guns children: [] attributes: - - age_group - color + - material - pattern -- id: sg-4-1-6-1-3 - name: Swim Buoys +- id: sg-4-6-5-4 + name: Boilie Drills children: [] attributes: - - age_group - color + - material - pattern -- id: sg-4-1-6-1-4 - name: Swim Discs +- id: sg-4-6-5-5 + name: Boilie Hair Extenders children: [] attributes: - - age_group - color + - material - pattern -- id: sg-4-1-6-1-5 - name: Swim Fins +- id: sg-4-6-5-6 + name: Boilie Rolling Tables children: [] attributes: - - age_group - color + - material - pattern -- id: sg-4-1-6-1-6 - name: Swim Kickboards +- id: sg-4-6-5-7 + name: Boilie Stop Caps children: [] attributes: - - age_group - color + - material - pattern -- id: sg-4-1-6-1-7 - name: Swim Rings +- id: sg-4-6-5-8 + name: Boilie Stops children: [] attributes: - - age_group - color + - material - pattern -- id: sg-4-1-6-1-8 - name: Swim Seats +- id: sg-4-6-5-9 + name: Coating Removal Tools children: [] attributes: - - age_group - color + - material - pattern -- id: sg-4-1-6-1-9 - name: Swim Trainers +- id: sg-4-6-5-10 + name: Corn Boilie Stops children: [] attributes: - - age_group - color + - material - pattern -- id: sg-4-1-6-1-10 - name: Swim Vests +- id: sg-4-6-5-11 + name: Cutting Pliers children: [] attributes: - - age_group - color + - material - pattern -- id: sg-4-1-6-8-1 - name: Goggles Lenses +- id: sg-4-6-5-12 + name: Fine Lip Close Needles children: [] attributes: - color + - needle_material - pattern -- id: sg-4-1-6-8-2 - name: Swim Goggle & Mask Cases +- id: sg-4-6-5-13 + name: Fly Tying Scissors children: [] attributes: - color + - material - pattern -- id: sg-4-1-7-4-2-1 - name: Wakeboard Bindings +- id: sg-4-6-5-14 + name: Fly Tying Tool Sets children: [] attributes: - color + - material - pattern -- id: sg-4-1-7-4-2-2 - name: Wakeboard Fins +- id: sg-4-6-5-15 + name: Hair Extender Stops children: [] attributes: - color + - material - pattern -- id: sg-4-1-7-4-2-3 - name: Wakeboard Handles +- id: sg-4-6-5-16 + name: Heavy Lip Close Needles children: [] attributes: - color + - needle_material - pattern -- id: sg-4-1-7-4-2-4 - name: Wakeboard Ropes +- id: sg-4-6-5-17 + name: Multi Pull Tools children: [] attributes: - color - material - pattern -- id: sg-4-1-7-5-4-1 - name: Combo Water Skis +- id: sg-4-6-5-18 + name: Pellet Stops children: [] attributes: - - age_group - color + - material - pattern - - rocker_type - - ski_construction -- id: sg-4-1-7-5-4-2 - name: Slalom Water Skis +- id: sg-4-6-5-19 + name: Stringer Needles children: [] attributes: - - age_group - color + - needle_material - pattern - - rocker_type - - ski_construction -- id: sg-4-1-7-5-4-3 - name: Trick Water Skis +- id: sg-4-6-5-20 + name: Throwing Sticks children: [] attributes: - - age_group - color + - material - pattern - - rocker_type - - ski_construction -- id: sg-4-2-1-1-1 - name: Air Mattress & Sleeping Pad Pumps - children: [] +- id: sg-4-6-6 + name: Fishing Lines & Leaders + children: + - sg-4-6-6-1 + - sg-4-6-6-2 + - sg-4-6-6-3 + - sg-4-6-6-4 attributes: - - age_group - color - material - pattern -- id: sg-4-2-1-1-2 - name: Air Mattress & Sleeping Pad Repair Kits +- id: sg-4-6-6-1 + name: Fishing Braids children: [] attributes: - - age_group - color - material - pattern -- id: sg-4-2-2-1 - name: Camping Cups +- id: sg-4-6-6-2 + name: Fishing Fluorocarbons children: [] attributes: - color + - material - pattern - - certifications_and_standards -- id: sg-4-2-2-2 - name: Camping Plates +- id: sg-4-6-6-3 + name: Fishing Monofilaments children: [] attributes: - color + - material - pattern - - certifications_and_standards -- id: sg-4-2-2-3 - name: Camping Pots +- id: sg-4-6-6-4 + name: Fishing Wires children: [] attributes: - color + - fishing_wire_material - pattern - - certifications_and_standards -- id: sg-4-2-2-4 - name: Camping Utensils +- id: sg-4-6-7 + name: Fishing Nets children: [] attributes: - color + - hoop_shape - pattern - - certifications_and_standards -- id: sg-4-2-4-1 - name: Camping Clips - children: [] +- id: sg-4-6-8 + name: Fishing Reel Accessories + children: + - sg-4-6-8-1 + - sg-4-6-8-2 + - sg-4-6-8-3 attributes: - color - pattern -- id: sg-4-2-4-2 - name: Camping Oil +- id: sg-4-6-8-1 + name: Fishing Reel Bags & Cases children: [] attributes: - color - pattern -- id: sg-4-2-4-3 - name: Camping Pens +- id: sg-4-6-8-2 + name: Fishing Reel Lubricants children: [] attributes: - color - pattern -- id: sg-4-2-4-4 - name: Camping Sandbags +- id: sg-4-6-8-3 + name: Fishing Reel Replacement Spools children: [] attributes: + - angling_style - color - - pattern -- id: sg-4-2-4-5 - name: Camping Toothpicks - children: [] + - pattern +- id: sg-4-6-9 + name: Fishing Reels + children: + - sg-4-6-9-1 + - sg-4-6-9-2 + - sg-4-6-9-3 + - sg-4-6-9-4 + - sg-4-6-9-5 + - sg-4-6-9-6 + - sg-4-6-9-7 attributes: + - body_material - color + - gear_ratio - pattern -- id: sg-4-2-4-6 - name: Camping Tweezers + - spool_material +- id: sg-4-6-9-1 + name: Baitcasting Fishing Reels children: [] attributes: + - body_material - color + - gear_ratio - pattern -- id: sg-4-2-4-7-1 - name: Locking Blade Knives + - spool_material +- id: sg-4-6-9-2 + name: Centerpin Fishing Reels children: [] attributes: + - body_material - color - - knife_type + - gear_ratio - pattern - - hunting_survival_knife_design -- id: sg-4-2-4-7-2 - name: Peasant Knives + - spool_material +- id: sg-4-6-9-3 + name: Fly Fishing Reels children: [] attributes: + - body_material - color - - knife_type + - gear_ratio - pattern - - hunting_survival_knife_design -- id: sg-4-2-4-7-3 - name: Slip Joint Knives + - spool_material +- id: sg-4-6-9-4 + name: Spincast Fishing Reels children: [] attributes: + - body_material - color - - knife_type + - gear_ratio - pattern - - hunting_survival_knife_design -- id: sg-4-2-7-1 - name: Hiking Pole Baskets + - spool_material +- id: sg-4-6-9-5 + name: Spinning Fishing Reels children: [] attributes: + - body_material - color + - gear_ratio - pattern -- id: sg-4-2-7-2 - name: Hiking Pole Guard Kits + - spool_material +- id: sg-4-6-9-6 + name: Triggerspin Fishing Reels children: [] attributes: + - body_material - color + - gear_ratio - pattern -- id: sg-4-2-7-3 - name: Hiking Pole Hand Guards + - spool_material +- id: sg-4-6-9-7 + name: Trolling Fishing Reels children: [] attributes: + - body_material - color + - gear_ratio - pattern -- id: sg-4-2-7-4 - name: Hiking Pole Thumb Guards - children: [] + - spool_material +- id: sg-4-6-10 + name: Fishing Rod Accessories + children: + - sg-4-6-10-1 + - sg-4-6-10-2 attributes: - color - pattern -- id: sg-4-2-7-5 - name: Hiking Pole Thumb Straps +- id: sg-4-6-10-1 + name: Fishing Rod Bags & Cases children: [] attributes: - color - pattern -- id: sg-4-2-7-6 - name: Hiking Pole Tips +- id: sg-4-6-10-2 + name: Fishing Rod Holders & Storage Racks children: [] attributes: - color + - material - pattern -- id: sg-4-2-7-7 - name: Hiking Pole Wrist Straps - children: [] +- id: sg-4-6-11 + name: Fishing Rods + children: + - sg-4-6-11-1 + - sg-4-6-11-2 + - sg-4-6-11-3 + - sg-4-6-11-4 + - sg-4-6-11-5 + - sg-4-6-11-6 + - sg-4-6-11-7 + - sg-4-6-11-8 + - sg-4-6-11-9 + - sg-4-6-11-10 + - sg-4-6-11-11 + - sg-4-6-11-12 attributes: + - butt_cap_material - color + - fishing_rod_action + - fishing_rod_power + - handle_material - pattern -- id: sg-4-2-9-1 - name: Box Mosquito Nets + - rod_material +- id: sg-4-6-11-1 + name: Baitcasting Fishing Rods children: [] attributes: + - butt_cap_material - color + - fishing_rod_action + - fishing_rod_power + - handle_material - pattern - - net_material -- id: sg-4-2-9-2 - name: Pyramid Mosquito Nets + - rod_material +- id: sg-4-6-11-2 + name: Crab Fishing Rods children: [] attributes: + - butt_cap_material - color + - fishing_rod_action + - fishing_rod_power + - handle_material - pattern - - net_material -- id: sg-4-2-10-1 - name: Electronic Navigational Compasses + - rod_material +- id: sg-4-6-11-3 + name: Fly Fishing Rods children: [] attributes: + - butt_cap_material - color - - material + - fishing_rod_action + - fishing_rod_power + - handle_material - pattern - - compass_style -- id: sg-4-2-10-2 - name: Gyrocompasses + - rod_material +- id: sg-4-6-11-4 + name: Ice Fishing Rods children: [] attributes: + - butt_cap_material - color - - material + - fishing_rod_action + - fishing_rod_power + - handle_material - pattern - - compass_style -- id: sg-4-2-10-3 - name: Magnetic Navigational Compasses + - rod_material +- id: sg-4-6-11-5 + name: Screw Fishing Rods children: [] attributes: + - butt_cap_material - color - - material + - fishing_rod_action + - fishing_rod_power + - handle_material - pattern - - compass_style -- id: sg-4-2-11-1-1 - name: Portable Showers + - rod_material +- id: sg-4-6-11-6 + name: Spincasting Fishing Rods children: [] attributes: + - butt_cap_material - color + - fishing_rod_action + - fishing_rod_power + - handle_material - pattern -- id: sg-4-2-11-1-2 - name: Privacy Enclosures + - rod_material +- id: sg-4-6-11-7 + name: Spinning Fishing Rods children: [] attributes: + - butt_cap_material - color + - fishing_rod_action + - fishing_rod_power + - handle_material - pattern -- id: sg-4-2-11-1-3 - name: Privacy Screens + - rod_material +- id: sg-4-6-11-8 + name: Surf Fishing Rods children: [] attributes: + - butt_cap_material - color + - fishing_rod_action + - fishing_rod_power + - handle_material - pattern -- id: sg-4-2-11-2-1 - name: Female Urination Devices + - rod_material +- id: sg-4-6-11-9 + name: Telescopic Fishing Rods children: [] attributes: + - butt_cap_material - color + - fishing_rod_action + - fishing_rod_power + - handle_material - pattern -- id: sg-4-2-11-2-2 - name: Male Urination Devices + - rod_material +- id: sg-4-6-11-10 + name: Tenkara Fishing Rods children: [] attributes: + - butt_cap_material - color + - fishing_rod_action + - fishing_rod_power + - handle_material - pattern -- id: sg-4-2-11-2-3 - name: Portable Camping Toilets + - rod_material +- id: sg-4-6-11-11 + name: Trolling Fishing Rods children: [] attributes: + - butt_cap_material - color + - fishing_rod_action + - fishing_rod_power + - handle_material - pattern -- id: sg-4-2-12-1 - name: Water Filter Pumps + - rod_material +- id: sg-4-6-11-12 + name: Ultra-Light Fishing Rods children: [] attributes: + - butt_cap_material - color + - fishing_rod_action + - fishing_rod_power + - handle_material - pattern -- id: sg-4-2-12-2 - name: Water Purifier Tablets + - rod_material +- id: sg-4-6-12 + name: Fishing Spears children: [] attributes: - color - pattern -- id: sg-4-2-16-3-1 - name: Tent Poles - children: [] + - tip_type +- id: sg-4-6-13 + name: Fishing Tackle + children: + - sg-4-6-13-1 + - sg-4-6-13-2 + - sg-4-6-13-3 + - sg-4-6-13-4 + - sg-4-6-13-5 attributes: - color - - material - pattern -- id: sg-4-2-16-3-2 - name: Tent Stakes - children: [] +- id: sg-4-6-13-1 + name: Fishing Baits & Lures + children: + - sg-4-6-13-1-1 + - sg-4-6-13-1-2 + - sg-4-6-13-1-3 + - sg-4-6-13-1-4 + - sg-4-6-13-1-5 + - sg-4-6-13-1-6 + - sg-4-6-13-1-7 + - sg-4-6-13-1-8 + - sg-4-6-13-1-9 + - sg-4-6-13-1-10 + - sg-4-6-13-1-11 attributes: - color - - material - pattern -- id: sg-4-2-17-1 - name: Bungalows +- id: sg-4-6-13-1-1 + name: Artificial Fish Decoys children: [] attributes: - color + - material - pattern - - suitable_for_camping_activity -- id: sg-4-2-17-2 - name: Domes +- id: sg-4-6-13-1-2 + name: Artificial Fishing Flies children: [] attributes: - color + - material - pattern - - suitable_for_camping_activity -- id: sg-4-2-17-3 - name: Group Tents +- id: sg-4-6-13-1-3 + name: Artificial Fishing Jigs children: [] attributes: - color + - material - pattern -- id: sg-4-2-17-4 - name: Igloo Tents +- id: sg-4-6-13-1-4 + name: Artificial Fishing Plugs children: [] attributes: - color + - material - pattern -- id: sg-4-2-17-5 - name: Pop-Up Tents +- id: sg-4-6-13-1-5 + name: Artificial Fishing Poppers children: [] attributes: - color + - material - pattern -- id: sg-4-2-17-6 - name: Pyramid Tents +- id: sg-4-6-13-1-6 + name: Artificial Fishing Spinners children: [] attributes: - color + - material - pattern -- id: sg-4-2-17-7 - name: Ridge Tents +- id: sg-4-6-13-1-7 + name: Artificial Fishing Spoons children: [] attributes: - color + - material - pattern -- id: sg-4-2-17-8 - name: Sail Tents +- id: sg-4-6-13-1-8 + name: Artificial Fishing Swimbait children: [] attributes: - color + - material - pattern -- id: sg-4-2-17-9 - name: Tunnel Tents +- id: sg-4-6-13-1-9 + name: Artificial Fishing Wobblers children: [] attributes: - color + - material - pattern -- id: sg-4-2-17-10 - name: Vis-A-Vis Tents +- id: sg-4-6-13-1-10 + name: Artificial Soft Plastic Baits children: [] attributes: - color + - material - pattern -- id: sg-4-3-1-1 - name: Figure 8 Devices +- id: sg-4-6-13-1-11 + name: Fishing Tackle Kits children: [] attributes: - color - material - pattern -- id: sg-4-3-1-2 - name: Sticht Plates +- id: sg-4-6-13-2 + name: Fishing Floats children: [] attributes: - color - material - pattern -- id: sg-4-3-1-3 - name: Tubular Belay Devices - children: [] +- id: sg-4-6-13-3 + name: Fishing Hooks + children: + - sg-4-6-13-3-1 + - sg-4-6-13-3-2 attributes: - color - - material - pattern -- id: sg-4-3-7 - name: Climbing Double Lanyards +- id: sg-4-6-13-3-1 + name: Double & Triple Fishing Hooks children: [] attributes: - color - - material - pattern -- id: sg-4-3-12-1 - name: Climbing Daisy Chains +- id: sg-4-6-13-3-2 + name: Single Fishing Hooks children: [] attributes: - color - - material - pattern -- id: sg-4-3-12-2 - name: Climbing Slings - children: [] +- id: sg-4-6-13-4 + name: Fishing Sinkers + children: + - sg-4-6-13-4-1 + - sg-4-6-13-4-2 + - sg-4-6-13-4-3 + - sg-4-6-13-4-4 + - sg-4-6-13-4-5 + - sg-4-6-13-4-6 attributes: - color - - material + - sinker_material - pattern -- id: sg-4-3-13-1 - name: Ice Climbing Axes +- id: sg-4-6-13-4-1 + name: Fishing Banks children: [] attributes: - color + - sinker_material - pattern -- id: sg-4-3-13-2 - name: Ice Climbing Crampons +- id: sg-4-6-13-4-2 + name: Fishing Barrels children: [] attributes: - color + - sinker_material - pattern -- id: sg-4-3-13-3 - name: Ice Climbing Screwdrivers +- id: sg-4-6-13-4-3 + name: Fishing Bullets children: [] attributes: - color + - sinker_material - pattern -- id: sg-4-4-1-1-1 - name: Bicycle Bags +- id: sg-4-6-13-4-4 + name: Fishing Dipseys children: [] attributes: - color - - compatible_bike_type + - sinker_material - pattern - - vehicle_placement - - bag_case_material -- id: sg-4-4-1-1-2 - name: Bicycle Panniers +- id: sg-4-6-13-4-5 + name: Fishing Pyramids children: [] attributes: - color - - compatible_bike_type + - sinker_material - pattern - - vehicle_placement - - bag_case_material -- id: sg-4-4-1-1-3 - name: Bicycle Top Cases +- id: sg-4-6-13-4-6 + name: Fishing Split-Shots children: [] attributes: - color - - compatible_bike_type + - sinker_material - pattern - - vehicle_placement - - bag_case_material -- id: sg-4-4-1-4-1 - name: Bicycle Bottle Cages +- id: sg-4-6-13-5 + name: Fishing Snaps & Swivels children: [] attributes: + - accessory_size - color - - compatible_bike_type - pattern -- id: sg-4-4-1-4-2 - name: Bicycle Storage Cages +- id: sg-4-6-14 + name: Fishing Traps children: [] attributes: - color - - compatible_bike_type + - material - pattern -- id: sg-4-4-1-5 - name: Bicycle Child Seat Accessories & Parts - children: [] +- id: sg-4-6-15 + name: Fly Tying Materials + children: + - sg-4-6-15-1 + - sg-4-6-15-2 attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-1-7-1 - name: Bicycle Computer Batteries +- id: sg-4-6-15-1 + name: Fishing Beads children: [] attributes: - color - - compatible_bike_type + - material - pattern -- id: sg-4-4-1-7-2 - name: Bicycle Computer Cadence Sensors +- id: sg-4-6-15-2 + name: Fishing Yarn children: [] attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-1-7-3 - name: Bicycle Computer Cases +- id: sg-4-6-16 + name: Live Bait children: [] attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-1-7-4 - name: Bicycle Computer Mounts +- id: sg-4-6-17 + name: Tackle Bags & Boxes children: [] attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-1-7-5 - name: Bicycle Computer RPM Sensors - children: [] +- id: sg-4-7 + name: Golf + children: + - sg-4-7-1 + - sg-4-7-2 + - sg-4-7-3 + - sg-4-7-4 + - sg-4-7-5 + - sg-4-7-6 + - sg-4-7-7 + - sg-4-7-8 + - sg-4-7-9 + - sg-4-7-10 + - sg-4-7-11 + - sg-4-7-12 + - sg-4-7-13 + - sg-4-7-14 attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-1-7-6 - name: Bicycle Computer Transmitters +- id: sg-4-7-1 + name: Divot Tools children: [] attributes: - color - - compatible_bike_type + - material - pattern -- id: sg-4-4-1-13-1 - name: Bicycle Cable Locks +- id: sg-4-7-2 + name: Golf Accessory Sets children: [] attributes: - color - - compatible_bike_type + - golf_equipment_included + - material - pattern -- id: sg-4-4-1-13-2 - name: Bicycle Chain Locks - children: [] +- id: sg-4-7-3 + name: Golf Bag Accessories + children: + - sg-4-7-3-1 + - sg-4-7-3-2 attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-1-13-3 - name: Bicycle Disc Locks +- id: sg-4-7-3-1 + name: Golf Bag Carts children: [] attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-1-13-4 - name: Bicycle Folding Locks + - power_source +- id: sg-4-7-3-2 + name: Golf Bag Covers & Cases children: [] attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-1-13-5 - name: Bicycle Ground Anchors +- id: sg-4-7-4 + name: Golf Bags children: [] attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-1-13-6 - name: Bicycle Locking Skewers +- id: sg-4-7-5 + name: Golf Ball Markers children: [] attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-1-13-7 - name: Bicycle Ring Locks +- id: sg-4-7-6 + name: Golf Balls children: [] attributes: - color - - compatible_bike_type + - golf_ball_type + - material - pattern -- id: sg-4-4-1-13-8 - name: Bicycle U-Locks - children: [] +- id: sg-4-7-7 + name: Golf Club Parts & Accessories + children: + - sg-4-7-7-1 + - sg-4-7-7-2 + - sg-4-7-7-3 attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-1-13-9 - name: Bicycle Wheel Locks +- id: sg-4-7-7-1 + name: Golf Club Grips children: [] attributes: + - club_subset + - club_type - color - - compatible_bike_type + - hand_side + - material - pattern -- id: sg-4-4-1-13-10 - name: Bicycle Zip Ties + - shaft_flex +- id: sg-4-7-7-2 + name: Golf Club Headcovers children: [] attributes: - color - - compatible_bike_type + - material - pattern -- id: sg-4-4-1-20-1 - name: Bicycle Tire Levers +- id: sg-4-7-7-3 + name: Golf Club Shafts children: [] attributes: + - club_subset + - club_type - color - - compatible_bike_type + - hand_side + - material - pattern -- id: sg-4-4-1-20-2 - name: Bicycle Tire Repair Kits + - shaft_flex +- id: sg-4-7-8 + name: Golf Club Sets children: [] attributes: + - club_subset + - club_type - color - - compatible_bike_type + - hand_side + - material - pattern -- id: sg-4-4-1-20-3 - name: Bicycle Tire Repair Patches + - shaft_flex +- id: sg-4-7-9 + name: Golf Clubs children: [] attributes: + - club_subset + - club_type - color - - compatible_bike_type + - hand_side + - material - pattern -- id: sg-4-4-1-20-4 - name: Bicycle Tire Repair Stands + - shaft_flex +- id: sg-4-7-10 + name: Golf Flags children: [] attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-1-20-5 - name: Bicycle Tire Sealants +- id: sg-4-7-11 + name: Golf Gloves children: [] attributes: + - accessory_size + - age_group - color - - compatible_bike_type + - handwear_material - pattern -- id: sg-4-4-1-22-1 - name: Bicycle Chain Tools + - target_gender +- id: sg-4-7-12 + name: Golf Tees children: [] attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-1-22-2 - name: Bicycle Multi-Tools +- id: sg-4-7-13 + name: Golf Towels children: [] attributes: + - accessory_size - color - - compatible_bike_type + - fabric - pattern -- id: sg-4-4-1-24-1 - name: Fluid Bicycle Trainers - children: [] +- id: sg-4-7-14 + name: Golf Training Aids + children: + - sg-4-7-14-1 + - sg-4-7-14-2 + - sg-4-7-14-3 + - sg-4-7-14-4 attributes: + - age_group - color - - compatible_bike_type - pattern -- id: sg-4-4-1-24-2 - name: Magnetic Bicycle Trainers +- id: sg-4-7-14-1 + name: Golf Putt Checkers children: [] attributes: + - age_group - color - - compatible_bike_type - pattern -- id: sg-4-4-1-24-3 - name: Roller Bicycle Trainers +- id: sg-4-7-14-2 + name: Golf Putting Mats children: [] attributes: + - age_group - color - - compatible_bike_type - pattern -- id: sg-4-4-1-24-4 - name: Wind Bicycle Trainers +- id: sg-4-7-14-3 + name: Golf Putting Partners children: [] attributes: + - age_group - color - - compatible_bike_type - pattern -- id: sg-4-4-2-4-2-1 - name: Bicycle Cassettes +- id: sg-4-7-14-4 + name: Golf Swing Trainers children: [] attributes: + - age_group - color - - compatible_bike_type - pattern -- id: sg-4-4-2-4-2-2 - name: Bicycle Freewheels - children: [] +- id: sg-4-8 + name: Hang Gliding & Skydiving + children: + - sg-4-8-1 + - sg-4-8-2 + - sg-4-8-3 attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-2-16-1 - name: Bicycle Cable Ends +- id: sg-4-8-1 + name: Air Suits children: [] attributes: + - accessory_size + - age_group - color - - compatible_bike_type + - material - pattern -- id: sg-4-4-2-16-2 - name: Bicycle Chain Links + - target_gender +- id: sg-4-8-2 + name: Hang Gliders children: [] attributes: - color - - compatible_bike_type - pattern -- id: sg-4-4-2-16-3 - name: Bicycle Spoke Nipples + - recommended_skill_level +- id: sg-4-8-3 + name: Parachutes children: [] attributes: - color - - compatible_bike_type + - parachuting_activity - pattern -- id: sg-4-4-2-21-1 - name: Clinchers - children: [] +- id: sg-4-9 + name: Hunting & Shooting + children: + - sg-4-9-1 + - sg-4-9-2 + - sg-4-9-3 + - sg-4-9-4 + - sg-4-9-5 + - sg-4-9-6 attributes: - color - - compatible_bike_type - - cycling_style - pattern - - tire_bead_type -- id: sg-4-4-2-21-2 - name: Tubeless Ready Tires - children: [] +- id: sg-4-9-1 + name: Archery + children: + - sg-4-9-1-1 + - sg-4-9-1-2 + - sg-4-9-1-3 + - sg-4-9-1-4 + - sg-4-9-1-5 + - sg-4-9-1-6 + - sg-4-9-1-7 + - sg-4-9-1-8 attributes: - color - - compatible_bike_type - - cycling_style - pattern - - tire_bead_type -- id: sg-4-4-2-21-3 - name: Tubeless Tires +- id: sg-4-9-1-1 + name: Archery Armguards children: [] attributes: + - accessory_size + - age_group - color - - compatible_bike_type - - cycling_style - pattern - - tire_bead_type -- id: sg-4-4-2-21-4 - name: Tubular Tires +- id: sg-4-9-1-2 + name: Archery Gloves & Releases children: [] attributes: + - accessory_size + - age_group - color - - compatible_bike_type - - cycling_style + - handwear_material - pattern - - tire_bead_type -- id: sg-4-4-2-23-2-1 - name: Hub Bearings + - target_gender +- id: sg-4-9-1-3 + name: Archery Targets children: [] attributes: + - age_group + - archery_activity + - archery_style - color - - compatible_bike_type + - material - pattern -- id: sg-4-4-2-23-2-2 - name: Hub Cones - children: [] +- id: sg-4-9-1-4 + name: Arrow Parts & Accessories + children: + - sg-4-9-1-4-1 + - sg-4-9-1-4-2 + - sg-4-9-1-4-3 attributes: + - archery_style - color - - compatible_bike_type - pattern -- id: sg-4-4-2-23-2-3 - name: Quick Releases +- id: sg-4-9-1-4-1 + name: Arrow Fletchings children: [] attributes: + - age_group + - archery_style - color - - compatible_bike_type + - arrow_fletching_material - pattern -- id: sg-4-4-2-24-1 - name: Bicycle Front Wheels - children: [] +- id: sg-4-9-1-4-2 + name: Arrow Nocks + children: + - sg-4-9-1-4-2-1 + - sg-4-9-1-4-2-2 + - sg-4-9-1-4-2-3 + - sg-4-9-1-4-2-4 + - sg-4-9-1-4-2-5 attributes: + - archery_style - color - - compatible_bike_type + - nock_material - pattern -- id: sg-4-4-2-24-2 - name: Bicycle Motorized Rear Wheels +- id: sg-4-9-1-4-2-1 + name: Fit-Over Arrow Nocks children: [] attributes: + - archery_style - color - - compatible_bike_type + - nock_material - pattern -- id: sg-4-4-2-24-3 - name: Bicycle Rear Wheels +- id: sg-4-9-1-4-2-2 + name: Lighted Arrow Nocks children: [] attributes: + - archery_style - color - - compatible_bike_type + - nock_material - pattern -- id: sg-4-4-2-24-4 - name: Bicycle Wheel Sets +- id: sg-4-9-1-4-2-3 + name: Pin Arrow Nocks children: [] attributes: + - archery_style - color - - compatible_bike_type + - nock_material - pattern -- id: sg-4-4-3-1 - name: BMX Bikes +- id: sg-4-9-1-4-2-4 + name: Push-In Arrow Nocks children: [] attributes: - - age_group + - archery_style - color - - gearing_type - - material + - nock_material - pattern - - target_gender -- id: sg-4-4-3-2 - name: City Bikes +- id: sg-4-9-1-4-2-5 + name: Taper-Fit Arrow Nocks children: [] attributes: - - age_group + - archery_style - color - - gearing_type - - material + - nock_material - pattern - - target_gender -- id: sg-4-4-3-3 - name: Cross Country Bikes - children: [] +- id: sg-4-9-1-4-3 + name: Broadheads & Field Points + children: + - sg-4-9-1-4-3-1 + - sg-4-9-1-4-3-2 attributes: - - age_group + - archery_style - color - - gearing_type - - material + - broadhead_field_point_material - pattern - - target_gender -- id: sg-4-4-3-4 - name: Cruiser Bikes +- id: sg-4-9-1-4-3-1 + name: Broadheads children: [] attributes: - - age_group + - archery_style - color - - gearing_type - - material + - broadhead_field_point_material - pattern - - target_gender -- id: sg-4-4-3-5 - name: Electric Bikes +- id: sg-4-9-1-4-3-2 + name: Field Points children: [] attributes: - - age_group + - archery_style - color - - gearing_type - - material + - broadhead_field_point_material - pattern - - target_gender -- id: sg-4-4-3-6 - name: Fatbikes - children: [] +- id: sg-4-9-1-5 + name: Arrows & Bolts + children: + - sg-4-9-1-5-1 + - sg-4-9-1-5-2 attributes: - age_group + - archery_style - color - - gearing_type - material - pattern - - target_gender -- id: sg-4-4-3-7 - name: Folding Bikes +- id: sg-4-9-1-5-1 + name: Arrows children: [] attributes: - age_group + - archery_style - color - - gearing_type - - material + - arrow_material - pattern - - target_gender -- id: sg-4-4-3-8 - name: Freight Bicycles +- id: sg-4-9-1-5-2 + name: Bolts children: [] attributes: - age_group + - archery_style - color - - gearing_type - - material + - bolt_material - pattern - - target_gender -- id: sg-4-4-3-9 - name: Hybrid Bikes - children: [] +- id: sg-4-9-1-6 + name: Bow & Crossbow Accessories + children: + - sg-4-9-1-6-1 attributes: - - age_group + - archery_activity - color - - gearing_type - - material - pattern - - target_gender -- id: sg-4-4-3-10 - name: Mountain Bikes +- id: sg-4-9-1-6-1 + name: Bow & Crossbow Targets children: [] attributes: - - age_group + - archery_activity - color - - gearing_type - - material - pattern - - target_gender -- id: sg-4-4-3-11 - name: Road Bikes - children: [] +- id: sg-4-9-1-7 + name: Bows & Crossbows + children: + - sg-4-9-1-7-1 + - sg-4-9-1-7-2 + - sg-4-9-1-7-3 + - sg-4-9-1-7-4 attributes: - - age_group + - archery_style - color - - gearing_type - - material + - core_material + - hand_side - pattern - - target_gender -- id: sg-4-4-3-12 - name: Tandem Bikes + - riser_material + - string_material +- id: sg-4-9-1-7-1 + name: Compound Bows children: [] attributes: - - age_group + - archery_style - color - - gearing_type - - material + - core_material + - hand_side - pattern - - target_gender -- id: sg-4-4-3-13 - name: Track Bikes + - riser_material + - string_material +- id: sg-4-9-1-7-2 + name: Crossbows children: [] attributes: - - age_group + - archery_style - color - - gearing_type - - material + - core_material - pattern - - target_gender -- id: sg-4-4-5-1 - name: Tricycle Baskets - children: [] + - riser_material + - string_material +- id: sg-4-9-1-7-3 + name: Recurve & Longbows + children: + - sg-4-9-1-7-3-1 + - sg-4-9-1-7-3-2 attributes: + - archery_style - color + - core_material - pattern -- id: sg-4-4-5-2 - name: Tricycle Bells + - riser_material + - string_material +- id: sg-4-9-1-7-3-1 + name: Longbows children: [] attributes: + - archery_style - color + - core_material - pattern -- id: sg-4-4-5-3 - name: Tricycle Flags + - riser_material + - string_material +- id: sg-4-9-1-7-3-2 + name: Recurve Bows children: [] attributes: + - archery_equipment_included + - archery_style - color + - core_material + - hand_side - pattern -- id: sg-4-4-7-1 - name: Unicycle Pedals + - riser_material + - string_material +- id: sg-4-9-1-7-4 + name: Youth Bows children: [] attributes: + - archery_equipment_included + - archery_style - color + - core_material + - hand_side - pattern -- id: sg-4-4-7-2 - name: Unicycle Tires + - riser_material + - string_material +- id: sg-4-9-1-8 + name: Quivers children: [] attributes: - color + - hand_side - pattern -- id: sg-4-5-1-3-1 - name: Horse Feed Supplements - children: [] + - quiver_style +- id: sg-4-9-2 + name: Clay Pigeon Shooting + children: + - sg-4-9-2-1 + - sg-4-9-2-2 attributes: - color - pattern - - animal_feed_form -- id: sg-4-5-1-5-2-1 - name: Horse Grooming Brushes +- id: sg-4-9-2-1 + name: Clay Pigeon Throwers children: [] attributes: - color - pattern -- id: sg-4-5-1-5-2-2 - name: Horse Grooming Combs +- id: sg-4-9-2-2 + name: Clay Pigeons children: [] attributes: - color - pattern -- id: sg-4-5-1-5-2-3 - name: Horse Grooming Deshedders - children: [] +- id: sg-4-9-3 + name: Hunting + children: + - sg-4-9-3-1 + - sg-4-9-3-2 + - sg-4-9-3-3 + - sg-4-9-3-4 + - sg-4-9-3-5 + - sg-4-9-3-6 + - sg-4-9-3-7 attributes: - color - pattern -- id: sg-4-5-1-5-2-4 - name: Horse Grooming Gloves +- id: sg-4-9-3-1 + name: Animal Traps children: [] attributes: + - animal_type - color - pattern -- id: sg-4-5-1-5-2-5 - name: Horse Grooming Groomers +- id: sg-4-9-3-2 + name: Hearing Enhancers children: [] attributes: - color - pattern -- id: sg-4-5-1-5-2-6 - name: Horse Grooming Trimming Knives - children: [] +- id: sg-4-9-3-3 + name: Hunting Blinds & Screens + children: + - sg-4-9-3-3-1 attributes: - color + - fabric - pattern -- id: sg-4-5-2-1-1 - name: Bridle Bit Guards +- id: sg-4-9-3-3-1 + name: Hunting Blind Fabric children: [] attributes: - color + - fabric - pattern -- id: sg-4-5-2-1-2 - name: Bridle Curb Bits - children: [] +- id: sg-4-9-3-4 + name: Hunting Dog Equipment + children: + - sg-4-9-3-4-1 + - sg-4-9-3-4-2 + - sg-4-9-3-4-3 attributes: - color - pattern -- id: sg-4-5-2-1-3 - name: Bridle Snaffle Bits +- id: sg-4-9-3-4-1 + name: Hunting Dog Collars children: [] attributes: - color - pattern -- id: sg-4-5-2-2-1 - name: Bridle Replacement Parts +- id: sg-4-9-3-4-2 + name: Hunting Dog Leashes children: [] attributes: - color - - horse_category - pattern -- id: sg-4-5-2-2-2 - name: Headstalls +- id: sg-4-9-3-4-3 + name: Hunting Dog Training Dummies children: [] attributes: - color - - horse_category - - pattern -- id: sg-4-5-4 - name: Horse Vaulting Accessories - children: - - sg-4-5-4-1 - - sg-4-5-4-2 - - sg-4-5-4-3 - attributes: - - color - pattern -- id: sg-4-5-4-1 - name: Vaulting Covers +- id: sg-4-9-3-5 + name: Tree Stands children: [] attributes: - color - pattern - - fabric -- id: sg-4-5-4-2 - name: Vaulting Reins +- id: sg-4-9-3-6 + name: Wild Game Feeders children: [] attributes: + - animal_type - color - - material - pattern -- id: sg-4-5-4-3 - name: Vaulting Supports - children: [] +- id: sg-4-9-3-7 + name: Wildlife Attractants + children: + - sg-4-9-3-7-1 + - sg-4-9-3-7-2 + - sg-4-9-3-7-3 + - sg-4-9-3-7-4 attributes: - color - - material - pattern -- id: sg-4-6-1-1 - name: Fishing Bite Alarms +- id: sg-4-9-3-7-1 + name: Cover Scents & Scent Attractants children: [] attributes: + - animal_type - color - pattern -- id: sg-4-6-1-2 - name: Fishing Bite Indicators +- id: sg-4-9-3-7-2 + name: Hunting & Wildlife Calls children: [] attributes: + - animal_type - color - pattern -- id: sg-4-6-1-3 - name: Fishing Chain Hangers +- id: sg-4-9-3-7-3 + name: Hunting & Wildlife Decoys children: [] attributes: + - animal_type - color - pattern -- id: sg-4-6-2-1 - name: Fishing Waders - children: [] +- id: sg-4-9-3-7-4 + name: Wildlife Bait, Feed & Minerals + children: + - sg-4-9-3-7-4-1 + - sg-4-9-3-7-4-2 + - sg-4-9-3-7-4-3 attributes: - - accessory_size - - clothing_type + - animal_feed_form - color - pattern - - target_gender -- id: sg-4-6-2-2 - name: Hunting Waders +- id: sg-4-9-3-7-4-1 + name: Wildlife Baits children: [] attributes: - - accessory_size - - clothing_type + - animal_feed_form - color - pattern - - target_gender -- id: sg-4-6-2-3 - name: Wader Repair Kits +- id: sg-4-9-3-7-4-2 + name: Wildlife Feed children: [] attributes: - - accessory_size - - clothing_type + - animal_feed_form - color - pattern - - target_gender -- id: sg-4-6-5-1 - name: All-Purpose Needle Sets +- id: sg-4-9-3-7-4-3 + name: Wildlife Minerals children: [] attributes: + - animal_feed_form - color - pattern - - needle_material -- id: sg-4-6-5-2 - name: Bait Drills - children: [] +- id: sg-4-9-4 + name: Hunting & Shooting Protective Gear + children: + - sg-4-9-4-1 + - sg-4-9-4-2 attributes: - color - - material - pattern -- id: sg-4-6-5-3 - name: Bait Guns +- id: sg-4-9-4-1 + name: Hunting & Shooting Gloves children: [] attributes: + - accessory_size + - age_group - color - - material + - handwear_material - pattern -- id: sg-4-6-5-4 - name: Boilie Drills + - target_gender +- id: sg-4-9-4-2 + name: Hunting & Shooting Jackets children: [] attributes: + - accessory_size - color - - material + - gear_material - pattern -- id: sg-4-6-5-5 - name: Boilie Hair Extenders - children: [] + - target_gender +- id: sg-4-9-5 + name: Paintball & Airsoft + children: + - sg-4-9-5-1 + - sg-4-9-5-2 + - sg-4-9-5-3 attributes: - color - - material - pattern -- id: sg-4-6-5-6 - name: Boilie Rolling Tables - children: [] +- id: sg-4-9-5-1 + name: Airsoft + children: + - sg-4-9-5-1-1 + - sg-4-9-5-1-2 + - sg-4-9-5-1-3 attributes: - color - - material - pattern -- id: sg-4-6-5-7 - name: Boilie Stop Caps - children: [] +- id: sg-4-9-5-1-1 + name: Airsoft Gun Parts & Accessories + children: + - sg-4-9-5-1-1-1 attributes: - color - - material - pattern -- id: sg-4-6-5-8 - name: Boilie Stops +- id: sg-4-9-5-1-1-1 + name: Airsoft Gun Batteries children: [] attributes: - color - - material - pattern -- id: sg-4-6-5-9 - name: Coating Removal Tools +- id: sg-4-9-5-1-2 + name: Airsoft Guns children: [] attributes: - color - - material + - paintball_airsoft_equipment_included - pattern -- id: sg-4-6-5-10 - name: Corn Boilie Stops +- id: sg-4-9-5-1-3 + name: Airsoft Pellets children: [] attributes: - color - - material - pattern -- id: sg-4-6-5-11 - name: Cutting Pliers - children: [] +- id: sg-4-9-5-2 + name: Paintball + children: + - sg-4-9-5-2-1 + - sg-4-9-5-2-2 + - sg-4-9-5-2-3 + - sg-4-9-5-2-4 + - sg-4-9-5-2-5 + - sg-4-9-5-2-6 attributes: - color - - material - pattern -- id: sg-4-6-5-12 - name: Fine Lip Close Needles +- id: sg-4-9-5-2-1 + name: Paintball Grenade Launchers children: [] attributes: - color - pattern - - needle_material -- id: sg-4-6-5-13 - name: Fly Tying Scissors +- id: sg-4-9-5-2-2 + name: Paintball Grenades children: [] attributes: - color - - material - pattern -- id: sg-4-6-5-14 - name: Fly Tying Tool Sets - children: [] +- id: sg-4-9-5-2-3 + name: Paintball Gun Parts & Accessories + children: + - sg-4-9-5-2-3-1 + - sg-4-9-5-2-3-2 + - sg-4-9-5-2-3-3 + - sg-4-9-5-2-3-4 attributes: - color - - material - pattern -- id: sg-4-6-5-15 - name: Hair Extender Stops +- id: sg-4-9-5-2-3-1 + name: Paintball Air Tanks children: [] attributes: - color - - material - pattern -- id: sg-4-6-5-16 - name: Heavy Lip Close Needles +- id: sg-4-9-5-2-3-2 + name: Paintball Gun Barrels children: [] attributes: - color - pattern - - needle_material -- id: sg-4-6-5-17 - name: Multi Pull Tools +- id: sg-4-9-5-2-3-3 + name: Paintball Gun Drop Forwards children: [] attributes: - color - - material - pattern -- id: sg-4-6-5-18 - name: Pellet Stops +- id: sg-4-9-5-2-3-4 + name: Paintball Hoppers children: [] attributes: - color - - material - pattern -- id: sg-4-6-5-19 - name: Stringer Needles +- id: sg-4-9-5-2-4 + name: Paintball Guns children: [] attributes: - color - pattern - - needle_material -- id: sg-4-6-5-20 - name: Throwing Sticks +- id: sg-4-9-5-2-5 + name: Paintball Harnesses & Packs children: [] attributes: - color - - material - pattern -- id: sg-4-6-6-1 - name: Fishing Braids +- id: sg-4-9-5-2-6 + name: Paintballs children: [] attributes: - color - - material - pattern -- id: sg-4-6-6-2 - name: Fishing Fluorocarbons - children: [] +- id: sg-4-9-5-3 + name: Paintball & Airsoft Protective Gear + children: + - sg-4-9-5-3-1 + - sg-4-9-5-3-2 + - sg-4-9-5-3-3 + - sg-4-9-5-3-4 attributes: - color - - material - pattern -- id: sg-4-6-6-3 - name: Fishing Monofilaments +- id: sg-4-9-5-3-1 + name: Paintball & Airsoft Gloves children: [] attributes: + - accessory_size + - age_group - color - - material + - handwear_material - pattern -- id: sg-4-6-6-4 - name: Fishing Wires + - target_gender +- id: sg-4-9-5-3-2 + name: Paintball & Airsoft Goggles & Masks children: [] attributes: + - accessory_size + - age_group - color - pattern - - fishing_wire_material -- id: sg-4-6-9-1 - name: Baitcasting Fishing Reels +- id: sg-4-9-5-3-3 + name: Paintball & Airsoft Pads children: [] attributes: - color - - gear_ratio + - gear_material - pattern - - spool_material - - body_material -- id: sg-4-6-9-2 - name: Centerpin Fishing Reels +- id: sg-4-9-5-3-4 + name: Paintball & Airsoft Vests children: [] attributes: + - accessory_size - color - - gear_ratio - pattern - - spool_material - - body_material -- id: sg-4-6-9-3 - name: Fly Fishing Reels - children: [] +- id: sg-4-9-6 + name: Shooting & Range Accessories + children: + - sg-4-9-6-1 + - sg-4-9-6-2 + - sg-4-9-6-3 attributes: - color - - gear_ratio - pattern - - spool_material - - body_material -- id: sg-4-6-9-4 - name: Spincast Fishing Reels +- id: sg-4-9-6-1 + name: Shooting Rests children: [] attributes: - color - - gear_ratio - pattern - - spool_material - - body_material -- id: sg-4-6-9-5 - name: Spinning Fishing Reels - children: [] +- id: sg-4-9-6-2 + name: Shooting Sticks & Bipods + children: + - sg-4-9-6-2-1 + - sg-4-9-6-2-2 + - sg-4-9-6-2-3 attributes: - color - - gear_ratio - pattern - - spool_material - - body_material -- id: sg-4-6-9-6 - name: Triggerspin Fishing Reels +- id: sg-4-9-6-2-1 + name: Shooting Bipods children: [] attributes: - color - - gear_ratio - pattern - - spool_material - - body_material -- id: sg-4-6-9-7 - name: Trolling Fishing Reels +- id: sg-4-9-6-2-2 + name: Shooting Monopods children: [] attributes: - color - - gear_ratio - pattern - - spool_material - - body_material -- id: sg-4-6-11-1 - name: Baitcasting Fishing Rods +- id: sg-4-9-6-2-3 + name: Shooting Sticks children: [] attributes: - - butt_cap_material - color - - fishing_rod_action - - fishing_rod_power - - handle_material - pattern - - rod_material -- id: sg-4-6-11-2 - name: Crab Fishing Rods +- id: sg-4-9-6-3 + name: Shooting Targets children: [] attributes: - - butt_cap_material - color - - fishing_rod_action - - fishing_rod_power - - handle_material + - material - pattern - - rod_material -- id: sg-4-6-11-3 - name: Fly Fishing Rods - children: [] +- id: sg-4-10 + name: Hydration System Accessories + children: + - sg-4-10-1 + - sg-4-10-2 + - sg-4-10-3 + - sg-4-10-4 + - sg-4-10-5 + - sg-4-10-6 + - sg-4-10-7 + - sg-4-10-8 + - sg-4-10-9 + - sg-4-10-10 attributes: - - butt_cap_material - color - - fishing_rod_action - - fishing_rod_power - - handle_material - pattern - - rod_material -- id: sg-4-6-11-4 - name: Ice Fishing Rods +- id: sg-4-10-1 + name: Drink Tube Kits children: [] attributes: - - butt_cap_material - color - - fishing_rod_action - - fishing_rod_power - - handle_material - pattern - - rod_material -- id: sg-4-6-11-5 - name: Screw Fishing Rods +- id: sg-4-10-2 + name: Hydration Bags children: [] attributes: - - butt_cap_material + - activity - color - - fishing_rod_action - - fishing_rod_power - - handle_material + - fabric - pattern - - rod_material -- id: sg-4-6-11-6 - name: Spincasting Fishing Rods +- id: sg-4-10-3 + name: Hydration Belts children: [] attributes: - - butt_cap_material + - activity - color - - fishing_rod_action - - fishing_rod_power - - handle_material + - fabric - pattern - - rod_material -- id: sg-4-6-11-7 - name: Spinning Fishing Rods +- id: sg-4-10-4 + name: Hydration Bladders children: [] attributes: - - butt_cap_material + - activity - color - - fishing_rod_action - - fishing_rod_power - - handle_material + - material - pattern - - rod_material -- id: sg-4-6-11-8 - name: Surf Fishing Rods +- id: sg-4-10-5 + name: Hydration Packs children: [] attributes: - - butt_cap_material + - activity - color - - fishing_rod_action - - fishing_rod_power - - handle_material + - material - pattern - - rod_material -- id: sg-4-6-11-9 - name: Telescopic Fishing Rods +- id: sg-4-10-6 + name: Hydration System Flasks children: [] attributes: - - butt_cap_material - color - - fishing_rod_action - - fishing_rod_power - - handle_material - pattern - - rod_material -- id: sg-4-6-11-10 - name: Tenkara Fishing Rods +- id: sg-4-10-7 + name: Hydration System Mouthpieces children: [] attributes: - - butt_cap_material - color - - fishing_rod_action - - fishing_rod_power - - handle_material - pattern - - rod_material -- id: sg-4-6-11-11 - name: Trolling Fishing Rods +- id: sg-4-10-8 + name: Hydration System Straws children: [] attributes: - - butt_cap_material - color - - fishing_rod_action - - fishing_rod_power - - handle_material - pattern - - rod_material -- id: sg-4-6-11-12 - name: Ultra-Light Fishing Rods +- id: sg-4-10-9 + name: Hydration Vests children: [] attributes: - - butt_cap_material + - activity - color - - fishing_rod_action - - fishing_rod_power - - handle_material + - material - pattern - - rod_material -- id: sg-4-6-13-1-1 - name: Artificial Fish Decoys +- id: sg-4-10-10 + name: Hydration Waist Packs children: [] attributes: + - activity - color - material - pattern -- id: sg-4-6-13-1-2 - name: Artificial Fishing Flies +- id: sg-4-11 + name: Hydration Systems children: [] attributes: + - activity - color - material - pattern -- id: sg-4-6-13-1-3 - name: Artificial Fishing Jigs - children: [] +- id: sg-4-12 + name: Inline & Roller Skating + children: + - sg-4-12-1 + - sg-4-12-2 + - sg-4-12-3 + - sg-4-12-4 + - sg-4-12-5 + - sg-4-12-6 attributes: - color - - material - pattern -- id: sg-4-6-13-1-4 - name: Artificial Fishing Plugs +- id: sg-4-12-1 + name: Inline & Roller Skating Protective Gear + children: + - sg-4-12-1-1 + attributes: + - color + - pattern +- id: sg-4-12-1-1 + name: Roller Skating Pads children: [] attributes: + - accessory_size + - age_group - color - - material - pattern -- id: sg-4-6-13-1-5 - name: Artificial Fishing Poppers +- id: sg-4-12-2 + name: Inline Skate Parts + children: + - sg-4-12-2-1 + - sg-4-12-2-2 + - sg-4-12-2-3 + attributes: + - color + - pattern +- id: sg-4-12-2-1 + name: Inline Skate Bearings children: [] attributes: - color - - material - pattern -- id: sg-4-6-13-1-6 - name: Artificial Fishing Spinners +- id: sg-4-12-2-2 + name: Inline Skate Brakes children: [] attributes: - color - - material - pattern -- id: sg-4-6-13-1-7 - name: Artificial Fishing Spoons +- id: sg-4-12-2-3 + name: Inline Skate Wheels children: [] attributes: - color - - material - pattern -- id: sg-4-6-13-1-8 - name: Artificial Fishing Swimbait - children: [] +- id: sg-4-12-3 + name: Inline Skates + children: + - sg-4-12-3-1 + - sg-4-12-3-2 + - sg-4-12-3-3 + - sg-4-12-3-4 attributes: + - age_group + - footwear_material + - boot_type - color - - material + - shell_frame_material + - inline_skating_style - pattern -- id: sg-4-6-13-1-9 - name: Artificial Fishing Wobblers + - shoe_size + - target_gender +- id: sg-4-12-3-1 + name: Fitness Inline Skates children: [] attributes: + - age_group + - footwear_material + - boot_type - color - - material + - shell_frame_material + - inline_skating_style - pattern -- id: sg-4-6-13-1-10 - name: Artificial Soft Plastic Baits + - shoe_size + - target_gender +- id: sg-4-12-3-2 + name: Race Inline Skates children: [] attributes: + - age_group + - footwear_material + - boot_type - color - - material + - shell_frame_material + - inline_skating_style - pattern -- id: sg-4-6-13-1-11 - name: Fishing Tackle Kits + - shoe_size + - target_gender +- id: sg-4-12-3-3 + name: Recreation Inline Skates children: [] attributes: + - age_group + - footwear_material + - boot_type - color - - material + - shell_frame_material + - inline_skating_style - pattern -- id: sg-4-6-13-3-1 - name: Double & Triple Fishing Hooks + - shoe_size + - target_gender +- id: sg-4-12-3-4 + name: Urban Inline Skates children: [] attributes: + - age_group + - footwear_material + - boot_type - color + - shell_frame_material + - inline_skating_style - pattern -- id: sg-4-6-13-3-2 - name: Single Fishing Hooks - children: [] + - shoe_size + - target_gender +- id: sg-4-12-4 + name: Roller Skate Parts + children: + - sg-4-12-4-1 + - sg-4-12-4-2 + - sg-4-12-4-3 attributes: - color - pattern -- id: sg-4-6-13-4-1 - name: Fishing Banks +- id: sg-4-12-4-1 + name: Roller Skate Bearings children: [] attributes: - color - pattern - - sinker_material -- id: sg-4-6-13-4-2 - name: Fishing Barrels +- id: sg-4-12-4-2 + name: Roller Skate Brakes children: [] attributes: - color - pattern - - sinker_material -- id: sg-4-6-13-4-3 - name: Fishing Bullets +- id: sg-4-12-4-3 + name: Roller Skate Wheels children: [] attributes: - color - pattern - - sinker_material -- id: sg-4-6-13-4-4 - name: Fishing Dipseys - children: [] +- id: sg-4-12-5 + name: Roller Skates + children: + - sg-4-12-5-1 + - sg-4-12-5-2 + - sg-4-12-5-3 + - sg-4-12-5-4 attributes: + - age_group + - footwear_material + - boot_type - color + - shell_frame_material + - inline_skating_style - pattern - - sinker_material -- id: sg-4-6-13-4-5 - name: Fishing Pyramids + - shoe_size + - target_gender +- id: sg-4-12-5-1 + name: Fitness Roller Skates children: [] attributes: + - age_group + - footwear_material + - boot_type - color + - shell_frame_material + - inline_skating_style - pattern - - sinker_material -- id: sg-4-6-13-4-6 - name: Fishing Split-Shots + - shoe_size + - target_gender +- id: sg-4-12-5-2 + name: Race Roller Skates children: [] attributes: + - age_group + - footwear_material + - boot_type - color + - shell_frame_material + - inline_skating_style - pattern - - sinker_material -- id: sg-4-7-8 - name: Golf Club Sets + - shoe_size + - target_gender +- id: sg-4-12-5-3 + name: Recreation Roller Skates children: [] attributes: - - club_subset - - club_type + - age_group + - footwear_material + - boot_type - color - - hand_side - - material + - shell_frame_material + - inline_skating_style - pattern - - shaft_flex -- id: sg-4-7-14-1 - name: Golf Putt Checkers + - shoe_size + - target_gender +- id: sg-4-12-5-4 + name: Urban Roller Skates children: [] attributes: - age_group + - footwear_material + - boot_type - color + - shell_frame_material + - inline_skating_style - pattern -- id: sg-4-7-14-2 - name: Golf Putting Mats - children: [] + - shoe_size + - target_gender +- id: sg-4-12-6 + name: Roller Skis + children: + - sg-4-12-6-1 + - sg-4-12-6-2 + - sg-4-12-6-3 + - sg-4-12-6-4 attributes: - age_group - color + - ski_construction + - inline_skating_style - pattern -- id: sg-4-7-14-3 - name: Golf Putting Partners + - rocker_type + - target_gender +- id: sg-4-12-6-1 + name: Fitness Roller Skis children: [] attributes: - age_group - color + - ski_construction + - inline_skating_style - pattern -- id: sg-4-7-14-4 - name: Golf Swing Trainers + - rocker_type + - target_gender +- id: sg-4-12-6-2 + name: Race Roller Skis children: [] attributes: - age_group - color + - ski_construction + - inline_skating_style - pattern -- id: sg-4-9-1-4-2-1 - name: Fit-Over Arrow Nocks + - rocker_type + - target_gender +- id: sg-4-12-6-3 + name: Recreation Roller Skis children: [] attributes: - - archery_style + - age_group - color + - ski_construction + - inline_skating_style - pattern - - nock_material -- id: sg-4-9-1-4-2-2 - name: Lighted Arrow Nocks + - rocker_type + - target_gender +- id: sg-4-12-6-4 + name: Urban Roller Skis children: [] attributes: - - archery_style + - age_group - color + - ski_construction + - inline_skating_style - pattern - - nock_material -- id: sg-4-9-1-4-2-3 - name: Pin Arrow Nocks - children: [] + - rocker_type + - target_gender +- id: sg-4-13 + name: Kite Buggying + children: + - sg-4-13-1 + - sg-4-13-2 attributes: - - archery_style - color - pattern - - nock_material -- id: sg-4-9-1-4-2-4 - name: Push-In Arrow Nocks +- id: sg-4-13-1 + name: Kite Buggies children: [] attributes: - - archery_style - color - pattern - - nock_material -- id: sg-4-9-1-4-2-5 - name: Taper-Fit Arrow Nocks - children: [] +- id: sg-4-13-2 + name: Kite Buggy Accessories + children: + - sg-4-13-2-1 + - sg-4-13-2-2 + - sg-4-13-2-3 attributes: - - archery_style - color - pattern - - nock_material -- id: sg-4-9-1-4-3-1 - name: Broadheads +- id: sg-4-13-2-1 + name: Kite Buggy Seat Covers children: [] attributes: - - archery_style - color - pattern - - broadhead_field_point_material -- id: sg-4-9-1-4-3-2 - name: Field Points +- id: sg-4-13-2-2 + name: Kite Buggy Wheel Sets children: [] attributes: - - archery_style - color - pattern - - broadhead_field_point_material -- id: sg-4-9-1-5-1 - name: Arrows +- id: sg-4-13-2-3 + name: Kite Buggy Wind Sails children: [] attributes: - - age_group - - archery_style - color - pattern - - arrow_material -- id: sg-4-9-1-5-2 - name: Bolts - children: [] +- id: sg-4-14 + name: Outdoor Games + children: + - sg-4-14-1 + - sg-4-14-2 + - sg-4-14-3 + - sg-4-14-4 + - sg-4-14-5 + - sg-4-14-6 + - sg-4-14-7 + - sg-4-14-8 attributes: - - age_group - - archery_style - color - pattern - - bolt_material -- id: sg-4-9-1-6-1 - name: Bow & Crossbow Targets - children: [] +- id: sg-4-14-1 + name: Badminton + children: + - sg-4-14-1-1 + - sg-4-14-1-2 + - sg-4-14-1-3 attributes: - - archery_activity - color - pattern -- id: sg-4-9-1-7-3-1 - name: Longbows +- id: sg-4-14-1-1 + name: Badminton Nets children: [] attributes: - - archery_style - color + - mounting_type - pattern - - core_material - - riser_material - - string_material -- id: sg-4-9-1-7-3-2 - name: Recurve Bows - children: [] +- id: sg-4-14-1-2 + name: Badminton Rackets & Sets + children: + - sg-4-14-1-2-1 + - sg-4-14-1-2-2 attributes: - - archery_style + - age_group - color - - hand_side + - racket_material - pattern - - core_material - - riser_material - - string_material - - archery_equipment_included -- id: sg-4-9-1-7-4 - name: Youth Bows + - recommended_skill_level +- id: sg-4-14-1-2-1 + name: Badminton Racket Sets children: [] attributes: - - archery_style + - age_group - color - - hand_side + - racket_material - pattern - - core_material - - riser_material - - string_material - - archery_equipment_included -- id: sg-4-9-3-3-1 - name: Hunting Blind Fabric +- id: sg-4-14-1-2-2 + name: Badminton Rackets children: [] attributes: + - age_group - color + - racket_material - pattern - - fabric -- id: sg-4-9-3-4-1 - name: Hunting Dog Collars - children: [] + - recommended_skill_level +- id: sg-4-14-1-3 + name: Shuttlecocks + children: + - sg-4-14-1-3-1 + - sg-4-14-1-3-2 attributes: - color - pattern -- id: sg-4-9-3-4-2 - name: Hunting Dog Leashes +- id: sg-4-14-1-3-1 + name: Feather Shuttlecocks children: [] attributes: - color - pattern -- id: sg-4-9-3-4-3 - name: Hunting Dog Training Dummies +- id: sg-4-14-1-3-2 + name: Synthetic Shuttlecocks children: [] attributes: - color - pattern -- id: sg-4-9-3-7-4-1 - name: Wildlife Baits - children: [] +- id: sg-4-14-2 + name: Deck Shuffleboard + children: + - sg-4-14-2-1 + - sg-4-14-2-2 attributes: - color - pattern - - animal_feed_form -- id: sg-4-9-3-7-4-2 - name: Wildlife Feed +- id: sg-4-14-2-1 + name: Deck Shuffleboard Cues children: [] attributes: - color + - material - pattern - - animal_feed_form -- id: sg-4-9-3-7-4-3 - name: Wildlife Minerals +- id: sg-4-14-2-2 + name: Deck Shuffleboard Pucks children: [] attributes: - color + - material - pattern - - animal_feed_form -- id: sg-4-9-6-2-1 - name: Shooting Bipods - children: [] +- id: sg-4-14-3 + name: Disc Golf + children: + - sg-4-14-3-1 + - sg-4-14-3-2 attributes: - color - pattern -- id: sg-4-9-6-2-2 - name: Shooting Monopods +- id: sg-4-14-3-1 + name: Disc Golf Bags children: [] attributes: - color - pattern -- id: sg-4-9-6-2-3 - name: Shooting Sticks +- id: sg-4-14-3-2 + name: Disc Golf Baskets children: [] attributes: - color - pattern -- id: sg-4-10-1 - name: Drink Tube Kits - children: [] +- id: sg-4-14-4 + name: Lawn Games + children: + - sg-4-14-4-1 + - sg-4-14-4-2 + - sg-4-14-4-3 + - sg-4-14-4-4 attributes: - color - pattern -- id: sg-4-10-2 - name: Hydration Bags +- id: sg-4-14-4-1 + name: Bocce Ball Sets children: [] attributes: - - activity - color - pattern - - fabric -- id: sg-4-10-3 - name: Hydration Belts +- id: sg-4-14-4-2 + name: Cornhole Sets children: [] attributes: - - activity - color - pattern - - fabric -- id: sg-4-10-4 - name: Hydration Bladders +- id: sg-4-14-4-3 + name: Croquet Sets children: [] attributes: - - activity - color - - material - pattern -- id: sg-4-10-5 - name: Hydration Packs +- id: sg-4-14-4-4 + name: Horseshoe Sets children: [] attributes: - - activity - color - - material - pattern -- id: sg-4-10-6 - name: Hydration System Flasks +- id: sg-4-14-5 + name: Paddle Ball Sets children: [] attributes: - color + - paddle_equipment_included - pattern -- id: sg-4-10-7 - name: Hydration System Mouthpieces - children: [] +- id: sg-4-14-6 + name: Pickleball + children: + - sg-4-14-6-1 + - sg-4-14-6-2 attributes: - color - pattern -- id: sg-4-10-8 - name: Hydration System Straws +- id: sg-4-14-6-1 + name: Pickleball Paddles children: [] attributes: - color - pattern -- id: sg-4-10-9 - name: Hydration Vests +- id: sg-4-14-6-2 + name: Pickleballs children: [] attributes: - - activity - color - - material - pattern -- id: sg-4-10-10 - name: Hydration Waist Packs - children: [] +- id: sg-4-14-7 + name: Platform & Paddle Tennis + children: + - sg-4-14-7-1 + - sg-4-14-7-2 attributes: - - activity - color - - material - pattern -- id: sg-4-12-2-1 - name: Inline Skate Bearings +- id: sg-4-14-7-1 + name: Platform & Paddle Tennis Paddles children: [] attributes: + - accessory_size + - age_group - color - pattern -- id: sg-4-12-2-2 - name: Inline Skate Brakes +- id: sg-4-14-7-2 + name: Platform Tennis Balls children: [] attributes: + - ball_size - color + - ball_material - pattern -- id: sg-4-12-2-3 - name: Inline Skate Wheels - children: [] +- id: sg-4-14-8 + name: Tetherball + children: + - sg-4-14-8-1 + - sg-4-14-8-2 + - sg-4-14-8-3 attributes: - color - pattern -- id: sg-4-12-3-1 - name: Fitness Inline Skates +- id: sg-4-14-8-1 + name: Tetherball Poles children: [] attributes: - age_group - - boot_type - color - - inline_skating_style - pattern - - shoe_size - - target_gender - - footwear_material - - shell_frame_material -- id: sg-4-12-3-2 - name: Race Inline Skates +- id: sg-4-14-8-2 + name: Tetherball Sets children: [] attributes: - - age_group - - boot_type - color - - inline_skating_style - pattern - - shoe_size - - target_gender - - footwear_material - - shell_frame_material -- id: sg-4-12-3-3 - name: Recreation Inline Skates + - tetherball_equipment_included +- id: sg-4-14-8-3 + name: Tetherballs children: [] attributes: - - age_group - - boot_type + - ball_size - color - - inline_skating_style + - ball_material - pattern - - shoe_size - - target_gender - - footwear_material - - shell_frame_material -- id: sg-4-12-3-4 - name: Urban Inline Skates - children: [] +- id: sg-4-15 + name: Riding Scooters + children: + - sg-4-15-1 + - sg-4-15-2 attributes: - age_group - - boot_type - color - - inline_skating_style - pattern - - shoe_size - - target_gender - - footwear_material - - shell_frame_material -- id: sg-4-12-4-1 - name: Roller Skate Bearings +- id: sg-4-15-1 + name: E-Scooters children: [] attributes: + - age_group - color - pattern -- id: sg-4-12-4-2 - name: Roller Skate Brakes +- id: sg-4-15-2 + name: Kick Scooters children: [] attributes: + - age_group - color - pattern -- id: sg-4-12-4-3 - name: Roller Skate Wheels - children: [] +- id: sg-4-16 + name: Skateboarding + children: + - sg-4-16-1 + - sg-4-16-2 + - sg-4-16-3 + - sg-4-16-4 + - sg-4-16-5 attributes: - color - pattern -- id: sg-4-12-5-1 - name: Fitness Roller Skates - children: [] +- id: sg-4-16-1 + name: Complete Skateboards + children: + - sg-4-16-1-1 + - sg-4-16-1-2 + - sg-4-16-1-3 + - sg-4-16-1-4 + - sg-4-16-1-5 + - sg-4-16-1-6 attributes: - - age_group - - boot_type - color - - inline_skating_style - pattern - - shoe_size - - target_gender - - footwear_material - - shell_frame_material -- id: sg-4-12-5-2 - name: Race Roller Skates +- id: sg-4-16-1-1 + name: Cruisers children: [] attributes: - - age_group - - boot_type - color - - inline_skating_style - pattern - - shoe_size - - target_gender - - footwear_material - - shell_frame_material -- id: sg-4-12-5-3 - name: Recreation Roller Skates +- id: sg-4-16-1-2 + name: Mini-Cruisers children: [] attributes: - - age_group - - boot_type - color - - inline_skating_style - pattern - - shoe_size - - target_gender - - footwear_material - - shell_frame_material -- id: sg-4-12-5-4 - name: Urban Roller Skates +- id: sg-4-16-1-3 + name: Longboards children: [] attributes: - - age_group - - boot_type - color - - inline_skating_style - pattern - - shoe_size - - target_gender - - footwear_material - - shell_frame_material -- id: sg-4-12-6-1 - name: Fitness Roller Skis +- id: sg-4-16-1-4 + name: Mountainboards children: [] attributes: - - age_group - color - - inline_skating_style - pattern - - rocker_type - - target_gender - - ski_construction -- id: sg-4-12-6-2 - name: Race Roller Skis +- id: sg-4-16-1-5 + name: Classic Skateboards children: [] attributes: - - age_group - color - - inline_skating_style - pattern - - rocker_type - - target_gender - - ski_construction -- id: sg-4-12-6-3 - name: Recreation Roller Skis +- id: sg-4-16-1-6 + name: Special Shape Boards children: [] attributes: - - age_group - color - - inline_skating_style - pattern - - rocker_type - - target_gender - - ski_construction -- id: sg-4-12-6-4 - name: Urban Roller Skis +- id: sg-4-16-2 + name: Skate Rails children: [] attributes: - - age_group - color - - inline_skating_style - pattern - - rocker_type - - target_gender - - ski_construction -- id: sg-4-13-2-1 - name: Kite Buggy Seat Covers +- id: sg-4-16-3 + name: Skate Ramps children: [] attributes: - color - pattern -- id: sg-4-13-2-2 - name: Kite Buggy Wheel Sets - children: [] + - ramp_type +- id: sg-4-16-4 + name: Skateboard Parts + children: + - sg-4-16-4-1 + - sg-4-16-4-2 + - sg-4-16-4-3 + - sg-4-16-4-4 attributes: - color - pattern -- id: sg-4-13-2-3 - name: Kite Buggy Wind Sails +- id: sg-4-16-4-1 + name: Skateboard Decks children: [] attributes: + - board_type - color - pattern -- id: sg-4-14-1-2 - name: Badminton Rackets & Sets +- id: sg-4-16-4-2 + name: Skateboard Small Parts children: - - sg-4-14-1-2-1 - - sg-4-14-1-2-2 + - sg-4-16-4-2-1 + - sg-4-16-4-2-2 + - sg-4-16-4-2-3 + - sg-4-16-4-2-4 + - sg-4-16-4-2-5 + - sg-4-16-4-2-6 + - sg-4-16-4-2-7 attributes: - - age_group - color - pattern - - recommended_skill_level - - racket_material -- id: sg-4-14-1-2-1 - name: Badminton Racket Sets +- id: sg-4-16-4-2-1 + name: Skateboard Bearing Spacers children: [] attributes: - - age_group - color - pattern - - racket_material -- id: sg-4-14-1-2-2 - name: Badminton Rackets +- id: sg-4-16-4-2-2 + name: Skateboard Deck Footstops children: [] attributes: - - age_group - color - pattern - - recommended_skill_level - - racket_material -- id: sg-4-14-1-3-1 - name: Feather Shuttlecocks +- id: sg-4-16-4-2-3 + name: Skateboard Grip Tape children: [] attributes: - color - pattern -- id: sg-4-14-1-3-2 - name: Synthetic Shuttlecocks +- id: sg-4-16-4-2-4 + name: Skateboard Nuts children: [] attributes: - color - pattern -- id: sg-4-14-4-1 - name: Bocce Ball Sets +- id: sg-4-16-4-2-5 + name: Skateboard Pivot Cups children: [] attributes: - color - pattern -- id: sg-4-14-4-2 - name: Cornhole Sets +- id: sg-4-16-4-2-6 + name: Skateboard Pivot Tubes children: [] attributes: - color - pattern -- id: sg-4-14-4-3 - name: Croquet Sets +- id: sg-4-16-4-2-7 + name: Skateboard Truck Riser Pads children: [] attributes: - color - pattern -- id: sg-4-14-4-4 - name: Horseshoe Sets +- id: sg-4-16-4-3 + name: Skateboard Trucks children: [] attributes: - color - pattern -- id: sg-4-15-1 - name: E-Scooters +- id: sg-4-16-4-4 + name: Skateboard Wheels children: [] attributes: + - color + - pattern + - skateboarding_style + - wheel_hardness + - wheel_hub_placement +- id: sg-4-16-5 + name: Skateboarding Protective Gear + children: + - sg-4-16-5-1 + - sg-4-16-5-2 + - sg-4-16-5-3 + attributes: + - accessory_size - age_group - color - pattern -- id: sg-4-15-2 - name: Kick Scooters +- id: sg-4-16-5-1 + name: Skate Helmets children: [] attributes: + - accessory_size - age_group - color - pattern -- id: sg-4-16-1 - name: Complete Skateboards - children: - - sg-4-16-1-5 - - sg-4-16-1-1 - - sg-4-16-1-3 - - sg-4-16-1-2 - - sg-4-16-1-4 - - sg-4-16-1-6 +- id: sg-4-16-5-2 + name: Skateboarding Gloves + children: [] attributes: + - accessory_size + - age_group - color + - handwear_material - pattern -- id: sg-4-16-1-5 - name: Classic Skateboards + - target_gender +- id: sg-4-16-5-3 + name: Skateboarding Pads children: [] attributes: + - accessory_size + - age_group - color - pattern -- id: sg-4-16-1-1 - name: Cruisers - children: [] +- id: sg-4-17 + name: Winter Sports & Activities + children: + - sg-4-17-1 + - sg-4-17-2 + - sg-4-17-3 + - sg-4-17-4 attributes: - color - pattern -- id: sg-4-16-1-3 - name: Longboards +- id: sg-4-17-1 + name: Avalanche Safety + children: + - sg-4-17-1-1 + - sg-4-17-1-2 + attributes: + - color + - pattern +- id: sg-4-17-1-1 + name: Avalanche Probes children: [] attributes: - color + - material - pattern -- id: sg-4-16-1-2 - name: Mini-Cruisers +- id: sg-4-17-1-2 + name: Avalanche Safety Airbags children: [] attributes: - color + - material - pattern -- id: sg-4-16-1-4 - name: Mountainboards - children: [] +- id: sg-4-17-2 + name: Skiing & Snowboarding + children: + - sg-4-17-2-1 + - sg-4-17-2-2 + - sg-4-17-2-3 + - sg-4-17-2-4 + - sg-4-17-2-5 + - sg-4-17-2-6 + - sg-4-17-2-7 + - sg-4-17-2-8 + - sg-4-17-2-9 + - sg-4-17-2-10 + - sg-4-17-2-11 + - sg-4-17-2-12 + - sg-4-17-2-13 + - sg-4-17-2-14 + - sg-4-17-2-15 + - sg-4-17-2-16 + - sg-4-17-2-17 attributes: - color - pattern -- id: sg-4-16-1-6 - name: Special Shape Boards +- id: sg-4-17-2-1 + name: Ski & Snowboard Bags children: [] attributes: - color - pattern -- id: sg-4-16-4-2-1 - name: Skateboard Bearing Spacers - children: [] +- id: sg-4-17-2-2 + name: Ski & Snowboard Goggle Accessories + children: + - sg-4-17-2-2-1 attributes: - color - pattern -- id: sg-4-16-4-2-2 - name: Skateboard Deck Footstops +- id: sg-4-17-2-2-1 + name: Ski & Snowboard Goggle Lenses children: [] attributes: - color + - eyewear_frame_material + - eyewear_lens_material - pattern -- id: sg-4-16-4-2-3 - name: Skateboard Grip Tape +- id: sg-4-17-2-3 + name: Ski & Snowboard Goggles children: [] attributes: - color + - eyewear_frame_material + - eyewear_lens_material - pattern -- id: sg-4-16-4-2-4 - name: Skateboard Nuts +- id: sg-4-17-2-4 + name: Ski & Snowboard Helmets children: [] attributes: + - accessory_size + - age_group - color - pattern -- id: sg-4-16-4-2-5 - name: Skateboard Pivot Cups +- id: sg-4-17-2-5 + name: Ski & Snowboard Leashes children: [] attributes: - color - pattern -- id: sg-4-16-4-2-6 - name: Skateboard Pivot Tubes +- id: sg-4-17-2-6 + name: Ski & Snowboard Storage Racks children: [] attributes: - color + - material - pattern -- id: sg-4-16-4-2-7 - name: Skateboard Truck Riser Pads - children: [] +- id: sg-4-17-2-7 + name: Ski & Snowboard Tuning Tools + children: + - sg-4-17-2-7-1 + - sg-4-17-2-7-2 + - sg-4-17-2-7-3 + - sg-4-17-2-7-4 + - sg-4-17-2-7-5 + - sg-4-17-2-7-6 + - sg-4-17-2-7-7 + - sg-4-17-2-7-8 + - sg-4-17-2-7-9 attributes: - color - pattern + - sport - id: sg-4-17-2-7-1 name: Ski & Snowboard Base Repair Candles children: [] @@ -12264,6 +12090,18 @@ - color - pattern - sport +- id: sg-4-17-2-8 + name: Ski & Snowboard Wax + children: + - sg-4-17-2-8-1 + - sg-4-17-2-8-2 + attributes: + - application_method + - color + - pattern + - skiing_style + - sport + - wax_application_method - id: sg-4-17-2-8-1 name: Ski & Snowboard Glide Wax children: [] @@ -12284,12 +12122,40 @@ - skiing_style - sport - wax_application_method +- id: sg-4-17-2-9 + name: Ski Binding Parts + children: + - sg-4-17-2-9-1 + attributes: + - color + - pattern - id: sg-4-17-2-9-1 name: Ski Binding Straps children: [] attributes: - color - pattern +- id: sg-4-17-2-10 + name: Ski Bindings + children: [] + attributes: + - age_group + - color + - pattern + - riding_style +- id: sg-4-17-2-11 + name: Ski Boots + children: + - sg-4-17-2-11-1 + - sg-4-17-2-11-2 + - sg-4-17-2-11-3 + attributes: + - age_group + - color + - pattern + - shoe_size + - skiing_style + - target_gender - id: sg-4-17-2-11-1 name: Front-Entry Ski Boots children: [] @@ -12320,6 +12186,55 @@ - shoe_size - skiing_style - target_gender +- id: sg-4-17-2-12 + name: Ski Poles + children: [] + attributes: + - age_group + - color + - material + - pattern + - skiing_style + - target_gender +- id: sg-4-17-2-13 + name: Skis + children: + - sg-4-17-2-13-1 + - sg-4-17-2-13-2 + attributes: + - color + - pattern +- id: sg-4-17-2-13-1 + name: Cross-Country Skis + children: [] + attributes: + - age_group + - color + - ski_construction + - pattern + - rocker_type + - skiing_style + - target_gender +- id: sg-4-17-2-13-2 + name: Downhill Skis + children: [] + attributes: + - age_group + - color + - ski_construction + - pattern + - rocker_type + - skiing_style + - target_gender +- id: sg-4-17-2-14 + name: Snowboard Binding Parts + children: + - sg-4-17-2-14-1 + - sg-4-17-2-14-2 + - sg-4-17-2-14-3 + attributes: + - color + - pattern - id: sg-4-17-2-14-1 name: Snowboard Binding Ankle Straps children: [] @@ -12338,6 +12253,56 @@ attributes: - color - pattern +- id: sg-4-17-2-15 + name: Snowboard Bindings + children: [] + attributes: + - accessory_size + - age_group + - binding_mount + - color + - flexibility_rating + - material + - pattern + - riding_style + - shoe_binding_type + - toe_strap_type +- id: sg-4-17-2-16 + name: Snowboard Boots + children: [] + attributes: + - age_group + - color + - pattern + - shoe_size + - snowboarding_style + - stiffness + - target_gender +- id: sg-4-17-2-17 + name: Snowboards + children: [] + attributes: + - age_group + - color + - snowboard_construction + - pattern + - recommended_skill_level + - snowboard_design + - snowboarding_style + - target_gender +- id: sg-4-17-3 + name: Sleds + children: + - sg-4-17-3-1 + - sg-4-17-3-2 + - sg-4-17-3-3 + - sg-4-17-3-4 + - sg-4-17-3-5 + - sg-4-17-3-6 + attributes: + - color + - material + - pattern - id: sg-4-17-3-1 name: Airboards children: [] @@ -12380,3 +12345,37 @@ - color - material - pattern +- id: sg-4-17-4 + name: Snowshoeing + children: + - sg-4-17-4-1 + - sg-4-17-4-2 + attributes: + - color + - pattern +- id: sg-4-17-4-1 + name: Snowshoe Bindings + children: [] + attributes: + - accessory_size + - age_group + - binding_mount + - color + - flexibility_rating + - material + - pattern + - riding_style + - shoe_binding_type + - toe_strap_type +- id: sg-4-17-4-2 + name: Snowshoes + children: [] + attributes: + - age_group + - color + - material + - pattern + - shoe_binding_type + - suitable_for_snowshoeing_activity + - target_gender + - terrain diff --git a/data/categories/so_software.yml b/data/categories/so_software.yml index 90ef6c31..8f697840 100644 --- a/data/categories/so_software.yml +++ b/data/categories/so_software.yml @@ -41,12 +41,66 @@ - id: so-1-2 name: Business & Productivity Software children: + - so-1-2-1 + - so-1-2-8 - so-1-2-11 - so-1-2-12 - so-1-2-13 - - so-1-2-1 - so-1-2-14 - - so-1-2-8 + attributes: + - customer_support_channels + - license_type + - operating_system + - supported_language + - user_type +- id: so-1-2-1 + name: Database Management Software + children: [] + attributes: + - customer_support_channels + - license_type + - operating_system + - supported_language + - user_type +- id: so-1-2-8 + name: Project Management Software + children: [] + attributes: + - customer_support_channels + - license_type + - operating_system + - supported_language + - user_type +- id: so-1-2-11 + name: Communication & Collaboration Software + children: [] + attributes: + - customer_support_channels + - license_type + - operating_system + - supported_language + - user_type +- id: so-1-2-12 + name: Customer Relationship Management (CRM) Software + children: [] + attributes: + - customer_support_channels + - license_type + - operating_system + - supported_language + - user_type +- id: so-1-2-13 + name: Data Analysis & Visualization Software + children: [] + attributes: + - customer_support_channels + - license_type + - operating_system + - supported_language + - user_type +- id: so-1-2-14 + name: Enterprise Resource Planning (ERP) Software + children: [] attributes: - customer_support_channels - license_type @@ -64,6 +118,16 @@ - software_tool_type - supported_language - user_type +- id: so-1-3-1 + name: Software Development Tools + children: [] + attributes: + - compatible_programming_languages + - license_type + - operating_system + - software_tool_type + - supported_language + - user_type - id: so-1-4 name: Computer Utilities & Maintenance Software children: [] @@ -249,16 +313,38 @@ - operating_system - supported_language - user_type +- id: so-1-15 + name: Artificial Intelligence (AI) Software + children: + - so-1-15-1 + attributes: + - ai_application + - compatible_programming_languages + - deployment_type + - industry_focus + - license_type + - performance_metrics + - training_data_requirements +- id: so-1-15-1 + name: Machine Learning Software + children: [] + attributes: + - ai_application + - compatible_programming_languages + - industry_focus + - license_type + - performance_metrics + - training_data_requirements - id: so-2 name: Digital Goods & Currency children: - so-2-1 + - so-2-2 - so-2-3 - so-2-4 - so-2-5 - so-2-6 - so-2-7 - - so-2-2 attributes: - operating_system - id: so-2-1 @@ -268,6 +354,13 @@ - file_format_type - icon_type - operating_system +- id: so-2-2 + name: Desktop Wallpapers + children: [] + attributes: + - file_format_type + - operating_system + - wallpaper_theme - id: so-2-3 name: Digital Artwork children: [] @@ -321,96 +414,3 @@ - compliance_certifications - primary_region - service_type -- id: so-1-15 - name: Artificial Intelligence (AI) Software - children: - - so-1-15-1 - attributes: - - ai_application - - compatible_programming_languages - - deployment_type - - industry_focus - - license_type - - performance_metrics - - training_data_requirements -- id: so-1-15-1 - name: Machine Learning Software - children: [] - attributes: - - ai_application - - compatible_programming_languages - - industry_focus - - license_type - - performance_metrics - - training_data_requirements -- id: so-1-2-11 - name: Communication & Collaboration Software - children: [] - attributes: - - customer_support_channels - - license_type - - operating_system - - supported_language - - user_type -- id: so-1-2-12 - name: Customer Relationship Management (CRM) Software - children: [] - attributes: - - customer_support_channels - - license_type - - operating_system - - supported_language - - user_type -- id: so-1-2-13 - name: Data Analysis & Visualization Software - children: [] - attributes: - - customer_support_channels - - license_type - - operating_system - - supported_language - - user_type -- id: so-1-2-1 - name: Database Management Software - children: [] - attributes: - - customer_support_channels - - license_type - - operating_system - - supported_language - - user_type -- id: so-1-2-14 - name: Enterprise Resource Planning (ERP) Software - children: [] - attributes: - - customer_support_channels - - license_type - - operating_system - - supported_language - - user_type -- id: so-1-2-8 - name: Project Management Software - children: [] - attributes: - - customer_support_channels - - license_type - - operating_system - - supported_language - - user_type -- id: so-1-3-1 - name: Software Development Tools - children: [] - attributes: - - compatible_programming_languages - - license_type - - operating_system - - software_tool_type - - supported_language - - user_type -- id: so-2-2 - name: Desktop Wallpapers - children: [] - attributes: - - file_format_type - - operating_system - - wallpaper_theme diff --git a/data/categories/tg_toys_games.yml b/data/categories/tg_toys_games.yml index 2c6e84d0..784f0552 100644 --- a/data/categories/tg_toys_games.yml +++ b/data/categories/tg_toys_games.yml @@ -9,8 +9,8 @@ - tg-5 attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-1 name: Game Timers children: @@ -18,8 +18,22 @@ - tg-1-4 attributes: - color + - toy_game_material + - recommended_age_group +- id: tg-1-2 + name: Chess Clocks + children: [] + attributes: + - color + - toy_game_material - recommended_age_group +- id: tg-1-4 + name: Sand Timers + children: [] + attributes: + - color - toy_game_material + - recommended_age_group - id: tg-2 name: Games children: @@ -40,29 +54,29 @@ - tg-2-15 attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-2-1 name: Battle Top Accessories children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-2-2 name: Battle Tops children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-2-3 name: Bingo Sets children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-2-4 name: Blackjack & Craps Sets children: @@ -70,8 +84,22 @@ - tg-2-4-2 attributes: - color + - toy_game_material + - recommended_age_group +- id: tg-2-4-1 + name: Blackjack Sets + children: [] + attributes: + - color + - toy_game_material - recommended_age_group +- id: tg-2-4-2 + name: Craps Sets + children: [] + attributes: + - color - toy_game_material + - recommended_age_group - id: tg-2-5 name: Board Games children: [] @@ -79,31 +107,38 @@ - board_game_mechanics - color - gameplay_skills - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-2-6 name: Card Game Accessories children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-2-7 name: Card Games children: [] attributes: - color + - toy_game_material - recommended_age_group - theme - - toy_game_material - id: tg-2-8 name: Dexterity Games children: - tg-2-8-3 attributes: - color + - toy_game_material - recommended_age_group +- id: tg-2-8-3 + name: Fidget Toys + children: [] + attributes: + - color - toy_game_material + - recommended_age_group - id: tg-2-9 name: Dice Sets & Games children: @@ -111,59 +146,68 @@ attributes: - color - dice_shape + - toy_game_material - recommended_age_group +- id: tg-2-9-3 + name: Role-Playing Games + children: [] + attributes: + - color + - dice_shape - toy_game_material + - recommended_age_group + - rpg_genre - id: tg-2-10 name: Poker Chip Accessories children: - tg-2-10-1 attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-2-10-1 name: Poker Chip Carriers & Trays children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-2-11 name: Poker Chips & Sets children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-2-12 name: Portable Electronic Games children: [] attributes: - color - electronic_game_genre - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-2-13 name: Roulette Wheels & Sets children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-2-14 name: Slot Machines children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-2-15 name: Tile Games children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-3 name: Outdoor Play Equipment children: @@ -184,51 +228,51 @@ - tg-3-15 attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-3-1 name: Inflatable Bouncer Accessories children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-3-2 name: Inflatable Bouncers children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-3-3 name: Play Swings children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-3-4 name: Play Tents & Tunnels children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-3-5 name: Playhouses children: [] attributes: - color + - toy_game_material - playhouse_design - recommended_age_group - - toy_game_material - id: tg-3-6 name: Pogo Sticks children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-3-7 name: Sandboxes children: @@ -237,53 +281,72 @@ attributes: - color - housing_color + - furniture_fixture_material + - toy_game_material - recommended_age_group - shape +- id: tg-3-7-1 + name: Sand Tables + children: [] + attributes: + - color + - housing_color - furniture_fixture_material - toy_game_material + - recommended_age_group + - shape +- id: tg-3-7-2 + name: Sandbox Covers + children: [] + attributes: + - color + - housing_color + - cover_material + - recommended_age_group + - shape - id: tg-3-8 name: See Saws children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-3-9 name: Slides children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-3-10 name: Stilts children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-3-11 name: Swing Set & Playset Accessories children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-3-12 name: Swing Sets & Playsets children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-3-13 name: Trampoline Accessories children: [] attributes: - color + - toy_game_material - recommended_age_group - shape - - toy_game_material - id: tg-3-14 name: Trampolines children: [] @@ -302,30 +365,30 @@ - tg-3-15-3 attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-3-15-1 name: Play Sprinklers children: [] attributes: - color + - toy_game_material - recommended_age_group - sprinkler_shape - - toy_game_material - id: tg-3-15-2 name: Water Parks & Slides children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-3-15-3 name: Water Tables children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-4 name: Puzzles children: @@ -336,44 +399,44 @@ attributes: - color - difficulty_level + - toy_game_material - puzzle_theme - recommended_age_group - - toy_game_material - id: tg-4-6 name: Jigsaw Puzzle Accessories children: [] attributes: - color - difficulty_level + - toy_game_material - puzzle_theme - recommended_age_group - - toy_game_material - id: tg-4-7 name: Jigsaw Puzzles children: [] attributes: - color - difficulty_level + - toy_game_material - puzzle_theme - recommended_age_group - - toy_game_material - id: tg-4-9 name: Mechanical Puzzles children: [] attributes: - color - difficulty_level + - toy_game_material - puzzle_theme - recommended_age_group - - toy_game_material - id: tg-4-12 name: Wooden & Pegged Puzzles children: [] attributes: - color - difficulty_level - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5 name: Toys children: @@ -407,13 +470,14 @@ - tg-5-28 attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-1 name: Activity Toys children: - tg-5-1-1 - tg-5-1-2 + - tg-5-1-3 - tg-5-1-4 - tg-5-1-5 - tg-5-1-6 @@ -423,25 +487,31 @@ - tg-5-1-10 - tg-5-1-11 - tg-5-1-12 - - tg-5-1-3 attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-1-1 name: Ball & Cup Games children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-1-2 name: Bouncy Balls children: [] attributes: - color + - toy_game_material - recommended_age_group +- id: tg-5-1-3 + name: Bubble Blowing Solutions + children: [] + attributes: + - color - toy_game_material + - recommended_age_group - id: tg-5-1-4 name: Bubble Blowing Toys children: @@ -450,82 +520,138 @@ - tg-5-1-4-3 attributes: - color + - toy_game_material + - recommended_age_group +- id: tg-5-1-4-1 + name: Bubble Blowers + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-1-4-2 + name: Bubble Guns + children: [] + attributes: + - color + - toy_game_material - recommended_age_group +- id: tg-5-1-4-3 + name: Bubble Machines + children: [] + attributes: + - color - toy_game_material + - recommended_age_group - id: tg-5-1-5 name: Coiled Spring Toys children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-1-6 name: Marbles children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-1-7 name: Paddle Ball Toys children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-1-8 name: Ribbon & Streamer Toys children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-1-9 name: Spinning Tops children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-1-10 name: Toy Jacks children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-1-11 name: Yo-Yo Parts & Accessories children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-1-12 name: Yo-Yos children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-2 name: Art & Drawing Toys children: - - tg-5-2-6 - - tg-5-2-11 - tg-5-2-1 - tg-5-2-2 - tg-5-2-3 - tg-5-2-4 - tg-5-2-5 + - tg-5-2-6 - tg-5-2-7 - tg-5-2-8 - tg-5-2-9 - tg-5-2-10 + - tg-5-2-11 + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-2-1 + name: Beading & Jewelry Making Kits + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-2-2 + name: Coloring Books & Pads + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-2-3 + name: Craft Kits + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-2-4 + name: Easel & Art Desks + children: [] attributes: - color + - toy_game_material - recommended_age_group +- id: tg-5-2-5 + name: Paint-By-Number Kits + children: [] + attributes: + - color - toy_game_material + - recommended_age_group - id: tg-5-2-6 name: Play Dough & Putty children: @@ -537,39 +663,109 @@ - tg-5-2-6-6 attributes: - color - - recommended_age_group - toy_game_material -- id: tg-5-2-11 - name: Toy Drawing Tablets + - recommended_age_group +- id: tg-5-2-6-1 + name: Dough Extruders children: [] attributes: - color - - recommended_age_group - toy_game_material -- id: tg-5-3 - name: Ball Pit Accessories - children: - - tg-5-3-1 + - recommended_age_group +- id: tg-5-2-6-2 + name: Glow In The Dark Putty + children: [] attributes: - color - - recommended_age_group - toy_game_material -- id: tg-5-3-1 - name: Ball Pit Balls + - recommended_age_group +- id: tg-5-2-6-3 + name: Magnetic Putty children: [] attributes: - color - - recommended_age_group - - shape - toy_game_material -- id: tg-5-4 - name: Ball Pits + - recommended_age_group +- id: tg-5-2-6-4 + name: Play Dough Sets children: [] attributes: - color + - toy_game_material + - recommended_age_group +- id: tg-5-2-6-5 + name: Play Dough Tool Sets + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-2-6-6 + name: Slime & Putty Toys + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-2-7 + name: Spin & Spiral Art Kits + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-2-8 + name: Stamp & Stamp Pad Sets + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-2-9 + name: Stencil & Tracing Papers + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-2-10 + name: Stickers & Sticker Machines + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-2-11 + name: Toy Drawing Tablets + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-3 + name: Ball Pit Accessories + children: + - tg-5-3-1 + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-3-1 + name: Ball Pit Balls + children: [] + attributes: + - color + - toy_game_material - recommended_age_group - shape +- id: tg-5-4 + name: Ball Pits + children: [] + attributes: + - color - toy_game_material + - recommended_age_group + - shape - id: tg-5-5 name: Bath Toys children: @@ -585,8 +781,78 @@ - tg-5-5-10 attributes: - color + - toy_game_material + - recommended_age_group +- id: tg-5-5-1 + name: Bath Book Toys + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-5-2 + name: Bath Bubble Machines + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-5-3 + name: Bath Crayons + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-5-4 + name: Bath Puzzles + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-5-5 + name: Bath Squirters + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-5-6 + name: Floating Bath Toys + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-5-7 + name: Interactive Bath Toys + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-5-8 + name: Rubber Duckies + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-5-9 + name: Stacking Cups + children: [] + attributes: + - color + - toy_game_material - recommended_age_group +- id: tg-5-5-10 + name: Waterproof Bath Dolls + children: [] + attributes: + - color - toy_game_material + - recommended_age_group - id: tg-5-6 name: Beach & Sand Toys children: @@ -603,8 +869,85 @@ - tg-5-6-11 attributes: - color + - toy_game_material + - recommended_age_group +- id: tg-5-6-1 + name: Beach Balls + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-6-2 + name: Beach Buckets + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-6-3 + name: Inflatable Rafts & Floats + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-6-4 + name: Sand & Water Mills + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-6-5 + name: Sand Castle Molds + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-6-6 + name: Sand Cups + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-6-7 + name: Sand Rakes + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-6-8 + name: Sand Shovels & Spades + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-6-9 + name: Sand Sifting Sieves + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-6-10 + name: Sand Toy Sets + children: [] + attributes: + - color + - toy_game_material - recommended_age_group +- id: tg-5-6-11 + name: Water Guns + children: [] + attributes: + - color - toy_game_material + - recommended_age_group - id: tg-5-7 name: Building Toys children: @@ -615,44 +958,44 @@ - tg-5-7-14 attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-7-8 name: Construction Set Toys children: [] attributes: - color - construction_set_theme - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-7-11 name: Foam Blocks children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-7-12 name: Interlocking Blocks children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-7-13 name: Marble Track Sets children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-7-14 name: Wooden Blocks children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-8 name: Dolls, Playsets & Toy Figures children: @@ -670,8 +1013,8 @@ - tg-5-8-12 attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-8-1 name: Action & Toy Figures children: @@ -679,82 +1022,96 @@ - tg-5-8-1-2 attributes: - color + - toy_game_material + - recommended_age_group +- id: tg-5-8-1-1 + name: Action Figures + children: [] + attributes: + - color + - toy_game_material - recommended_age_group +- id: tg-5-8-1-2 + name: Animal Figures + children: [] + attributes: + - color - toy_game_material + - recommended_age_group - id: tg-5-8-2 name: Bobblehead Figures children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-8-3 name: Doll & Action Figure Accessories children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-8-4 name: Dollhouse Accessories children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-8-5 name: Dollhouses children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-8-6 name: Dolls children: [] attributes: - color - doll_target_gender - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-8-7 name: Paper & Magnetic Dolls children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-8-8 name: Puppet & Puppet Theater Accessories children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-8-9 name: Puppet Theaters children: [] attributes: - color + - toy_game_material - puppet_theme - recommended_age_group - - toy_game_material - id: tg-5-8-10 name: Puppets & Marionettes children: [] attributes: - color + - toy_game_material - puppet_theme - puppet_type - recommended_age_group - - toy_game_material - id: tg-5-8-11 name: Stuffed Animals children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-8-12 name: Toy Playsets children: @@ -769,8 +1126,71 @@ - tg-5-8-12-9 attributes: - color + - toy_game_material + - recommended_age_group +- id: tg-5-8-12-1 + name: Action Figure Playsets + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-8-12-2 + name: Car Playsets + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-8-12-3 + name: Castle Playsets + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-8-12-4 + name: Dinosaur Playsets + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-8-12-5 + name: Doctor Playsets + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-8-12-6 + name: Doll House Playsets + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-8-12-7 + name: Farm Animal Playsets + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-8-12-8 + name: Kitchen Playsets + children: [] + attributes: + - color + - toy_game_material - recommended_age_group +- id: tg-5-8-12-9 + name: Picnic Playsets + children: [] + attributes: + - color - toy_game_material + - recommended_age_group - id: tg-5-9 name: Educational Toys children: @@ -783,15 +1203,15 @@ - tg-5-9-7 attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-9-1 name: Ant Farms children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-9-2 name: Astronomy Toys & Models children: @@ -803,108 +1223,178 @@ - tg-5-9-2-7 attributes: - color + - toy_game_material + - recommended_age_group +- id: tg-5-9-2-1 + name: Astronomy Puzzles + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-9-2-3 + name: Interactive Astronomy Books + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-9-2-4 + name: Planetariums + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-9-2-5 + name: Solar System Models + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-9-2-6 + name: Star & Planet Maps + children: [] + attributes: + - color + - toy_game_material - recommended_age_group +- id: tg-5-9-2-7 + name: Telescopes + children: [] + attributes: + - color - toy_game_material + - recommended_age_group - id: tg-5-9-3 name: Bug Collecting Kits children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-9-4 name: Educational Flash Cards children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-9-5 name: Reading Toys children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-9-6 name: Science & Exploration Sets children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-9-7 name: Toy Abacuses children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-10 name: Executive Toys children: - tg-5-10-2 attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-10-2 name: Magnet Toys children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-11 name: Flying Toy Accessories children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-12 name: Flying Toys children: - - tg-5-12-10 - - tg-5-12-3 - - tg-5-12-6 - - tg-5-12-8 - tg-5-12-2 + - tg-5-12-3 - tg-5-12-4 - tg-5-12-5 + - tg-5-12-6 - tg-5-12-7 + - tg-5-12-8 + - tg-5-12-10 attributes: - color - - recommended_age_group - toy_game_material -- id: tg-5-12-10 - name: Air & Water Rockets + - recommended_age_group +- id: tg-5-12-2 + name: Drones children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-12-3 name: Kites children: [] attributes: - color + - toy_game_material + - recommended_age_group +- id: tg-5-12-4 + name: Model Aircrafts + children: [] + attributes: + - color + - toy_game_material - recommended_age_group +- id: tg-5-12-5 + name: Model Rockets + children: [] + attributes: + - color - toy_game_material + - recommended_age_group - id: tg-5-12-6 name: Toy Gliders children: [] attributes: - color + - toy_game_material - recommended_age_group +- id: tg-5-12-7 + name: Toy Helicopters + children: [] + attributes: + - color - toy_game_material + - recommended_age_group - id: tg-5-12-8 name: Toy Parachutes children: [] attributes: - color + - toy_game_material - recommended_age_group +- id: tg-5-12-10 + name: Air & Water Rockets + children: [] + attributes: + - color - toy_game_material + - recommended_age_group - id: tg-5-13 name: Musical Toys children: @@ -921,96 +1411,184 @@ - tg-5-13-15 attributes: - color + - toy_game_material - power_source - recommended_age_group - - toy_game_material -- id: tg-5-14 - name: Play Vehicle Accessories +- id: tg-5-13-1 + name: DJ Studio Sets children: [] attributes: - color - - compatible_play_vehicle_type - - recommended_age_group - toy_game_material -- id: tg-5-15 - name: Play Vehicles - children: - - tg-5-15-1 - - tg-5-15-2 - - tg-5-15-3 - - tg-5-15-4 - - tg-5-15-5 - - tg-5-15-6 - - tg-5-15-7 - - tg-5-15-8 - - tg-5-15-9 + - power_source + - recommended_age_group +- id: tg-5-13-2 + name: Drums & Percussion Instruments + children: [] attributes: - color - - recommended_age_group - toy_game_material -- id: tg-5-15-1 - name: Toy Airplanes + - power_source + - recommended_age_group +- id: tg-5-13-4 + name: Interactive Musical Mats children: [] attributes: - color - - recommended_age_group - toy_game_material -- id: tg-5-15-2 - name: Toy Boats + - power_source + - recommended_age_group +- id: tg-5-13-5 + name: Karaoke Sets children: [] attributes: - color - - recommended_age_group - toy_game_material -- id: tg-5-15-3 - name: Toy Cars + - power_source + - recommended_age_group +- id: tg-5-13-6 + name: Microphones children: [] attributes: - color - - recommended_age_group - toy_game_material -- id: tg-5-15-4 - name: Toy Helicopters + - power_source + - recommended_age_group +- id: tg-5-13-7 + name: Musical Books children: [] attributes: - color - - recommended_age_group - toy_game_material -- id: tg-5-15-5 - name: Toy Motorcycles + - power_source + - recommended_age_group +- id: tg-5-13-9 + name: Musical Boxes children: [] attributes: - color - - recommended_age_group - toy_game_material -- id: tg-5-15-6 - name: Toy Race Car & Track Sets + - power_source + - recommended_age_group +- id: tg-5-13-12 + name: Pianos & Keyboards children: [] attributes: - color - - recommended_age_group - toy_game_material -- id: tg-5-15-7 - name: Toy Spaceships + - power_source + - recommended_age_group +- id: tg-5-13-13 + name: String Instruments children: [] attributes: - color - - recommended_age_group - toy_game_material -- id: tg-5-15-8 - name: Toy Trains & Train Sets + - power_source + - recommended_age_group +- id: tg-5-13-14 + name: Wind Instruments + children: [] + attributes: + - color + - toy_game_material + - power_source + - recommended_age_group +- id: tg-5-13-15 + name: Xylophones + children: [] + attributes: + - color + - toy_game_material + - power_source + - recommended_age_group +- id: tg-5-14 + name: Play Vehicle Accessories + children: [] + attributes: + - color + - compatible_play_vehicle_type + - toy_game_material + - recommended_age_group +- id: tg-5-15 + name: Play Vehicles + children: + - tg-5-15-1 + - tg-5-15-2 + - tg-5-15-3 + - tg-5-15-4 + - tg-5-15-5 + - tg-5-15-6 + - tg-5-15-7 + - tg-5-15-8 + - tg-5-15-9 + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-15-1 + name: Toy Airplanes + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-15-2 + name: Toy Boats + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-15-3 + name: Toy Cars + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-15-4 + name: Toy Helicopters + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-15-5 + name: Toy Motorcycles + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-15-6 + name: Toy Race Car & Track Sets children: [] attributes: - color + - toy_game_material + - recommended_age_group +- id: tg-5-15-7 + name: Toy Spaceships + children: [] + attributes: + - color + - toy_game_material - recommended_age_group +- id: tg-5-15-8 + name: Toy Trains & Train Sets + children: [] + attributes: + - color - toy_game_material + - recommended_age_group - id: tg-5-15-9 name: Toy Trucks & Construction Vehicles children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-16 name: Pretend Play children: @@ -1024,50 +1602,50 @@ - tg-5-16-8 attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-16-1 name: Play Money & Banking children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-16-2 name: Pretend Electronics children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-16-3 name: Pretend Housekeeping children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-16-4 name: Pretend Lawn & Garden children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-16-5 name: Pretend Professions & Role Playing children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-16-6 name: Pretend Shopping & Grocery children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-16-7 name: Toy Kitchens & Play Food children: @@ -1077,50 +1655,50 @@ - tg-5-16-7-4 attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-16-7-1 name: Play Food children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-16-7-2 name: Toy Cookware children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-16-7-3 name: Toy Kitchens children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-16-7-4 name: Toy Tableware children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-16-8 name: Toy Tools children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-17 name: Remote Control Toy Accessories children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-18 name: Remote Control Toys children: @@ -1134,80 +1712,80 @@ - tg-5-18-8 attributes: - color + - toy_game_material - recommended_age_group - skill_level - - toy_game_material - id: tg-5-18-1 name: Remote Control Airships & Blimps children: [] attributes: - color + - toy_game_material - recommended_age_group - skill_level - - toy_game_material - id: tg-5-18-2 name: Remote Control Boats & Watercraft children: [] attributes: - color + - toy_game_material - recommended_age_group - skill_level - - toy_game_material - id: tg-5-18-3 name: Remote Control Cars & Trucks children: [] attributes: - color + - toy_game_material - recommended_age_group - skill_level - - toy_game_material - id: tg-5-18-4 name: Remote Control Helicopters children: [] attributes: - color + - toy_game_material - recommended_age_group - skill_level - - toy_game_material - id: tg-5-18-5 name: Remote Control Motorcycles children: [] attributes: - color + - toy_game_material - recommended_age_group - skill_level - - toy_game_material - id: tg-5-18-6 name: Remote Control Planes children: [] attributes: - color + - toy_game_material - recommended_age_group - skill_level - - toy_game_material - id: tg-5-18-7 name: Remote Control Robots children: [] attributes: - color + - toy_game_material - recommended_age_group - skill_level - - toy_game_material - id: tg-5-18-8 name: Remote Control Tanks children: [] attributes: - color + - toy_game_material - recommended_age_group - skill_level - - toy_game_material - id: tg-5-19 name: Riding Toy Accessories children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-20 name: Riding Toys children: @@ -1218,66 +1796,67 @@ - tg-5-20-5 attributes: - color + - toy_game_material - recommended_age_group - riding_toy_propulsion_type - - toy_game_material - id: tg-5-20-1 name: Electric Riding Vehicles children: [] attributes: - color + - toy_game_material - recommended_age_group - riding_toy_propulsion_type - - toy_game_material - id: tg-5-20-2 name: Hobby Horses children: [] attributes: - color + - toy_game_material - recommended_age_group - riding_toy_propulsion_type - - toy_game_material - id: tg-5-20-3 name: Push & Pedal Riding Vehicles children: [] attributes: - color + - toy_game_material - recommended_age_group - riding_toy_propulsion_type - - toy_game_material - id: tg-5-20-4 name: Rocking & Spring Riding Toys children: [] attributes: - color + - toy_game_material - recommended_age_group - riding_toy_propulsion_type - - toy_game_material - id: tg-5-20-5 name: Wagons children: [] attributes: - color + - toy_game_material - recommended_age_group - riding_toy_propulsion_type - - toy_game_material - id: tg-5-21 name: Robotic Toys children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-22 name: Sports Toy Accessories children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-23 name: Sports Toys children: + - tg-5-23-1 - tg-5-23-2 - tg-5-23-3 - tg-5-23-4 @@ -1291,53 +1870,59 @@ - tg-5-23-12 - tg-5-23-13 - tg-5-23-14 - - tg-5-23-1 attributes: - color + - toy_game_material - recommended_age_group +- id: tg-5-23-1 + name: American Football Toys + children: [] + attributes: + - color - toy_game_material + - recommended_age_group - id: tg-5-23-2 name: Baseball Toys children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-23-3 name: Basketball Toys children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-23-4 name: Boomerangs children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-23-5 name: Bowling Toys children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-23-6 name: Fingerboards & Fingerboard Sets children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-23-7 name: Fishing Toys children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-23-8 name: Fitness Toys children: @@ -1348,85 +1933,106 @@ - tg-5-23-8-6 attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-23-8-2 name: Hula Hoops children: [] attributes: - color + - toy_game_material + - recommended_age_group +- id: tg-5-23-8-3 + name: Jump Ropes + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-23-8-4 + name: Kids' Exercise Balls + children: [] + attributes: + - color + - toy_game_material + - recommended_age_group +- id: tg-5-23-8-5 + name: Kids' Yoga Mats & Sets + children: [] + attributes: + - color + - toy_game_material - recommended_age_group +- id: tg-5-23-8-6 + name: Mini Trampolines + children: [] + attributes: + - color - toy_game_material + - recommended_age_group - id: tg-5-23-9 name: Flying Discs children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-23-10 name: Footbags children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-23-11 name: Golf Toys children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-23-12 name: Hockey Toys children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-23-13 name: Playground Balls children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-23-14 name: Racquet Sport Toys children: [] attributes: - color - - recommended_age_group - toy_game_material -- id: tg-5-23-1 - name: American Football Toys - children: [] - attributes: - - color - recommended_age_group - - toy_game_material - id: tg-5-24 name: Toy Gift Baskets children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-25 name: Toy Weapon & Gadget Accessories children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-26 name: Toy Weapons & Gadgets children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-27 name: Visual Toys children: @@ -1434,632 +2040,26 @@ - tg-5-27-2 attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-27-1 name: Kaleidoscopes children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-27-2 name: Prisms children: [] attributes: - color - - recommended_age_group - toy_game_material + - recommended_age_group - id: tg-5-28 name: Wind-Up Toys children: [] attributes: - color - - recommended_age_group - - toy_game_material -- id: tg-1-2 - name: Chess Clocks - children: [] - attributes: - - color - - recommended_age_group - toy_game_material -- id: tg-1-4 - name: Sand Timers - children: [] - attributes: - - color - recommended_age_group - - toy_game_material -- id: tg-2-4-1 - name: Blackjack Sets - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-2-4-2 - name: Craps Sets - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-2-8-3 - name: Fidget Toys - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-2-9-3 - name: Role-Playing Games - children: [] - attributes: - - color - - dice_shape - - recommended_age_group - - rpg_genre - - toy_game_material -- id: tg-3-7-1 - name: Sand Tables - children: [] - attributes: - - color - - housing_color - - recommended_age_group - - shape - - furniture_fixture_material - - toy_game_material -- id: tg-3-7-2 - name: Sandbox Covers - children: [] - attributes: - - color - - housing_color - - recommended_age_group - - shape - - cover_material -- id: tg-5-1-3 - name: Bubble Blowing Solutions - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-1-4-1 - name: Bubble Blowers - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-1-4-2 - name: Bubble Guns - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-1-4-3 - name: Bubble Machines - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-2-1 - name: Beading & Jewelry Making Kits - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-2-2 - name: Coloring Books & Pads - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-2-3 - name: Craft Kits - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-2-4 - name: Easel & Art Desks - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-2-5 - name: Paint-By-Number Kits - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-2-6-1 - name: Dough Extruders - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-2-6-2 - name: Glow In The Dark Putty - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-2-6-3 - name: Magnetic Putty - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-2-6-4 - name: Play Dough Sets - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-2-6-5 - name: Play Dough Tool Sets - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-2-6-6 - name: Slime & Putty Toys - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-2-7 - name: Spin & Spiral Art Kits - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-2-8 - name: Stamp & Stamp Pad Sets - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-2-9 - name: Stencil & Tracing Papers - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-2-10 - name: Stickers & Sticker Machines - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-5-1 - name: Bath Book Toys - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-5-2 - name: Bath Bubble Machines - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-5-3 - name: Bath Crayons - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-5-4 - name: Bath Puzzles - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-5-5 - name: Bath Squirters - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-5-6 - name: Floating Bath Toys - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-5-7 - name: Interactive Bath Toys - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-5-8 - name: Rubber Duckies - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-5-9 - name: Stacking Cups - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-5-10 - name: Waterproof Bath Dolls - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-6-1 - name: Beach Balls - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-6-2 - name: Beach Buckets - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-6-3 - name: Inflatable Rafts & Floats - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-6-4 - name: Sand & Water Mills - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-6-5 - name: Sand Castle Molds - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-6-6 - name: Sand Cups - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-6-7 - name: Sand Rakes - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-6-8 - name: Sand Shovels & Spades - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-6-9 - name: Sand Sifting Sieves - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-6-10 - name: Sand Toy Sets - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-6-11 - name: Water Guns - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-8-1-1 - name: Action Figures - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-8-1-2 - name: Animal Figures - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-8-12-1 - name: Action Figure Playsets - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-8-12-2 - name: Car Playsets - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-8-12-3 - name: Castle Playsets - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-8-12-4 - name: Dinosaur Playsets - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-8-12-5 - name: Doctor Playsets - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-8-12-6 - name: Doll House Playsets - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-8-12-7 - name: Farm Animal Playsets - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-8-12-8 - name: Kitchen Playsets - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-8-12-9 - name: Picnic Playsets - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-9-2-1 - name: Astronomy Puzzles - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-9-2-3 - name: Interactive Astronomy Books - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-9-2-4 - name: Planetariums - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-9-2-5 - name: Solar System Models - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-9-2-6 - name: Star & Planet Maps - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-9-2-7 - name: Telescopes - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-12-2 - name: Drones - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-12-4 - name: Model Aircrafts - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-12-5 - name: Model Rockets - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-12-7 - name: Toy Helicopters - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-13-1 - name: DJ Studio Sets - children: [] - attributes: - - color - - power_source - - recommended_age_group - - toy_game_material -- id: tg-5-13-2 - name: Drums & Percussion Instruments - children: [] - attributes: - - color - - power_source - - recommended_age_group - - toy_game_material -- id: tg-5-13-4 - name: Interactive Musical Mats - children: [] - attributes: - - color - - power_source - - recommended_age_group - - toy_game_material -- id: tg-5-13-5 - name: Karaoke Sets - children: [] - attributes: - - color - - power_source - - recommended_age_group - - toy_game_material -- id: tg-5-13-6 - name: Microphones - children: [] - attributes: - - color - - power_source - - recommended_age_group - - toy_game_material -- id: tg-5-13-7 - name: Musical Books - children: [] - attributes: - - color - - power_source - - recommended_age_group - - toy_game_material -- id: tg-5-13-9 - name: Musical Boxes - children: [] - attributes: - - color - - power_source - - recommended_age_group - - toy_game_material -- id: tg-5-13-12 - name: Pianos & Keyboards - children: [] - attributes: - - color - - power_source - - recommended_age_group - - toy_game_material -- id: tg-5-13-13 - name: String Instruments - children: [] - attributes: - - color - - power_source - - recommended_age_group - - toy_game_material -- id: tg-5-13-14 - name: Wind Instruments - children: [] - attributes: - - color - - power_source - - recommended_age_group - - toy_game_material -- id: tg-5-13-15 - name: Xylophones - children: [] - attributes: - - color - - power_source - - recommended_age_group - - toy_game_material -- id: tg-5-23-8-3 - name: Jump Ropes - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-23-8-4 - name: Kids' Exercise Balls - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-23-8-5 - name: Kids' Yoga Mats & Sets - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material -- id: tg-5-23-8-6 - name: Mini Trampolines - children: [] - attributes: - - color - - recommended_age_group - - toy_game_material diff --git a/data/categories/vp_vehicles_parts.yml b/data/categories/vp_vehicles_parts.yml index 7d7dd758..9c4c1695 100644 --- a/data/categories/vp_vehicles_parts.yml +++ b/data/categories/vp_vehicles_parts.yml @@ -9,19 +9,204 @@ name: Vehicle Parts & Accessories children: - vp-1-1 + - vp-1-2 - vp-1-3 - vp-1-4 - vp-1-5 - vp-1-6 - vp-1-7 - vp-1-8 - - vp-1-2 attributes: [] - id: vp-1-1 name: Aircraft Parts & Accessories children: [] attributes: - compatible_aircraft_type +- id: vp-1-2 + name: Electric Vehicle (EV) Parts & Accessories + children: + - vp-1-2-1 + - vp-1-2-2 + - vp-1-2-3 + - vp-1-2-4 + - vp-1-2-5 + - vp-1-2-6 + - vp-1-2-7 + - vp-1-2-8 + - vp-1-2-9 + attributes: [] +- id: vp-1-2-1 + name: Battery Management Systems + children: [] + attributes: + - compatible_battery_technology + - item_condition + - manufacturer_type +- id: vp-1-2-2 + name: Charging Cables + children: [] + attributes: + - charging_cable_type + - color + - item_condition + - manufacturer_type +- id: vp-1-2-3 + name: Charging Stations + children: [] + attributes: + - charging_level + - color + - input_phase_type + - item_condition + - manufacturer_type + - station_type +- id: vp-1-2-4 + name: Connectors & Adapters + children: [] + attributes: + - color + - ev_connector_adapter_type + - item_condition + - manufacturer_type +- id: vp-1-2-5 + name: Conversion Kits + children: + - vp-1-2-5-1 + - vp-1-2-5-2 + - vp-1-2-5-3 + - vp-1-2-5-4 + - vp-1-2-5-5 + attributes: + - ev_conversion_kit_components + - item_condition + - manufacturer_type +- id: vp-1-2-5-1 + name: Car EV Conversion Kits + children: [] + attributes: + - ev_conversion_kit_components + - item_condition + - manufacturer_type +- id: vp-1-2-5-2 + name: Motorcycle EV Conversion Kits + children: [] + attributes: + - ev_conversion_kit_components + - item_condition + - manufacturer_type +- id: vp-1-2-5-3 + name: Scooter EV Conversion Kits + children: [] + attributes: + - ev_conversion_kit_components + - item_condition + - manufacturer_type +- id: vp-1-2-5-4 + name: Truck EV Conversion Kits + children: [] + attributes: + - ev_conversion_kit_components + - item_condition + - manufacturer_type +- id: vp-1-2-5-5 + name: Van EV Conversion Kits + children: [] + attributes: + - ev_conversion_kit_components + - item_condition + - manufacturer_type +- id: vp-1-2-6 + name: Electric Vehicle Batteries + children: [] + attributes: + - ev_battery_type + - item_condition + - manufacturer_type +- id: vp-1-2-7 + name: Power Inverters + children: [] + attributes: + - color + - inverter_type + - item_condition + - manufacturer_type +- id: vp-1-2-8 + name: Protective Cases + children: + - vp-1-2-8-1 + - vp-1-2-8-2 + - vp-1-2-8-3 + - vp-1-2-8-4 + - vp-1-2-8-5 + - vp-1-2-8-6 + attributes: + - accessory_size + - color + - item_condition + - manufacturer_type + - bag_case_material +- id: vp-1-2-8-1 + name: Adapter Cases + children: [] + attributes: + - accessory_size + - color + - item_condition + - manufacturer_type + - bag_case_material +- id: vp-1-2-8-2 + name: Battery Cases + children: [] + attributes: + - accessory_size + - color + - item_condition + - manufacturer_type + - bag_case_material +- id: vp-1-2-8-3 + name: Charging Cable Cases + children: [] + attributes: + - accessory_size + - color + - item_condition + - manufacturer_type + - bag_case_material +- id: vp-1-2-8-4 + name: Connector Cases + children: [] + attributes: + - accessory_size + - color + - item_condition + - manufacturer_type + - bag_case_material +- id: vp-1-2-8-5 + name: Conversion Kit Cases + children: [] + attributes: + - accessory_size + - color + - item_condition + - manufacturer_type + - bag_case_material +- id: vp-1-2-8-6 + name: Tool Cases + children: [] + attributes: + - accessory_size + - color + - item_condition + - manufacturer_type + - bag_case_material +- id: vp-1-2-9 + name: Regenerative Braking Modules + children: [] + attributes: + - color + - item_condition + - manufacturer_type + - item_material - id: vp-1-3 name: Motor Vehicle Electronics children: @@ -80,6 +265,30 @@ - item_condition - manufacturer_type - power_source +- id: vp-1-3-4-1 + name: Double DIN Cassette Players + children: [] + attributes: + - color + - item_condition + - manufacturer_type + - power_source +- id: vp-1-3-4-2 + name: Single DIN Cassette Players + children: [] + attributes: + - color + - item_condition + - manufacturer_type + - power_source +- id: vp-1-3-4-3 + name: Under-Dash Players + children: [] + attributes: + - color + - item_condition + - manufacturer_type + - power_source - id: vp-1-3-5 name: Motor Vehicle Equalizers & Crossovers children: @@ -93,3877 +302,3544 @@ - item_condition - manufacturer_type - power_source -- id: vp-1-3-6 - name: Motor Vehicle Parking Cameras - children: - - vp-1-3-6-1 - - vp-1-3-6-2 +- id: vp-1-3-5-1 + name: Active Crossovers + children: [] attributes: - color - item_condition - manufacturer_type - power_source -- id: vp-1-3-7 - name: Motor Vehicle Speakerphones +- id: vp-1-3-5-2 + name: Digital Sound Processors children: [] attributes: - color - item_condition - manufacturer_type - power_source - - speakerphone_type -- id: vp-1-3-8 - name: Motor Vehicle Speakers - children: - - vp-1-3-8-1 - - vp-1-3-8-2 - - vp-1-3-8-3 - - vp-1-3-8-4 - - vp-1-3-8-6 - - vp-1-3-8-7 +- id: vp-1-3-5-3 + name: Graphic Equalizers + children: [] attributes: - color - item_condition - manufacturer_type - power_source -- id: vp-1-3-9 - name: Motor Vehicle Subwoofers +- id: vp-1-3-5-4 + name: Parametric Equalizers children: [] attributes: - color - item_condition - manufacturer_type - power_source -- id: vp-1-3-10 - name: Motor Vehicle Video Monitor Mounts - children: - - vp-1-3-10-1 - - vp-1-3-10-2 - - vp-1-3-10-3 - - vp-1-3-10-4 - - vp-1-3-10-5 - - vp-1-3-10-6 - - vp-1-3-10-7 +- id: vp-1-3-5-5 + name: Passive Crossovers + children: [] attributes: - color - item_condition - manufacturer_type - power_source - - mount_material -- id: vp-1-4 - name: Motor Vehicle Parts +- id: vp-1-3-6 + name: Motor Vehicle Parking Cameras children: - - vp-1-4-1 - - vp-1-4-2 - - vp-1-4-3 - - vp-1-4-4 - - vp-1-4-5 - - vp-1-4-6 - - vp-1-4-7 - - vp-1-4-8 - - vp-1-4-9 - - vp-1-4-10 - - vp-1-4-11 - - vp-1-4-12 - - vp-1-4-13 - - vp-1-4-14 - - vp-1-4-15 - - vp-1-4-16 - - vp-1-4-17 - - vp-1-4-18 - - vp-1-4-19 - - vp-1-4-20 - - vp-1-4-21 + - vp-1-3-6-1 + - vp-1-3-6-2 attributes: - color - item_condition - manufacturer_type -- id: vp-1-4-1 - name: Motor Vehicle Braking - children: - - vp-1-4-1-1 - - vp-1-4-1-2 - - vp-1-4-1-3 - - vp-1-4-1-4 - - vp-1-4-1-5 - - vp-1-4-1-6 - - vp-1-4-1-7 - - vp-1-4-1-8 + - power_source +- id: vp-1-3-6-1 + name: 360-Degree Cameras + children: [] attributes: - color - item_condition - manufacturer_type -- id: vp-1-4-2 - name: Motor Vehicle Carpet & Upholstery - children: - - vp-1-4-2-1 - - vp-1-4-2-2 - - vp-1-4-2-3 - - vp-1-4-2-4 - - vp-1-4-2-5 - - vp-1-4-2-6 - - vp-1-4-2-7 - - vp-1-4-2-8 + - power_source +- id: vp-1-3-6-2 + name: Backup Cameras + children: [] attributes: - color - item_condition - manufacturer_type - - pattern - - fabric -- id: vp-1-4-3 - name: Motor Vehicle Climate Control - children: - - vp-1-4-3-1 - - vp-1-4-3-2 - - vp-1-4-3-3 - - vp-1-4-3-4 - - vp-1-4-3-5 - - vp-1-4-3-6 - - vp-1-4-3-7 - - vp-1-4-3-8 + - power_source +- id: vp-1-3-7 + name: Motor Vehicle Speakerphones + children: [] attributes: - color - item_condition - manufacturer_type - - item_material -- id: vp-1-4-4 - name: Motor Vehicle Controls + - power_source + - speakerphone_type +- id: vp-1-3-8 + name: Motor Vehicle Speakers children: - - vp-1-4-4-1 - - vp-1-4-4-2 - - vp-1-4-4-3 - - vp-1-4-4-4 - - vp-1-4-4-5 - - vp-1-4-4-6 + - vp-1-3-8-1 + - vp-1-3-8-2 + - vp-1-3-8-3 + - vp-1-3-8-4 + - vp-1-3-8-6 + - vp-1-3-8-7 attributes: - color - item_condition - manufacturer_type - - item_material -- id: vp-1-4-5 - name: Motor Vehicle Engine Oil Circulation - children: - - vp-1-4-5-1 - - vp-1-4-5-2 - - vp-1-4-5-3 - - vp-1-4-5-4 - - vp-1-4-5-5 - - vp-1-4-5-6 - - vp-1-4-5-7 - - vp-1-4-5-8 + - power_source +- id: vp-1-3-8-1 + name: Coaxial Speakers + children: [] attributes: - color - item_condition - manufacturer_type - - item_material -- id: vp-1-4-6 - name: Motor Vehicle Engine Parts - children: - - vp-1-4-6-1 - - vp-1-4-6-2 - - vp-1-4-6-3 - - vp-1-4-6-4 - - vp-1-4-6-5 - - vp-1-4-6-6 - - vp-1-4-6-7 - - vp-1-4-6-8 - - vp-1-4-6-9 + - power_source +- id: vp-1-3-8-2 + name: Component Speakers + children: [] attributes: - color - item_condition - manufacturer_type - - item_material -- id: vp-1-4-7 - name: Motor Vehicle Engines - children: - - vp-1-4-7-1 - - vp-1-4-7-2 - - vp-1-4-7-3 - - vp-1-4-7-4 - - vp-1-4-7-5 - - vp-1-4-7-6 - - vp-1-4-7-7 - - vp-1-4-7-8 + - power_source +- id: vp-1-3-8-3 + name: Full-Range Speakers + children: [] attributes: - color - - engine_design - - engine_type - item_condition - manufacturer_type -- id: vp-1-4-8 - name: Motor Vehicle Exhaust + - power_source +- id: vp-1-3-8-4 + name: Mid-Range Speakers children: [] attributes: - color - item_condition - manufacturer_type - - motor_vehicle_type - - item_material -- id: vp-1-4-9 - name: Motor Vehicle Frame & Body Parts - children: - - vp-1-4-9-1 - - vp-1-4-9-2 - - vp-1-4-9-3 - - vp-1-4-9-4 - - vp-1-4-9-5 - - vp-1-4-9-6 - - vp-1-4-9-7 - - vp-1-4-9-8 + - power_source +- id: vp-1-3-8-6 + name: Tweeters + children: [] attributes: - color - item_condition - manufacturer_type - - item_material -- id: vp-1-4-10 - name: Motor Vehicle Fuel Systems - children: - - vp-1-4-10-1 - - vp-1-4-10-2 - - vp-1-4-10-3 - - vp-1-4-10-4 - - vp-1-4-10-5 - - vp-1-4-10-6 - - vp-1-4-10-7 - - vp-1-4-10-8 + - power_source +- id: vp-1-3-8-7 + name: Woofers + children: [] attributes: - color - - fuel_supply - item_condition - manufacturer_type - - item_material -- id: vp-1-4-11 - name: Motor Vehicle Interior Fittings - children: - - vp-1-4-11-1 - - vp-1-4-11-2 - - vp-1-4-11-3 - - vp-1-4-11-4 - - vp-1-4-11-5 - - vp-1-4-11-6 - - vp-1-4-11-7 + - power_source +- id: vp-1-3-9 + name: Motor Vehicle Subwoofers + children: [] attributes: - color - - fit_type - item_condition - manufacturer_type - - motor_vehicle_type - - pattern - - item_material -- id: vp-1-4-12 - name: Motor Vehicle Lighting + - power_source +- id: vp-1-3-10 + name: Motor Vehicle Video Monitor Mounts children: - - vp-1-4-12-1 - - vp-1-4-12-2 - - vp-1-4-12-3 - - vp-1-4-12-4 - - vp-1-4-12-5 - - vp-1-4-12-6 - - vp-1-4-12-7 - - vp-1-4-12-8 + - vp-1-3-10-1 + - vp-1-3-10-2 + - vp-1-3-10-3 + - vp-1-3-10-4 + - vp-1-3-10-5 + - vp-1-3-10-6 + - vp-1-3-10-7 attributes: - color - - fit_type - item_condition - - light_source - manufacturer_type -- id: vp-1-4-13 - name: Motor Vehicle Mirrors + - mount_material + - power_source +- id: vp-1-3-10-1 + name: Dashboard Mounts children: [] attributes: - color - item_condition - manufacturer_type -- id: vp-1-4-14 - name: Motor Vehicle Power & Electrical Systems - children: - - vp-1-4-14-1 - - vp-1-4-14-2 - - vp-1-4-14-3 - - vp-1-4-14-4 - - vp-1-4-14-5 - - vp-1-4-14-6 - - vp-1-4-14-7 - - vp-1-4-14-8 + - mount_material + - power_source +- id: vp-1-3-10-2 + name: Headrest Mounts + children: [] attributes: - color - item_condition - manufacturer_type -- id: vp-1-4-15 - name: Motor Vehicle Seating - children: - - vp-1-4-15-1 - - vp-1-4-15-2 + - mount_material + - power_source +- id: vp-1-3-10-3 + name: Overhead Mounts + children: [] attributes: - color - item_condition - manufacturer_type - - fabric -- id: vp-1-4-16 - name: Motor Vehicle Sensors & Gauges - children: - - vp-1-4-16-1 - - vp-1-4-16-2 - - vp-1-4-16-3 - - vp-1-4-16-4 - - vp-1-4-16-5 - - vp-1-4-16-6 - - vp-1-4-16-7 - - vp-1-4-16-8 + - mount_material + - power_source +- id: vp-1-3-10-4 + name: Rearview Mirror Mounts + children: [] attributes: - color - - gauge_type - item_condition - manufacturer_type -- id: vp-1-4-17 - name: Motor Vehicle Suspension Parts - children: - - vp-1-4-17-1 - - vp-1-4-17-2 - - vp-1-4-17-3 - - vp-1-4-17-4 - - vp-1-4-17-5 - - vp-1-4-17-6 - - vp-1-4-17-7 - - vp-1-4-17-8 + - mount_material + - power_source +- id: vp-1-3-10-5 + name: Seat Mounts + children: [] attributes: - color - item_condition - manufacturer_type - - motor_vehicle_placement -- id: vp-1-4-18 - name: Motor Vehicle Towing - children: - - vp-1-4-18-1 - - vp-1-4-18-2 - - vp-1-4-18-3 - - vp-1-4-18-4 - - vp-1-4-18-5 - - vp-1-4-18-6 - - vp-1-4-18-7 - - vp-1-4-18-8 + - mount_material + - power_source +- id: vp-1-3-10-6 + name: Sun Visor Mounts + children: [] attributes: - color - item_condition - manufacturer_type - - item_material -- id: vp-1-4-19 - name: Motor Vehicle Transmission & Drivetrain Parts - children: - - vp-1-4-19-1 - - vp-1-4-19-2 - - vp-1-4-19-3 - - vp-1-4-19-4 - - vp-1-4-19-5 - - vp-1-4-19-6 - - vp-1-4-19-7 - - vp-1-4-19-8 + - mount_material + - power_source +- id: vp-1-3-10-7 + name: Windshield Mounts + children: [] attributes: - color - item_condition - manufacturer_type - - transmission_type -- id: vp-1-4-20 - name: Motor Vehicle Wheel Systems + - mount_material + - power_source +- id: vp-1-4 + name: Motor Vehicle Parts children: - - vp-1-4-20-1 - - vp-1-4-20-2 - - vp-1-4-20-3 - - vp-1-4-20-4 + - vp-1-4-1 + - vp-1-4-2 + - vp-1-4-3 + - vp-1-4-4 + - vp-1-4-5 + - vp-1-4-6 + - vp-1-4-7 + - vp-1-4-8 + - vp-1-4-9 + - vp-1-4-10 + - vp-1-4-11 + - vp-1-4-12 + - vp-1-4-13 + - vp-1-4-14 + - vp-1-4-15 + - vp-1-4-16 + - vp-1-4-17 + - vp-1-4-18 + - vp-1-4-19 + - vp-1-4-20 + - vp-1-4-21 attributes: - color - item_condition - manufacturer_type - - item_material -- id: vp-1-4-20-1 - name: Motor Vehicle Rims & Wheels +- id: vp-1-4-1 + name: Motor Vehicle Braking children: - - vp-1-4-20-1-1 - - vp-1-4-20-1-2 - - vp-1-4-20-1-3 + - vp-1-4-1-1 + - vp-1-4-1-2 + - vp-1-4-1-3 + - vp-1-4-1-4 + - vp-1-4-1-5 + - vp-1-4-1-6 + - vp-1-4-1-7 + - vp-1-4-1-8 attributes: - color - item_condition - manufacturer_type - - rim_wheel_design - - item_material -- id: vp-1-4-20-1-1 - name: Automotive Rims & Wheels +- id: vp-1-4-1-1 + name: Anti-Lock Braking System (ABS) Parts children: [] attributes: - color - item_condition - manufacturer_type - - rim_wheel_design - - item_material -- id: vp-1-4-20-1-2 - name: Motorcycle Rims & Wheels +- id: vp-1-4-1-2 + name: Brake Boosters children: [] attributes: - color - item_condition - manufacturer_type - - rim_wheel_design - - item_material -- id: vp-1-4-20-1-3 - name: Off-Road and All-Terrain Vehicle Rims & Wheels +- id: vp-1-4-1-3 + name: Brake Calipers children: [] attributes: - color - item_condition - manufacturer_type - - rim_wheel_design - - item_material -- id: vp-1-4-20-2 - name: Motor Vehicle Tire Accessories +- id: vp-1-4-1-4 + name: Brake Fluid + children: [] + attributes: + - color +- id: vp-1-4-1-5 + name: Brake Lines children: [] attributes: - color - item_condition - manufacturer_type - - item_material -- id: vp-1-4-20-3 - name: Motor Vehicle Tires - children: - - vp-1-4-20-3-1 - - vp-1-4-20-3-2 - - vp-1-4-20-3-3 +- id: vp-1-4-1-6 + name: Brake Master Cylinders + children: [] attributes: - color - item_condition - manufacturer_type - - item_material -- id: vp-1-4-20-3-1 - name: Automotive Tires +- id: vp-1-4-1-7 + name: Brake Pads children: [] attributes: - color - item_condition - manufacturer_type - - vehicle_tire_type - - item_material -- id: vp-1-4-20-3-2 - name: Motorcycle Tires +- id: vp-1-4-1-8 + name: Brake Rotors children: [] attributes: - color - item_condition - manufacturer_type - - motorcycle_tire_type - - item_material -- id: vp-1-4-20-3-3 - name: Off-Road and All-Terrain Vehicle Tires - children: [] +- id: vp-1-4-2 + name: Motor Vehicle Carpet & Upholstery + children: + - vp-1-4-2-1 + - vp-1-4-2-2 + - vp-1-4-2-3 + - vp-1-4-2-4 + - vp-1-4-2-5 + - vp-1-4-2-6 + - vp-1-4-2-7 + - vp-1-4-2-8 attributes: - - atv_off_road_tire_type - color - item_condition - manufacturer_type - - item_material -- id: vp-1-4-20-4 - name: Motor Vehicle Wheel Parts + - fabric + - pattern +- id: vp-1-4-2-1 + name: Cargo Liners children: [] attributes: - color - item_condition - manufacturer_type - - wheel_part_type - - item_material -- id: vp-1-4-21 - name: Motor Vehicle Window Parts & Accessories + - fabric + - pattern +- id: vp-1-4-2-2 + name: Carpet Kits children: [] attributes: - color - item_condition - manufacturer_type - - item_material -- id: vp-1-5 - name: Vehicle Maintenance, Care & Decor - children: - - vp-1-5-1 - - vp-1-5-2 - - vp-1-5-3 - - vp-1-5-4 - - vp-1-5-5 - - vp-1-5-6 - - vp-1-5-7 + - fabric + - pattern +- id: vp-1-4-2-3 + name: Console Covers + children: [] attributes: - color - - vehicle_type -- id: vp-1-5-1 - name: Portable Fuel Cans + - item_condition + - manufacturer_type + - cover_material + - pattern +- id: vp-1-4-2-4 + name: Dash Covers children: [] attributes: - color - - material - - vehicle_type -- id: vp-1-5-2 - name: Vehicle Cleaning - children: - - vp-1-5-2-1 - - vp-1-5-2-2 - - vp-1-5-2-3 - - vp-1-5-2-4 - - vp-1-5-2-5 - - vp-1-5-2-6 + - item_condition + - manufacturer_type + - cover_material + - pattern +- id: vp-1-4-2-5 + name: Door Panels + children: [] attributes: - color - - vehicle_application_area - - vehicle_type -- id: vp-1-5-2-1 - name: Car Wash Brushes + - item_condition + - manufacturer_type + - fabric + - pattern +- id: vp-1-4-2-6 + name: Headliners children: [] attributes: - - brush_type - color - - vehicle_application_area - - vehicle_type - - bristle_material -- id: vp-1-5-2-2 - name: Car Wash Solutions - children: - - vp-1-5-2-2-1 - - vp-1-5-2-2-2 - - vp-1-5-2-2-3 - - vp-1-5-2-2-4 - attributes: - - color - - package_type - - vehicle_application_area - - vehicle_type -- id: vp-1-5-2-3 - name: Vehicle Carpet & Upholstery Cleaners - children: - - vp-1-5-2-3-1 - - vp-1-5-2-3-2 - - vp-1-5-2-3-3 - attributes: - - color - - package_type - - vehicle_application_area - - vehicle_type -- id: vp-1-5-2-4 - name: Vehicle Fuel Injection Cleaning Kits - children: [] - attributes: - - color - - package_type - - vehicle_application_area - - vehicle_type -- id: vp-1-5-2-5 - name: Vehicle Glass Cleaners - children: [] - attributes: - - color - - package_type - - vehicle_application_area - - vehicle_type -- id: vp-1-5-2-6 - name: Vehicle Waxes, Polishes & Protectants - children: - - vp-1-5-2-6-1 - - vp-1-5-2-6-2 - - vp-1-5-2-6-3 - - vp-1-5-2-6-4 - attributes: - - color - - package_type - - vehicle_application_area - - vehicle_type -- id: vp-1-5-3 - name: Vehicle Covers - children: - - vp-1-5-3-1 - - vp-1-5-3-2 - - vp-1-5-3-3 - - vp-1-5-3-4 - - vp-1-5-3-5 - - vp-1-5-3-6 - attributes: - - color - - cover_type - - vehicle_application_area - - vehicle_type - - cover_material -- id: vp-1-5-3-1 - name: Golf Cart Enclosures - children: [] - attributes: - - color - - vehicle_application_area - - vehicle_type - - cover_material -- id: vp-1-5-3-2 - name: Motor Vehicle Windshield Covers - children: [] - attributes: - - color - - vehicle_application_area - - vehicle_type - - cover_material -- id: vp-1-5-3-3 - name: Tonneau Covers - children: [] - attributes: - - color - - cover_type - - vehicle_application_area - - vehicle_type - - cover_material -- id: vp-1-5-3-4 - name: Vehicle Hardtops - children: [] - attributes: - - color - - vehicle_application_area - - vehicle_type - - cover_material -- id: vp-1-5-3-5 - name: Vehicle Soft Tops - children: [] - attributes: - - color - - vehicle_application_area - - vehicle_type - - cover_material -- id: vp-1-5-3-6 - name: Vehicle Storage Covers - children: - - vp-1-5-3-6-1 - - vp-1-5-3-6-2 - - vp-1-5-3-6-3 - - vp-1-5-3-6-4 - - vp-1-5-3-6-5 - attributes: - - color - - cover_type - - vehicle_application_area - - vehicle_type - - cover_material -- id: vp-1-5-3-6-1 - name: Automotive Storage Covers - children: [] - attributes: - - color - - cover_type - - vehicle_application_area - - vehicle_type - - cover_material -- id: vp-1-5-3-6-2 - name: Golf Cart Storage Covers - children: [] - attributes: - - color - - cover_type - - vehicle_application_area - - vehicle_type - - cover_material -- id: vp-1-5-3-6-3 - name: Motorcycle Storage Covers - children: [] - attributes: - - color - - cover_type - - vehicle_application_area - - vehicle_type - - cover_material -- id: vp-1-5-3-6-4 - name: Recreational Vehicle Storage Covers - children: [] - attributes: - - color - - cover_type - - vehicle_application_area - - vehicle_type - - cover_material -- id: vp-1-5-3-6-5 - name: Watercraft Storage Covers - children: [] - attributes: - - color - - cover_type - - vehicle_application_area - - vehicle_type - - cover_material -- id: vp-1-5-4 - name: Vehicle Decor - children: - - vp-1-5-4-1 - - vp-1-5-4-2 - - vp-1-5-4-3 - - vp-1-5-4-4 - - vp-1-5-4-5 - - vp-1-5-4-6 - - vp-1-5-4-7 - - vp-1-5-4-8 - - vp-1-5-4-9 - - vp-1-5-4-10 - - vp-1-5-4-11 - - vp-1-5-4-12 - - vp-1-5-4-13 - - vp-1-5-4-14 - - vp-1-5-4-15 - - vp-1-5-4-16 - - vp-1-5-4-17 - - vp-1-5-4-18 - - vp-1-5-4-19 - attributes: - - accessory_size - - color - - vehicle_application_area - - vehicle_type - - decoration_material -- id: vp-1-5-4-1 - name: Bumper Stickers - children: [] - attributes: - - accessory_size - - color - - vehicle_application_area - - vehicle_type - - decoration_material -- id: vp-1-5-4-2 - name: Vehicle Air Fresheners - children: [] - attributes: - - accessory_size - - air_freshener_form - - car_freshener_fragrance - - color - - vehicle_application_area - - vehicle_type - - decoration_material -- id: vp-1-5-4-3 - name: Vehicle Antenna Balls - children: [] - attributes: - - accessory_size - - color - - vehicle_application_area - - vehicle_type - - decoration_material -- id: vp-1-5-4-4 - name: Vehicle Dashboard Accessories - children: [] - attributes: - - accessory_size - - color - - vehicle_application_area - - vehicle_type - - decoration_material -- id: vp-1-5-4-5 - name: Vehicle Decals - children: [] - attributes: - - accessory_size - - color - - vehicle_application_area - - vehicle_type - - decoration_material -- id: vp-1-5-4-6 - name: Vehicle Decor Accessory Sets - children: [] - attributes: - - accessory_size - - color - - vehicle_application_area - - vehicle_type - - decoration_material -- id: vp-1-5-4-7 - name: Vehicle Display Flags - children: [] - attributes: - - accessory_size - - color - - vehicle_application_area - - vehicle_type - - decoration_material -- id: vp-1-5-4-8 - name: Vehicle Emblems & Hood Ornaments - children: [] - attributes: - - accessory_size - - color - - vehicle_application_area - - vehicle_type - - decoration_material -- id: vp-1-5-4-9 - name: Vehicle Hitch Covers - children: [] - attributes: - - accessory_size - - color - - vehicle_application_area - - vehicle_type - - cover_material -- id: vp-1-5-4-10 - name: Vehicle License Plate Covers - children: [] - attributes: - - accessory_size - - color - - vehicle_application_area - - vehicle_type - - cover_material -- id: vp-1-5-4-11 - name: Vehicle License Plate Frames - children: [] - attributes: - - accessory_size - - color - - vehicle_application_area - - vehicle_type - - decoration_material -- id: vp-1-5-4-12 - name: Vehicle License Plate Mounts & Holders - children: [] - attributes: - - accessory_size - - color - - vehicle_application_area - - vehicle_type - - mount_material -- id: vp-1-5-4-13 - name: Vehicle License Plates - children: [] - attributes: - - accessory_size - - color - - vehicle_application_area - - vehicle_type - - decoration_material -- id: vp-1-5-4-14 - name: Vehicle Magnets - children: [] - attributes: - - accessory_size - - color - - vehicle_application_area - - vehicle_type - - decoration_material -- id: vp-1-5-4-15 - name: Vehicle Rear View Mirror Ornaments - children: [] - attributes: - - accessory_size - - color - - vehicle_application_area - - vehicle_type - - decoration_material -- id: vp-1-5-4-16 - name: Vehicle Shift Boots - children: [] - attributes: - - accessory_size - - color - - vehicle_application_area - - vehicle_type - - decoration_material -- id: vp-1-5-4-17 - name: Vehicle Shift Knobs - children: [] - attributes: - - accessory_size - - color - - vehicle_application_area - - vehicle_type - - decoration_material -- id: vp-1-5-4-18 - name: Vehicle Steering Wheel Covers - children: [] - attributes: - - accessory_size - - color - - vehicle_application_area - - vehicle_type - - cover_material -- id: vp-1-5-4-19 - name: Vehicle Wraps - children: [] - attributes: - - accessory_size - - color - - vehicle_application_area - - vehicle_type - - decoration_material -- id: vp-1-5-5 - name: Vehicle Fluids - children: - - vp-1-5-5-1 - - vp-1-5-5-2 - - vp-1-5-5-3 - - vp-1-5-5-4 - - vp-1-5-5-5 - - vp-1-5-5-6 - - vp-1-5-5-7 - - vp-1-5-5-8 - - vp-1-5-5-9 - - vp-1-5-5-10 - - vp-1-5-5-11 - - vp-1-5-5-12 - attributes: - - color - - vehicle_type -- id: vp-1-5-5-1 - name: Vehicle Antifreeze - children: [] - attributes: - - antifreeze_type - - color - - vehicle_type -- id: vp-1-5-5-2 - name: Vehicle Brake Fluid + - item_condition + - manufacturer_type + - fabric + - pattern +- id: vp-1-4-2-7 + name: Trunk Mats children: [] attributes: - color - - vehicle_type -- id: vp-1-5-5-3 - name: Vehicle Cooling System Additives - children: - - vp-1-5-5-3-1 - - vp-1-5-5-3-2 - - vp-1-5-5-3-3 - attributes: - - color - - vehicle_type -- id: vp-1-5-5-4 - name: Vehicle Engine Degreasers + - item_condition + - manufacturer_type + - fabric + - pattern +- id: vp-1-4-2-8 + name: Upholstery Fabric children: [] attributes: - color - - vehicle_type -- id: vp-1-5-5-5 - name: Vehicle Fuel System Cleaners + - item_condition + - manufacturer_type + - fabric + - pattern +- id: vp-1-4-3 + name: Motor Vehicle Climate Control children: - - vp-1-5-5-5-1 - - vp-1-5-5-5-2 - - vp-1-5-5-5-3 + - vp-1-4-3-1 + - vp-1-4-3-2 + - vp-1-4-3-3 + - vp-1-4-3-4 + - vp-1-4-3-5 + - vp-1-4-3-6 + - vp-1-4-3-7 + - vp-1-4-3-8 attributes: - color - - vehicle_type -- id: vp-1-5-5-6 - name: Vehicle Greases + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-3-1 + name: AC Compressors children: [] attributes: - color - - vehicle_type -- id: vp-1-5-5-7 - name: Vehicle Hydraulic Clutch Fluid + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-3-2 + name: AC Condensers children: [] attributes: - color - - vehicle_type -- id: vp-1-5-5-8 - name: Vehicle Motor Oil - children: - - vp-1-5-5-8-1 - - vp-1-5-5-8-3 - - vp-1-5-5-8-2 - - vp-1-5-5-8-4 - attributes: - - color - - vehicle_type - - viscosity -- id: vp-1-5-5-9 - name: Vehicle Performance Additives + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-3-3 + name: AC Evaporators children: [] attributes: - color - - vehicle_type -- id: vp-1-5-5-10 - name: Vehicle Power Steering Fluid + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-3-4 + name: AC Hoses children: [] attributes: - color - - vehicle_type -- id: vp-1-5-5-11 - name: Vehicle Transmission Fluid + - item_condition + - manufacturer_type + - hose_material +- id: vp-1-4-3-5 + name: Blower Motors children: [] attributes: - color - - vehicle_type -- id: vp-1-5-5-12 - name: Vehicle Windshield Fluid + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-3-6 + name: Climate Control Modules children: [] attributes: - color - - vehicle_type -- id: vp-1-5-6 - name: Vehicle Paint - children: - - vp-1-5-6-1 - - vp-1-5-6-2 - attributes: - - color - - paint_finish - - vehicle_paint_type - - vehicle_type -- id: vp-1-5-6-1 - name: Motor Vehicle Body Paint + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-3-7 + name: Heater Controls children: [] attributes: - color - - paint_finish - - vehicle_application_area - - vehicle_paint_type - - vehicle_type -- id: vp-1-5-6-2 - name: Motor Vehicle Brake Caliper Paint + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-3-8 + name: Heater Cores children: [] attributes: - color - - paint_finish - - vehicle_application_area - - vehicle_paint_type - - vehicle_type -- id: vp-1-5-7 - name: Vehicle Repair & Specialty Tools + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-4 + name: Motor Vehicle Controls children: - - vp-1-5-7-1 - - vp-1-5-7-2 - - vp-1-5-7-3 - - vp-1-5-7-4 - - vp-1-5-7-5 - - vp-1-5-7-6 - - vp-1-5-7-7 - - vp-1-5-7-8 - - vp-1-5-7-9 - - vp-1-5-7-10 + - vp-1-4-4-1 + - vp-1-4-4-2 + - vp-1-4-4-3 + - vp-1-4-4-4 + - vp-1-4-4-5 + - vp-1-4-4-6 attributes: - color - - power_source - - vehicle_type -- id: vp-1-5-7-1 - name: Motor Vehicle Brake Service Kits + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-4-1 + name: Handbrakes children: [] attributes: - color - - material - - power_source - - vehicle_type -- id: vp-1-5-7-2 - name: Motor Vehicle Clutch Alignment & Removal Tools + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-4-2 + name: Pedals children: [] attributes: - color - - power_source - - vehicle_type -- id: vp-1-5-7-3 - name: Vehicle Battery Chargers + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-4-3 + name: Steering Columns children: [] attributes: - - charger_type - color - - power_source - - vehicle_type -- id: vp-1-5-7-4 - name: Vehicle Battery Testers + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-4-4 + name: Steering Pumps children: [] attributes: - color - - power_source - - vehicle_type -- id: vp-1-5-7-5 - name: Vehicle Body Filler + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-4-5 + name: Steering Racks children: [] attributes: - color - - filler_type - - power_source - - vehicle_type -- id: vp-1-5-7-6 - name: Vehicle Diagnostic Scanners + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-4-6 + name: Steering Wheels children: [] attributes: - color - - power_source - - vehicle_type -- id: vp-1-5-7-7 - name: Vehicle Jump Starters - children: [] + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-5 + name: Motor Vehicle Engine Oil Circulation + children: + - vp-1-4-5-1 + - vp-1-4-5-2 + - vp-1-4-5-3 + - vp-1-4-5-4 + - vp-1-4-5-5 + - vp-1-4-5-6 + - vp-1-4-5-7 + - vp-1-4-5-8 attributes: - color - - power_source - - vehicle_type -- id: vp-1-5-7-8 - name: Vehicle Jumper Cables + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-5-1 + name: Oil Coolers children: [] attributes: - color - - power_source - - vehicle_type -- id: vp-1-5-7-9 - name: Vehicle Tire Repair & Tire Changing Tools - children: - - vp-1-5-7-9-1 - - vp-1-5-7-9-2 - attributes: - - color - - power_source - - vehicle_type -- id: vp-1-5-7-10 - name: Windshield Repair Kits + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-5-2 + name: Oil Dipsticks children: [] attributes: - color - - power_source - - vehicle_type -- id: vp-1-6 - name: Vehicle Safety & Security - children: - - vp-1-6-1 - - vp-1-6-2 - - vp-1-6-3 - - vp-1-6-4 - attributes: - - vehicle_type -- id: vp-1-6-1 - name: Motorcycle Protective Gear - children: - - vp-1-6-1-1 - - vp-1-6-1-2 - - vp-1-6-1-3 - - vp-1-6-1-4 - - vp-1-6-1-5 - - vp-1-6-1-6 - - vp-1-6-1-7 - - vp-1-6-1-8 - - vp-1-6-1-9 - - vp-1-6-1-10 - attributes: - - accessory_size - - target_gender - - vehicle_type - - gear_material -- id: vp-1-6-1-1 - name: Motorcycle Chest & Back Protectors + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-5-3 + name: Oil Drain Plugs children: [] attributes: - - accessory_size - - target_gender - - vehicle_type - - gear_material -- id: vp-1-6-1-2 - name: Motorcycle Elbow & Wrist Guards + - color + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-5-4 + name: Oil Filler Caps children: [] attributes: - - accessory_size - - target_gender - - vehicle_type - - gear_material -- id: vp-1-6-1-3 - name: Motorcycle Gloves + - color + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-5-5 + name: Oil Filters children: [] attributes: - - accessory_size - color - - motorcycle_glove_purpose - - target_gender - - vehicle_type - - handwear_material -- id: vp-1-6-1-4 - name: Motorcycle Goggles + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-5-6 + name: Oil Pans children: [] attributes: - - accessory_size - - lens_color - - target_gender - - vehicle_type - - gear_material -- id: vp-1-6-1-5 - name: Motorcycle Hand Guards + - color + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-5-7 + name: Oil Pressure Sensors children: [] attributes: - - accessory_size - - target_gender - - vehicle_type - - gear_material -- id: vp-1-6-1-6 - name: Motorcycle Helmet Parts & Accessories + - color + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-5-8 + name: Oil Pumps children: [] attributes: - - accessory_size - - target_gender - - vehicle_type - - gear_material -- id: vp-1-6-1-7 - name: Motorcycle Helmets + - color + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-6 + name: Motor Vehicle Engine Parts children: - - vp-1-6-1-7-1 - - vp-1-6-1-7-2 - - vp-1-6-1-7-3 - - vp-1-6-1-7-4 - - vp-1-6-1-7-5 + - vp-1-4-6-1 + - vp-1-4-6-2 + - vp-1-4-6-3 + - vp-1-4-6-4 + - vp-1-4-6-5 + - vp-1-4-6-6 + - vp-1-4-6-7 + - vp-1-4-6-8 + - vp-1-4-6-9 attributes: - - accessory_size - color - - target_gender - - vehicle_type - - gear_material -- id: vp-1-6-1-8 - name: Motorcycle Kidney Belts + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-6-1 + name: Camshafts children: [] attributes: - - accessory_size - - target_gender - - vehicle_type + - color + - item_condition + - manufacturer_type - item_material -- id: vp-1-6-1-9 - name: Motorcycle Knee & Shin Guards +- id: vp-1-4-6-2 + name: Crankshafts children: [] attributes: - - accessory_size - - target_gender - - vehicle_type - - gear_material -- id: vp-1-6-1-10 - name: Motorcycle Neck Braces + - color + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-6-3 + name: Cylinder Heads children: [] attributes: - - accessory_size - - target_gender - - vehicle_type - - gear_material -- id: vp-1-6-2 - name: Off-Road & All-Terrain Vehicle Protective Gear - children: - - vp-1-6-2-1 + - color + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-6-4 + name: Engine Bearings + children: [] attributes: - - vehicle_type -- id: vp-1-6-2-1 - name: ATV & UTV Bar Pads + - color + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-6-5 + name: Ignition Components children: [] attributes: - - vehicle_type -- id: vp-1-6-3 - name: Vehicle Alarms & Locks - children: - - vp-1-6-3-1 - - vp-1-6-3-2 - - vp-1-6-3-3 - - vp-1-6-3-4 - - vp-1-6-3-5 - - vp-1-6-3-6 - - vp-1-6-3-7 - - vp-1-6-3-8 - - vp-1-6-3-9 + - color + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-6-6 + name: Pistons + children: [] attributes: + - color - item_condition - manufacturer_type - - power_source - - vehicle_type -- id: vp-1-6-3-1 - name: Automotive Alarm Accessories + - item_material +- id: vp-1-4-6-7 + name: Timing Belts children: [] attributes: + - color - item_condition - manufacturer_type - - power_source - - vehicle_type -- id: vp-1-6-3-2 - name: Automotive Alarm Systems + - item_material +- id: vp-1-4-6-8 + name: Timing Chains children: [] attributes: + - color - item_condition - manufacturer_type - - power_source - - vehicle_type -- id: vp-1-6-3-3 - name: Motorcycle Alarms & Locks + - item_material +- id: vp-1-4-6-9 + name: Valves children: [] attributes: + - color - item_condition - manufacturer_type - - power_source - - vehicle_type -- id: vp-1-6-3-4 - name: Vehicle Door Locks & Parts + - item_material +- id: vp-1-4-7 + name: Motor Vehicle Engines children: - - vp-1-6-3-4-1 - - vp-1-6-3-4-2 - - vp-1-6-3-4-3 + - vp-1-4-7-1 + - vp-1-4-7-2 + - vp-1-4-7-3 + - vp-1-4-7-4 + - vp-1-4-7-5 + - vp-1-4-7-6 + - vp-1-4-7-7 + - vp-1-4-7-8 attributes: + - color + - engine_design + - engine_type - item_condition - manufacturer_type - - material - - power_source - - vehicle_type -- id: vp-1-6-3-4-1 - name: Vehicle Door Lock Actuators +- id: vp-1-4-7-1 + name: Complete Engines children: [] attributes: + - color + - engine_design + - engine_type - item_condition - manufacturer_type - - material - - power_source - - vehicle_type -- id: vp-1-6-3-4-2 - name: Vehicle Door Lock Knobs +- id: vp-1-4-7-2 + name: Crate Engines children: [] attributes: + - color + - engine_design + - engine_type - item_condition - manufacturer_type - - material - - power_source - - vehicle_type -- id: vp-1-6-3-4-3 - name: Vehicle Door Locks & Locking Systems +- id: vp-1-4-7-3 + name: Engine Mounts children: [] attributes: + - color + - engine_design + - engine_type - item_condition - manufacturer_type - - material - - power_source - - vehicle_type -- id: vp-1-6-3-5 - name: Vehicle Hitch Locks +- id: vp-1-4-7-4 + name: Engine Rebuild Kits children: [] attributes: - - hitch_class + - color + - engine_design + - engine_type - item_condition - manufacturer_type - - material - - power_source - - vehicle_type -- id: vp-1-6-3-6 - name: Vehicle Immobilizers +- id: vp-1-4-7-5 + name: Engine Timing Components children: [] attributes: - - immobilizer_type + - color + - engine_design + - engine_type - item_condition - manufacturer_type - - material - - power_source - - vehicle_type -- id: vp-1-6-3-7 - name: Vehicle Remote Keyless Systems +- id: vp-1-4-7-6 + name: Engine Valve Covers children: [] attributes: + - color + - engine_design + - engine_type - item_condition - manufacturer_type - - power_source - - vehicle_type -- id: vp-1-6-3-8 - name: Vehicle Steering Wheel Locks +- id: vp-1-4-7-7 + name: Long Blocks children: [] attributes: + - color + - engine_design + - engine_type - item_condition - manufacturer_type - - material - - power_source - - vehicle_type -- id: vp-1-6-3-9 - name: Vehicle Wheel Clamps +- id: vp-1-4-7-8 + name: Short Blocks children: [] attributes: + - color + - engine_design + - engine_type - item_condition - manufacturer_type - - material - - power_source - - vehicle_type -- id: vp-1-6-4 - name: Vehicle Safety Equipment - children: - - vp-1-6-4-1 - - vp-1-6-4-2 - - vp-1-6-4-3 - - vp-1-6-4-4 - - vp-1-6-4-5 - - vp-1-6-4-6 - - vp-1-6-4-7 - - vp-1-6-4-8 - - vp-1-6-4-9 - - vp-1-6-4-10 - attributes: - - vehicle_type - - safety_equipment_material -- id: vp-1-6-4-1 - name: Car Window Nets +- id: vp-1-4-8 + name: Motor Vehicle Exhaust children: [] attributes: - - vehicle_type - - net_material -- id: vp-1-6-4-2 - name: Emergency Road Flares - children: [] + - color + - item_condition + - manufacturer_type + - item_material + - motor_vehicle_type +- id: vp-1-4-9 + name: Motor Vehicle Frame & Body Parts + children: + - vp-1-4-9-1 + - vp-1-4-9-2 + - vp-1-4-9-3 + - vp-1-4-9-4 + - vp-1-4-9-5 + - vp-1-4-9-6 + - vp-1-4-9-7 + - vp-1-4-9-8 attributes: - - flare_type - - vehicle_type - - safety_equipment_material -- id: vp-1-6-4-3 - name: Motor Vehicle Airbag Parts + - color + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-9-1 + name: Bumpers children: [] attributes: - - vehicle_type - - safety_equipment_material -- id: vp-1-6-4-4 - name: Motor Vehicle Roll Cages & Bars + - color + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-9-2 + name: Doors children: [] attributes: - - cage_type - - vehicle_type - - safety_equipment_material -- id: vp-1-6-4-5 - name: Vehicle Seat Belt Buckles + - color + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-9-3 + name: Fenders children: [] attributes: - - vehicle_type - - safety_equipment_material -- id: vp-1-6-4-6 - name: Vehicle Seat Belt Covers + - color + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-9-4 + name: Grilles children: [] attributes: - - vehicle_type - - cover_material -- id: vp-1-6-4-7 - name: Vehicle Seat Belt Straps + - color + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-9-5 + name: Hoods children: [] attributes: - - vehicle_type - - safety_equipment_material -- id: vp-1-6-4-8 - name: Vehicle Seat Belts + - color + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-9-6 + name: Quarter Panels children: [] attributes: - - belt_type - - vehicle_type - - fabric -- id: vp-1-6-4-9 - name: Vehicle Warning Whips + - color + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-9-7 + name: Spoilers children: [] attributes: - - vehicle_type - - safety_equipment_material -- id: vp-1-6-4-10 - name: Vehicle Wheel Chocks + - color + - item_condition + - manufacturer_type + - item_material +- id: vp-1-4-9-8 + name: Trunks children: [] attributes: - - vehicle_type - - safety_equipment_material -- id: vp-1-7 - name: Vehicle Storage & Cargo - children: - - vp-1-7-1 - - vp-1-7-2 - - vp-1-7-3 - - vp-1-7-4 - - vp-1-7-5 - - vp-1-7-6 - - vp-1-7-7 - - vp-1-7-8 - - vp-1-7-9 - attributes: + - color - item_condition - - vehicle_type -- id: vp-1-7-1 - name: Motor Vehicle Cargo Nets + - manufacturer_type + - item_material +- id: vp-1-4-10 + name: Motor Vehicle Fuel Systems children: - - vp-1-7-1-1 - - vp-1-7-1-2 - - vp-1-7-1-3 + - vp-1-4-10-1 + - vp-1-4-10-2 + - vp-1-4-10-3 + - vp-1-4-10-4 + - vp-1-4-10-5 + - vp-1-4-10-6 + - vp-1-4-10-7 + - vp-1-4-10-8 attributes: - - accessory_size + - color + - fuel_supply - item_condition - - vehicle_type - - net_material -- id: vp-1-7-2 - name: Motor Vehicle Carrying Rack Accessories - children: - - vp-1-7-2-1 - - vp-1-7-2-2 + - manufacturer_type + - item_material +- id: vp-1-4-10-1 + name: Carburetors + children: [] attributes: + - color - item_condition - - material - - vehicle_type -- id: vp-1-7-2-1 - name: Vehicle Bicycle Rack Accessories + - manufacturer_type +- id: vp-1-4-10-2 + name: Fuel Caps children: [] attributes: + - color - item_condition - - material - - vehicle_type -- id: vp-1-7-2-2 - name: Vehicle Ski & Snowboard Rack Accessories + - manufacturer_type +- id: vp-1-4-10-3 + name: Fuel Filters children: [] attributes: + - color - item_condition - - material - - vehicle_type -- id: vp-1-7-3 - name: Motor Vehicle Carrying Racks - children: - - vp-1-7-3-1 - - vp-1-7-3-2 - - vp-1-7-3-3 - - vp-1-7-3-4 - - vp-1-7-3-5 - - vp-1-7-3-6 - - vp-1-7-3-7 - - vp-1-7-3-8 - - vp-1-7-3-9 + - manufacturer_type +- id: vp-1-4-10-4 + name: Fuel Injectors + children: [] attributes: + - color + - fuel_supply - item_condition - - material - - vehicle_type -- id: vp-1-7-3-1 - name: Vehicle Base Rack Systems + - manufacturer_type +- id: vp-1-4-10-5 + name: Fuel Lines children: [] attributes: + - color - item_condition - - material - - vehicle_type -- id: vp-1-7-3-2 - name: Vehicle Bicycle Racks + - manufacturer_type +- id: vp-1-4-10-6 + name: Fuel Pressure Regulators children: [] attributes: + - color - item_condition - - material - - rack_type - - vehicle_type -- id: vp-1-7-3-3 - name: Vehicle Boat Racks + - manufacturer_type +- id: vp-1-4-10-7 + name: Fuel Pumps children: [] attributes: + - color - item_condition - - material - - rack_type - - vehicle_type -- id: vp-1-7-3-4 - name: Vehicle Cargo Racks + - manufacturer_type +- id: vp-1-4-10-8 + name: Fuel Tanks children: [] attributes: + - color - item_condition - - material - - vehicle_type -- id: vp-1-7-3-5 - name: Vehicle Fishing Rod Racks + - manufacturer_type +- id: vp-1-4-11 + name: Motor Vehicle Interior Fittings + children: + - vp-1-4-11-1 + - vp-1-4-11-2 + - vp-1-4-11-3 + - vp-1-4-11-4 + - vp-1-4-11-5 + - vp-1-4-11-6 + - vp-1-4-11-7 + attributes: + - color + - fit_type + - item_condition + - manufacturer_type + - item_material + - motor_vehicle_type + - pattern +- id: vp-1-4-11-1 + name: Car Mirrors children: [] attributes: + - color + - fit_type - item_condition - - material - - rack_type - - vehicle_type -- id: vp-1-7-3-6 - name: Vehicle Gun Racks + - manufacturer_type + - item_material + - motor_vehicle_type + - pattern +- id: vp-1-4-11-2 + name: Car Organizers children: [] attributes: + - color + - fit_type - item_condition - - material - - rack_type - - vehicle_type -- id: vp-1-7-3-7 - name: Vehicle Motorcycle & Scooter Racks + - manufacturer_type + - fabric + - motor_vehicle_type + - pattern +- id: vp-1-4-11-3 + name: Floor Mats children: [] attributes: + - color + - fit_type - item_condition - - material - - rack_type - - vehicle_type -- id: vp-1-7-3-8 - name: Vehicle Ski & Snowboard Racks + - manufacturer_type + - fabric + - motor_vehicle_type + - pattern +- id: vp-1-4-11-4 + name: Pedal Sets children: [] attributes: + - color + - fit_type - item_condition - - material - - rack_type - - vehicle_type -- id: vp-1-7-3-9 - name: Vehicle Water Sport Board Racks + - manufacturer_type + - item_material + - motor_vehicle_type + - pattern +- id: vp-1-4-11-5 + name: Seat Covers children: [] attributes: + - color + - fit_type - item_condition - - material - - rack_type - - vehicle_type -- id: vp-1-7-4 - name: Motor Vehicle Loading Ramps + - manufacturer_type + - cover_material + - motor_vehicle_type + - pattern +- id: vp-1-4-11-6 + name: Steering Wheel Covers + children: [] + attributes: + - color + - fit_type + - item_condition + - manufacturer_type + - cover_material + - motor_vehicle_type + - pattern +- id: vp-1-4-11-7 + name: Sun Shades children: [] attributes: + - color + - fit_type - item_condition - - loading_ramp_type - - material - - vehicle_type -- id: vp-1-7-5 - name: Motor Vehicle Trailers + - manufacturer_type + - fabric + - motor_vehicle_type + - pattern +- id: vp-1-4-12 + name: Motor Vehicle Lighting children: - - vp-1-7-5-1 - - vp-1-7-5-2 - - vp-1-7-5-3 - - vp-1-7-5-4 + - vp-1-4-12-1 + - vp-1-4-12-2 + - vp-1-4-12-3 + - vp-1-4-12-4 + - vp-1-4-12-5 + - vp-1-4-12-6 + - vp-1-4-12-7 + - vp-1-4-12-8 attributes: + - color + - fit_type - item_condition - - material - - trailer_type - - vehicle_type -- id: vp-1-7-5-1 - name: Boat Trailers + - light_source + - manufacturer_type +- id: vp-1-4-12-1 + name: Fog Lights children: [] attributes: + - color + - fit_type - item_condition - - material - - trailer_type - - vehicle_type -- id: vp-1-7-5-2 - name: Horse & Livestock Trailers + - light_source + - manufacturer_type +- id: vp-1-4-12-2 + name: Headlights children: [] attributes: + - color + - fit_type - item_condition - - material - - trailer_type - - vehicle_type -- id: vp-1-7-5-3 - name: Travel Trailers + - light_source + - manufacturer_type +- id: vp-1-4-12-3 + name: Light Bars children: [] attributes: + - color + - fit_type - item_condition - - material - - trailer_type - - vehicle_type -- id: vp-1-7-5-4 - name: Utility & Cargo Trailers + - light_source + - manufacturer_type +- id: vp-1-4-12-4 + name: Light Bulbs children: [] attributes: + - color + - fit_type - item_condition - - material - - trailer_type - - vehicle_type -- id: vp-1-7-6 - name: Motorcycle Bags & Panniers + - light_source + - manufacturer_type +- id: vp-1-4-12-5 + name: Light Covers children: [] attributes: - - bag_type + - color + - fit_type - item_condition - - vehicle_type - - bag_case_material -- id: vp-1-7-7 - name: Truck Bed Storage Boxes & Organizers + - light_source + - manufacturer_type +- id: vp-1-4-12-6 + name: Light Switches children: [] attributes: - - box_type + - color + - fit_type - item_condition - - material - - vehicle_type -- id: vp-1-7-8 - name: Vehicle Headrest Hangers & Hooks + - light_source + - manufacturer_type +- id: vp-1-4-12-7 + name: Tail Lights children: [] attributes: + - color + - fit_type - item_condition - - material - - vehicle_type -- id: vp-1-7-9 - name: Vehicle Organizers + - light_source + - manufacturer_type +- id: vp-1-4-12-8 + name: Turn Signals children: [] attributes: + - color + - fit_type - item_condition - - material - - organizer_type - - vehicle_type -- id: vp-1-8 - name: Watercraft Parts & Accessories - children: - - vp-1-8-1 - - vp-1-8-2 - - vp-1-8-3 - - vp-1-8-4 - - vp-1-8-5 - - vp-1-8-6 - - vp-1-8-7 - - vp-1-8-8 - - vp-1-8-9 + - light_source + - manufacturer_type +- id: vp-1-4-13 + name: Motor Vehicle Mirrors + children: [] attributes: + - color - item_condition - - vehicle_type - - item_material -- id: vp-1-8-1 - name: Docking & Anchoring + - manufacturer_type +- id: vp-1-4-14 + name: Motor Vehicle Power & Electrical Systems children: - - vp-1-8-1-1 - - vp-1-8-1-2 - - vp-1-8-1-3 - - vp-1-8-1-4 - - vp-1-8-1-5 - - vp-1-8-1-6 - - vp-1-8-1-7 - - vp-1-8-1-8 - attributes: - - item_condition - - vehicle_type - - item_material -- id: vp-1-8-1-1 - name: Anchor Chains - children: [] + - vp-1-4-14-1 + - vp-1-4-14-2 + - vp-1-4-14-3 + - vp-1-4-14-4 + - vp-1-4-14-5 + - vp-1-4-14-6 + - vp-1-4-14-7 + - vp-1-4-14-8 attributes: - - chain_type + - color - item_condition - - vehicle_type - - item_material -- id: vp-1-8-1-2 - name: Anchor Lines & Ropes + - manufacturer_type +- id: vp-1-4-14-1 + name: Alternators children: [] attributes: + - color - item_condition - - line_rope_type - - vehicle_type - - item_material -- id: vp-1-8-1-3 - name: Anchor Windlasses + - manufacturer_type +- id: vp-1-4-14-2 + name: Batteries children: [] attributes: + - color - item_condition - - power_source - - vehicle_type - - windlass_design - - item_material -- id: vp-1-8-1-4 - name: Anchors + - manufacturer_type +- id: vp-1-4-14-3 + name: Fuses children: [] attributes: - - anchor_type + - color - item_condition - - vehicle_type - - item_material -- id: vp-1-8-1-5 - name: Boat Hooks + - manufacturer_type +- id: vp-1-4-14-4 + name: Relays children: [] attributes: - - hook_type + - color - item_condition - - vehicle_type - - item_material -- id: vp-1-8-1-6 - name: Boat Ladders + - manufacturer_type +- id: vp-1-4-14-5 + name: Spark Plugs children: [] attributes: + - color - item_condition - - ladder_type - - vehicle_type - - item_material -- id: vp-1-8-1-7 - name: Dock Cleats + - manufacturer_type +- id: vp-1-4-14-6 + name: Starters children: [] attributes: - - cleat_type + - color - item_condition - - vehicle_type - - item_material -- id: vp-1-8-1-8 - name: Dock Steps + - manufacturer_type +- id: vp-1-4-14-7 + name: Voltage Regulators children: [] attributes: + - color - item_condition - - step_type - - vehicle_type - - item_material -- id: vp-1-8-2 - name: Sailboat Parts + - manufacturer_type +- id: vp-1-4-14-8 + name: Wiring Harnesses children: [] attributes: + - color - item_condition - - vehicle_type - - item_material -- id: vp-1-8-3 - name: Watercraft Care + - manufacturer_type +- id: vp-1-4-15 + name: Motor Vehicle Seating children: - - vp-1-8-3-1 - - vp-1-8-3-2 + - vp-1-4-15-1 + - vp-1-4-15-2 attributes: - - vehicle_type - - item_material -- id: vp-1-8-3-1 - name: Watercraft Cleaners + - color + - item_condition + - manufacturer_type + - fabric +- id: vp-1-4-15-1 + name: Front Seats children: [] attributes: - - cleaner_purpose - - vehicle_type - - item_material -- id: vp-1-8-3-2 - name: Watercraft Polishes + - color + - item_condition + - manufacturer_type + - fabric +- id: vp-1-4-15-2 + name: Rear Seats children: [] attributes: - - polish_type - - vehicle_type - - item_material -- id: vp-1-8-4 - name: Watercraft Engine Parts + - color + - item_condition + - manufacturer_type + - fabric +- id: vp-1-4-16 + name: Motor Vehicle Sensors & Gauges children: - - vp-1-8-4-1 - - vp-1-8-4-2 - - vp-1-8-4-3 - - vp-1-8-4-4 - - vp-1-8-4-5 - - vp-1-8-4-6 - - vp-1-8-4-7 - - vp-1-8-4-8 - - vp-1-8-4-9 + - vp-1-4-16-1 + - vp-1-4-16-2 + - vp-1-4-16-3 + - vp-1-4-16-4 + - vp-1-4-16-5 + - vp-1-4-16-6 + - vp-1-4-16-7 + - vp-1-4-16-8 attributes: + - color + - gauge_type - item_condition - - vehicle_type - - item_material -- id: vp-1-8-4-1 - name: Watercraft Alternators + - manufacturer_type +- id: vp-1-4-16-1 + name: Fuel Level Sensors children: [] attributes: + - color + - gauge_type - item_condition - - vehicle_type - - item_material -- id: vp-1-8-4-2 - name: Watercraft Carburetors & Parts + - manufacturer_type +- id: vp-1-4-16-2 + name: Odometers children: [] attributes: + - color + - gauge_type - item_condition - - vehicle_type - - item_material -- id: vp-1-8-4-3 - name: Watercraft Engine Controls + - manufacturer_type +- id: vp-1-4-16-3 + name: Oxygen Sensors children: [] attributes: + - color + - gauge_type - item_condition - - vehicle_type - - watercraft_engine_control_type - - item_material -- id: vp-1-8-4-4 - name: Watercraft Ignition Parts + - manufacturer_type +- id: vp-1-4-16-4 + name: Pressure Sensors children: [] attributes: + - color + - gauge_type - item_condition - - vehicle_type - - item_material -- id: vp-1-8-4-5 - name: Watercraft Impellers + - manufacturer_type +- id: vp-1-4-16-5 + name: Speed Sensors children: [] attributes: + - color + - gauge_type - item_condition - - vehicle_type - - item_material -- id: vp-1-8-4-6 - name: Watercraft Motor Locks + - manufacturer_type +- id: vp-1-4-16-6 + name: Speedometers children: [] attributes: + - color + - gauge_type - item_condition - - lock_placement - - vehicle_type - - item_material -- id: vp-1-8-4-7 - name: Watercraft Motor Mounts + - manufacturer_type +- id: vp-1-4-16-7 + name: Tachometers children: [] attributes: + - color + - gauge_type - item_condition - - vehicle_type - - watercraft_motor_mounting_type - - mount_material -- id: vp-1-8-4-8 - name: Watercraft Pistons & Parts + - manufacturer_type +- id: vp-1-4-16-8 + name: Temperature Sensors children: [] attributes: + - color + - gauge_type - item_condition - - vehicle_type - - item_material -- id: vp-1-8-4-9 - name: Watercraft Propellers + - manufacturer_type +- id: vp-1-4-17 + name: Motor Vehicle Suspension Parts + children: + - vp-1-4-17-1 + - vp-1-4-17-2 + - vp-1-4-17-3 + - vp-1-4-17-4 + - vp-1-4-17-5 + - vp-1-4-17-6 + - vp-1-4-17-7 + - vp-1-4-17-8 + attributes: + - color + - item_condition + - manufacturer_type + - motor_vehicle_placement +- id: vp-1-4-17-1 + name: Ball Joints children: [] attributes: + - color - item_condition - - propeller_blade_design - - vehicle_type - - item_material -- id: vp-1-8-5 - name: Watercraft Engines & Motors - children: - - vp-1-8-5-1 - - vp-1-8-5-2 - - vp-1-8-5-3 + - manufacturer_type + - motor_vehicle_placement +- id: vp-1-4-17-2 + name: Coil Springs + children: [] attributes: - - engine_type - - fuel_supply + - color - item_condition - - vehicle_type - - item_material -- id: vp-1-8-6 - name: Watercraft Exhaust Parts - children: - - vp-1-8-6-1 - - vp-1-8-6-2 + - manufacturer_type + - motor_vehicle_placement +- id: vp-1-4-17-3 + name: Control Arms + children: [] attributes: + - color - item_condition - - vehicle_type - - item_material -- id: vp-1-8-6-1 - name: Watercraft Manifolds + - manufacturer_type + - motor_vehicle_placement +- id: vp-1-4-17-4 + name: Leaf Springs children: [] attributes: + - color - item_condition - - vehicle_type - - item_material -- id: vp-1-8-6-2 - name: Watercraft Mufflers & Parts + - manufacturer_type + - motor_vehicle_placement +- id: vp-1-4-17-5 + name: Shock Absorbers children: [] attributes: + - color - item_condition - - vehicle_type - - item_material -- id: vp-1-8-7 - name: Watercraft Fuel Systems - children: - - vp-1-8-7-1 - - vp-1-8-7-2 - - vp-1-8-7-3 - - vp-1-8-7-4 + - manufacturer_type + - motor_vehicle_placement +- id: vp-1-4-17-6 + name: Struts + children: [] attributes: + - color - item_condition - - vehicle_type - - item_material -- id: vp-1-8-7-1 - name: Watercraft Fuel Lines & Parts + - manufacturer_type + - motor_vehicle_placement +- id: vp-1-4-17-7 + name: Suspension Bushings children: [] attributes: + - color - item_condition - - vehicle_type - - item_material -- id: vp-1-8-7-2 - name: Watercraft Fuel Meters + - manufacturer_type + - motor_vehicle_placement +- id: vp-1-4-17-8 + name: Sway Bars children: [] attributes: + - color - item_condition - - meter_type - - vehicle_type + - manufacturer_type + - motor_vehicle_placement +- id: vp-1-4-18 + name: Motor Vehicle Towing + children: + - vp-1-4-18-1 + - vp-1-4-18-2 + - vp-1-4-18-3 + - vp-1-4-18-4 + - vp-1-4-18-5 + - vp-1-4-18-6 + - vp-1-4-18-7 + - vp-1-4-18-8 + attributes: + - color + - item_condition + - manufacturer_type - item_material -- id: vp-1-8-7-3 - name: Watercraft Fuel Pumps & Parts +- id: vp-1-4-18-1 + name: Hitch Balls children: [] attributes: + - color - item_condition - - vehicle_type + - manufacturer_type - item_material -- id: vp-1-8-7-4 - name: Watercraft Fuel Tanks & Parts +- id: vp-1-4-18-2 + name: Hitch Mounts children: [] attributes: + - color - item_condition - - vehicle_type - - item_material -- id: vp-1-8-8 - name: Watercraft Lighting + - manufacturer_type + - mount_material +- id: vp-1-4-18-3 + name: Tow Bars children: [] attributes: + - color - item_condition - - light_type - - power_source - - vehicle_type + - manufacturer_type - item_material -- id: vp-1-8-9 - name: Watercraft Steering Parts - children: - - vp-1-8-9-1 - - vp-1-8-9-2 +- id: vp-1-4-18-4 + name: Tow Straps + children: [] attributes: + - color - item_condition - - vehicle_type + - manufacturer_type - item_material -- id: vp-1-8-9-1 - name: Watercraft Steering Cables +- id: vp-1-4-18-5 + name: Trailer Brakes children: [] attributes: + - color - item_condition - - vehicle_type + - manufacturer_type - item_material -- id: vp-1-8-9-2 - name: Watercraft Steering Wheels +- id: vp-1-4-18-6 + name: Trailer Hitches children: [] attributes: + - color - item_condition - - vehicle_type - - watercraft_steering_wheel_type + - manufacturer_type - item_material -- id: vp-2 - name: Vehicles - children: - - vp-2-1 - - vp-2-2 - - vp-2-3 - attributes: - - body_color - - fuel_supply - - item_condition - - upholstery_color -- id: vp-2-1 - name: Aircraft +- id: vp-1-4-18-7 + name: Trailer Lights children: [] attributes: - - body_color - - fuel_supply - - item_condition - - upholstery_color -- id: vp-2-2 - name: Motor Vehicles - children: - - vp-2-2-1 - - vp-2-2-2 - - vp-2-2-3 - - vp-2-2-4 - - vp-2-2-5 - - vp-2-2-6 - attributes: - - body_color - - fuel_supply - - item_condition - - transmission_type - - upholstery_color -- id: vp-2-2-1 - name: Cars, Trucks & Vans - children: - - vp-2-2-1-1 - - vp-2-2-1-2 - attributes: - - body_color - - drive_type - - fuel_supply + - color - item_condition - - transmission_type - - upholstery_color -- id: vp-2-2-2 - name: Golf Carts + - manufacturer_type + - item_material +- id: vp-1-4-18-8 + name: Trailer Wiring children: [] attributes: - - body_color - - cart_type - - fuel_supply - - item_condition - - transmission_type - - upholstery_color -- id: vp-2-2-3 - name: Motorcycles & Scooters - children: - - vp-2-2-3-1 - - vp-2-2-3-2 - attributes: - - body_color - - fuel_supply + - color - item_condition - - motorcycle_drive_type - - transmission_type - - upholstery_color -- id: vp-2-2-4 - name: Off-Road and All-Terrain Vehicles + - manufacturer_type + - item_material +- id: vp-1-4-19 + name: Motor Vehicle Transmission & Drivetrain Parts children: - - vp-2-2-4-1 - - vp-2-2-4-2 + - vp-1-4-19-1 + - vp-1-4-19-2 + - vp-1-4-19-3 + - vp-1-4-19-4 + - vp-1-4-19-5 + - vp-1-4-19-6 + - vp-1-4-19-7 + - vp-1-4-19-8 attributes: - - body_color - - drive_type - - fuel_supply + - color - item_condition + - manufacturer_type - transmission_type - - upholstery_color -- id: vp-2-2-4-1 - name: ATVs & UTVs +- id: vp-1-4-19-1 + name: Axles children: [] attributes: - - body_color - - drive_type - - fuel_supply + - color - item_condition + - manufacturer_type - transmission_type - - upholstery_color -- id: vp-2-2-4-2 - name: Go Karts & Dune Buggies +- id: vp-1-4-19-2 + name: Clutches children: [] attributes: - - body_color - - drive_type - - fuel_supply + - color - item_condition + - manufacturer_type - transmission_type - - upholstery_color -- id: vp-2-2-5 - name: Recreational Vehicles +- id: vp-1-4-19-3 + name: Differentials children: [] attributes: - - body_color - - drive_type - - fuel_supply + - color - item_condition - - recreational_vehicle_type + - manufacturer_type - transmission_type - - upholstery_color -- id: vp-2-2-6 - name: Snowmobiles +- id: vp-1-4-19-4 + name: Drive Shafts children: [] attributes: - - body_color - - drive_type - - fuel_supply + - color - item_condition - - snowmobile_type + - manufacturer_type - transmission_type - - upholstery_color -- id: vp-2-3 - name: Watercraft - children: - - vp-2-3-1 - - vp-2-3-2 - - vp-2-3-3 - - vp-2-3-4 - attributes: - - body_color - - fuel_supply - - item_condition - - upholstery_color -- id: vp-2-3-1 - name: Motor Boats - children: [] - attributes: - - boat_type - - body_color - - fuel_supply - - item_condition - - upholstery_color -- id: vp-2-3-2 - name: Personal Watercraft - children: [] - attributes: - - body_color - - fuel_supply - - item_condition - - upholstery_color - - watercraft_type -- id: vp-2-3-3 - name: Sailboats - children: [] - attributes: - - body_color - - fuel_supply - - item_condition - - sailboat_type - - upholstery_color -- id: vp-2-3-4 - name: Yachts - children: [] - attributes: - - body_color - - fuel_supply - - item_condition - - upholstery_color - - yacht_type -- id: vp-1-2 - name: Electric Vehicle (EV) Parts & Accessories - children: - - vp-1-2-1 - - vp-1-2-2 - - vp-1-2-3 - - vp-1-2-4 - - vp-1-2-5 - - vp-1-2-6 - - vp-1-2-7 - - vp-1-2-8 - - vp-1-2-9 - attributes: [] -- id: vp-1-2-1 - name: Battery Management Systems +- id: vp-1-4-19-5 + name: Transmission Coolers children: [] attributes: - - compatible_battery_technology + - color - item_condition - manufacturer_type -- id: vp-1-2-2 - name: Charging Cables + - transmission_type +- id: vp-1-4-19-6 + name: Transmission Fluid + children: [] + attributes: + - color + - transmission_type +- id: vp-1-4-19-7 + name: Transmission Mounts children: [] attributes: - - charging_cable_type - color - item_condition - manufacturer_type -- id: vp-1-2-3 - name: Charging Stations + - transmission_type +- id: vp-1-4-19-8 + name: Transmissions children: [] attributes: - - charging_level - color - - input_phase_type - item_condition - manufacturer_type - - station_type -- id: vp-1-2-4 - name: Connectors & Adapters - children: [] + - transmission_type +- id: vp-1-4-20 + name: Motor Vehicle Wheel Systems + children: + - vp-1-4-20-1 + - vp-1-4-20-2 + - vp-1-4-20-3 + - vp-1-4-20-4 attributes: - color - - ev_connector_adapter_type - item_condition - manufacturer_type -- id: vp-1-2-5 - name: Conversion Kits + - item_material +- id: vp-1-4-20-1 + name: Motor Vehicle Rims & Wheels children: - - vp-1-2-5-1 - - vp-1-2-5-2 - - vp-1-2-5-3 - - vp-1-2-5-4 - - vp-1-2-5-5 + - vp-1-4-20-1-1 + - vp-1-4-20-1-2 + - vp-1-4-20-1-3 attributes: - - ev_conversion_kit_components + - color - item_condition - manufacturer_type -- id: vp-1-2-5-1 - name: Car EV Conversion Kits + - item_material + - rim_wheel_design +- id: vp-1-4-20-1-1 + name: Automotive Rims & Wheels children: [] attributes: - - ev_conversion_kit_components + - color - item_condition - manufacturer_type -- id: vp-1-2-5-2 - name: Motorcycle EV Conversion Kits + - item_material + - rim_wheel_design +- id: vp-1-4-20-1-2 + name: Motorcycle Rims & Wheels children: [] attributes: - - ev_conversion_kit_components + - color - item_condition - manufacturer_type -- id: vp-1-2-5-3 - name: Scooter EV Conversion Kits + - item_material + - rim_wheel_design +- id: vp-1-4-20-1-3 + name: Off-Road and All-Terrain Vehicle Rims & Wheels children: [] attributes: - - ev_conversion_kit_components + - color - item_condition - manufacturer_type -- id: vp-1-2-5-4 - name: Truck EV Conversion Kits + - item_material + - rim_wheel_design +- id: vp-1-4-20-2 + name: Motor Vehicle Tire Accessories children: [] attributes: - - ev_conversion_kit_components + - color - item_condition - manufacturer_type -- id: vp-1-2-5-5 - name: Van EV Conversion Kits - children: [] + - item_material +- id: vp-1-4-20-3 + name: Motor Vehicle Tires + children: + - vp-1-4-20-3-1 + - vp-1-4-20-3-2 + - vp-1-4-20-3-3 attributes: - - ev_conversion_kit_components + - color - item_condition - manufacturer_type -- id: vp-1-2-6 - name: Electric Vehicle Batteries + - item_material +- id: vp-1-4-20-3-1 + name: Automotive Tires children: [] attributes: - - ev_battery_type + - color - item_condition - manufacturer_type -- id: vp-1-2-7 - name: Power Inverters + - item_material + - vehicle_tire_type +- id: vp-1-4-20-3-2 + name: Motorcycle Tires children: [] attributes: - color - - inverter_type - item_condition - manufacturer_type -- id: vp-1-2-8 - name: Protective Cases - children: - - vp-1-2-8-1 - - vp-1-2-8-2 - - vp-1-2-8-3 - - vp-1-2-8-4 - - vp-1-2-8-5 - - vp-1-2-8-6 + - item_material + - motorcycle_tire_type +- id: vp-1-4-20-3-3 + name: Off-Road and All-Terrain Vehicle Tires + children: [] attributes: - - accessory_size + - atv_off_road_tire_type - color - item_condition - manufacturer_type - - bag_case_material -- id: vp-1-2-8-1 - name: Adapter Cases + - item_material +- id: vp-1-4-20-4 + name: Motor Vehicle Wheel Parts children: [] attributes: - - accessory_size - color - item_condition - manufacturer_type - - bag_case_material -- id: vp-1-2-8-2 - name: Battery Cases + - item_material + - wheel_part_type +- id: vp-1-4-21 + name: Motor Vehicle Window Parts & Accessories children: [] attributes: - - accessory_size - color - item_condition - manufacturer_type - - bag_case_material -- id: vp-1-2-8-3 - name: Charging Cable Cases + - item_material +- id: vp-1-5 + name: Vehicle Maintenance, Care & Decor + children: + - vp-1-5-1 + - vp-1-5-2 + - vp-1-5-3 + - vp-1-5-4 + - vp-1-5-5 + - vp-1-5-6 + - vp-1-5-7 + attributes: + - color + - vehicle_type +- id: vp-1-5-1 + name: Portable Fuel Cans children: [] attributes: - - accessory_size - color - - item_condition - - manufacturer_type - - bag_case_material -- id: vp-1-2-8-4 - name: Connector Cases + - material + - vehicle_type +- id: vp-1-5-2 + name: Vehicle Cleaning + children: + - vp-1-5-2-1 + - vp-1-5-2-2 + - vp-1-5-2-3 + - vp-1-5-2-4 + - vp-1-5-2-5 + - vp-1-5-2-6 + attributes: + - color + - vehicle_application_area + - vehicle_type +- id: vp-1-5-2-1 + name: Car Wash Brushes children: [] attributes: - - accessory_size + - brush_type - color - - item_condition - - manufacturer_type - - bag_case_material -- id: vp-1-2-8-5 - name: Conversion Kit Cases + - bristle_material + - vehicle_application_area + - vehicle_type +- id: vp-1-5-2-2 + name: Car Wash Solutions + children: + - vp-1-5-2-2-1 + - vp-1-5-2-2-2 + - vp-1-5-2-2-3 + - vp-1-5-2-2-4 + attributes: + - color + - package_type + - vehicle_application_area + - vehicle_type +- id: vp-1-5-2-2-1 + name: Car Shampoo children: [] attributes: - - accessory_size - color - - item_condition - - manufacturer_type - - bag_case_material -- id: vp-1-2-8-6 - name: Tool Cases + - package_type + - vehicle_application_area + - vehicle_type +- id: vp-1-5-2-2-2 + name: Waterless Washes children: [] attributes: - - accessory_size - color - - item_condition - - manufacturer_type - - bag_case_material -- id: vp-1-2-9 - name: Regenerative Braking Modules + - package_type + - vehicle_application_area + - vehicle_type +- id: vp-1-5-2-2-3 + name: Wax Washes + children: [] + attributes: + - color + - package_type + - vehicle_application_area + - vehicle_type +- id: vp-1-5-2-2-4 + name: Wheel Cleaners + children: [] + attributes: + - color + - package_type + - vehicle_application_area + - vehicle_type +- id: vp-1-5-2-3 + name: Vehicle Carpet & Upholstery Cleaners + children: + - vp-1-5-2-3-1 + - vp-1-5-2-3-2 + - vp-1-5-2-3-3 + attributes: + - color + - package_type + - vehicle_application_area + - vehicle_type +- id: vp-1-5-2-3-1 + name: Carpet Cleaners + children: [] + attributes: + - color + - package_type + - vehicle_application_area + - vehicle_type +- id: vp-1-5-2-3-2 + name: Stain Removers + children: [] + attributes: + - color + - package_type + - vehicle_application_area + - vehicle_type +- id: vp-1-5-2-3-3 + name: Upholstery Cleaners children: [] attributes: - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-3-4-1 - name: Double DIN Cassette Players + - package_type + - vehicle_application_area + - vehicle_type +- id: vp-1-5-2-4 + name: Vehicle Fuel Injection Cleaning Kits children: [] attributes: - color - - item_condition - - manufacturer_type - - power_source -- id: vp-1-3-4-2 - name: Single DIN Cassette Players + - package_type + - vehicle_application_area + - vehicle_type +- id: vp-1-5-2-5 + name: Vehicle Glass Cleaners children: [] attributes: - color - - item_condition - - manufacturer_type - - power_source -- id: vp-1-3-4-3 - name: Under-Dash Players - children: [] + - package_type + - vehicle_application_area + - vehicle_type +- id: vp-1-5-2-6 + name: Vehicle Waxes, Polishes & Protectants + children: + - vp-1-5-2-6-1 + - vp-1-5-2-6-2 + - vp-1-5-2-6-3 + - vp-1-5-2-6-4 attributes: - color - - item_condition - - manufacturer_type - - power_source -- id: vp-1-3-5-1 - name: Active Crossovers + - package_type + - vehicle_application_area + - vehicle_type +- id: vp-1-5-2-6-1 + name: Car Wax children: [] attributes: - color - - item_condition - - manufacturer_type - - power_source -- id: vp-1-3-5-2 - name: Digital Sound Processors + - package_type + - vehicle_application_area + - vehicle_type +- id: vp-1-5-2-6-2 + name: Polishes children: [] attributes: - color - - item_condition - - manufacturer_type - - power_source -- id: vp-1-3-5-3 - name: Graphic Equalizers + - package_type + - vehicle_application_area + - vehicle_type +- id: vp-1-5-2-6-3 + name: Protectants children: [] attributes: - color - - item_condition - - manufacturer_type - - power_source -- id: vp-1-3-5-4 - name: Parametric Equalizers + - package_type + - vehicle_application_area + - vehicle_type +- id: vp-1-5-2-6-4 + name: Sealants children: [] attributes: - color - - item_condition - - manufacturer_type - - power_source -- id: vp-1-3-5-5 - name: Passive Crossovers - children: [] + - package_type + - vehicle_application_area + - vehicle_type +- id: vp-1-5-3 + name: Vehicle Covers + children: + - vp-1-5-3-1 + - vp-1-5-3-2 + - vp-1-5-3-3 + - vp-1-5-3-4 + - vp-1-5-3-5 + - vp-1-5-3-6 attributes: - color - - item_condition - - manufacturer_type - - power_source -- id: vp-1-3-6-1 - name: 360-Degree Cameras + - cover_type + - cover_material + - vehicle_application_area + - vehicle_type +- id: vp-1-5-3-1 + name: Golf Cart Enclosures children: [] attributes: - color - - item_condition - - manufacturer_type - - power_source -- id: vp-1-3-6-2 - name: Backup Cameras + - cover_material + - vehicle_application_area + - vehicle_type +- id: vp-1-5-3-2 + name: Motor Vehicle Windshield Covers children: [] attributes: - color - - item_condition - - manufacturer_type - - power_source -- id: vp-1-3-8-1 - name: Coaxial Speakers + - cover_material + - vehicle_application_area + - vehicle_type +- id: vp-1-5-3-3 + name: Tonneau Covers children: [] attributes: - color - - item_condition - - manufacturer_type - - power_source -- id: vp-1-3-8-2 - name: Component Speakers + - cover_type + - cover_material + - vehicle_application_area + - vehicle_type +- id: vp-1-5-3-4 + name: Vehicle Hardtops children: [] attributes: - color - - item_condition - - manufacturer_type - - power_source -- id: vp-1-3-8-3 - name: Full-Range Speakers + - cover_material + - vehicle_application_area + - vehicle_type +- id: vp-1-5-3-5 + name: Vehicle Soft Tops children: [] attributes: - color - - item_condition - - manufacturer_type - - power_source -- id: vp-1-3-8-4 - name: Mid-Range Speakers - children: [] + - cover_material + - vehicle_application_area + - vehicle_type +- id: vp-1-5-3-6 + name: Vehicle Storage Covers + children: + - vp-1-5-3-6-1 + - vp-1-5-3-6-2 + - vp-1-5-3-6-3 + - vp-1-5-3-6-4 + - vp-1-5-3-6-5 attributes: - color - - item_condition - - manufacturer_type - - power_source -- id: vp-1-3-8-6 - name: Tweeters + - cover_type + - cover_material + - vehicle_application_area + - vehicle_type +- id: vp-1-5-3-6-1 + name: Automotive Storage Covers children: [] attributes: - color - - item_condition - - manufacturer_type - - power_source -- id: vp-1-3-8-7 - name: Woofers + - cover_type + - cover_material + - vehicle_application_area + - vehicle_type +- id: vp-1-5-3-6-2 + name: Golf Cart Storage Covers children: [] attributes: - color - - item_condition - - manufacturer_type - - power_source -- id: vp-1-3-10-1 - name: Dashboard Mounts + - cover_type + - cover_material + - vehicle_application_area + - vehicle_type +- id: vp-1-5-3-6-3 + name: Motorcycle Storage Covers children: [] attributes: - color - - item_condition - - manufacturer_type - - power_source - - mount_material -- id: vp-1-3-10-2 - name: Headrest Mounts + - cover_type + - cover_material + - vehicle_application_area + - vehicle_type +- id: vp-1-5-3-6-4 + name: Recreational Vehicle Storage Covers children: [] attributes: - color - - item_condition - - manufacturer_type - - power_source - - mount_material -- id: vp-1-3-10-3 - name: Overhead Mounts + - cover_type + - cover_material + - vehicle_application_area + - vehicle_type +- id: vp-1-5-3-6-5 + name: Watercraft Storage Covers children: [] attributes: - color - - item_condition - - manufacturer_type - - power_source - - mount_material -- id: vp-1-3-10-4 - name: Rearview Mirror Mounts - children: [] + - cover_type + - cover_material + - vehicle_application_area + - vehicle_type +- id: vp-1-5-4 + name: Vehicle Decor + children: + - vp-1-5-4-1 + - vp-1-5-4-2 + - vp-1-5-4-3 + - vp-1-5-4-4 + - vp-1-5-4-5 + - vp-1-5-4-6 + - vp-1-5-4-7 + - vp-1-5-4-8 + - vp-1-5-4-9 + - vp-1-5-4-10 + - vp-1-5-4-11 + - vp-1-5-4-12 + - vp-1-5-4-13 + - vp-1-5-4-14 + - vp-1-5-4-15 + - vp-1-5-4-16 + - vp-1-5-4-17 + - vp-1-5-4-18 + - vp-1-5-4-19 attributes: + - accessory_size - color - - item_condition - - manufacturer_type - - power_source - - mount_material -- id: vp-1-3-10-5 - name: Seat Mounts + - decoration_material + - vehicle_application_area + - vehicle_type +- id: vp-1-5-4-1 + name: Bumper Stickers children: [] attributes: + - accessory_size - color - - item_condition - - manufacturer_type - - power_source - - mount_material -- id: vp-1-3-10-6 - name: Sun Visor Mounts + - decoration_material + - vehicle_application_area + - vehicle_type +- id: vp-1-5-4-2 + name: Vehicle Air Fresheners children: [] attributes: + - accessory_size + - air_freshener_form + - car_freshener_fragrance - color - - item_condition - - manufacturer_type - - power_source - - mount_material -- id: vp-1-3-10-7 - name: Windshield Mounts + - decoration_material + - vehicle_application_area + - vehicle_type +- id: vp-1-5-4-3 + name: Vehicle Antenna Balls children: [] attributes: + - accessory_size - color - - item_condition - - manufacturer_type - - power_source - - mount_material -- id: vp-1-4-1-1 - name: Anti-Lock Braking System (ABS) Parts + - decoration_material + - vehicle_application_area + - vehicle_type +- id: vp-1-5-4-4 + name: Vehicle Dashboard Accessories children: [] attributes: + - accessory_size - color - - item_condition - - manufacturer_type -- id: vp-1-4-1-2 - name: Brake Boosters + - decoration_material + - vehicle_application_area + - vehicle_type +- id: vp-1-5-4-5 + name: Vehicle Decals children: [] attributes: + - accessory_size - color - - item_condition - - manufacturer_type -- id: vp-1-4-1-3 - name: Brake Calipers + - decoration_material + - vehicle_application_area + - vehicle_type +- id: vp-1-5-4-6 + name: Vehicle Decor Accessory Sets children: [] attributes: + - accessory_size - color - - item_condition - - manufacturer_type -- id: vp-1-4-1-4 - name: Brake Fluid + - decoration_material + - vehicle_application_area + - vehicle_type +- id: vp-1-5-4-7 + name: Vehicle Display Flags children: [] attributes: + - accessory_size - color -- id: vp-1-4-1-5 - name: Brake Lines + - decoration_material + - vehicle_application_area + - vehicle_type +- id: vp-1-5-4-8 + name: Vehicle Emblems & Hood Ornaments children: [] attributes: + - accessory_size - color - - item_condition - - manufacturer_type -- id: vp-1-4-1-6 - name: Brake Master Cylinders + - decoration_material + - vehicle_application_area + - vehicle_type +- id: vp-1-5-4-9 + name: Vehicle Hitch Covers children: [] attributes: + - accessory_size - color - - item_condition - - manufacturer_type -- id: vp-1-4-1-7 - name: Brake Pads + - cover_material + - vehicle_application_area + - vehicle_type +- id: vp-1-5-4-10 + name: Vehicle License Plate Covers children: [] attributes: + - accessory_size - color - - item_condition - - manufacturer_type -- id: vp-1-4-1-8 - name: Brake Rotors + - cover_material + - vehicle_application_area + - vehicle_type +- id: vp-1-5-4-11 + name: Vehicle License Plate Frames children: [] attributes: + - accessory_size - color - - item_condition - - manufacturer_type -- id: vp-1-4-2-1 - name: Cargo Liners + - decoration_material + - vehicle_application_area + - vehicle_type +- id: vp-1-5-4-12 + name: Vehicle License Plate Mounts & Holders children: [] attributes: + - accessory_size - color - - item_condition - - manufacturer_type - - pattern - - fabric -- id: vp-1-4-2-2 - name: Carpet Kits + - mount_material + - vehicle_application_area + - vehicle_type +- id: vp-1-5-4-13 + name: Vehicle License Plates children: [] attributes: + - accessory_size - color - - item_condition - - manufacturer_type - - pattern - - fabric -- id: vp-1-4-2-3 - name: Console Covers + - decoration_material + - vehicle_application_area + - vehicle_type +- id: vp-1-5-4-14 + name: Vehicle Magnets children: [] attributes: + - accessory_size - color - - item_condition - - manufacturer_type - - pattern - - cover_material -- id: vp-1-4-2-4 - name: Dash Covers + - decoration_material + - vehicle_application_area + - vehicle_type +- id: vp-1-5-4-15 + name: Vehicle Rear View Mirror Ornaments children: [] attributes: + - accessory_size - color - - item_condition - - manufacturer_type - - pattern - - cover_material -- id: vp-1-4-2-5 - name: Door Panels + - decoration_material + - vehicle_application_area + - vehicle_type +- id: vp-1-5-4-16 + name: Vehicle Shift Boots children: [] attributes: + - accessory_size - color - - item_condition - - manufacturer_type - - pattern - - fabric -- id: vp-1-4-2-6 - name: Headliners + - decoration_material + - vehicle_application_area + - vehicle_type +- id: vp-1-5-4-17 + name: Vehicle Shift Knobs children: [] attributes: + - accessory_size - color - - item_condition - - manufacturer_type - - pattern - - fabric -- id: vp-1-4-2-7 - name: Trunk Mats + - decoration_material + - vehicle_application_area + - vehicle_type +- id: vp-1-5-4-18 + name: Vehicle Steering Wheel Covers children: [] attributes: + - accessory_size - color - - item_condition - - manufacturer_type - - pattern - - fabric -- id: vp-1-4-2-8 - name: Upholstery Fabric + - cover_material + - vehicle_application_area + - vehicle_type +- id: vp-1-5-4-19 + name: Vehicle Wraps children: [] attributes: + - accessory_size - color - - item_condition - - manufacturer_type - - pattern - - fabric -- id: vp-1-4-3-1 - name: AC Compressors - children: [] + - decoration_material + - vehicle_application_area + - vehicle_type +- id: vp-1-5-5 + name: Vehicle Fluids + children: + - vp-1-5-5-1 + - vp-1-5-5-2 + - vp-1-5-5-3 + - vp-1-5-5-4 + - vp-1-5-5-5 + - vp-1-5-5-6 + - vp-1-5-5-7 + - vp-1-5-5-8 + - vp-1-5-5-9 + - vp-1-5-5-10 + - vp-1-5-5-11 + - vp-1-5-5-12 attributes: - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-3-2 - name: AC Condensers + - vehicle_type +- id: vp-1-5-5-1 + name: Vehicle Antifreeze children: [] attributes: + - antifreeze_type - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-3-3 - name: AC Evaporators + - vehicle_type +- id: vp-1-5-5-2 + name: Vehicle Brake Fluid children: [] attributes: - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-3-4 - name: AC Hoses - children: [] + - vehicle_type +- id: vp-1-5-5-3 + name: Vehicle Cooling System Additives + children: + - vp-1-5-5-3-1 + - vp-1-5-5-3-2 + - vp-1-5-5-3-3 attributes: - color - - item_condition - - manufacturer_type - - hose_material -- id: vp-1-4-3-5 - name: Blower Motors + - vehicle_type +- id: vp-1-5-5-3-1 + name: Coolant Additives children: [] attributes: - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-3-6 - name: Climate Control Modules + - vehicle_type +- id: vp-1-5-5-3-2 + name: Radiator Flushes children: [] attributes: - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-3-7 - name: Heater Controls + - vehicle_type +- id: vp-1-5-5-3-3 + name: Radiator Sealers children: [] attributes: - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-3-8 - name: Heater Cores + - vehicle_type +- id: vp-1-5-5-4 + name: Vehicle Engine Degreasers children: [] attributes: - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-4-1 - name: Handbrakes - children: [] + - vehicle_type +- id: vp-1-5-5-5 + name: Vehicle Fuel System Cleaners + children: + - vp-1-5-5-5-1 + - vp-1-5-5-5-2 + - vp-1-5-5-5-3 attributes: - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-4-2 - name: Pedals + - vehicle_type +- id: vp-1-5-5-5-1 + name: Carburetor Cleaners children: [] attributes: - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-4-3 - name: Steering Columns + - vehicle_type +- id: vp-1-5-5-5-2 + name: Complete Fuel System Cleaners children: [] attributes: - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-4-4 - name: Steering Pumps + - vehicle_type +- id: vp-1-5-5-5-3 + name: Fuel Injector Cleaners children: [] attributes: - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-4-5 - name: Steering Racks + - vehicle_type +- id: vp-1-5-5-6 + name: Vehicle Greases children: [] attributes: - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-4-6 - name: Steering Wheels + - vehicle_type +- id: vp-1-5-5-7 + name: Vehicle Hydraulic Clutch Fluid children: [] attributes: - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-5-1 - name: Oil Coolers - children: [] + - vehicle_type +- id: vp-1-5-5-8 + name: Vehicle Motor Oil + children: + - vp-1-5-5-8-1 + - vp-1-5-5-8-2 + - vp-1-5-5-8-3 + - vp-1-5-5-8-4 attributes: - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-5-2 - name: Oil Dipsticks + - vehicle_type + - viscosity +- id: vp-1-5-5-8-1 + name: Conventional Motor Oil children: [] attributes: - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-5-3 - name: Oil Drain Plugs + - vehicle_type + - viscosity +- id: vp-1-5-5-8-2 + name: Semi-Synthetic Motor Oil children: [] attributes: - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-5-4 - name: Oil Filler Caps + - vehicle_type + - viscosity +- id: vp-1-5-5-8-3 + name: High Mileage Motor Oil children: [] attributes: - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-5-5 - name: Oil Filters + - vehicle_type + - viscosity +- id: vp-1-5-5-8-4 + name: Synthetic Motor Oil children: [] attributes: - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-5-6 - name: Oil Pans + - vehicle_type + - viscosity +- id: vp-1-5-5-9 + name: Vehicle Performance Additives children: [] attributes: - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-5-7 - name: Oil Pressure Sensors + - vehicle_type +- id: vp-1-5-5-10 + name: Vehicle Power Steering Fluid children: [] attributes: - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-5-8 - name: Oil Pumps + - vehicle_type +- id: vp-1-5-5-11 + name: Vehicle Transmission Fluid children: [] attributes: - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-6-1 - name: Camshafts + - vehicle_type +- id: vp-1-5-5-12 + name: Vehicle Windshield Fluid children: [] attributes: - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-6-2 - name: Crankshafts - children: [] + - vehicle_type +- id: vp-1-5-6 + name: Vehicle Paint + children: + - vp-1-5-6-1 + - vp-1-5-6-2 attributes: - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-6-3 - name: Cylinder Heads + - paint_finish + - vehicle_paint_type + - vehicle_type +- id: vp-1-5-6-1 + name: Motor Vehicle Body Paint children: [] attributes: - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-6-4 - name: Engine Bearings + - paint_finish + - vehicle_application_area + - vehicle_paint_type + - vehicle_type +- id: vp-1-5-6-2 + name: Motor Vehicle Brake Caliper Paint children: [] attributes: - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-6-5 - name: Ignition Components - children: [] + - paint_finish + - vehicle_application_area + - vehicle_paint_type + - vehicle_type +- id: vp-1-5-7 + name: Vehicle Repair & Specialty Tools + children: + - vp-1-5-7-1 + - vp-1-5-7-2 + - vp-1-5-7-3 + - vp-1-5-7-4 + - vp-1-5-7-5 + - vp-1-5-7-6 + - vp-1-5-7-7 + - vp-1-5-7-8 + - vp-1-5-7-9 + - vp-1-5-7-10 attributes: - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-6-6 - name: Pistons + - power_source + - vehicle_type +- id: vp-1-5-7-1 + name: Motor Vehicle Brake Service Kits children: [] attributes: - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-6-7 - name: Timing Belts + - material + - power_source + - vehicle_type +- id: vp-1-5-7-2 + name: Motor Vehicle Clutch Alignment & Removal Tools children: [] attributes: - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-6-8 - name: Timing Chains + - power_source + - vehicle_type +- id: vp-1-5-7-3 + name: Vehicle Battery Chargers children: [] attributes: + - charger_type - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-6-9 - name: Valves + - power_source + - vehicle_type +- id: vp-1-5-7-4 + name: Vehicle Battery Testers children: [] attributes: - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-7-1 - name: Complete Engines + - power_source + - vehicle_type +- id: vp-1-5-7-5 + name: Vehicle Body Filler children: [] attributes: - color - - engine_design - - engine_type - - item_condition - - manufacturer_type -- id: vp-1-4-7-2 - name: Crate Engines + - filler_type + - power_source + - vehicle_type +- id: vp-1-5-7-6 + name: Vehicle Diagnostic Scanners children: [] attributes: - color - - engine_design - - engine_type - - item_condition - - manufacturer_type -- id: vp-1-4-7-3 - name: Engine Mounts + - power_source + - vehicle_type +- id: vp-1-5-7-7 + name: Vehicle Jump Starters children: [] attributes: - color - - engine_design - - engine_type - - item_condition - - manufacturer_type -- id: vp-1-4-7-4 - name: Engine Rebuild Kits + - power_source + - vehicle_type +- id: vp-1-5-7-8 + name: Vehicle Jumper Cables children: [] attributes: - color - - engine_design - - engine_type - - item_condition - - manufacturer_type -- id: vp-1-4-7-5 - name: Engine Timing Components - children: [] + - power_source + - vehicle_type +- id: vp-1-5-7-9 + name: Vehicle Tire Repair & Tire Changing Tools + children: + - vp-1-5-7-9-1 + - vp-1-5-7-9-2 attributes: - color - - engine_design - - engine_type - - item_condition - - manufacturer_type -- id: vp-1-4-7-6 - name: Engine Valve Covers - children: [] + - power_source + - vehicle_type +- id: vp-1-5-7-9-1 + name: Tire Changing Tools + children: + - vp-1-5-7-9-1-1 + - vp-1-5-7-9-1-2 + - vp-1-5-7-9-1-3 + - vp-1-5-7-9-1-4 + - vp-1-5-7-9-1-5 attributes: - color - - engine_design - - engine_type - - item_condition - - manufacturer_type -- id: vp-1-4-7-7 - name: Long Blocks + - power_source + - vehicle_type +- id: vp-1-5-7-9-1-1 + name: Bead Breakers children: [] attributes: - color - - engine_design - - engine_type - - item_condition - - manufacturer_type -- id: vp-1-4-7-8 - name: Short Blocks + - power_source + - vehicle_type +- id: vp-1-5-7-9-1-2 + name: Tire Changer Machines children: [] attributes: - color - - engine_design - - engine_type - - item_condition - - manufacturer_type -- id: vp-1-4-9-1 - name: Bumpers + - power_source + - vehicle_type +- id: vp-1-5-7-9-1-3 + name: Tire Irons children: [] attributes: - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-9-2 - name: Doors + - power_source + - vehicle_type +- id: vp-1-5-7-9-1-4 + name: Tire Levers children: [] attributes: - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-9-3 - name: Fenders + - power_source + - vehicle_type +- id: vp-1-5-7-9-1-5 + name: Tire Spoons children: [] attributes: - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-9-4 - name: Grilles + - power_source + - vehicle_type +- id: vp-1-5-7-9-2 + name: Tire Repair Kits children: [] attributes: - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-9-5 - name: Hoods + - power_source + - vehicle_type +- id: vp-1-5-7-10 + name: Windshield Repair Kits children: [] attributes: - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-9-6 - name: Quarter Panels + - power_source + - vehicle_type +- id: vp-1-6 + name: Vehicle Safety & Security + children: + - vp-1-6-1 + - vp-1-6-2 + - vp-1-6-3 + - vp-1-6-4 + attributes: + - vehicle_type +- id: vp-1-6-1 + name: Motorcycle Protective Gear + children: + - vp-1-6-1-1 + - vp-1-6-1-2 + - vp-1-6-1-3 + - vp-1-6-1-4 + - vp-1-6-1-5 + - vp-1-6-1-6 + - vp-1-6-1-7 + - vp-1-6-1-8 + - vp-1-6-1-9 + - vp-1-6-1-10 + attributes: + - accessory_size + - gear_material + - target_gender + - vehicle_type +- id: vp-1-6-1-1 + name: Motorcycle Chest & Back Protectors children: [] attributes: - - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-9-7 - name: Spoilers + - accessory_size + - gear_material + - target_gender + - vehicle_type +- id: vp-1-6-1-2 + name: Motorcycle Elbow & Wrist Guards children: [] attributes: - - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-9-8 - name: Trunks + - accessory_size + - gear_material + - target_gender + - vehicle_type +- id: vp-1-6-1-3 + name: Motorcycle Gloves children: [] attributes: + - accessory_size - color - - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-10-1 - name: Carburetors + - handwear_material + - motorcycle_glove_purpose + - target_gender + - vehicle_type +- id: vp-1-6-1-4 + name: Motorcycle Goggles children: [] attributes: - - color - - item_condition - - manufacturer_type -- id: vp-1-4-10-2 - name: Fuel Caps + - accessory_size + - lens_color + - gear_material + - target_gender + - vehicle_type +- id: vp-1-6-1-5 + name: Motorcycle Hand Guards children: [] attributes: - - color - - item_condition - - manufacturer_type -- id: vp-1-4-10-3 - name: Fuel Filters + - accessory_size + - gear_material + - target_gender + - vehicle_type +- id: vp-1-6-1-6 + name: Motorcycle Helmet Parts & Accessories children: [] attributes: + - accessory_size + - gear_material + - target_gender + - vehicle_type +- id: vp-1-6-1-7 + name: Motorcycle Helmets + children: + - vp-1-6-1-7-1 + - vp-1-6-1-7-2 + - vp-1-6-1-7-3 + - vp-1-6-1-7-4 + - vp-1-6-1-7-5 + attributes: + - accessory_size - color - - item_condition - - manufacturer_type -- id: vp-1-4-10-4 - name: Fuel Injectors + - gear_material + - target_gender + - vehicle_type +- id: vp-1-6-1-7-1 + name: Full Face Helmets children: [] attributes: + - accessory_size - color - - fuel_supply - - item_condition - - manufacturer_type -- id: vp-1-4-10-5 - name: Fuel Lines + - gear_material + - target_gender + - vehicle_type +- id: vp-1-6-1-7-2 + name: Half Helmets children: [] attributes: + - accessory_size - color - - item_condition - - manufacturer_type -- id: vp-1-4-10-6 - name: Fuel Pressure Regulators + - gear_material + - target_gender + - vehicle_type +- id: vp-1-6-1-7-3 + name: Modular Helmets children: [] attributes: + - accessory_size - color - - item_condition - - manufacturer_type -- id: vp-1-4-10-7 - name: Fuel Pumps + - gear_material + - target_gender + - vehicle_type +- id: vp-1-6-1-7-4 + name: Off-Road Helmets children: [] attributes: + - accessory_size - color - - item_condition - - manufacturer_type -- id: vp-1-4-10-8 - name: Fuel Tanks + - gear_material + - target_gender + - vehicle_type +- id: vp-1-6-1-7-5 + name: Open Face Helmets children: [] attributes: + - accessory_size - color - - item_condition - - manufacturer_type -- id: vp-1-4-11-1 - name: Car Mirrors + - gear_material + - target_gender + - vehicle_type +- id: vp-1-6-1-8 + name: Motorcycle Kidney Belts children: [] attributes: - - color - - fit_type - - item_condition - - manufacturer_type - - motor_vehicle_type - - pattern + - accessory_size - item_material -- id: vp-1-4-11-2 - name: Car Organizers + - target_gender + - vehicle_type +- id: vp-1-6-1-9 + name: Motorcycle Knee & Shin Guards children: [] attributes: - - color - - fit_type - - item_condition - - manufacturer_type - - motor_vehicle_type - - pattern - - fabric -- id: vp-1-4-11-3 - name: Floor Mats + - accessory_size + - gear_material + - target_gender + - vehicle_type +- id: vp-1-6-1-10 + name: Motorcycle Neck Braces children: [] attributes: - - color - - fit_type - - item_condition - - manufacturer_type - - motor_vehicle_type - - pattern - - fabric -- id: vp-1-4-11-4 - name: Pedal Sets - children: [] + - accessory_size + - gear_material + - target_gender + - vehicle_type +- id: vp-1-6-2 + name: Off-Road & All-Terrain Vehicle Protective Gear + children: + - vp-1-6-2-1 attributes: - - color - - fit_type - - item_condition - - manufacturer_type - - motor_vehicle_type - - pattern - - item_material -- id: vp-1-4-11-5 - name: Seat Covers + - vehicle_type +- id: vp-1-6-2-1 + name: ATV & UTV Bar Pads children: [] attributes: - - color - - fit_type - - item_condition - - manufacturer_type - - motor_vehicle_type - - pattern - - cover_material -- id: vp-1-4-11-6 - name: Steering Wheel Covers - children: [] + - vehicle_type +- id: vp-1-6-3 + name: Vehicle Alarms & Locks + children: + - vp-1-6-3-1 + - vp-1-6-3-2 + - vp-1-6-3-3 + - vp-1-6-3-4 + - vp-1-6-3-5 + - vp-1-6-3-6 + - vp-1-6-3-7 + - vp-1-6-3-8 + - vp-1-6-3-9 attributes: - - color - - fit_type - item_condition - manufacturer_type - - motor_vehicle_type - - pattern - - cover_material -- id: vp-1-4-11-7 - name: Sun Shades + - power_source + - vehicle_type +- id: vp-1-6-3-1 + name: Automotive Alarm Accessories children: [] attributes: - - color - - fit_type - item_condition - manufacturer_type - - motor_vehicle_type - - pattern - - fabric -- id: vp-1-4-12-1 - name: Fog Lights + - power_source + - vehicle_type +- id: vp-1-6-3-2 + name: Automotive Alarm Systems children: [] attributes: - - color - - fit_type - item_condition - - light_source - manufacturer_type -- id: vp-1-4-12-2 - name: Headlights + - power_source + - vehicle_type +- id: vp-1-6-3-3 + name: Motorcycle Alarms & Locks children: [] attributes: - - color - - fit_type - item_condition - - light_source - manufacturer_type -- id: vp-1-4-12-3 - name: Light Bars - children: [] + - power_source + - vehicle_type +- id: vp-1-6-3-4 + name: Vehicle Door Locks & Parts + children: + - vp-1-6-3-4-1 + - vp-1-6-3-4-2 + - vp-1-6-3-4-3 attributes: - - color - - fit_type - item_condition - - light_source - manufacturer_type -- id: vp-1-4-12-4 - name: Light Bulbs + - material + - power_source + - vehicle_type +- id: vp-1-6-3-4-1 + name: Vehicle Door Lock Actuators children: [] attributes: - - color - - fit_type - item_condition - - light_source - manufacturer_type -- id: vp-1-4-12-5 - name: Light Covers + - material + - power_source + - vehicle_type +- id: vp-1-6-3-4-2 + name: Vehicle Door Lock Knobs children: [] attributes: - - color - - fit_type - item_condition - - light_source - manufacturer_type -- id: vp-1-4-12-6 - name: Light Switches + - material + - power_source + - vehicle_type +- id: vp-1-6-3-4-3 + name: Vehicle Door Locks & Locking Systems children: [] attributes: - - color - - fit_type - item_condition - - light_source - manufacturer_type -- id: vp-1-4-12-7 - name: Tail Lights + - material + - power_source + - vehicle_type +- id: vp-1-6-3-5 + name: Vehicle Hitch Locks children: [] attributes: - - color - - fit_type + - hitch_class - item_condition - - light_source - manufacturer_type -- id: vp-1-4-12-8 - name: Turn Signals + - material + - power_source + - vehicle_type +- id: vp-1-6-3-6 + name: Vehicle Immobilizers children: [] attributes: - - color - - fit_type + - immobilizer_type - item_condition - - light_source - manufacturer_type -- id: vp-1-4-14-1 - name: Alternators + - material + - power_source + - vehicle_type +- id: vp-1-6-3-7 + name: Vehicle Remote Keyless Systems children: [] attributes: - - color - item_condition - manufacturer_type -- id: vp-1-4-14-2 - name: Batteries + - power_source + - vehicle_type +- id: vp-1-6-3-8 + name: Vehicle Steering Wheel Locks children: [] attributes: - - color - item_condition - manufacturer_type -- id: vp-1-4-14-3 - name: Fuses + - material + - power_source + - vehicle_type +- id: vp-1-6-3-9 + name: Vehicle Wheel Clamps children: [] attributes: - - color - item_condition - manufacturer_type -- id: vp-1-4-14-4 - name: Relays + - material + - power_source + - vehicle_type +- id: vp-1-6-4 + name: Vehicle Safety Equipment + children: + - vp-1-6-4-1 + - vp-1-6-4-2 + - vp-1-6-4-3 + - vp-1-6-4-4 + - vp-1-6-4-5 + - vp-1-6-4-6 + - vp-1-6-4-7 + - vp-1-6-4-8 + - vp-1-6-4-9 + - vp-1-6-4-10 + attributes: + - safety_equipment_material + - vehicle_type +- id: vp-1-6-4-1 + name: Car Window Nets children: [] attributes: - - color - - item_condition - - manufacturer_type -- id: vp-1-4-14-5 - name: Spark Plugs + - net_material + - vehicle_type +- id: vp-1-6-4-2 + name: Emergency Road Flares children: [] attributes: - - color - - item_condition - - manufacturer_type -- id: vp-1-4-14-6 - name: Starters + - flare_type + - safety_equipment_material + - vehicle_type +- id: vp-1-6-4-3 + name: Motor Vehicle Airbag Parts children: [] attributes: - - color - - item_condition - - manufacturer_type -- id: vp-1-4-14-7 - name: Voltage Regulators + - safety_equipment_material + - vehicle_type +- id: vp-1-6-4-4 + name: Motor Vehicle Roll Cages & Bars children: [] attributes: - - color - - item_condition - - manufacturer_type -- id: vp-1-4-14-8 - name: Wiring Harnesses + - cage_type + - safety_equipment_material + - vehicle_type +- id: vp-1-6-4-5 + name: Vehicle Seat Belt Buckles children: [] attributes: - - color - - item_condition - - manufacturer_type -- id: vp-1-4-15-1 - name: Front Seats + - safety_equipment_material + - vehicle_type +- id: vp-1-6-4-6 + name: Vehicle Seat Belt Covers children: [] attributes: - - color - - item_condition - - manufacturer_type - - fabric -- id: vp-1-4-15-2 - name: Rear Seats + - cover_material + - vehicle_type +- id: vp-1-6-4-7 + name: Vehicle Seat Belt Straps children: [] attributes: - - color - - item_condition - - manufacturer_type - - fabric -- id: vp-1-4-16-1 - name: Fuel Level Sensors + - safety_equipment_material + - vehicle_type +- id: vp-1-6-4-8 + name: Vehicle Seat Belts children: [] attributes: - - color - - gauge_type - - item_condition - - manufacturer_type -- id: vp-1-4-16-2 - name: Odometers + - belt_type + - fabric + - vehicle_type +- id: vp-1-6-4-9 + name: Vehicle Warning Whips children: [] attributes: - - color - - gauge_type - - item_condition - - manufacturer_type -- id: vp-1-4-16-3 - name: Oxygen Sensors + - safety_equipment_material + - vehicle_type +- id: vp-1-6-4-10 + name: Vehicle Wheel Chocks children: [] attributes: - - color - - gauge_type + - safety_equipment_material + - vehicle_type +- id: vp-1-7 + name: Vehicle Storage & Cargo + children: + - vp-1-7-1 + - vp-1-7-2 + - vp-1-7-3 + - vp-1-7-4 + - vp-1-7-5 + - vp-1-7-6 + - vp-1-7-7 + - vp-1-7-8 + - vp-1-7-9 + attributes: - item_condition - - manufacturer_type -- id: vp-1-4-16-4 - name: Pressure Sensors - children: [] + - vehicle_type +- id: vp-1-7-1 + name: Motor Vehicle Cargo Nets + children: + - vp-1-7-1-1 + - vp-1-7-1-2 + - vp-1-7-1-3 attributes: - - color - - gauge_type + - accessory_size - item_condition - - manufacturer_type -- id: vp-1-4-16-5 - name: Speed Sensors + - net_material + - vehicle_type +- id: vp-1-7-1-1 + name: Roof Cargo Nets children: [] attributes: - - color - - gauge_type + - accessory_size - item_condition - - manufacturer_type -- id: vp-1-4-16-6 - name: Speedometers + - net_material + - vehicle_type +- id: vp-1-7-1-2 + name: Truck Bed Cargo Nets children: [] attributes: - - color - - gauge_type + - accessory_size - item_condition - - manufacturer_type -- id: vp-1-4-16-7 - name: Tachometers + - net_material + - vehicle_type +- id: vp-1-7-1-3 + name: Trunk Cargo Nets children: [] attributes: - - color - - gauge_type + - accessory_size - item_condition - - manufacturer_type -- id: vp-1-4-16-8 - name: Temperature Sensors - children: [] + - net_material + - vehicle_type +- id: vp-1-7-2 + name: Motor Vehicle Carrying Rack Accessories + children: + - vp-1-7-2-1 + - vp-1-7-2-2 attributes: - - color - - gauge_type - item_condition - - manufacturer_type -- id: vp-1-4-17-1 - name: Ball Joints + - material + - vehicle_type +- id: vp-1-7-2-1 + name: Vehicle Bicycle Rack Accessories children: [] attributes: - - color - item_condition - - manufacturer_type - - motor_vehicle_placement -- id: vp-1-4-17-2 - name: Coil Springs + - material + - vehicle_type +- id: vp-1-7-2-2 + name: Vehicle Ski & Snowboard Rack Accessories children: [] attributes: - - color - item_condition - - manufacturer_type - - motor_vehicle_placement -- id: vp-1-4-17-3 - name: Control Arms - children: [] + - material + - vehicle_type +- id: vp-1-7-3 + name: Motor Vehicle Carrying Racks + children: + - vp-1-7-3-1 + - vp-1-7-3-2 + - vp-1-7-3-3 + - vp-1-7-3-4 + - vp-1-7-3-5 + - vp-1-7-3-6 + - vp-1-7-3-7 + - vp-1-7-3-8 + - vp-1-7-3-9 attributes: - - color - item_condition - - manufacturer_type - - motor_vehicle_placement -- id: vp-1-4-17-4 - name: Leaf Springs + - material + - vehicle_type +- id: vp-1-7-3-1 + name: Vehicle Base Rack Systems children: [] attributes: - - color - item_condition - - manufacturer_type - - motor_vehicle_placement -- id: vp-1-4-17-5 - name: Shock Absorbers + - material + - vehicle_type +- id: vp-1-7-3-2 + name: Vehicle Bicycle Racks children: [] attributes: - - color - item_condition - - manufacturer_type - - motor_vehicle_placement -- id: vp-1-4-17-6 - name: Struts + - material + - rack_type + - vehicle_type +- id: vp-1-7-3-3 + name: Vehicle Boat Racks children: [] attributes: - - color - item_condition - - manufacturer_type - - motor_vehicle_placement -- id: vp-1-4-17-7 - name: Suspension Bushings + - material + - rack_type + - vehicle_type +- id: vp-1-7-3-4 + name: Vehicle Cargo Racks children: [] attributes: - - color - item_condition - - manufacturer_type - - motor_vehicle_placement -- id: vp-1-4-17-8 - name: Sway Bars + - material + - vehicle_type +- id: vp-1-7-3-5 + name: Vehicle Fishing Rod Racks children: [] attributes: - - color - item_condition - - manufacturer_type - - motor_vehicle_placement -- id: vp-1-4-18-1 - name: Hitch Balls + - material + - rack_type + - vehicle_type +- id: vp-1-7-3-6 + name: Vehicle Gun Racks children: [] attributes: - - color - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-18-2 - name: Hitch Mounts + - material + - rack_type + - vehicle_type +- id: vp-1-7-3-7 + name: Vehicle Motorcycle & Scooter Racks children: [] attributes: - - color - item_condition - - manufacturer_type - - mount_material -- id: vp-1-4-18-3 - name: Tow Bars + - material + - rack_type + - vehicle_type +- id: vp-1-7-3-8 + name: Vehicle Ski & Snowboard Racks children: [] attributes: - - color - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-18-4 - name: Tow Straps + - material + - rack_type + - vehicle_type +- id: vp-1-7-3-9 + name: Vehicle Water Sport Board Racks children: [] attributes: - - color - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-18-5 - name: Trailer Brakes + - material + - rack_type + - vehicle_type +- id: vp-1-7-4 + name: Motor Vehicle Loading Ramps children: [] attributes: - - color - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-18-6 - name: Trailer Hitches - children: [] + - loading_ramp_type + - material + - vehicle_type +- id: vp-1-7-5 + name: Motor Vehicle Trailers + children: + - vp-1-7-5-1 + - vp-1-7-5-2 + - vp-1-7-5-3 + - vp-1-7-5-4 attributes: - - color - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-18-7 - name: Trailer Lights + - material + - trailer_type + - vehicle_type +- id: vp-1-7-5-1 + name: Boat Trailers children: [] attributes: - - color - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-18-8 - name: Trailer Wiring + - material + - trailer_type + - vehicle_type +- id: vp-1-7-5-2 + name: Horse & Livestock Trailers children: [] attributes: - - color - item_condition - - manufacturer_type - - item_material -- id: vp-1-4-19-1 - name: Axles + - material + - trailer_type + - vehicle_type +- id: vp-1-7-5-3 + name: Travel Trailers children: [] attributes: - - color - item_condition - - manufacturer_type - - transmission_type -- id: vp-1-4-19-2 - name: Clutches + - material + - trailer_type + - vehicle_type +- id: vp-1-7-5-4 + name: Utility & Cargo Trailers children: [] attributes: - - color - item_condition - - manufacturer_type - - transmission_type -- id: vp-1-4-19-3 - name: Differentials + - material + - trailer_type + - vehicle_type +- id: vp-1-7-6 + name: Motorcycle Bags & Panniers children: [] attributes: - - color + - bag_type - item_condition - - manufacturer_type - - transmission_type -- id: vp-1-4-19-4 - name: Drive Shafts + - bag_case_material + - vehicle_type +- id: vp-1-7-7 + name: Truck Bed Storage Boxes & Organizers children: [] attributes: - - color + - box_type - item_condition - - manufacturer_type - - transmission_type -- id: vp-1-4-19-5 - name: Transmission Coolers + - material + - vehicle_type +- id: vp-1-7-8 + name: Vehicle Headrest Hangers & Hooks children: [] attributes: - - color - item_condition - - manufacturer_type - - transmission_type -- id: vp-1-4-19-6 - name: Transmission Fluid + - material + - vehicle_type +- id: vp-1-7-9 + name: Vehicle Organizers children: [] attributes: - - color - - transmission_type -- id: vp-1-4-19-7 - name: Transmission Mounts - children: [] + - item_condition + - material + - organizer_type + - vehicle_type +- id: vp-1-8 + name: Watercraft Parts & Accessories + children: + - vp-1-8-1 + - vp-1-8-2 + - vp-1-8-3 + - vp-1-8-4 + - vp-1-8-5 + - vp-1-8-6 + - vp-1-8-7 + - vp-1-8-8 + - vp-1-8-9 attributes: - - color - item_condition - - manufacturer_type - - transmission_type -- id: vp-1-4-19-8 - name: Transmissions + - item_material + - vehicle_type +- id: vp-1-8-1 + name: Docking & Anchoring + children: + - vp-1-8-1-1 + - vp-1-8-1-2 + - vp-1-8-1-3 + - vp-1-8-1-4 + - vp-1-8-1-5 + - vp-1-8-1-6 + - vp-1-8-1-7 + - vp-1-8-1-8 + attributes: + - item_condition + - item_material + - vehicle_type +- id: vp-1-8-1-1 + name: Anchor Chains children: [] attributes: - - color + - chain_type - item_condition - - manufacturer_type - - transmission_type -- id: vp-1-5-2-2-1 - name: Car Shampoo + - item_material + - vehicle_type +- id: vp-1-8-1-2 + name: Anchor Lines & Ropes children: [] attributes: - - color - - package_type - - vehicle_application_area + - item_condition + - line_rope_type + - item_material - vehicle_type -- id: vp-1-5-2-2-2 - name: Waterless Washes +- id: vp-1-8-1-3 + name: Anchor Windlasses children: [] attributes: - - color - - package_type - - vehicle_application_area + - item_condition + - item_material + - power_source - vehicle_type -- id: vp-1-5-2-2-3 - name: Wax Washes + - windlass_design +- id: vp-1-8-1-4 + name: Anchors children: [] attributes: - - color - - package_type - - vehicle_application_area + - anchor_type + - item_condition + - item_material - vehicle_type -- id: vp-1-5-2-2-4 - name: Wheel Cleaners +- id: vp-1-8-1-5 + name: Boat Hooks children: [] attributes: - - color - - package_type - - vehicle_application_area + - hook_type + - item_condition + - item_material - vehicle_type -- id: vp-1-5-2-3-1 - name: Carpet Cleaners +- id: vp-1-8-1-6 + name: Boat Ladders children: [] attributes: - - color - - package_type - - vehicle_application_area + - item_condition + - ladder_type + - item_material - vehicle_type -- id: vp-1-5-2-3-2 - name: Stain Removers +- id: vp-1-8-1-7 + name: Dock Cleats children: [] attributes: - - color - - package_type - - vehicle_application_area + - cleat_type + - item_condition + - item_material - vehicle_type -- id: vp-1-5-2-3-3 - name: Upholstery Cleaners +- id: vp-1-8-1-8 + name: Dock Steps children: [] attributes: - - color - - package_type - - vehicle_application_area + - item_condition + - item_material + - step_type - vehicle_type -- id: vp-1-5-2-6-1 - name: Car Wax +- id: vp-1-8-2 + name: Sailboat Parts children: [] attributes: - - color - - package_type - - vehicle_application_area + - item_condition + - item_material - vehicle_type -- id: vp-1-5-2-6-2 - name: Polishes - children: [] +- id: vp-1-8-3 + name: Watercraft Care + children: + - vp-1-8-3-1 + - vp-1-8-3-2 attributes: - - color - - package_type - - vehicle_application_area + - item_material - vehicle_type -- id: vp-1-5-2-6-3 - name: Protectants +- id: vp-1-8-3-1 + name: Watercraft Cleaners children: [] attributes: - - color - - package_type - - vehicle_application_area + - cleaner_purpose + - item_material - vehicle_type -- id: vp-1-5-2-6-4 - name: Sealants +- id: vp-1-8-3-2 + name: Watercraft Polishes children: [] attributes: - - color - - package_type - - vehicle_application_area + - item_material + - polish_type - vehicle_type -- id: vp-1-5-5-3-1 - name: Coolant Additives - children: [] +- id: vp-1-8-4 + name: Watercraft Engine Parts + children: + - vp-1-8-4-1 + - vp-1-8-4-2 + - vp-1-8-4-3 + - vp-1-8-4-4 + - vp-1-8-4-5 + - vp-1-8-4-6 + - vp-1-8-4-7 + - vp-1-8-4-8 + - vp-1-8-4-9 attributes: - - color + - item_condition + - item_material - vehicle_type -- id: vp-1-5-5-3-2 - name: Radiator Flushes +- id: vp-1-8-4-1 + name: Watercraft Alternators children: [] attributes: - - color + - item_condition + - item_material - vehicle_type -- id: vp-1-5-5-3-3 - name: Radiator Sealers +- id: vp-1-8-4-2 + name: Watercraft Carburetors & Parts children: [] attributes: - - color + - item_condition + - item_material - vehicle_type -- id: vp-1-5-5-5-1 - name: Carburetor Cleaners +- id: vp-1-8-4-3 + name: Watercraft Engine Controls children: [] attributes: - - color + - item_condition + - item_material - vehicle_type -- id: vp-1-5-5-5-2 - name: Complete Fuel System Cleaners + - watercraft_engine_control_type +- id: vp-1-8-4-4 + name: Watercraft Ignition Parts children: [] attributes: - - color + - item_condition + - item_material - vehicle_type -- id: vp-1-5-5-5-3 - name: Fuel Injector Cleaners +- id: vp-1-8-4-5 + name: Watercraft Impellers children: [] attributes: - - color + - item_condition + - item_material - vehicle_type -- id: vp-1-5-5-8-1 - name: Conventional Motor Oil +- id: vp-1-8-4-6 + name: Watercraft Motor Locks children: [] attributes: - - color + - item_condition + - lock_placement + - item_material - vehicle_type - - viscosity -- id: vp-1-5-5-8-3 - name: High Mileage Motor Oil +- id: vp-1-8-4-7 + name: Watercraft Motor Mounts children: [] attributes: - - color + - item_condition + - mount_material - vehicle_type - - viscosity -- id: vp-1-5-5-8-2 - name: Semi-Synthetic Motor Oil + - watercraft_motor_mounting_type +- id: vp-1-8-4-8 + name: Watercraft Pistons & Parts children: [] attributes: - - color + - item_condition + - item_material - vehicle_type - - viscosity -- id: vp-1-5-5-8-4 - name: Synthetic Motor Oil +- id: vp-1-8-4-9 + name: Watercraft Propellers children: [] attributes: - - color + - item_condition + - item_material + - propeller_blade_design - vehicle_type - - viscosity -- id: vp-1-5-7-9-1 - name: Tire Changing Tools +- id: vp-1-8-5 + name: Watercraft Engines & Motors children: - - vp-1-5-7-9-1-1 - - vp-1-5-7-9-1-2 - - vp-1-5-7-9-1-3 - - vp-1-5-7-9-1-4 - - vp-1-5-7-9-1-5 + - vp-1-8-5-1 + - vp-1-8-5-2 + - vp-1-8-5-3 attributes: - - color - - power_source + - engine_type + - fuel_supply + - item_condition + - item_material - vehicle_type -- id: vp-1-5-7-9-1-1 - name: Bead Breakers +- id: vp-1-8-5-1 + name: Inboard Motors children: [] attributes: - - color - - power_source + - engine_type + - fuel_supply + - item_condition + - item_material - vehicle_type -- id: vp-1-5-7-9-1-2 - name: Tire Changer Machines +- id: vp-1-8-5-2 + name: Outboard Motors children: [] attributes: - - color - - power_source + - engine_type + - fuel_supply + - item_condition + - item_material - vehicle_type -- id: vp-1-5-7-9-1-3 - name: Tire Irons +- id: vp-1-8-5-3 + name: Trolling Motors children: [] attributes: - - color - - power_source + - engine_type + - fuel_supply + - item_condition + - item_material - vehicle_type -- id: vp-1-5-7-9-1-4 - name: Tire Levers - children: [] +- id: vp-1-8-6 + name: Watercraft Exhaust Parts + children: + - vp-1-8-6-1 + - vp-1-8-6-2 attributes: - - color - - power_source + - item_condition + - item_material - vehicle_type -- id: vp-1-5-7-9-1-5 - name: Tire Spoons +- id: vp-1-8-6-1 + name: Watercraft Manifolds children: [] attributes: - - color - - power_source + - item_condition + - item_material - vehicle_type -- id: vp-1-5-7-9-2 - name: Tire Repair Kits +- id: vp-1-8-6-2 + name: Watercraft Mufflers & Parts children: [] attributes: - - color - - power_source + - item_condition + - item_material + - vehicle_type +- id: vp-1-8-7 + name: Watercraft Fuel Systems + children: + - vp-1-8-7-1 + - vp-1-8-7-2 + - vp-1-8-7-3 + - vp-1-8-7-4 + attributes: + - item_condition + - item_material - vehicle_type -- id: vp-1-6-1-7-1 - name: Full Face Helmets +- id: vp-1-8-7-1 + name: Watercraft Fuel Lines & Parts children: [] attributes: - - accessory_size - - color - - target_gender + - item_condition + - item_material - vehicle_type - - gear_material -- id: vp-1-6-1-7-2 - name: Half Helmets +- id: vp-1-8-7-2 + name: Watercraft Fuel Meters children: [] attributes: - - accessory_size - - color - - target_gender + - item_condition + - item_material + - meter_type - vehicle_type - - gear_material -- id: vp-1-6-1-7-3 - name: Modular Helmets +- id: vp-1-8-7-3 + name: Watercraft Fuel Pumps & Parts children: [] attributes: - - accessory_size - - color - - target_gender + - item_condition + - item_material - vehicle_type - - gear_material -- id: vp-1-6-1-7-4 - name: Off-Road Helmets +- id: vp-1-8-7-4 + name: Watercraft Fuel Tanks & Parts children: [] attributes: - - accessory_size - - color - - target_gender + - item_condition + - item_material - vehicle_type - - gear_material -- id: vp-1-6-1-7-5 - name: Open Face Helmets +- id: vp-1-8-8 + name: Watercraft Lighting children: [] attributes: - - accessory_size - - color - - target_gender + - item_condition + - light_type + - item_material + - power_source - vehicle_type - - gear_material -- id: vp-1-7-1-1 - name: Roof Cargo Nets - children: [] +- id: vp-1-8-9 + name: Watercraft Steering Parts + children: + - vp-1-8-9-1 + - vp-1-8-9-2 attributes: - - accessory_size - item_condition + - item_material - vehicle_type - - net_material -- id: vp-1-7-1-2 - name: Truck Bed Cargo Nets +- id: vp-1-8-9-1 + name: Watercraft Steering Cables children: [] attributes: - - accessory_size - item_condition + - item_material - vehicle_type - - net_material -- id: vp-1-7-1-3 - name: Trunk Cargo Nets +- id: vp-1-8-9-2 + name: Watercraft Steering Wheels children: [] attributes: - - accessory_size - item_condition + - item_material - vehicle_type - - net_material -- id: vp-1-8-5-1 - name: Inboard Motors - children: [] + - watercraft_steering_wheel_type +- id: vp-2 + name: Vehicles + children: + - vp-2-1 + - vp-2-2 + - vp-2-3 attributes: - - engine_type + - body_color - fuel_supply - item_condition - - vehicle_type - - item_material -- id: vp-1-8-5-2 - name: Outboard Motors + - upholstery_color +- id: vp-2-1 + name: Aircraft children: [] attributes: - - engine_type + - body_color - fuel_supply - item_condition - - vehicle_type - - item_material -- id: vp-1-8-5-3 - name: Trolling Motors - children: [] + - upholstery_color +- id: vp-2-2 + name: Motor Vehicles + children: + - vp-2-2-1 + - vp-2-2-2 + - vp-2-2-3 + - vp-2-2-4 + - vp-2-2-5 + - vp-2-2-6 attributes: - - engine_type + - body_color - fuel_supply - item_condition - - vehicle_type - - item_material + - transmission_type + - upholstery_color +- id: vp-2-2-1 + name: Cars, Trucks & Vans + children: + - vp-2-2-1-1 + - vp-2-2-1-2 + attributes: + - body_color + - drive_type + - fuel_supply + - item_condition + - transmission_type + - upholstery_color - id: vp-2-2-1-1 name: Electric Vehicles (EV) children: @@ -4080,6 +3956,28 @@ - transmission_type - upholstery_color - van_type +- id: vp-2-2-2 + name: Golf Carts + children: [] + attributes: + - body_color + - cart_type + - fuel_supply + - item_condition + - transmission_type + - upholstery_color +- id: vp-2-2-3 + name: Motorcycles & Scooters + children: + - vp-2-2-3-1 + - vp-2-2-3-2 + attributes: + - body_color + - fuel_supply + - item_condition + - motorcycle_drive_type + - transmission_type + - upholstery_color - id: vp-2-2-3-1 name: Electric Motorcycles & Scooters children: [] @@ -4102,3 +4000,105 @@ - motorcycle_scooter_type - transmission_type - upholstery_color +- id: vp-2-2-4 + name: Off-Road and All-Terrain Vehicles + children: + - vp-2-2-4-1 + - vp-2-2-4-2 + attributes: + - body_color + - drive_type + - fuel_supply + - item_condition + - transmission_type + - upholstery_color +- id: vp-2-2-4-1 + name: ATVs & UTVs + children: [] + attributes: + - body_color + - drive_type + - fuel_supply + - item_condition + - transmission_type + - upholstery_color +- id: vp-2-2-4-2 + name: Go Karts & Dune Buggies + children: [] + attributes: + - body_color + - drive_type + - fuel_supply + - item_condition + - transmission_type + - upholstery_color +- id: vp-2-2-5 + name: Recreational Vehicles + children: [] + attributes: + - body_color + - drive_type + - fuel_supply + - item_condition + - recreational_vehicle_type + - transmission_type + - upholstery_color +- id: vp-2-2-6 + name: Snowmobiles + children: [] + attributes: + - body_color + - drive_type + - fuel_supply + - item_condition + - snowmobile_type + - transmission_type + - upholstery_color +- id: vp-2-3 + name: Watercraft + children: + - vp-2-3-1 + - vp-2-3-2 + - vp-2-3-3 + - vp-2-3-4 + attributes: + - body_color + - fuel_supply + - item_condition + - upholstery_color +- id: vp-2-3-1 + name: Motor Boats + children: [] + attributes: + - boat_type + - body_color + - fuel_supply + - item_condition + - upholstery_color +- id: vp-2-3-2 + name: Personal Watercraft + children: [] + attributes: + - body_color + - fuel_supply + - item_condition + - upholstery_color + - watercraft_type +- id: vp-2-3-3 + name: Sailboats + children: [] + attributes: + - body_color + - fuel_supply + - item_condition + - sailboat_type + - upholstery_color +- id: vp-2-3-4 + name: Yachts + children: [] + attributes: + - body_color + - fuel_supply + - item_condition + - upholstery_color + - yacht_type diff --git a/data/values.yml b/data/values.yml new file mode 100644 index 00000000..093cfb2c --- /dev/null +++ b/data/values.yml @@ -0,0 +1,45958 @@ +--- +- id: 1 + name: Beige + friendly_id: color__beige +- id: 2 + name: Black + friendly_id: color__black +- id: 3 + name: Blue + friendly_id: color__blue +- id: 4 + name: Bronze + friendly_id: color__bronze +- id: 5 + name: Brown + friendly_id: color__brown +- id: 6 + name: Clear + friendly_id: color__clear +- id: 7 + name: Gold + friendly_id: color__gold +- id: 8 + name: Gray + friendly_id: color__gray +- id: 9 + name: Green + friendly_id: color__green +- id: 10 + name: Multicolor + friendly_id: color__multicolor +- id: 11 + name: Navy + friendly_id: color__navy +- id: 12 + name: Orange + friendly_id: color__orange +- id: 13 + name: Pink + friendly_id: color__pink +- id: 14 + name: Purple + friendly_id: color__purple +- id: 15 + name: Red + friendly_id: color__red +- id: 16 + name: Rose gold + friendly_id: color__rose_gold +- id: 17 + name: Silver + friendly_id: color__silver +- id: 18 + name: White + friendly_id: color__white +- id: 19 + name: Yellow + friendly_id: color__yellow +- id: 20 + name: Acrylic + friendly_id: material__acrylic +- id: 21 + name: Aluminum + friendly_id: material__aluminum +- id: 22 + name: Biodegradable materials + friendly_id: material__biodegradable_materials +- id: 23 + name: Brass + friendly_id: material__brass +- id: 24 + name: Bronze + friendly_id: material__bronze +- id: 25 + name: Canvas + friendly_id: material__canvas +- id: 26 + name: Carbon + friendly_id: material__carbon +- id: 27 + name: Cardboard + friendly_id: material__cardboard +- id: 28 + name: Ceramic + friendly_id: material__ceramic +- id: 29 + name: Chrome + friendly_id: material__chrome +- id: 30 + name: Clay + friendly_id: material__clay +- id: 31 + name: Coir + friendly_id: material__coir +- id: 32 + name: Concrete + friendly_id: material__concrete +- id: 33 + name: Copper + friendly_id: material__copper +- id: 34 + name: Cork + friendly_id: material__cork +- id: 35 + name: Cotton + friendly_id: material__cotton +- id: 36 + name: Fabric + friendly_id: material__fabric +- id: 37 + name: Faux leather + friendly_id: material__faux_leather +- id: 38 + name: Fiberglass + friendly_id: material__fiberglass +- id: 39 + name: Glass + friendly_id: material__glass +- id: 40 + name: Graphite + friendly_id: material__graphite +- id: 41 + name: Iron + friendly_id: material__iron +- id: 42 + name: Latex + friendly_id: material__latex +- id: 43 + name: Leather + friendly_id: material__leather +- id: 44 + name: Linen + friendly_id: material__linen +- id: 45 + name: Marble + friendly_id: material__marble +- id: 46 + name: Medium density fiberboard (MDF) + friendly_id: material__medium_density_fiberboard_mdf +- id: 47 + name: Metal + friendly_id: material__metal +- id: 48 + name: Nylon + friendly_id: material__nylon +- id: 49 + name: Paper + friendly_id: material__paper +- id: 50 + name: Plastic + friendly_id: material__plastic +- id: 51 + name: Plush + friendly_id: material__plush +- id: 52 + name: Plywood + friendly_id: material__plywood +- id: 53 + name: Polyester + friendly_id: material__polyester +- id: 54 + name: Polyethylene (PE) + friendly_id: material__polyethylene_pe +- id: 55 + name: Polypropylene (PP) + friendly_id: material__polypropylene_pp +- id: 56 + name: Polyurethane (PU) + friendly_id: material__polyurethane_pu +- id: 57 + name: Polyvinyl chloride (PVC) + friendly_id: material__polyvinyl_chloride_pvc +- id: 58 + name: Porcelain + friendly_id: material__porcelain +- id: 59 + name: Resin + friendly_id: material__resin +- id: 60 + name: Rubber + friendly_id: material__rubber +- id: 61 + name: Silicone + friendly_id: material__silicone +- id: 62 + name: Stainless steel + friendly_id: material__stainless_steel +- id: 63 + name: Stone + friendly_id: material__stone +- id: 64 + name: Thermoplastic elastomer (TPE) + friendly_id: material__thermoplastic_elastomer_tpe +- id: 65 + name: Thermoplastic polyurethane (TPU) + friendly_id: material__thermoplastic_polyurethane_tpu +- id: 66 + name: Vinyl + friendly_id: material__vinyl +- id: 67 + name: Wood + friendly_id: material__wood +- id: 68 + name: Wool + friendly_id: material__wool +- id: 69 + name: Other + friendly_id: material__other +- id: 70 + name: Small (S) + friendly_id: accessory_size__small_s +- id: 71 + name: Medium (M) + friendly_id: accessory_size__medium_m +- id: 72 + name: Large (L) + friendly_id: accessory_size__large_l +- id: 73 + name: Extra large (XL) + friendly_id: accessory_size__extra_large_xl +- id: 74 + name: Blue tit + friendly_id: suitable_for_bird_type__blue_tit +- id: 75 + name: Chaffinch + friendly_id: suitable_for_bird_type__chaffinch +- id: 76 + name: Goldfinch + friendly_id: suitable_for_bird_type__goldfinch +- id: 77 + name: Great tit + friendly_id: suitable_for_bird_type__great_tit +- id: 78 + name: Greenfinch + friendly_id: suitable_for_bird_type__greenfinch +- id: 79 + name: House sparrow + friendly_id: suitable_for_bird_type__house_sparrow +- id: 80 + name: Siskin + friendly_id: suitable_for_bird_type__siskin +- id: 81 + name: Blackcap + friendly_id: suitable_for_bird_type__blackcap +- id: 82 + name: Blackbird + friendly_id: suitable_for_bird_type__blackbird +- id: 83 + name: Collared dove + friendly_id: suitable_for_bird_type__collared_dove +- id: 84 + name: Robin + friendly_id: suitable_for_bird_type__robin +- id: 85 + name: Song thrush + friendly_id: suitable_for_bird_type__song_thrush +- id: 86 + name: Starling + friendly_id: suitable_for_bird_type__starling +- id: 87 + name: Parakeet + friendly_id: suitable_for_bird_type__parakeet +- id: 88 + name: Parrot + friendly_id: suitable_for_bird_type__parrot +- id: 89 + name: Canary + friendly_id: suitable_for_bird_type__canary +- id: 90 + name: Lovebird + friendly_id: suitable_for_bird_type__lovebird +- id: 91 + name: Cockatiel + friendly_id: suitable_for_bird_type__cockatiel +- id: 92 + name: Other + friendly_id: suitable_for_bird_type__other +- id: 93 + name: Budgie + friendly_id: suitable_for_bird_type__budgie +- id: 94 + name: Aluminum + friendly_id: toy_game_material__aluminum +- id: 95 + name: Cardboard + friendly_id: toy_game_material__cardboard +- id: 96 + name: Cotton + friendly_id: toy_game_material__cotton +- id: 97 + name: Fabric + friendly_id: toy_game_material__fabric +- id: 98 + name: Fiberglass + friendly_id: toy_game_material__fiberglass +- id: 99 + name: Fleece + friendly_id: toy_game_material__fleece +- id: 100 + name: Foam + friendly_id: toy_game_material__foam +- id: 101 + name: Mesh + friendly_id: toy_game_material__mesh +- id: 102 + name: Metal + friendly_id: toy_game_material__metal +- id: 103 + name: Nylon + friendly_id: toy_game_material__nylon +- id: 104 + name: Plastic + friendly_id: toy_game_material__plastic +- id: 105 + name: Plush + friendly_id: toy_game_material__plush +- id: 106 + name: Polyester + friendly_id: toy_game_material__polyester +- id: 107 + name: Rubber + friendly_id: toy_game_material__rubber +- id: 108 + name: Silicone + friendly_id: toy_game_material__silicone +- id: 109 + name: Steel + friendly_id: toy_game_material__steel +- id: 110 + name: Synthetic + friendly_id: toy_game_material__synthetic +- id: 111 + name: Tin + friendly_id: toy_game_material__tin +- id: 112 + name: Vinyl + friendly_id: toy_game_material__vinyl +- id: 113 + name: Wood + friendly_id: toy_game_material__wood +- id: 114 + name: Wool + friendly_id: toy_game_material__wool +- id: 115 + name: Other + friendly_id: toy_game_material__other +- id: 116 + name: Bag + friendly_id: package_type__bag +- id: 117 + name: Box + friendly_id: package_type__box +- id: 118 + name: Tube + friendly_id: package_type__tube +- id: 119 + name: Pouch + friendly_id: package_type__pouch +- id: 120 + name: Liquid + friendly_id: pet_supply_product_form__liquid +- id: 121 + name: Wet + friendly_id: pet_supply_product_form__wet +- id: 122 + name: Dry + friendly_id: pet_supply_product_form__dry +- id: 123 + name: Gel + friendly_id: pet_supply_product_form__gel +- id: 124 + name: Other + friendly_id: pet_supply_product_form__other +- id: 125 + name: Finch + friendly_id: suitable_for_bird_type__finch +- id: 126 + name: Macaw + friendly_id: suitable_for_bird_type__macaw +- id: 127 + name: Kitten + friendly_id: cat_age_group__kitten +- id: 128 + name: Senior + friendly_id: cat_age_group__senior +- id: 129 + name: Allergy & food sensitivity + friendly_id: pet_dietary_requirements__allergy_food_sensitivity +- id: 130 + name: Cardiovascular care + friendly_id: pet_dietary_requirements__cardiovascular_care +- id: 131 + name: Dental health + friendly_id: pet_dietary_requirements__dental_health +- id: 132 + name: Diabetes care + friendly_id: pet_dietary_requirements__diabetes_care +- id: 133 + name: Digestive health + friendly_id: pet_dietary_requirements__digestive_health +- id: 134 + name: Gluten-free + friendly_id: pet_dietary_requirements__gluten_free +- id: 135 + name: Grain-free + friendly_id: pet_dietary_requirements__grain_free +- id: 136 + name: Hairball control + friendly_id: pet_dietary_requirements__hairball_control +- id: 137 + name: High protein + friendly_id: pet_dietary_requirements__high_protein +- id: 138 + name: Joint & mobility care + friendly_id: pet_dietary_requirements__joint_mobility_care +- id: 139 + name: Kidney care + friendly_id: pet_dietary_requirements__kidney_care +- id: 140 + name: Liver care + friendly_id: pet_dietary_requirements__liver_care +- id: 141 + name: Sensitive stomach + friendly_id: pet_dietary_requirements__sensitive_stomach +- id: 142 + name: Skin & coat care + friendly_id: pet_dietary_requirements__skin_coat_care +- id: 143 + name: Thyroid care + friendly_id: pet_dietary_requirements__thyroid_care +- id: 144 + name: Urinary health + friendly_id: pet_dietary_requirements__urinary_health +- id: 145 + name: Weight control + friendly_id: pet_dietary_requirements__weight_control +- id: 146 + name: Other + friendly_id: pet_dietary_requirements__other +- id: 147 + name: Apple + friendly_id: pet_food_flavor__apple +- id: 148 + name: Avocado + friendly_id: pet_food_flavor__avocado +- id: 149 + name: Bacon + friendly_id: pet_food_flavor__bacon +- id: 150 + name: Banana + friendly_id: pet_food_flavor__banana +- id: 151 + name: Beef + friendly_id: pet_food_flavor__beef +- id: 152 + name: Beet + friendly_id: pet_food_flavor__beet +- id: 153 + name: Blueberry + friendly_id: pet_food_flavor__blueberry +- id: 154 + name: Bone + friendly_id: pet_food_flavor__bone +- id: 155 + name: Carrot + friendly_id: pet_food_flavor__carrot +- id: 156 + name: Cheese + friendly_id: pet_food_flavor__cheese +- id: 157 + name: Chicken + friendly_id: pet_food_flavor__chicken +- id: 158 + name: Cranberry + friendly_id: pet_food_flavor__cranberry +- id: 159 + name: Duck + friendly_id: pet_food_flavor__duck +- id: 160 + name: Fish + friendly_id: pet_food_flavor__fish +- id: 161 + name: Fruit + friendly_id: pet_food_flavor__fruit +- id: 162 + name: Grain + friendly_id: pet_food_flavor__grain +- id: 163 + name: Grass + friendly_id: pet_food_flavor__grass +- id: 164 + name: Ham + friendly_id: pet_food_flavor__ham +- id: 165 + name: Lamb + friendly_id: pet_food_flavor__lamb +- id: 166 + name: Liver + friendly_id: pet_food_flavor__liver +- id: 167 + name: Mango + friendly_id: pet_food_flavor__mango +- id: 168 + name: Meat + friendly_id: pet_food_flavor__meat +- id: 169 + name: Mixed flavors + friendly_id: pet_food_flavor__mixed_flavors +- id: 170 + name: Peanut butter + friendly_id: pet_food_flavor__peanut_butter +- id: 171 + name: Peppermint + friendly_id: pet_food_flavor__peppermint +- id: 172 + name: Pork + friendly_id: pet_food_flavor__pork +- id: 173 + name: Rabbit + friendly_id: pet_food_flavor__rabbit +- id: 174 + name: Rice + friendly_id: pet_food_flavor__rice +- id: 175 + name: Salami + friendly_id: pet_food_flavor__salami +- id: 176 + name: Seafood + friendly_id: pet_food_flavor__seafood +- id: 177 + name: Spinach + friendly_id: pet_food_flavor__spinach +- id: 178 + name: Sweet potato + friendly_id: pet_food_flavor__sweet_potato +- id: 179 + name: Turkey + friendly_id: pet_food_flavor__turkey +- id: 180 + name: Unflavored + friendly_id: pet_food_flavor__unflavored +- id: 181 + name: Veal + friendly_id: pet_food_flavor__veal +- id: 182 + name: Vegetables + friendly_id: pet_food_flavor__vegetables +- id: 183 + name: Venison + friendly_id: pet_food_flavor__venison +- id: 184 + name: Other + friendly_id: pet_food_flavor__other +- id: 185 + name: Can + friendly_id: package_type__can +- id: 186 + name: Acrylic + friendly_id: furniture_fixture_material__acrylic +- id: 187 + name: Aluminum + friendly_id: furniture_fixture_material__aluminum +- id: 188 + name: Bamboo + friendly_id: furniture_fixture_material__bamboo +- id: 189 + name: Beech wood + friendly_id: furniture_fixture_material__beech_wood +- id: 190 + name: Brass + friendly_id: furniture_fixture_material__brass +- id: 191 + name: Cedar wood + friendly_id: furniture_fixture_material__cedar_wood +- id: 192 + name: Ceramic + friendly_id: furniture_fixture_material__ceramic +- id: 193 + name: Cherry wood + friendly_id: furniture_fixture_material__cherry_wood +- id: 194 + name: Concrete + friendly_id: furniture_fixture_material__concrete +- id: 195 + name: Fabric + friendly_id: furniture_fixture_material__fabric +- id: 196 + name: Faux leather + friendly_id: furniture_fixture_material__faux_leather +- id: 197 + name: Fiber reinforced plastic (FRP) + friendly_id: furniture_fixture_material__fiber_reinforced_plastic_frp +- id: 198 + name: Fiberglass + friendly_id: furniture_fixture_material__fiberglass +- id: 199 + name: Foam + friendly_id: furniture_fixture_material__foam +- id: 200 + name: Glass + friendly_id: furniture_fixture_material__glass +- id: 201 + name: Granite + friendly_id: furniture_fixture_material__granite +- id: 202 + name: High density fiberboard (HDF) + friendly_id: furniture_fixture_material__high_density_fiberboard_hdf +- id: 203 + name: Iron + friendly_id: furniture_fixture_material__iron +- id: 204 + name: Leather + friendly_id: furniture_fixture_material__leather +- id: 205 + name: Maple wood + friendly_id: furniture_fixture_material__maple_wood +- id: 206 + name: Marble + friendly_id: furniture_fixture_material__marble +- id: 207 + name: Medium density fiberboard (MDF) + friendly_id: furniture_fixture_material__medium_density_fiberboard_mdf +- id: 208 + name: Melamine + friendly_id: furniture_fixture_material__melamine +- id: 209 + name: Metal + friendly_id: furniture_fixture_material__metal +- id: 210 + name: Oak wood + friendly_id: furniture_fixture_material__oak_wood +- id: 211 + name: Particle board + friendly_id: furniture_fixture_material__particle_board +- id: 212 + name: Pine wood + friendly_id: furniture_fixture_material__pine_wood +- id: 213 + name: Plastic + friendly_id: furniture_fixture_material__plastic +- id: 214 + name: Plywood + friendly_id: furniture_fixture_material__plywood +- id: 215 + name: Polyurethane (PU) + friendly_id: furniture_fixture_material__polyurethane_pu +- id: 216 + name: Polyvinyl chloride (PVC) + friendly_id: furniture_fixture_material__polyvinyl_chloride_pvc +- id: 217 + name: Rattan + friendly_id: furniture_fixture_material__rattan +- id: 218 + name: Resin + friendly_id: furniture_fixture_material__resin +- id: 219 + name: Stainless steel + friendly_id: furniture_fixture_material__stainless_steel +- id: 220 + name: Steel + friendly_id: furniture_fixture_material__steel +- id: 221 + name: Teak wood + friendly_id: furniture_fixture_material__teak_wood +- id: 222 + name: Walnut wood + friendly_id: furniture_fixture_material__walnut_wood +- id: 223 + name: Wicker + friendly_id: furniture_fixture_material__wicker +- id: 224 + name: Wood + friendly_id: furniture_fixture_material__wood +- id: 225 + name: Wood plastic composite (WPC) + friendly_id: furniture_fixture_material__wood_plastic_composite_wpc +- id: 226 + name: Other + friendly_id: furniture_fixture_material__other +- id: 227 + name: Animals + friendly_id: pattern__animals +- id: 228 + name: Birds + friendly_id: pattern__birds +- id: 229 + name: Camouflage + friendly_id: pattern__camouflage +- id: 230 + name: Characters + friendly_id: pattern__characters +- id: 231 + name: Checkered + friendly_id: pattern__checkered +- id: 232 + name: Christmas + friendly_id: pattern__christmas +- id: 233 + name: Dots + friendly_id: pattern__dots +- id: 234 + name: Floral + friendly_id: pattern__floral +- id: 235 + name: Geometric + friendly_id: pattern__geometric +- id: 236 + name: Hearts + friendly_id: pattern__hearts +- id: 237 + name: Leaves + friendly_id: pattern__leaves +- id: 238 + name: Paisley + friendly_id: pattern__paisley +- id: 239 + name: Solid + friendly_id: pattern__solid +- id: 240 + name: Stars + friendly_id: pattern__stars +- id: 241 + name: Striped + friendly_id: pattern__striped +- id: 242 + name: Text + friendly_id: pattern__text +- id: 243 + name: Tie-dye + friendly_id: pattern__tie_dye +- id: 244 + name: Vehicle + friendly_id: pattern__vehicle +- id: 245 + name: Wood pellets + friendly_id: cat_litter_formula__wood_pellets +- id: 246 + name: Clay + friendly_id: cat_litter_formula__clay +- id: 247 + name: Crystals + friendly_id: cat_litter_formula__crystals +- id: 248 + name: Granules + friendly_id: cat_litter_formula__granules +- id: 249 + name: Adult + friendly_id: cat_age_group__adult +- id: 250 + name: Canister + friendly_id: package_type__canister +- id: 251 + name: Extra small (XS) + friendly_id: accessory_size__extra_small_xs +- id: 252 + name: Adult + friendly_id: dog_age_group__adult +- id: 253 + name: Junior + friendly_id: dog_age_group__junior +- id: 254 + name: Puppy + friendly_id: dog_age_group__puppy +- id: 255 + name: Senior + friendly_id: dog_age_group__senior +- id: 256 + name: Chewy + friendly_id: pet_treat_texture__chewy +- id: 257 + name: Crunchy + friendly_id: pet_treat_texture__crunchy +- id: 258 + name: Soft + friendly_id: pet_treat_texture__soft +- id: 259 + name: Hard + friendly_id: pet_treat_texture__hard +- id: 260 + name: All aquarium types + friendly_id: compatible_aquarium__all_aquarium_types +- id: 261 + name: Freshwater aquariums + friendly_id: compatible_aquarium__freshwater_aquariums +- id: 262 + name: Saltwater aquariums + friendly_id: compatible_aquarium__saltwater_aquariums +- id: 263 + name: Acrylic + friendly_id: decoration_material__acrylic +- id: 264 + name: Aluminum + friendly_id: decoration_material__aluminum +- id: 265 + name: Bamboo + friendly_id: decoration_material__bamboo +- id: 266 + name: Brass + friendly_id: decoration_material__brass +- id: 267 + name: Bronze + friendly_id: decoration_material__bronze +- id: 268 + name: Capiz + friendly_id: decoration_material__capiz +- id: 269 + name: Cardboard + friendly_id: decoration_material__cardboard +- id: 270 + name: Cast iron + friendly_id: decoration_material__cast_iron +- id: 271 + name: Ceramic + friendly_id: decoration_material__ceramic +- id: 272 + name: Chrome + friendly_id: decoration_material__chrome +- id: 273 + name: Concrete + friendly_id: decoration_material__concrete +- id: 274 + name: Copper + friendly_id: decoration_material__copper +- id: 275 + name: Cotton + friendly_id: decoration_material__cotton +- id: 276 + name: Crystal + friendly_id: decoration_material__crystal +- id: 277 + name: Fabric + friendly_id: decoration_material__fabric +- id: 278 + name: Feathers + friendly_id: decoration_material__feathers +- id: 279 + name: Felt + friendly_id: decoration_material__felt +- id: 280 + name: Glass + friendly_id: decoration_material__glass +- id: 281 + name: Iron + friendly_id: decoration_material__iron +- id: 282 + name: Leather + friendly_id: decoration_material__leather +- id: 283 + name: Marble + friendly_id: decoration_material__marble +- id: 284 + name: Medium density fiberboard (MDF) + friendly_id: decoration_material__medium_density_fiberboard_mdf +- id: 285 + name: Melamine + friendly_id: decoration_material__melamine +- id: 286 + name: Metal + friendly_id: decoration_material__metal +- id: 287 + name: Nylon + friendly_id: decoration_material__nylon +- id: 288 + name: Paper + friendly_id: decoration_material__paper +- id: 289 + name: Papier-mâché + friendly_id: decoration_material__papier_mch +- id: 290 + name: Plastic + friendly_id: decoration_material__plastic +- id: 291 + name: Polyester + friendly_id: decoration_material__polyester +- id: 292 + name: Polypropylene (PP) + friendly_id: decoration_material__polypropylene_pp +- id: 293 + name: Polyvinyl chloride (PVC) + friendly_id: decoration_material__polyvinyl_chloride_pvc +- id: 294 + name: Porcelain + friendly_id: decoration_material__porcelain +- id: 295 + name: Rattan + friendly_id: decoration_material__rattan +- id: 296 + name: Resin + friendly_id: decoration_material__resin +- id: 297 + name: Rubber + friendly_id: decoration_material__rubber +- id: 298 + name: Satin + friendly_id: decoration_material__satin +- id: 299 + name: Sequins + friendly_id: decoration_material__sequins +- id: 300 + name: Silicone + friendly_id: decoration_material__silicone +- id: 301 + name: Silk + friendly_id: decoration_material__silk +- id: 302 + name: Stainless steel + friendly_id: decoration_material__stainless_steel +- id: 303 + name: Steel + friendly_id: decoration_material__steel +- id: 304 + name: Stone + friendly_id: decoration_material__stone +- id: 305 + name: Terracotta + friendly_id: decoration_material__terracotta +- id: 306 + name: Veneer + friendly_id: decoration_material__veneer +- id: 307 + name: Vinyl + friendly_id: decoration_material__vinyl +- id: 308 + name: Wax + friendly_id: decoration_material__wax +- id: 309 + name: Wood + friendly_id: decoration_material__wood +- id: 310 + name: Wool + friendly_id: decoration_material__wool +- id: 311 + name: Zinc + friendly_id: decoration_material__zinc +- id: 312 + name: Other + friendly_id: decoration_material__other +- id: 313 + name: Mechanical + friendly_id: filter_type__mechanical +- id: 314 + name: Biological + friendly_id: filter_type__biological +- id: 315 + name: Chemical + friendly_id: filter_type__chemical +- id: 316 + name: AC-powered + friendly_id: power_source__ac_powered +- id: 317 + name: Batteries + friendly_id: power_source__batteries +- id: 318 + name: Battery-powered + friendly_id: power_source__battery_powered +- id: 319 + name: Both + friendly_id: suitable_for_water_type__both +- id: 320 + name: Freshwater + friendly_id: suitable_for_water_type__freshwater +- id: 321 + name: Saltwater + friendly_id: suitable_for_water_type__saltwater +- id: 322 + name: Clay + friendly_id: gravel_substrate_material__clay +- id: 323 + name: Coral + friendly_id: gravel_substrate_material__coral +- id: 324 + name: Glass + friendly_id: gravel_substrate_material__glass +- id: 325 + name: Quartz + friendly_id: gravel_substrate_material__quartz +- id: 326 + name: Stone + friendly_id: gravel_substrate_material__stone +- id: 327 + name: Blue (actinic) + friendly_id: aquarium_light_spectrum__blue_actinic +- id: 328 + name: Daylight full spectrum + friendly_id: aquarium_light_spectrum__daylight_full_spectrum +- id: 329 + name: Moonlight nocturnal + friendly_id: aquarium_light_spectrum__moonlight_nocturnal +- id: 330 + name: Multi-color RGB + friendly_id: aquarium_light_spectrum__multi_color_rgb +- id: 331 + name: Betta + friendly_id: fish_type__betta +- id: 332 + name: Bottom feeder + friendly_id: fish_type__bottom_feeder +- id: 333 + name: Cichlid + friendly_id: fish_type__cichlid +- id: 334 + name: Cold water + friendly_id: fish_type__cold_water +- id: 335 + name: Discus + friendly_id: fish_type__discus +- id: 336 + name: Goldfish + friendly_id: fish_type__goldfish +- id: 337 + name: Koi + friendly_id: fish_type__koi +- id: 338 + name: Marine + friendly_id: fish_type__marine +- id: 339 + name: Tropical + friendly_id: fish_type__tropical +- id: 340 + name: Other + friendly_id: fish_type__other +- id: 341 + name: Insect + friendly_id: pet_food_flavor__insect +- id: 342 + name: Tropical fish + friendly_id: suitable_for_fish_type__tropical_fish +- id: 343 + name: Pond fish + friendly_id: suitable_for_fish_type__pond_fish +- id: 344 + name: Aquarium fish + friendly_id: suitable_for_fish_type__aquarium_fish +- id: 345 + name: Marine fish + friendly_id: suitable_for_fish_type__marine_fish +- id: 346 + name: Other + friendly_id: suitable_for_fish_type__other +- id: 347 + name: Birds + friendly_id: animal_type__birds +- id: 348 + name: Cats + friendly_id: animal_type__cats +- id: 349 + name: Dogs + friendly_id: animal_type__dogs +- id: 350 + name: Ferrets + friendly_id: animal_type__ferrets +- id: 351 + name: Guinea pigs + friendly_id: animal_type__guinea_pigs +- id: 352 + name: Hamsters + friendly_id: animal_type__hamsters +- id: 353 + name: Rabbits + friendly_id: animal_type__rabbits +- id: 354 + name: Reptiles + friendly_id: animal_type__reptiles +- id: 355 + name: Double extra large (XXL) + friendly_id: accessory_size__double_extra_large_xxl +- id: 356 + name: Acrylic + friendly_id: fabric__acrylic +- id: 357 + name: Angora + friendly_id: fabric__angora +- id: 358 + name: Bamboo + friendly_id: fabric__bamboo +- id: 359 + name: Canvas + friendly_id: fabric__canvas +- id: 360 + name: Cashmere + friendly_id: fabric__cashmere +- id: 361 + name: Corduroy + friendly_id: fabric__corduroy +- id: 362 + name: Cork + friendly_id: fabric__cork +- id: 363 + name: Cotton + friendly_id: fabric__cotton +- id: 364 + name: Denim + friendly_id: fabric__denim +- id: 365 + name: Faux fur + friendly_id: fabric__faux_fur +- id: 366 + name: Faux leather + friendly_id: fabric__faux_leather +- id: 367 + name: Felt + friendly_id: fabric__felt +- id: 368 + name: Flannel + friendly_id: fabric__flannel +- id: 369 + name: Fleece + friendly_id: fabric__fleece +- id: 370 + name: Fur + friendly_id: fabric__fur +- id: 371 + name: Hemp + friendly_id: fabric__hemp +- id: 372 + name: Jute + friendly_id: fabric__jute +- id: 373 + name: Latex + friendly_id: fabric__latex +- id: 374 + name: Leather + friendly_id: fabric__leather +- id: 375 + name: Linen + friendly_id: fabric__linen +- id: 376 + name: Lycra + friendly_id: fabric__lycra +- id: 377 + name: Lyocell + friendly_id: fabric__lyocell +- id: 378 + name: Merino + friendly_id: fabric__merino +- id: 379 + name: Mesh + friendly_id: fabric__mesh +- id: 380 + name: Modal + friendly_id: fabric__modal +- id: 381 + name: Mohair + friendly_id: fabric__mohair +- id: 382 + name: Neoprene + friendly_id: fabric__neoprene +- id: 383 + name: Nylon + friendly_id: fabric__nylon +- id: 384 + name: Plastic + friendly_id: fabric__plastic +- id: 385 + name: Plush + friendly_id: fabric__plush +- id: 386 + name: Polyester + friendly_id: fabric__polyester +- id: 387 + name: Rattan + friendly_id: fabric__rattan +- id: 388 + name: Rubber + friendly_id: fabric__rubber +- id: 389 + name: Satin + friendly_id: fabric__satin +- id: 390 + name: Sherpa + friendly_id: fabric__sherpa +- id: 391 + name: Silk + friendly_id: fabric__silk +- id: 392 + name: Suede + friendly_id: fabric__suede +- id: 393 + name: Synthetic + friendly_id: fabric__synthetic +- id: 394 + name: Terrycloth + friendly_id: fabric__terrycloth +- id: 395 + name: Tweed + friendly_id: fabric__tweed +- id: 396 + name: Twill + friendly_id: fabric__twill +- id: 397 + name: Velour + friendly_id: fabric__velour +- id: 398 + name: Velvet + friendly_id: fabric__velvet +- id: 399 + name: Vinyl + friendly_id: fabric__vinyl +- id: 400 + name: Viscose + friendly_id: fabric__viscose +- id: 401 + name: Wool + friendly_id: fabric__wool +- id: 402 + name: Other + friendly_id: fabric__other +- id: 403 + name: Canvas + friendly_id: footwear_material__canvas +- id: 404 + name: Cotton + friendly_id: footwear_material__cotton +- id: 405 + name: Faux fur + friendly_id: footwear_material__faux_fur +- id: 406 + name: Faux leather + friendly_id: footwear_material__faux_leather +- id: 407 + name: Fleece + friendly_id: footwear_material__fleece +- id: 408 + name: Leather + friendly_id: footwear_material__leather +- id: 409 + name: Linen + friendly_id: footwear_material__linen +- id: 410 + name: Mesh + friendly_id: footwear_material__mesh +- id: 411 + name: Neoprene + friendly_id: footwear_material__neoprene +- id: 412 + name: Nylon + friendly_id: footwear_material__nylon +- id: 413 + name: Plastic + friendly_id: footwear_material__plastic +- id: 414 + name: Polyester + friendly_id: footwear_material__polyester +- id: 415 + name: Polyvinyl chloride (PVC) + friendly_id: footwear_material__polyvinyl_chloride_pvc +- id: 416 + name: Rubber + friendly_id: footwear_material__rubber +- id: 417 + name: Satin + friendly_id: footwear_material__satin +- id: 418 + name: Silk + friendly_id: footwear_material__silk +- id: 419 + name: Spandex + friendly_id: footwear_material__spandex +- id: 420 + name: Suede + friendly_id: footwear_material__suede +- id: 421 + name: Synthetic + friendly_id: footwear_material__synthetic +- id: 422 + name: Thermoplastic polyurethane (TPU) + friendly_id: footwear_material__thermoplastic_polyurethane_tpu +- id: 423 + name: Wool + friendly_id: footwear_material__wool +- id: 424 + name: Other + friendly_id: footwear_material__other +- id: 425 + name: Round + friendly_id: shape__round +- id: 426 + name: Rectangular + friendly_id: shape__rectangular +- id: 427 + name: Oval + friendly_id: shape__oval +- id: 428 + name: Square + friendly_id: shape__square +- id: 429 + name: Triangular + friendly_id: shape__triangular +- id: 430 + name: Indoors + friendly_id: suitable_space__indoors +- id: 431 + name: Outdoors + friendly_id: suitable_space__outdoors +- id: 432 + name: Fabric + friendly_id: basket_material__fabric +- id: 433 + name: Faux leather + friendly_id: basket_material__faux_leather +- id: 434 + name: Leather + friendly_id: basket_material__leather +- id: 435 + name: Metal + friendly_id: basket_material__metal +- id: 436 + name: Plastic + friendly_id: basket_material__plastic +- id: 437 + name: Polyester + friendly_id: basket_material__polyester +- id: 438 + name: Rattan + friendly_id: basket_material__rattan +- id: 439 + name: Wicker + friendly_id: basket_material__wicker +- id: 440 + name: Acrylic + friendly_id: upholstery_material__acrylic +- id: 441 + name: Canvas + friendly_id: upholstery_material__canvas +- id: 442 + name: Cotton + friendly_id: upholstery_material__cotton +- id: 443 + name: Faux leather + friendly_id: upholstery_material__faux_leather +- id: 444 + name: Leather + friendly_id: upholstery_material__leather +- id: 445 + name: Leatherette + friendly_id: upholstery_material__leatherette +- id: 446 + name: Linen + friendly_id: upholstery_material__linen +- id: 447 + name: Microfiber + friendly_id: upholstery_material__microfiber +- id: 448 + name: Nylon + friendly_id: upholstery_material__nylon +- id: 449 + name: Polyester + friendly_id: upholstery_material__polyester +- id: 450 + name: Polyurethane (PU) + friendly_id: upholstery_material__polyurethane_pu +- id: 451 + name: Satin + friendly_id: upholstery_material__satin +- id: 452 + name: Suede + friendly_id: upholstery_material__suede +- id: 453 + name: Velvet + friendly_id: upholstery_material__velvet +- id: 454 + name: Vinyl + friendly_id: upholstery_material__vinyl +- id: 455 + name: Wool + friendly_id: upholstery_material__wool +- id: 456 + name: Bluetooth + friendly_id: connectivity_technology__bluetooth +- id: 457 + name: Cellular + friendly_id: connectivity_technology__cellular +- id: 458 + name: Wired + friendly_id: connectivity_technology__wired +- id: 459 + name: Wireless + friendly_id: connectivity_technology__wireless +- id: 460 + name: Other + friendly_id: connectivity_technology__other +- id: 461 + name: Carrying case + friendly_id: pet_monitor_items_included__carrying_case +- id: 462 + name: Lancets + friendly_id: pet_monitor_items_included__lancets +- id: 463 + name: Lancing device + friendly_id: pet_monitor_items_included__lancing_device +- id: 464 + name: Test strips + friendly_id: pet_monitor_items_included__test_strips +- id: 465 + name: Alder wood + friendly_id: door_material__alder_wood +- id: 466 + name: Aluminum + friendly_id: door_material__aluminum +- id: 467 + name: Beech wood + friendly_id: door_material__beech_wood +- id: 468 + name: Cherry wood + friendly_id: door_material__cherry_wood +- id: 469 + name: Composite + friendly_id: door_material__composite +- id: 470 + name: Fiberglass + friendly_id: door_material__fiberglass +- id: 471 + name: Glass + friendly_id: door_material__glass +- id: 472 + name: High density fiberboard (HDF) + friendly_id: door_material__high_density_fiberboard_hdf +- id: 473 + name: Iron + friendly_id: door_material__iron +- id: 474 + name: Mahogany + friendly_id: door_material__mahogany +- id: 475 + name: Maple wood + friendly_id: door_material__maple_wood +- id: 476 + name: Medium density fiberboard (MDF) + friendly_id: door_material__medium_density_fiberboard_mdf +- id: 477 + name: Metal + friendly_id: door_material__metal +- id: 478 + name: Oak wood + friendly_id: door_material__oak_wood +- id: 479 + name: Particle board + friendly_id: door_material__particle_board +- id: 480 + name: Pine wood + friendly_id: door_material__pine_wood +- id: 481 + name: Plastic + friendly_id: door_material__plastic +- id: 482 + name: Plywood + friendly_id: door_material__plywood +- id: 483 + name: Polyurethane (PU) + friendly_id: door_material__polyurethane_pu +- id: 484 + name: Polyvinyl chloride (PVC) + friendly_id: door_material__polyvinyl_chloride_pvc +- id: 485 + name: Poplar wood + friendly_id: door_material__poplar_wood +- id: 486 + name: Stainless steel + friendly_id: door_material__stainless_steel +- id: 487 + name: Steel + friendly_id: door_material__steel +- id: 488 + name: Vinyl + friendly_id: door_material__vinyl +- id: 489 + name: Walnut wood + friendly_id: door_material__walnut_wood +- id: 490 + name: Wood + friendly_id: door_material__wood +- id: 491 + name: Other + friendly_id: door_material__other +- id: 492 + name: Drops + friendly_id: pet_supply_product_form__drops +- id: 493 + name: Cream + friendly_id: pet_supply_product_form__cream +- id: 494 + name: Spray + friendly_id: pet_supply_product_form__spray +- id: 495 + name: Compact + friendly_id: accessory_size__compact +- id: 496 + name: Antiseptic wipes + friendly_id: first_aid_kit_components__antiseptic_wipes +- id: 497 + name: Bandages + friendly_id: first_aid_kit_components__bandages +- id: 498 + name: Cold compress + friendly_id: first_aid_kit_components__cold_compress +- id: 499 + name: Disposable gloves + friendly_id: first_aid_kit_components__disposable_gloves +- id: 500 + name: Emergency blanket + friendly_id: first_aid_kit_components__emergency_blanket +- id: 501 + name: Gauze pads + friendly_id: first_aid_kit_components__gauze_pads +- id: 502 + name: Hydrogen peroxide + friendly_id: first_aid_kit_components__hydrogen_peroxide +- id: 503 + name: Medical tape + friendly_id: first_aid_kit_components__medical_tape +- id: 504 + name: Scissors + friendly_id: first_aid_kit_components__scissors +- id: 505 + name: Styptic powder + friendly_id: first_aid_kit_components__styptic_powder +- id: 506 + name: Thermometer + friendly_id: first_aid_kit_components__thermometer +- id: 507 + name: Tweezers + friendly_id: first_aid_kit_components__tweezers +- id: 508 + name: Tablets + friendly_id: pet_supply_product_form__tablets +- id: 509 + name: Pills + friendly_id: pet_supply_product_form__pills +- id: 510 + name: Acrylic + friendly_id: food_storage_material__acrylic +- id: 511 + name: Aluminum + friendly_id: food_storage_material__aluminum +- id: 512 + name: Bamboo + friendly_id: food_storage_material__bamboo +- id: 513 + name: Beech wood + friendly_id: food_storage_material__beech_wood +- id: 514 + name: Ceramic + friendly_id: food_storage_material__ceramic +- id: 515 + name: Clay + friendly_id: food_storage_material__clay +- id: 516 + name: Glass + friendly_id: food_storage_material__glass +- id: 517 + name: Metal + friendly_id: food_storage_material__metal +- id: 518 + name: Plastic + friendly_id: food_storage_material__plastic +- id: 519 + name: Rattan + friendly_id: food_storage_material__rattan +- id: 520 + name: Stainless steel + friendly_id: food_storage_material__stainless_steel +- id: 521 + name: Wood + friendly_id: food_storage_material__wood +- id: 522 + name: Cotton + friendly_id: medical_tape_material__cotton +- id: 523 + name: Hydrogel + friendly_id: medical_tape_material__hydrogel +- id: 524 + name: Latex + friendly_id: medical_tape_material__latex +- id: 525 + name: Plastic + friendly_id: medical_tape_material__plastic +- id: 526 + name: Polyamide (PA) + friendly_id: medical_tape_material__polyamide_pa +- id: 527 + name: Polyester + friendly_id: medical_tape_material__polyester +- id: 528 + name: Polyurethane (PU) + friendly_id: medical_tape_material__polyurethane_pu +- id: 529 + name: Silicone + friendly_id: medical_tape_material__silicone +- id: 530 + name: Synthetic + friendly_id: medical_tape_material__synthetic +- id: 531 + name: Viscose + friendly_id: medical_tape_material__viscose +- id: 532 + name: Soft chews + friendly_id: pet_supply_product_form__soft_chews +- id: 533 + name: Balm + friendly_id: pet_supply_product_form__balm +- id: 534 + name: Lotion + friendly_id: pet_supply_product_form__lotion +- id: 535 + name: Wipes + friendly_id: pet_supply_product_form__wipes +- id: 536 + name: SPF 4 + friendly_id: spf_level__spf_4 +- id: 537 + name: SPF 8 + friendly_id: spf_level__spf_8 +- id: 538 + name: SPF 15 + friendly_id: spf_level__spf_15 +- id: 539 + name: SPF 20 + friendly_id: spf_level__spf_20 +- id: 540 + name: SPF 25 + friendly_id: spf_level__spf_25 +- id: 541 + name: SPF 30 + friendly_id: spf_level__spf_30 +- id: 542 + name: SPF 35 + friendly_id: spf_level__spf_35 +- id: 543 + name: SPF 40 + friendly_id: spf_level__spf_40 +- id: 544 + name: SPF 45 + friendly_id: spf_level__spf_45 +- id: 545 + name: SPF 50 + friendly_id: spf_level__spf_50 +- id: 546 + name: SPF 50+ + friendly_id: spf_level__spf_50+ +- id: 547 + name: SPF 60 + friendly_id: spf_level__spf_60 +- id: 548 + name: SPF 70 + friendly_id: spf_level__spf_70 +- id: 549 + name: SPF 85 + friendly_id: spf_level__spf_85 +- id: 550 + name: SPF 100 + friendly_id: spf_level__spf_100 +- id: 551 + name: Other + friendly_id: spf_level__other +- id: 552 + name: Capsules + friendly_id: pet_supply_product_form__capsules +- id: 553 + name: Powder + friendly_id: pet_supply_product_form__powder +- id: 554 + name: Biodegradable materials + friendly_id: disposable_reusable_item_material__biodegradable_materials +- id: 555 + name: Paper + friendly_id: disposable_reusable_item_material__paper +- id: 556 + name: Plastic + friendly_id: disposable_reusable_item_material__plastic +- id: 557 + name: Wood + friendly_id: disposable_reusable_item_material__wood +- id: 558 + name: Chameleons + friendly_id: animal_type__chameleons +- id: 559 + name: Frogs + friendly_id: animal_type__frogs +- id: 560 + name: Geckos + friendly_id: animal_type__geckos +- id: 561 + name: Hermit crabs + friendly_id: animal_type__hermit_crabs +- id: 562 + name: Lizards + friendly_id: animal_type__lizards +- id: 563 + name: Snakes + friendly_id: animal_type__snakes +- id: 564 + name: Turtles + friendly_id: animal_type__turtles +- id: 565 + name: Acrylic + friendly_id: habitat_material__acrylic +- id: 566 + name: Glass + friendly_id: habitat_material__glass +- id: 567 + name: Mesh + friendly_id: habitat_material__mesh +- id: 568 + name: Plastic + friendly_id: habitat_material__plastic +- id: 569 + name: Wood + friendly_id: habitat_material__wood +- id: 570 + name: Rodents + friendly_id: animal_type__rodents +- id: 571 + name: Berry + friendly_id: pet_food_flavor__berry +- id: 572 + name: Hay + friendly_id: pet_food_flavor__hay +- id: 573 + name: Chinchillas + friendly_id: animal_type__chinchillas +- id: 574 + name: Gerbils + friendly_id: animal_type__gerbils +- id: 575 + name: Rats + friendly_id: animal_type__rats +- id: 576 + name: Car + friendly_id: compatible_vehicle__car +- id: 577 + name: SUV + friendly_id: compatible_vehicle__suv +- id: 578 + name: Van + friendly_id: compatible_vehicle__van +- id: 579 + name: Truck + friendly_id: compatible_vehicle__truck +- id: 580 + name: Aerobics + friendly_id: activity__aerobics +- id: 581 + name: Aikido + friendly_id: activity__aikido +- id: 582 + name: Air hockey + friendly_id: activity__air_hockey +- id: 583 + name: Ballet + friendly_id: activity__ballet +- id: 584 + name: Baseball + friendly_id: activity__baseball +- id: 585 + name: Basketball + friendly_id: activity__basketball +- id: 586 + name: Boxing + friendly_id: activity__boxing +- id: 587 + name: Brazilian jiu-jitsu + friendly_id: activity__brazilian_jiu_jitsu +- id: 588 + name: Cheerleading + friendly_id: activity__cheerleading +- id: 589 + name: Climbing + friendly_id: activity__climbing +- id: 590 + name: Cricket + friendly_id: activity__cricket +- id: 591 + name: Cycling + friendly_id: activity__cycling +- id: 592 + name: Dancing + friendly_id: activity__dancing +- id: 593 + name: Darts + friendly_id: activity__darts +- id: 594 + name: Field hockey + friendly_id: activity__field_hockey +- id: 595 + name: Fishing + friendly_id: activity__fishing +- id: 596 + name: Football + friendly_id: activity__football +- id: 597 + name: Golf + friendly_id: activity__golf +- id: 598 + name: Gymnastics + friendly_id: activity__gymnastics +- id: 599 + name: Handball + friendly_id: activity__handball +- id: 600 + name: Hockey + friendly_id: activity__hockey +- id: 601 + name: Horse riding + friendly_id: activity__horse_riding +- id: 602 + name: Hunting + friendly_id: activity__hunting +- id: 603 + name: Judo + friendly_id: activity__judo +- id: 604 + name: Karate + friendly_id: activity__karate +- id: 605 + name: Krav maga + friendly_id: activity__krav_maga +- id: 606 + name: Lacrosse + friendly_id: activity__lacrosse +- id: 607 + name: Motorcycling + friendly_id: activity__motorcycling +- id: 608 + name: Muay thai + friendly_id: activity__muay_thai +- id: 609 + name: Netball + friendly_id: activity__netball +- id: 610 + name: Padel + friendly_id: activity__padel +- id: 611 + name: Pilates + friendly_id: activity__pilates +- id: 612 + name: Racquetball + friendly_id: activity__racquetball +- id: 613 + name: Rugby + friendly_id: activity__rugby +- id: 614 + name: Soccer + friendly_id: activity__soccer +- id: 615 + name: Softball + friendly_id: activity__softball +- id: 616 + name: Squash + friendly_id: activity__squash +- id: 617 + name: Taekwondo + friendly_id: activity__taekwondo +- id: 618 + name: Tennis + friendly_id: activity__tennis +- id: 619 + name: Volleyball + friendly_id: activity__volleyball +- id: 620 + name: Wrestling + friendly_id: activity__wrestling +- id: 621 + name: Yoga + friendly_id: activity__yoga +- id: 622 + name: Other + friendly_id: activity__other +- id: 623 + name: '000' + friendly_id: size__000 +- id: 624 + name: '00' + friendly_id: size__00 +- id: 625 + name: '0' + friendly_id: size__0 +- id: 626 + name: '1' + friendly_id: size__1 +- id: 627 + name: '10' + friendly_id: size__10 +- id: 628 + name: '12' + friendly_id: size__12 +- id: 629 + name: '14' + friendly_id: size__14 +- id: 630 + name: '16' + friendly_id: size__16 +- id: 631 + name: '18' + friendly_id: size__18 +- id: 632 + name: '2' + friendly_id: size__2 +- id: 633 + name: '20' + friendly_id: size__20 +- id: 634 + name: '22' + friendly_id: size__22 +- id: 635 + name: '24' + friendly_id: size__24 +- id: 636 + name: '26' + friendly_id: size__26 +- id: 637 + name: '28' + friendly_id: size__28 +- id: 638 + name: '30' + friendly_id: size__30 +- id: 639 + name: '32' + friendly_id: size__32 +- id: 640 + name: '34' + friendly_id: size__34 +- id: 641 + name: '36' + friendly_id: size__36 +- id: 642 + name: '38' + friendly_id: size__38 +- id: 643 + name: '4' + friendly_id: size__4 +- id: 644 + name: '40' + friendly_id: size__40 +- id: 645 + name: '42' + friendly_id: size__42 +- id: 646 + name: '44' + friendly_id: size__44 +- id: 647 + name: '46' + friendly_id: size__46 +- id: 648 + name: '48' + friendly_id: size__48 +- id: 649 + name: '50' + friendly_id: size__50 +- id: 650 + name: '52' + friendly_id: size__52 +- id: 651 + name: '54' + friendly_id: size__54 +- id: 652 + name: '56' + friendly_id: size__56 +- id: 653 + name: '58' + friendly_id: size__58 +- id: 654 + name: '6' + friendly_id: size__6 +- id: 655 + name: '60' + friendly_id: size__60 +- id: 656 + name: '8' + friendly_id: size__8 +- id: 657 + name: Triple extra small (XXXS) + friendly_id: size__triple_extra_small_xxxs +- id: 658 + name: Double extra small (XXS) + friendly_id: size__double_extra_small_xxs +- id: 659 + name: Extra small (XS) + friendly_id: size__extra_small_xs +- id: 660 + name: Small (S) + friendly_id: size__small_s +- id: 661 + name: Medium (M) + friendly_id: size__medium_m +- id: 662 + name: Large (L) + friendly_id: size__large_l +- id: 663 + name: Extra large (XL) + friendly_id: size__extra_large_xl +- id: 664 + name: Double extra large (XXL) + friendly_id: size__double_extra_large_xxl +- id: 665 + name: Triple extra large (XXXL) + friendly_id: size__triple_extra_large_xxxl +- id: 666 + name: Four extra large (4XL) + friendly_id: size__four_extra_large_4xl +- id: 667 + name: Five extra large (5XL) + friendly_id: size__five_extra_large_5xl +- id: 668 + name: Six extra large (6XL) + friendly_id: size__six_extra_large_6xl +- id: 669 + name: Female + friendly_id: target_gender__female +- id: 670 + name: Male + friendly_id: target_gender__male +- id: 671 + name: Unisex + friendly_id: target_gender__unisex +- id: 672 + name: Above the knee + friendly_id: pants_length_type__above_the_knee +- id: 673 + name: Capri + friendly_id: pants_length_type__capri +- id: 674 + name: Cropped + friendly_id: pants_length_type__cropped +- id: 675 + name: Footed + friendly_id: pants_length_type__footed +- id: 676 + name: Knee + friendly_id: pants_length_type__knee +- id: 677 + name: Long + friendly_id: pants_length_type__long +- id: 678 + name: High + friendly_id: waist_rise__high +- id: 679 + name: Low + friendly_id: waist_rise__low +- id: 680 + name: Mid + friendly_id: waist_rise__mid +- id: 681 + name: Asymmetric + friendly_id: neckline__asymmetric +- id: 682 + name: Bardot + friendly_id: neckline__bardot +- id: 683 + name: Boat + friendly_id: neckline__boat +- id: 684 + name: Cowl + friendly_id: neckline__cowl +- id: 685 + name: Halter + friendly_id: neckline__halter +- id: 686 + name: Hooded + friendly_id: neckline__hooded +- id: 687 + name: Mandarin + friendly_id: neckline__mandarin +- id: 688 + name: Crew + friendly_id: neckline__crew +- id: 689 + name: Mock + friendly_id: neckline__mock +- id: 690 + name: Plunging + friendly_id: neckline__plunging +- id: 691 + name: Round + friendly_id: neckline__round +- id: 692 + name: Split + friendly_id: neckline__split +- id: 693 + name: Square + friendly_id: neckline__square +- id: 694 + name: Sweetheart + friendly_id: neckline__sweetheart +- id: 695 + name: Turtle + friendly_id: neckline__turtle +- id: 696 + name: V-neck + friendly_id: neckline__v_neck +- id: 697 + name: Wrap + friendly_id: neckline__wrap +- id: 698 + name: Running + friendly_id: activity__running +- id: 699 + name: 3/4 + friendly_id: sleeve_length_type__3_4 +- id: 700 + name: Short + friendly_id: sleeve_length_type__short +- id: 701 + name: Long + friendly_id: sleeve_length_type__long +- id: 702 + name: Cap + friendly_id: sleeve_length_type__cap +- id: 703 + name: Sleeveless + friendly_id: sleeve_length_type__sleeveless +- id: 704 + name: Spaghetti strap + friendly_id: sleeve_length_type__spaghetti_strap +- id: 705 + name: Strapless + friendly_id: sleeve_length_type__strapless +- id: 706 + name: Knee + friendly_id: skirt_dress_length_type__knee +- id: 707 + name: Maxi + friendly_id: skirt_dress_length_type__maxi +- id: 708 + name: Midi + friendly_id: skirt_dress_length_type__midi +- id: 709 + name: Short + friendly_id: skirt_dress_length_type__short +- id: 710 + name: Standard + friendly_id: bra_strap_type__standard +- id: 711 + name: Racerback + friendly_id: bra_strap_type__racerback +- id: 712 + name: Cross-back + friendly_id: bra_strap_type__cross_back +- id: 713 + name: Adjustable + friendly_id: bra_strap_type__adjustable +- id: 714 + name: Convertible + friendly_id: bra_strap_type__convertible +- id: 715 + name: High + friendly_id: bra_support_level__high +- id: 716 + name: Medium + friendly_id: bra_support_level__medium +- id: 717 + name: Low + friendly_id: bra_support_level__low +- id: 718 + name: A + friendly_id: cup_size__a +- id: 719 + name: AA + friendly_id: cup_size__aa +- id: 720 + name: B + friendly_id: cup_size__b +- id: 721 + name: C + friendly_id: cup_size__c +- id: 722 + name: D + friendly_id: cup_size__d +- id: 723 + name: DD + friendly_id: cup_size__dd +- id: 724 + name: DDD + friendly_id: cup_size__ddd +- id: 725 + name: E + friendly_id: cup_size__e +- id: 726 + name: F + friendly_id: cup_size__f +- id: 727 + name: FF + friendly_id: cup_size__ff +- id: 728 + name: G + friendly_id: cup_size__g +- id: 729 + name: GG + friendly_id: cup_size__gg +- id: 730 + name: H + friendly_id: cup_size__h +- id: 731 + name: HH + friendly_id: cup_size__hh +- id: 732 + name: I + friendly_id: cup_size__i +- id: 733 + name: J + friendly_id: cup_size__j +- id: 734 + name: JJ + friendly_id: cup_size__jj +- id: 735 + name: K + friendly_id: cup_size__k +- id: 736 + name: L + friendly_id: cup_size__l +- id: 737 + name: M + friendly_id: cup_size__m +- id: 738 + name: N + friendly_id: cup_size__n +- id: 739 + name: Preemie + friendly_id: size__preemie +- id: 740 + name: Newborn + friendly_id: size__newborn +- id: 741 + name: 0-3 months + friendly_id: size__0_3_months +- id: 742 + name: 3-6 months + friendly_id: size__3_6_months +- id: 743 + name: 6-9 months + friendly_id: size__6_9_months +- id: 744 + name: 9-12 months + friendly_id: size__9_12_months +- id: 745 + name: 12-18 months + friendly_id: size__12_18_months +- id: 746 + name: 18-24 months + friendly_id: size__18_24_months +- id: 747 + name: 2-3 years + friendly_id: size__2_3_years +- id: 748 + name: 3-4 years + friendly_id: size__3_4_years +- id: 749 + name: 4-5 years + friendly_id: size__4_5_years +- id: 750 + name: 5-6 years + friendly_id: size__5_6_years +- id: 751 + name: 6-7 years + friendly_id: size__6_7_years +- id: 752 + name: 7-8 years + friendly_id: size__7_8_years +- id: 753 + name: 8-9 years + friendly_id: size__8_9_years +- id: 754 + name: '0' + friendly_id: shoe_size__0 +- id: 755 + name: '0.5' + friendly_id: shoe_size__0_5 +- id: 756 + name: '1' + friendly_id: shoe_size__1 +- id: 757 + name: '1.5' + friendly_id: shoe_size__1_5 +- id: 758 + name: '2' + friendly_id: shoe_size__2 +- id: 759 + name: '2.5' + friendly_id: shoe_size__2_5 +- id: 760 + name: '3' + friendly_id: shoe_size__3 +- id: 761 + name: '3.5' + friendly_id: shoe_size__3_5 +- id: 762 + name: '4' + friendly_id: shoe_size__4 +- id: 763 + name: '4.5' + friendly_id: shoe_size__4_5 +- id: 764 + name: '5' + friendly_id: shoe_size__5 +- id: 765 + name: '5.5' + friendly_id: shoe_size__5_5 +- id: 766 + name: '6' + friendly_id: shoe_size__6 +- id: 767 + name: '6.5' + friendly_id: shoe_size__6_5 +- id: 768 + name: '7' + friendly_id: shoe_size__7 +- id: 769 + name: '7.5' + friendly_id: shoe_size__7_5 +- id: 770 + name: '8' + friendly_id: shoe_size__8 +- id: 771 + name: '8.5' + friendly_id: shoe_size__8_5 +- id: 772 + name: '9' + friendly_id: shoe_size__9 +- id: 773 + name: '9.5' + friendly_id: shoe_size__9_5 +- id: 774 + name: '10' + friendly_id: shoe_size__10 +- id: 775 + name: '15' + friendly_id: shoe_size__15 +- id: 776 + name: '15.5' + friendly_id: shoe_size__15_5 +- id: 777 + name: '16' + friendly_id: shoe_size__16 +- id: 778 + name: '16.5' + friendly_id: shoe_size__16_5 +- id: 779 + name: '17' + friendly_id: shoe_size__17 +- id: 780 + name: '17.5' + friendly_id: shoe_size__17_5 +- id: 781 + name: '18' + friendly_id: shoe_size__18 +- id: 782 + name: '18.5' + friendly_id: shoe_size__18_5 +- id: 783 + name: '19' + friendly_id: shoe_size__19 +- id: 784 + name: '19.5' + friendly_id: shoe_size__19_5 +- id: 785 + name: '20' + friendly_id: shoe_size__20 +- id: 786 + name: '20.5' + friendly_id: shoe_size__20_5 +- id: 787 + name: '21' + friendly_id: shoe_size__21 +- id: 788 + name: '21.5' + friendly_id: shoe_size__21_5 +- id: 789 + name: '22' + friendly_id: shoe_size__22 +- id: 790 + name: '22.5' + friendly_id: shoe_size__22_5 +- id: 791 + name: '23' + friendly_id: shoe_size__23 +- id: 792 + name: '23.5' + friendly_id: shoe_size__23_5 +- id: 793 + name: '24' + friendly_id: shoe_size__24 +- id: 794 + name: '24.5' + friendly_id: shoe_size__24_5 +- id: 795 + name: '25' + friendly_id: shoe_size__25 +- id: 796 + name: '25.5' + friendly_id: shoe_size__25_5 +- id: 797 + name: '26' + friendly_id: shoe_size__26 +- id: 798 + name: '26.5' + friendly_id: shoe_size__26_5 +- id: 799 + name: '27' + friendly_id: shoe_size__27 +- id: 800 + name: Bodysuit + friendly_id: top_length_type__bodysuit +- id: 801 + name: Crop top + friendly_id: top_length_type__crop_top +- id: 802 + name: Long + friendly_id: top_length_type__long +- id: 803 + name: Medium + friendly_id: top_length_type__medium +- id: 804 + name: Kids + friendly_id: age_group__kids +- id: 805 + name: Teens + friendly_id: age_group__teens +- id: 806 + name: Boxer + friendly_id: underwear_style__boxer +- id: 807 + name: Boxer briefs + friendly_id: underwear_style__boxer_briefs +- id: 808 + name: Boyshorts + friendly_id: underwear_style__boyshorts +- id: 809 + name: Briefs + friendly_id: underwear_style__briefs +- id: 810 + name: Classic briefs + friendly_id: underwear_style__classic_briefs +- id: 811 + name: Control briefs + friendly_id: underwear_style__control_briefs +- id: 812 + name: Raw-cut briefs + friendly_id: underwear_style__raw_cut_briefs +- id: 813 + name: Trunk + friendly_id: underwear_style__trunk +- id: 814 + name: Adults + friendly_id: age_group__adults +- id: 815 + name: Mini + friendly_id: skirt_dress_length_type__mini +- id: 816 + name: All ages + friendly_id: age_group__all_ages +- id: 817 + name: Light + friendly_id: absorbency_level__light +- id: 818 + name: Moderate + friendly_id: absorbency_level__moderate +- id: 819 + name: Heavy + friendly_id: absorbency_level__heavy +- id: 820 + name: Super + friendly_id: absorbency_level__super +- id: 821 + name: Overnight + friendly_id: absorbency_level__overnight +- id: 822 + name: High-cut briefs + friendly_id: underwear_style__high_cut_briefs +- id: 823 + name: Hipster panties + friendly_id: underwear_style__hipster_panties +- id: 824 + name: Bikini panties + friendly_id: underwear_style__bikini_panties +- id: 825 + name: Tanga panties + friendly_id: underwear_style__tanga_panties +- id: 826 + name: Thong panties + friendly_id: underwear_style__thong_panties +- id: 827 + name: G-string panties + friendly_id: underwear_style__g_string_panties +- id: 828 + name: Front + friendly_id: bra_closure_type__front +- id: 829 + name: Back + friendly_id: bra_closure_type__back +- id: 830 + name: Pull-on (no closure) + friendly_id: bra_closure_type__pull_on_no_closure +- id: 831 + name: Full + friendly_id: bra_coverage__full +- id: 832 + name: Demi + friendly_id: bra_coverage__demi +- id: 833 + name: Plunge + friendly_id: bra_coverage__plunge +- id: 834 + name: Quarter + friendly_id: bra_coverage__quarter +- id: 835 + name: Minimal + friendly_id: bra_coverage__minimal +- id: 836 + name: Other + friendly_id: bra_coverage__other +- id: 837 + name: Level 1 + friendly_id: shapewear_support_level__level_1 +- id: 838 + name: Level 2 + friendly_id: shapewear_support_level__level_2 +- id: 839 + name: Level 3 + friendly_id: shapewear_support_level__level_3 +- id: 840 + name: Level 4 + friendly_id: shapewear_support_level__level_4 +- id: 841 + name: Level 5 + friendly_id: shapewear_support_level__level_5 +- id: 842 + name: Slim + friendly_id: fit__slim +- id: 843 + name: Wide + friendly_id: fit__wide +- id: 844 + name: Boyfriend + friendly_id: fit__boyfriend +- id: 845 + name: Mom + friendly_id: fit__mom +- id: 846 + name: Tapered leg + friendly_id: fit__tapered_leg +- id: 847 + name: Skinny leg + friendly_id: fit__skinny_leg +- id: 848 + name: Straight leg + friendly_id: fit__straight_leg +- id: 849 + name: Lifestyle + friendly_id: best_uses__lifestyle +- id: 850 + name: Traveling + friendly_id: best_uses__traveling +- id: 851 + name: Running + friendly_id: best_uses__running +- id: 852 + name: Sport + friendly_id: best_uses__sport +- id: 853 + name: Babies + friendly_id: age_group__babies +- id: 854 + name: Chemise + friendly_id: nightgown_style__chemise +- id: 855 + name: Babydoll + friendly_id: nightgown_style__babydoll +- id: 856 + name: Triple extra small (XXXS) + friendly_id: accessory_size__triple_extra_small_xxxs +- id: 857 + name: Double extra small (XXS) + friendly_id: accessory_size__double_extra_small_xxs +- id: 858 + name: Triple extra large (XXXL) + friendly_id: accessory_size__triple_extra_large_xxxl +- id: 859 + name: Four extra large (4XL) + friendly_id: accessory_size__four_extra_large_4xl +- id: 860 + name: Five extra large (5XL) + friendly_id: accessory_size__five_extra_large_5xl +- id: 861 + name: Six extra large (6XL) + friendly_id: accessory_size__six_extra_large_6xl +- id: 862 + name: Burlap + friendly_id: clothing_accessory_material__burlap +- id: 863 + name: Canvas + friendly_id: clothing_accessory_material__canvas +- id: 864 + name: Cotton + friendly_id: clothing_accessory_material__cotton +- id: 865 + name: Denim + friendly_id: clothing_accessory_material__denim +- id: 866 + name: Faux fur + friendly_id: clothing_accessory_material__faux_fur +- id: 867 + name: Faux leather + friendly_id: clothing_accessory_material__faux_leather +- id: 868 + name: Felt + friendly_id: clothing_accessory_material__felt +- id: 869 + name: Fleece + friendly_id: clothing_accessory_material__fleece +- id: 870 + name: Foam + friendly_id: clothing_accessory_material__foam +- id: 871 + name: Leather + friendly_id: clothing_accessory_material__leather +- id: 872 + name: Linen + friendly_id: clothing_accessory_material__linen +- id: 873 + name: Mesh + friendly_id: clothing_accessory_material__mesh +- id: 874 + name: Metal + friendly_id: clothing_accessory_material__metal +- id: 875 + name: Microfiber + friendly_id: clothing_accessory_material__microfiber +- id: 876 + name: Nylon + friendly_id: clothing_accessory_material__nylon +- id: 877 + name: Plastic + friendly_id: clothing_accessory_material__plastic +- id: 878 + name: Polyester + friendly_id: clothing_accessory_material__polyester +- id: 879 + name: Polyurethane (PU) + friendly_id: clothing_accessory_material__polyurethane_pu +- id: 880 + name: Polyvinyl chloride (PVC) + friendly_id: clothing_accessory_material__polyvinyl_chloride_pvc +- id: 881 + name: Rubber + friendly_id: clothing_accessory_material__rubber +- id: 882 + name: Satin + friendly_id: clothing_accessory_material__satin +- id: 883 + name: Silicone + friendly_id: clothing_accessory_material__silicone +- id: 884 + name: Silk + friendly_id: clothing_accessory_material__silk +- id: 885 + name: Synthetic + friendly_id: clothing_accessory_material__synthetic +- id: 886 + name: Tweed + friendly_id: clothing_accessory_material__tweed +- id: 887 + name: Velvet + friendly_id: clothing_accessory_material__velvet +- id: 888 + name: Vinyl + friendly_id: clothing_accessory_material__vinyl +- id: 889 + name: Wood + friendly_id: clothing_accessory_material__wood +- id: 890 + name: Wool + friendly_id: clothing_accessory_material__wool +- id: 891 + name: Acrylic + friendly_id: handwear_material__acrylic +- id: 892 + name: Bamboo + friendly_id: handwear_material__bamboo +- id: 893 + name: Cotton + friendly_id: handwear_material__cotton +- id: 894 + name: Elastomer + friendly_id: handwear_material__elastomer +- id: 895 + name: Ethylene vinyl acetate (EVA) + friendly_id: handwear_material__ethylene_vinyl_acetate_eva +- id: 896 + name: Faux fur + friendly_id: handwear_material__faux_fur +- id: 897 + name: Faux leather + friendly_id: handwear_material__faux_leather +- id: 898 + name: Fleece + friendly_id: handwear_material__fleece +- id: 899 + name: Kevlar + friendly_id: handwear_material__kevlar +- id: 900 + name: Latex + friendly_id: handwear_material__latex +- id: 901 + name: Leather + friendly_id: handwear_material__leather +- id: 902 + name: Mesh + friendly_id: handwear_material__mesh +- id: 903 + name: Microfiber + friendly_id: handwear_material__microfiber +- id: 904 + name: Neoprene + friendly_id: handwear_material__neoprene +- id: 905 + name: Nitrile + friendly_id: handwear_material__nitrile +- id: 906 + name: Nylon + friendly_id: handwear_material__nylon +- id: 907 + name: Polyester + friendly_id: handwear_material__polyester +- id: 908 + name: Polyethylene (PE) + friendly_id: handwear_material__polyethylene_pe +- id: 909 + name: Polyurethane (PU) + friendly_id: handwear_material__polyurethane_pu +- id: 910 + name: Polyvinyl chloride (PVC) + friendly_id: handwear_material__polyvinyl_chloride_pvc +- id: 911 + name: Satin + friendly_id: handwear_material__satin +- id: 912 + name: Silk + friendly_id: handwear_material__silk +- id: 913 + name: Spandex + friendly_id: handwear_material__spandex +- id: 914 + name: Synthetic + friendly_id: handwear_material__synthetic +- id: 915 + name: Wool + friendly_id: handwear_material__wool +- id: 916 + name: Other + friendly_id: handwear_material__other +- id: 917 + name: Fine jewelry + friendly_id: jewelry_type__fine_jewelry +- id: 918 + name: Imitation jewelry + friendly_id: jewelry_type__imitation_jewelry +- id: 919 + name: Acrylic + friendly_id: jewelry_material__acrylic +- id: 920 + name: Alcantara + friendly_id: jewelry_material__alcantara +- id: 921 + name: Aluminum + friendly_id: jewelry_material__aluminum +- id: 922 + name: Bakelite + friendly_id: jewelry_material__bakelite +- id: 923 + name: Brass + friendly_id: jewelry_material__brass +- id: 924 + name: Bronze + friendly_id: jewelry_material__bronze +- id: 925 + name: Carbon fiber + friendly_id: jewelry_material__carbon_fiber +- id: 926 + name: Ceramic + friendly_id: jewelry_material__ceramic +- id: 927 + name: Chrome + friendly_id: jewelry_material__chrome +- id: 928 + name: Copper + friendly_id: jewelry_material__copper +- id: 929 + name: Cordura + friendly_id: jewelry_material__cordura +- id: 930 + name: Cork + friendly_id: jewelry_material__cork +- id: 931 + name: Diamond + friendly_id: jewelry_material__diamond +- id: 932 + name: Duralumin + friendly_id: jewelry_material__duralumin +- id: 933 + name: Enamel + friendly_id: jewelry_material__enamel +- id: 934 + name: Fabric + friendly_id: jewelry_material__fabric +- id: 935 + name: Faux leather + friendly_id: jewelry_material__faux_leather +- id: 936 + name: Fiberglass + friendly_id: jewelry_material__fiberglass +- id: 937 + name: Glass + friendly_id: jewelry_material__glass +- id: 938 + name: Gold + friendly_id: jewelry_material__gold +- id: 939 + name: Iron + friendly_id: jewelry_material__iron +- id: 940 + name: Leather + friendly_id: jewelry_material__leather +- id: 941 + name: Marble + friendly_id: jewelry_material__marble +- id: 942 + name: Metal + friendly_id: jewelry_material__metal +- id: 943 + name: Microfiber + friendly_id: jewelry_material__microfiber +- id: 944 + name: Nickel + friendly_id: jewelry_material__nickel +- id: 945 + name: Nylon + friendly_id: jewelry_material__nylon +- id: 946 + name: Palladium + friendly_id: jewelry_material__palladium +- id: 947 + name: Plastic + friendly_id: jewelry_material__plastic +- id: 948 + name: Platinum + friendly_id: jewelry_material__platinum +- id: 949 + name: Porcelain + friendly_id: jewelry_material__porcelain +- id: 950 + name: Precious resin + friendly_id: jewelry_material__precious_resin +- id: 951 + name: Red gold + friendly_id: jewelry_material__red_gold +- id: 952 + name: Resin + friendly_id: jewelry_material__resin +- id: 953 + name: Rose gold + friendly_id: jewelry_material__rose_gold +- id: 954 + name: Silver + friendly_id: jewelry_material__silver +- id: 955 + name: Sterling silver + friendly_id: jewelry_material__sterling_silver +- id: 956 + name: Titanium + friendly_id: jewelry_material__titanium +- id: 957 + name: White gold + friendly_id: jewelry_material__white_gold +- id: 958 + name: Wood + friendly_id: jewelry_material__wood +- id: 959 + name: Other + friendly_id: jewelry_material__other +- id: 960 + name: Boar bristle + friendly_id: bristle_material__boar_bristle +- id: 961 + name: Cotton + friendly_id: bristle_material__cotton +- id: 962 + name: Faux leather + friendly_id: bristle_material__faux_leather +- id: 963 + name: Horsehair + friendly_id: bristle_material__horsehair +- id: 964 + name: Leather + friendly_id: bristle_material__leather +- id: 965 + name: Linen + friendly_id: bristle_material__linen +- id: 966 + name: Metal + friendly_id: bristle_material__metal +- id: 967 + name: Microfiber + friendly_id: bristle_material__microfiber +- id: 968 + name: Natural bristle + friendly_id: bristle_material__natural_bristle +- id: 969 + name: Nylon + friendly_id: bristle_material__nylon +- id: 970 + name: Plastic + friendly_id: bristle_material__plastic +- id: 971 + name: Polypropylene (PP) + friendly_id: bristle_material__polypropylene_pp +- id: 972 + name: Polyvinyl chloride (PVC) + friendly_id: bristle_material__polyvinyl_chloride_pvc +- id: 973 + name: Rubber + friendly_id: bristle_material__rubber +- id: 974 + name: Silicone + friendly_id: bristle_material__silicone +- id: 975 + name: Stainless steel + friendly_id: bristle_material__stainless_steel +- id: 976 + name: Synthetic bristle + friendly_id: bristle_material__synthetic_bristle +- id: 977 + name: Teflon + friendly_id: bristle_material__teflon +- id: 978 + name: Wood + friendly_id: bristle_material__wood +- id: 979 + name: Curly + friendly_id: hair_type__curly +- id: 980 + name: Dry + friendly_id: hair_type__dry +- id: 981 + name: Normal + friendly_id: hair_type__normal +- id: 982 + name: Straight + friendly_id: hair_type__straight +- id: 983 + name: Wavy + friendly_id: hair_type__wavy +- id: 984 + name: Photo polarized + friendly_id: lens_polarization__photo_polarized +- id: 985 + name: Polarized + friendly_id: lens_polarization__polarized +- id: 986 + name: Non-polarized + friendly_id: lens_polarization__non_polarized +- id: 987 + name: Adjustable/Pull + friendly_id: closure_type__adjustable_pull +- id: 988 + name: Buttons + friendly_id: closure_type__buttons +- id: 989 + name: Clip-on + friendly_id: closure_type__clip_on +- id: 990 + name: Hook & eye + friendly_id: closure_type__hook_eye +- id: 991 + name: Hook & loop + friendly_id: closure_type__hook_loop +- id: 992 + name: Lace-up + friendly_id: closure_type__lace_up +- id: 993 + name: Magnetic + friendly_id: closure_type__magnetic +- id: 994 + name: Snap + friendly_id: closure_type__snap +- id: 995 + name: Toggle + friendly_id: closure_type__toggle +- id: 996 + name: Zipper + friendly_id: closure_type__zipper +- id: 997 + name: X-back suspender + friendly_id: suspender_style__x_back_suspender +- id: 998 + name: Y-back suspender + friendly_id: suspender_style__y_back_suspender +- id: 999 + name: '10.5' + friendly_id: shoe_size__10_5 +- id: 1000 + name: '11' + friendly_id: shoe_size__11 +- id: 1001 + name: '11.5' + friendly_id: shoe_size__11_5 +- id: 1002 + name: '12' + friendly_id: shoe_size__12 +- id: 1003 + name: '12.5' + friendly_id: shoe_size__12_5 +- id: 1004 + name: '13' + friendly_id: shoe_size__13 +- id: 1005 + name: '13.5' + friendly_id: shoe_size__13_5 +- id: 1006 + name: '14' + friendly_id: shoe_size__14 +- id: 1007 + name: '14.5' + friendly_id: shoe_size__14_5 +- id: 1008 + name: '27.5' + friendly_id: shoe_size__27_5 +- id: 1009 + name: '28' + friendly_id: shoe_size__28 +- id: 1010 + name: '28.5' + friendly_id: shoe_size__28_5 +- id: 1011 + name: '29' + friendly_id: shoe_size__29 +- id: 1012 + name: '29.5' + friendly_id: shoe_size__29_5 +- id: 1013 + name: '30' + friendly_id: shoe_size__30 +- id: 1014 + name: '30.5' + friendly_id: shoe_size__30_5 +- id: 1015 + name: '31' + friendly_id: shoe_size__31 +- id: 1016 + name: '31.5' + friendly_id: shoe_size__31_5 +- id: 1017 + name: '32' + friendly_id: shoe_size__32 +- id: 1018 + name: '32.5' + friendly_id: shoe_size__32_5 +- id: 1019 + name: '33' + friendly_id: shoe_size__33 +- id: 1020 + name: '33.5' + friendly_id: shoe_size__33_5 +- id: 1021 + name: '34' + friendly_id: shoe_size__34 +- id: 1022 + name: '34.5' + friendly_id: shoe_size__34_5 +- id: 1023 + name: '35' + friendly_id: shoe_size__35 +- id: 1024 + name: '35.5' + friendly_id: shoe_size__35_5 +- id: 1025 + name: '36' + friendly_id: shoe_size__36 +- id: 1026 + name: '36.5' + friendly_id: shoe_size__36_5 +- id: 1027 + name: '37' + friendly_id: shoe_size__37 +- id: 1028 + name: '37.5' + friendly_id: shoe_size__37_5 +- id: 1029 + name: '38' + friendly_id: shoe_size__38 +- id: 1030 + name: '38.5' + friendly_id: shoe_size__38_5 +- id: 1031 + name: '39' + friendly_id: shoe_size__39 +- id: 1032 + name: '39.5' + friendly_id: shoe_size__39_5 +- id: 1033 + name: '40' + friendly_id: shoe_size__40 +- id: 1034 + name: '40.5' + friendly_id: shoe_size__40_5 +- id: 1035 + name: '41' + friendly_id: shoe_size__41 +- id: 1036 + name: '41.5' + friendly_id: shoe_size__41_5 +- id: 1037 + name: '42' + friendly_id: shoe_size__42 +- id: 1038 + name: '42.5' + friendly_id: shoe_size__42_5 +- id: 1039 + name: '43' + friendly_id: shoe_size__43 +- id: 1040 + name: '43.5' + friendly_id: shoe_size__43_5 +- id: 1041 + name: '44' + friendly_id: shoe_size__44 +- id: 1042 + name: '44.5' + friendly_id: shoe_size__44_5 +- id: 1043 + name: '45' + friendly_id: shoe_size__45 +- id: 1044 + name: '45.5' + friendly_id: shoe_size__45_5 +- id: 1045 + name: '46' + friendly_id: shoe_size__46 +- id: 1046 + name: '46.5' + friendly_id: shoe_size__46_5 +- id: 1047 + name: '47' + friendly_id: shoe_size__47 +- id: 1048 + name: '47.5' + friendly_id: shoe_size__47_5 +- id: 1049 + name: '48' + friendly_id: shoe_size__48 +- id: 1050 + name: '48.5' + friendly_id: shoe_size__48_5 +- id: 1051 + name: '49' + friendly_id: shoe_size__49 +- id: 1052 + name: '49.5' + friendly_id: shoe_size__49_5 +- id: 1053 + name: '50' + friendly_id: shoe_size__50 +- id: 1054 + name: '50.5' + friendly_id: shoe_size__50_5 +- id: 1055 + name: '51' + friendly_id: shoe_size__51 +- id: 1056 + name: '51.5' + friendly_id: shoe_size__51_5 +- id: 1057 + name: '52' + friendly_id: shoe_size__52 +- id: 1058 + name: '52.5' + friendly_id: shoe_size__52_5 +- id: 1059 + name: '53' + friendly_id: shoe_size__53 +- id: 1060 + name: '53.5' + friendly_id: shoe_size__53_5 +- id: 1061 + name: '54' + friendly_id: shoe_size__54 +- id: 1062 + name: '54.5' + friendly_id: shoe_size__54_5 +- id: 1063 + name: '55' + friendly_id: shoe_size__55 +- id: 1064 + name: '55.5' + friendly_id: shoe_size__55_5 +- id: 1065 + name: '56' + friendly_id: shoe_size__56 +- id: 1066 + name: '56.5' + friendly_id: shoe_size__56_5 +- id: 1067 + name: '57' + friendly_id: shoe_size__57 +- id: 1068 + name: '57.5' + friendly_id: shoe_size__57_5 +- id: 1069 + name: '58' + friendly_id: shoe_size__58 +- id: 1070 + name: '58.5' + friendly_id: shoe_size__58_5 +- id: 1071 + name: '59' + friendly_id: shoe_size__59 +- id: 1072 + name: '59.5' + friendly_id: shoe_size__59_5 +- id: 1073 + name: '60' + friendly_id: shoe_size__60 +- id: 1074 + name: Extra small (XS) + friendly_id: shoe_size__extra_small_xs +- id: 1075 + name: Small (S) + friendly_id: shoe_size__small_s +- id: 1076 + name: Medium (M) + friendly_id: shoe_size__medium_m +- id: 1077 + name: Large (L) + friendly_id: shoe_size__large_l +- id: 1078 + name: Extra large (XL) + friendly_id: shoe_size__extra_large_xl +- id: 1079 + name: Double extra large (XXL) + friendly_id: shoe_size__double_extra_large_xxl +- id: 1080 + name: Triple extra large (XXXL) + friendly_id: shoe_size__triple_extra_large_xxxl +- id: 1081 + name: Aliens + friendly_id: costume_theme__aliens +- id: 1082 + name: Angels/Demons + friendly_id: costume_theme__angels_demons +- id: 1083 + name: Animals + friendly_id: costume_theme__animals +- id: 1084 + name: Carnival/Mardi Gras + friendly_id: costume_theme__carnival_mardi_gras +- id: 1085 + name: Cartoon/Animated characters + friendly_id: costume_theme__cartoon_animated_characters +- id: 1086 + name: Celebrities + friendly_id: costume_theme__celebrities +- id: 1087 + name: Cultural + friendly_id: costume_theme__cultural +- id: 1088 + name: Fairytales + friendly_id: costume_theme__fairytales +- id: 1089 + name: Fantasy + friendly_id: costume_theme__fantasy +- id: 1090 + name: Ghosts + friendly_id: costume_theme__ghosts +- id: 1091 + name: Heroes + friendly_id: costume_theme__heroes +- id: 1092 + name: Historical + friendly_id: costume_theme__historical +- id: 1093 + name: Horror + friendly_id: costume_theme__horror +- id: 1094 + name: Movie/TV characters + friendly_id: costume_theme__movie_tv_characters +- id: 1095 + name: Mythological + friendly_id: costume_theme__mythological +- id: 1096 + name: Occupations + friendly_id: costume_theme__occupations +- id: 1097 + name: Pirates + friendly_id: costume_theme__pirates +- id: 1098 + name: Princesses + friendly_id: costume_theme__princesses +- id: 1099 + name: Retro/Vintage + friendly_id: costume_theme__retro_vintage +- id: 1100 + name: Robots + friendly_id: costume_theme__robots +- id: 1101 + name: Sci-fi + friendly_id: costume_theme__sci_fi +- id: 1102 + name: Sports + friendly_id: costume_theme__sports +- id: 1103 + name: Superheroes + friendly_id: costume_theme__superheroes +- id: 1104 + name: Vampires + friendly_id: costume_theme__vampires +- id: 1105 + name: Villains + friendly_id: costume_theme__villains +- id: 1106 + name: Witches/Wizards + friendly_id: costume_theme__witches_wizards +- id: 1107 + name: Zombies + friendly_id: costume_theme__zombies +- id: 1108 + name: Other + friendly_id: costume_theme__other +- id: 1109 + name: Disposable + friendly_id: usage_type__disposable +- id: 1110 + name: Reusable + friendly_id: usage_type__reusable +- id: 1111 + name: Clip + friendly_id: attachment_options__clip +- id: 1112 + name: Lanyard + friendly_id: attachment_options__lanyard +- id: 1113 + name: Magnet + friendly_id: attachment_options__magnet +- id: 1114 + name: Pin + friendly_id: attachment_options__pin +- id: 1115 + name: Acrylic + friendly_id: bag_case_material__acrylic +- id: 1116 + name: Alcantara + friendly_id: bag_case_material__alcantara +- id: 1117 + name: Aluminum + friendly_id: bag_case_material__aluminum +- id: 1118 + name: Burlap + friendly_id: bag_case_material__burlap +- id: 1119 + name: Canvas + friendly_id: bag_case_material__canvas +- id: 1120 + name: Carbon fiber + friendly_id: bag_case_material__carbon_fiber +- id: 1121 + name: Cordura + friendly_id: bag_case_material__cordura +- id: 1122 + name: Cotton + friendly_id: bag_case_material__cotton +- id: 1123 + name: Denim + friendly_id: bag_case_material__denim +- id: 1124 + name: Ethylene vinyl acetate (EVA) + friendly_id: bag_case_material__ethylene_vinyl_acetate_eva +- id: 1125 + name: Faux leather + friendly_id: bag_case_material__faux_leather +- id: 1126 + name: Felt + friendly_id: bag_case_material__felt +- id: 1127 + name: Fiberglass + friendly_id: bag_case_material__fiberglass +- id: 1128 + name: Leather + friendly_id: bag_case_material__leather +- id: 1129 + name: Leatherette + friendly_id: bag_case_material__leatherette +- id: 1130 + name: Linen + friendly_id: bag_case_material__linen +- id: 1131 + name: Memory foam + friendly_id: bag_case_material__memory_foam +- id: 1132 + name: Mesh + friendly_id: bag_case_material__mesh +- id: 1133 + name: Metal + friendly_id: bag_case_material__metal +- id: 1134 + name: Microfiber + friendly_id: bag_case_material__microfiber +- id: 1135 + name: Neoprene + friendly_id: bag_case_material__neoprene +- id: 1136 + name: Nylon + friendly_id: bag_case_material__nylon +- id: 1137 + name: Plastic + friendly_id: bag_case_material__plastic +- id: 1138 + name: Polyester + friendly_id: bag_case_material__polyester +- id: 1139 + name: Polyvinyl chloride (PVC) + friendly_id: bag_case_material__polyvinyl_chloride_pvc +- id: 1140 + name: Ripstop + friendly_id: bag_case_material__ripstop +- id: 1141 + name: Synthetic + friendly_id: bag_case_material__synthetic +- id: 1142 + name: Thermoplastic polyurethane (TPU) + friendly_id: bag_case_material__thermoplastic_polyurethane_tpu +- id: 1143 + name: Tweed + friendly_id: bag_case_material__tweed +- id: 1144 + name: Velvet + friendly_id: bag_case_material__velvet +- id: 1145 + name: Vinyl + friendly_id: bag_case_material__vinyl +- id: 1146 + name: Wood + friendly_id: bag_case_material__wood +- id: 1147 + name: Other + friendly_id: bag_case_material__other +- id: 1148 + name: Ball/Bead + friendly_id: chain_link_type__ball_bead +- id: 1149 + name: Byzantine/Birdcage + friendly_id: chain_link_type__byzantine_birdcage +- id: 1150 + name: Cable + friendly_id: chain_link_type__cable +- id: 1151 + name: Figaro + friendly_id: chain_link_type__figaro +- id: 1152 + name: Flat + friendly_id: chain_link_type__flat +- id: 1153 + name: Foxtail + friendly_id: chain_link_type__foxtail +- id: 1154 + name: Franco + friendly_id: chain_link_type__franco +- id: 1155 + name: Gourmette/Curb + friendly_id: chain_link_type__gourmette_curb +- id: 1156 + name: Heart + friendly_id: chain_link_type__heart +- id: 1157 + name: Herringbone + friendly_id: chain_link_type__herringbone +- id: 1158 + name: Infinity + friendly_id: chain_link_type__infinity +- id: 1159 + name: Marine/Anchor + friendly_id: chain_link_type__marine_anchor +- id: 1160 + name: Mesh + friendly_id: chain_link_type__mesh +- id: 1161 + name: Omega + friendly_id: chain_link_type__omega +- id: 1162 + name: Popcorn/Coreana + friendly_id: chain_link_type__popcorn_coreana +- id: 1163 + name: Rolo/Belcher + friendly_id: chain_link_type__rolo_belcher +- id: 1164 + name: Rope + friendly_id: chain_link_type__rope +- id: 1165 + name: Round + friendly_id: chain_link_type__round +- id: 1166 + name: Serpentine + friendly_id: chain_link_type__serpentine +- id: 1167 + name: Singapore + friendly_id: chain_link_type__singapore +- id: 1168 + name: Snake + friendly_id: chain_link_type__snake +- id: 1169 + name: Trace + friendly_id: chain_link_type__trace +- id: 1170 + name: Twisted curb + friendly_id: chain_link_type__twisted_curb +- id: 1171 + name: Venetian + friendly_id: chain_link_type__venetian +- id: 1172 + name: Wheat/Espiga + friendly_id: chain_link_type__wheat_espiga +- id: 1173 + name: Other + friendly_id: chain_link_type__other +- id: 1174 + name: '0.5' + friendly_id: ring_size__0_5 +- id: 1175 + name: '1' + friendly_id: ring_size__1 +- id: 1176 + name: '1.5' + friendly_id: ring_size__1_5 +- id: 1177 + name: '10' + friendly_id: ring_size__10 +- id: 1178 + name: '10.5' + friendly_id: ring_size__10_5 +- id: 1179 + name: '11' + friendly_id: ring_size__11 +- id: 1180 + name: '11.5' + friendly_id: ring_size__11_5 +- id: 1181 + name: '12' + friendly_id: ring_size__12 +- id: 1182 + name: '12.5' + friendly_id: ring_size__12_5 +- id: 1183 + name: '13' + friendly_id: ring_size__13 +- id: 1184 + name: '2' + friendly_id: ring_size__2 +- id: 1185 + name: '2.5' + friendly_id: ring_size__2_5 +- id: 1186 + name: '3' + friendly_id: ring_size__3 +- id: 1187 + name: '3.5' + friendly_id: ring_size__3_5 +- id: 1188 + name: '38' + friendly_id: ring_size__38 +- id: 1189 + name: '39' + friendly_id: ring_size__39 +- id: 1190 + name: '4' + friendly_id: ring_size__4 +- id: 1191 + name: '4.5' + friendly_id: ring_size__4_5 +- id: 1192 + name: '40' + friendly_id: ring_size__40 +- id: 1193 + name: '41' + friendly_id: ring_size__41 +- id: 1194 + name: '42' + friendly_id: ring_size__42 +- id: 1195 + name: '43' + friendly_id: ring_size__43 +- id: 1196 + name: '44' + friendly_id: ring_size__44 +- id: 1197 + name: '45' + friendly_id: ring_size__45 +- id: 1198 + name: '46' + friendly_id: ring_size__46 +- id: 1199 + name: '47' + friendly_id: ring_size__47 +- id: 1200 + name: '48' + friendly_id: ring_size__48 +- id: 1201 + name: '49' + friendly_id: ring_size__49 +- id: 1202 + name: '5' + friendly_id: ring_size__5 +- id: 1203 + name: '5.5' + friendly_id: ring_size__5_5 +- id: 1204 + name: '50' + friendly_id: ring_size__50 +- id: 1205 + name: '51' + friendly_id: ring_size__51 +- id: 1206 + name: '52' + friendly_id: ring_size__52 +- id: 1207 + name: '53' + friendly_id: ring_size__53 +- id: 1208 + name: '54' + friendly_id: ring_size__54 +- id: 1209 + name: '55' + friendly_id: ring_size__55 +- id: 1210 + name: '56' + friendly_id: ring_size__56 +- id: 1211 + name: '57' + friendly_id: ring_size__57 +- id: 1212 + name: '58' + friendly_id: ring_size__58 +- id: 1213 + name: '59' + friendly_id: ring_size__59 +- id: 1214 + name: '6' + friendly_id: ring_size__6 +- id: 1215 + name: '6.5' + friendly_id: ring_size__6_5 +- id: 1216 + name: '60' + friendly_id: ring_size__60 +- id: 1217 + name: '61' + friendly_id: ring_size__61 +- id: 1218 + name: '62' + friendly_id: ring_size__62 +- id: 1219 + name: '63' + friendly_id: ring_size__63 +- id: 1220 + name: '64' + friendly_id: ring_size__64 +- id: 1221 + name: '65' + friendly_id: ring_size__65 +- id: 1222 + name: '66' + friendly_id: ring_size__66 +- id: 1223 + name: '67' + friendly_id: ring_size__67 +- id: 1224 + name: '68' + friendly_id: ring_size__68 +- id: 1225 + name: '69' + friendly_id: ring_size__69 +- id: 1226 + name: '7' + friendly_id: ring_size__7 +- id: 1227 + name: '7.5' + friendly_id: ring_size__7_5 +- id: 1228 + name: '8' + friendly_id: ring_size__8 +- id: 1229 + name: '8.5' + friendly_id: ring_size__8_5 +- id: 1230 + name: '9' + friendly_id: ring_size__9 +- id: 1231 + name: '9.5' + friendly_id: ring_size__9_5 +- id: 1232 + name: A + friendly_id: ring_size__a +- id: 1233 + name: B + friendly_id: ring_size__b +- id: 1234 + name: C + friendly_id: ring_size__c +- id: 1235 + name: D + friendly_id: ring_size__d +- id: 1236 + name: E + friendly_id: ring_size__e +- id: 1237 + name: F + friendly_id: ring_size__f +- id: 1238 + name: G + friendly_id: ring_size__g +- id: 1239 + name: H + friendly_id: ring_size__h +- id: 1240 + name: I + friendly_id: ring_size__i +- id: 1241 + name: J + friendly_id: ring_size__j +- id: 1242 + name: K + friendly_id: ring_size__k +- id: 1243 + name: L + friendly_id: ring_size__l +- id: 1244 + name: M + friendly_id: ring_size__m +- id: 1245 + name: N + friendly_id: ring_size__n +- id: 1246 + name: O + friendly_id: ring_size__o +- id: 1247 + name: P + friendly_id: ring_size__p +- id: 1248 + name: Q + friendly_id: ring_size__q +- id: 1249 + name: R + friendly_id: ring_size__r +- id: 1250 + name: S + friendly_id: ring_size__s +- id: 1251 + name: T + friendly_id: ring_size__t +- id: 1252 + name: U + friendly_id: ring_size__u +- id: 1253 + name: V + friendly_id: ring_size__v +- id: 1254 + name: W + friendly_id: ring_size__w +- id: 1255 + name: X + friendly_id: ring_size__x +- id: 1256 + name: Y + friendly_id: ring_size__y +- id: 1257 + name: Z + friendly_id: ring_size__z +- id: 1258 + name: Alcantara + friendly_id: watch_band_material__alcantara +- id: 1259 + name: Canvas + friendly_id: watch_band_material__canvas +- id: 1260 + name: Faux leather + friendly_id: watch_band_material__faux_leather +- id: 1261 + name: Leather + friendly_id: watch_band_material__leather +- id: 1262 + name: Mesh + friendly_id: watch_band_material__mesh +- id: 1263 + name: Metal + friendly_id: watch_band_material__metal +- id: 1264 + name: Microfiber + friendly_id: watch_band_material__microfiber +- id: 1265 + name: Nylon + friendly_id: watch_band_material__nylon +- id: 1266 + name: Plastic + friendly_id: watch_band_material__plastic +- id: 1267 + name: Polyamide (PA) + friendly_id: watch_band_material__polyamide_pa +- id: 1268 + name: Polycarbonate (PC) + friendly_id: watch_band_material__polycarbonate_pc +- id: 1269 + name: Polyester + friendly_id: watch_band_material__polyester +- id: 1270 + name: Polyurethane (PU) + friendly_id: watch_band_material__polyurethane_pu +- id: 1271 + name: Rubber + friendly_id: watch_band_material__rubber +- id: 1272 + name: Silicone + friendly_id: watch_band_material__silicone +- id: 1273 + name: Stainless steel + friendly_id: watch_band_material__stainless_steel +- id: 1274 + name: Thermoplastic elastomer (TPE) + friendly_id: watch_band_material__thermoplastic_elastomer_tpe +- id: 1275 + name: Thermoplastic polyurethane (TPU) + friendly_id: watch_band_material__thermoplastic_polyurethane_tpu +- id: 1276 + name: Titanium + friendly_id: watch_band_material__titanium +- id: 1277 + name: Vinyl + friendly_id: watch_band_material__vinyl +- id: 1278 + name: Other + friendly_id: watch_band_material__other +- id: 1279 + name: Analog + friendly_id: watch_display__analog +- id: 1280 + name: Digital + friendly_id: watch_display__digital +- id: 1281 + name: Ana-Digi + friendly_id: watch_display__ana_digi +- id: 1282 + name: Classic + friendly_id: watch_accessory_style__classic +- id: 1283 + name: Modern + friendly_id: watch_accessory_style__modern +- id: 1284 + name: Sporty + friendly_id: watch_accessory_style__sporty +- id: 1285 + name: Buckle + friendly_id: clasp_type__buckle +- id: 1286 + name: Butterfly + friendly_id: clasp_type__butterfly +- id: 1287 + name: Deployment + friendly_id: clasp_type__deployment +- id: 1288 + name: Wi-Fi + friendly_id: connectivity_technology__wi_fi +- id: 1289 + name: LTE + friendly_id: connectivity_technology__lte +- id: 1290 + name: Buckles + friendly_id: closure_type__buckles +- id: 1291 + name: Elastic + friendly_id: closure_type__elastic +- id: 1292 + name: Slip-on + friendly_id: closure_type__slip_on +- id: 1293 + name: Casual + friendly_id: occasion_style__casual +- id: 1294 + name: Dress + friendly_id: occasion_style__dress +- id: 1295 + name: Wide + friendly_id: shoe_fit__wide +- id: 1296 + name: Narrow + friendly_id: shoe_fit__narrow +- id: 1297 + name: Regular + friendly_id: shoe_fit__regular +- id: 1298 + name: Almond + friendly_id: toe_style__almond +- id: 1299 + name: Cap + friendly_id: toe_style__cap +- id: 1300 + name: Moc + friendly_id: toe_style__moc +- id: 1301 + name: Open + friendly_id: toe_style__open +- id: 1302 + name: Peep + friendly_id: toe_style__peep +- id: 1303 + name: Pointed + friendly_id: toe_style__pointed +- id: 1304 + name: Round + friendly_id: toe_style__round +- id: 1305 + name: Square + friendly_id: toe_style__square +- id: 1306 + name: Wingtip + friendly_id: toe_style__wingtip +- id: 1307 + name: Boots + friendly_id: boot_style__boots +- id: 1308 + name: Booties + friendly_id: boot_style__booties +- id: 1309 + name: Flat + friendly_id: heel_height_type__flat +- id: 1310 + name: Low + friendly_id: heel_height_type__low +- id: 1311 + name: Mid + friendly_id: heel_height_type__mid +- id: 1312 + name: High + friendly_id: heel_height_type__high +- id: 1313 + name: Very high + friendly_id: heel_height_type__very_high +- id: 1314 + name: Backstage pass + friendly_id: additional_features__backstage_pass +- id: 1315 + name: Meet & greet + friendly_id: additional_features__meet_greet +- id: 1316 + name: Post-event activities + friendly_id: additional_features__post_event_activities +- id: 1317 + name: VIP package + friendly_id: additional_features__vip_package +- id: 1318 + name: 18 years or older + friendly_id: age_restrictions__18_years_or_older +- id: 1319 + name: 21 years or older + friendly_id: age_restrictions__21_years_or_older +- id: 1320 + name: All ages + friendly_id: age_restrictions__all_ages +- id: 1321 + name: Comedy show + friendly_id: event_type__comedy_show +- id: 1322 + name: Concert + friendly_id: event_type__concert +- id: 1323 + name: Exhibition + friendly_id: event_type__exhibition +- id: 1324 + name: Festival + friendly_id: event_type__festival +- id: 1325 + name: Musical + friendly_id: event_type__musical +- id: 1326 + name: Seminar + friendly_id: event_type__seminar +- id: 1327 + name: Sport game + friendly_id: event_type__sport_game +- id: 1328 + name: Theater + friendly_id: event_type__theater +- id: 1329 + name: Other + friendly_id: event_type__other +- id: 1330 + name: General admission + friendly_id: ticket_type__general_admission +- id: 1331 + name: Reserved seating + friendly_id: ticket_type__reserved_seating +- id: 1332 + name: Premium seating + friendly_id: ticket_type__premium_seating +- id: 1333 + name: Standing room + friendly_id: ticket_type__standing_room +- id: 1334 + name: Candle labels + friendly_id: candle_kit_items_included__candle_labels +- id: 1335 + name: Candle wicks + friendly_id: candle_kit_items_included__candle_wicks +- id: 1336 + name: Mold + friendly_id: candle_kit_items_included__mold +- id: 1337 + name: Stirring tool + friendly_id: candle_kit_items_included__stirring_tool +- id: 1338 + name: Thermometer + friendly_id: candle_kit_items_included__thermometer +- id: 1339 + name: Wax melting pot + friendly_id: candle_kit_items_included__wax_melting_pot +- id: 1340 + name: Wick holders + friendly_id: candle_kit_items_included__wick_holders +- id: 1341 + name: Pillar + friendly_id: candle_type__pillar +- id: 1342 + name: Container + friendly_id: candle_type__container +- id: 1343 + name: Votive + friendly_id: candle_type__votive +- id: 1344 + name: Tea light + friendly_id: candle_type__tea_light +- id: 1345 + name: Taper + friendly_id: candle_type__taper +- id: 1346 + name: Floating + friendly_id: candle_type__floating +- id: 1347 + name: Soy + friendly_id: wax_type__soy +- id: 1348 + name: Beeswax + friendly_id: wax_type__beeswax +- id: 1349 + name: Paraffin + friendly_id: wax_type__paraffin +- id: 1350 + name: Gel + friendly_id: wax_type__gel +- id: 1351 + name: Aquarelle pencil + friendly_id: drawing_painting_kit_items_included__aquarelle_pencil +- id: 1352 + name: Art charcoal + friendly_id: drawing_painting_kit_items_included__art_charcoal +- id: 1353 + name: Chalk + friendly_id: drawing_painting_kit_items_included__chalk +- id: 1354 + name: Charcoal pencil + friendly_id: drawing_painting_kit_items_included__charcoal_pencil +- id: 1355 + name: Color pencil + friendly_id: drawing_painting_kit_items_included__color_pencil +- id: 1356 + name: Coloring pad + friendly_id: drawing_painting_kit_items_included__coloring_pad +- id: 1357 + name: Drawing stump + friendly_id: drawing_painting_kit_items_included__drawing_stump +- id: 1358 + name: Fineliner + friendly_id: drawing_painting_kit_items_included__fineliner +- id: 1359 + name: Graphite pencil + friendly_id: drawing_painting_kit_items_included__graphite_pencil +- id: 1360 + name: Marker + friendly_id: drawing_painting_kit_items_included__marker +- id: 1361 + name: Paint + friendly_id: drawing_painting_kit_items_included__paint +- id: 1362 + name: Paint brush + friendly_id: drawing_painting_kit_items_included__paint_brush +- id: 1363 + name: Paint cup + friendly_id: drawing_painting_kit_items_included__paint_cup +- id: 1364 + name: Pastel + friendly_id: drawing_painting_kit_items_included__pastel +- id: 1365 + name: Pastel pencil + friendly_id: drawing_painting_kit_items_included__pastel_pencil +- id: 1366 + name: Watercolor pencil + friendly_id: drawing_painting_kit_items_included__watercolor_pencil +- id: 1367 + name: Synthetic + friendly_id: suitable_for_fabric_type__synthetic +- id: 1368 + name: Natural fabric + friendly_id: suitable_for_fabric_type__natural_fabric +- id: 1369 + name: Sandalwood + friendly_id: incense_fragrance__sandalwood +- id: 1370 + name: Lavender + friendly_id: incense_fragrance__lavender +- id: 1371 + name: Patchouli + friendly_id: incense_fragrance__patchouli +- id: 1372 + name: Jasmine + friendly_id: incense_fragrance__jasmine +- id: 1373 + name: Rose + friendly_id: incense_fragrance__rose +- id: 1374 + name: Citrus + friendly_id: incense_fragrance__citrus +- id: 1375 + name: Vanilla + friendly_id: incense_fragrance__vanilla +- id: 1376 + name: Frankincense + friendly_id: incense_fragrance__frankincense +- id: 1377 + name: Myrrh + friendly_id: incense_fragrance__myrrh +- id: 1378 + name: Nag champa + friendly_id: incense_fragrance__nag_champa +- id: 1379 + name: Herbal blends + friendly_id: incense_fragrance__herbal_blends +- id: 1380 + name: Stick + friendly_id: incense_type__stick +- id: 1381 + name: Cone + friendly_id: incense_type__cone +- id: 1382 + name: Resin + friendly_id: incense_type__resin +- id: 1383 + name: Powder + friendly_id: incense_type__powder +- id: 1384 + name: Natural herbs + friendly_id: ingredients_included__natural_herbs +- id: 1385 + name: Resins + friendly_id: ingredients_included__resins +- id: 1386 + name: Essential oils + friendly_id: ingredients_included__essential_oils +- id: 1387 + name: Charcoal + friendly_id: ingredients_included__charcoal +- id: 1388 + name: Bamboo sticks + friendly_id: ingredients_included__bamboo_sticks +- id: 1389 + name: Molds + friendly_id: ingredients_included__molds +- id: 1390 + name: Other + friendly_id: ingredients_included__other +- id: 1391 + name: Bead set + friendly_id: jewelry_set_type__bead_set +- id: 1392 + name: Jewelry set + friendly_id: jewelry_set_type__jewelry_set +- id: 1393 + name: Charm + friendly_id: jewelry_set_type__charm +- id: 1394 + name: Necklace + friendly_id: jewelry_set_type__necklace +- id: 1395 + name: Ring + friendly_id: jewelry_set_type__ring +- id: 1396 + name: Earring + friendly_id: jewelry_set_type__earring +- id: 1397 + name: Tassel + friendly_id: jewelry_set_type__tassel +- id: 1398 + name: Crochet + friendly_id: kit_type__crochet +- id: 1399 + name: Cross stitch + friendly_id: kit_type__cross_stitch +- id: 1400 + name: Embroidery + friendly_id: kit_type__embroidery +- id: 1401 + name: Knitting + friendly_id: kit_type__knitting +- id: 1402 + name: Quilting + friendly_id: kit_type__quilting +- id: 1403 + name: Sewing + friendly_id: kit_type__sewing +- id: 1404 + name: Ring binder + friendly_id: album_type__ring_binder +- id: 1405 + name: Pocket page + friendly_id: album_type__pocket_page +- id: 1406 + name: Spiral bound + friendly_id: album_type__spiral_bound +- id: 1407 + name: Scrapbook + friendly_id: album_type__scrapbook +- id: 1408 + name: Stickers + friendly_id: embellishments__stickers +- id: 1409 + name: Die cuts + friendly_id: embellishments__die_cuts +- id: 1410 + name: Chipboard elements + friendly_id: embellishments__chipboard_elements +- id: 1411 + name: Washi tape + friendly_id: embellishments__washi_tape +- id: 1412 + name: Ribbons + friendly_id: embellishments__ribbons +- id: 1413 + name: Brads + friendly_id: embellishments__brads +- id: 1414 + name: Buttons + friendly_id: embellishments__buttons +- id: 1415 + name: Sequins + friendly_id: embellishments__sequins +- id: 1416 + name: Gems + friendly_id: embellishments__gems +- id: 1417 + name: Patterned + friendly_id: scrapbook_paper_type__patterned +- id: 1418 + name: Cardstock + friendly_id: scrapbook_paper_type__cardstock +- id: 1419 + name: Specialty + friendly_id: scrapbook_paper_type__specialty +- id: 1420 + name: Smooth + friendly_id: paper_finish__smooth +- id: 1421 + name: Textured + friendly_id: paper_finish__textured +- id: 1422 + name: Gloss + friendly_id: paper_finish__gloss +- id: 1423 + name: Matte + friendly_id: paper_finish__matte +- id: 1424 + name: 11" x 14" + friendly_id: paper_size__11_x_14 +- id: 1425 + name: 11" x 17" + friendly_id: paper_size__11_x_17 +- id: 1426 + name: 12" x 12" + friendly_id: paper_size__12_x_12 +- id: 1427 + name: 12" x 18" + friendly_id: paper_size__12_x_18 +- id: 1428 + name: 18" x 24" + friendly_id: paper_size__18_x_24 +- id: 1429 + name: 24" x 36" + friendly_id: paper_size__24_x_36 +- id: 1430 + name: 6" x 6" + friendly_id: paper_size__6_x_6 +- id: 1431 + name: 8.5" x 11" + friendly_id: paper_size__8_5_x_11 +- id: 1432 + name: 9" x 12" + friendly_id: paper_size__9_x_12 +- id: 1433 + name: A1 + friendly_id: paper_size__a1 +- id: 1434 + name: A2 + friendly_id: paper_size__a2 +- id: 1435 + name: A3 + friendly_id: paper_size__a3 +- id: 1436 + name: A4 + friendly_id: paper_size__a4 +- id: 1437 + name: A5 + friendly_id: paper_size__a5 +- id: 1438 + name: A6 + friendly_id: paper_size__a6 +- id: 1439 + name: A7 + friendly_id: paper_size__a7 +- id: 1440 + name: Legal + friendly_id: paper_size__legal +- id: 1441 + name: Letter + friendly_id: paper_size__letter +- id: 1442 + name: Tabloid + friendly_id: paper_size__tabloid +- id: 1443 + name: Block + friendly_id: paper_format__block +- id: 1444 + name: Loose sheets + friendly_id: paper_format__loose_sheets +- id: 1445 + name: Pad + friendly_id: paper_format__pad +- id: 1446 + name: Sketchbook + friendly_id: paper_format__sketchbook +- id: 1447 + name: Cold press + friendly_id: paper_texture__cold_press +- id: 1448 + name: Hot press + friendly_id: paper_texture__hot_press +- id: 1449 + name: Medium grain + friendly_id: paper_texture__medium_grain +- id: 1450 + name: Rough + friendly_id: paper_texture__rough +- id: 1451 + name: Smooth + friendly_id: paper_texture__smooth +- id: 1452 + name: Calligraphy + friendly_id: creative_art_project_type__calligraphy +- id: 1453 + name: Crafting + friendly_id: creative_art_project_type__crafting +- id: 1454 + name: Drawing + friendly_id: creative_art_project_type__drawing +- id: 1455 + name: Printing + friendly_id: creative_art_project_type__printing +- id: 1456 + name: Scrapbooking + friendly_id: creative_art_project_type__scrapbooking +- id: 1457 + name: Tracing + friendly_id: creative_art_project_type__tracing +- id: 1458 + name: Other + friendly_id: creative_art_project_type__other +- id: 1459 + name: Parchment-like + friendly_id: paper_finish__parchment_like +- id: 1460 + name: Acrylic painting + friendly_id: suitable_for_art_technique__acrylic_painting +- id: 1461 + name: Charcoal drawing + friendly_id: suitable_for_art_technique__charcoal_drawing +- id: 1462 + name: Graphite/Pencil drawing + friendly_id: suitable_for_art_technique__graphite_pencil_drawing +- id: 1463 + name: Mixed media artwork + friendly_id: suitable_for_art_technique__mixed_media_artwork +- id: 1464 + name: Pastel drawing + friendly_id: suitable_for_art_technique__pastel_drawing +- id: 1465 + name: Watercolor paintin + friendly_id: suitable_for_art_technique__watercolor_paintin +- id: 1466 + name: Decorative + friendly_id: button_snap_closure_type__decorative +- id: 1467 + name: Invisible + friendly_id: button_snap_closure_type__invisible +- id: 1468 + name: Magnetic + friendly_id: button_snap_closure_type__magnetic +- id: 1469 + name: Press-stud + friendly_id: button_snap_closure_type__press_stud +- id: 1470 + name: Snap + friendly_id: button_snap_closure_type__snap +- id: 1471 + name: Aluminum + friendly_id: fastener_material__aluminum +- id: 1472 + name: Bone + friendly_id: fastener_material__bone +- id: 1473 + name: Brass + friendly_id: fastener_material__brass +- id: 1474 + name: Copper + friendly_id: fastener_material__copper +- id: 1475 + name: Fabric + friendly_id: fastener_material__fabric +- id: 1476 + name: Glass + friendly_id: fastener_material__glass +- id: 1477 + name: Leather + friendly_id: fastener_material__leather +- id: 1478 + name: Metal + friendly_id: fastener_material__metal +- id: 1479 + name: Nickel + friendly_id: fastener_material__nickel +- id: 1480 + name: Nylon + friendly_id: fastener_material__nylon +- id: 1481 + name: Pewter + friendly_id: fastener_material__pewter +- id: 1482 + name: Plastic + friendly_id: fastener_material__plastic +- id: 1483 + name: Polyamide (PA) + friendly_id: fastener_material__polyamide_pa +- id: 1484 + name: Polyester + friendly_id: fastener_material__polyester +- id: 1485 + name: Polypropylene (PP) + friendly_id: fastener_material__polypropylene_pp +- id: 1486 + name: Resin + friendly_id: fastener_material__resin +- id: 1487 + name: Rubber + friendly_id: fastener_material__rubber +- id: 1488 + name: Seashell + friendly_id: fastener_material__seashell +- id: 1489 + name: Silicone + friendly_id: fastener_material__silicone +- id: 1490 + name: Stainless steel + friendly_id: fastener_material__stainless_steel +- id: 1491 + name: Wood + friendly_id: fastener_material__wood +- id: 1492 + name: Zinc + friendly_id: fastener_material__zinc +- id: 1493 + name: Other + friendly_id: fastener_material__other +- id: 1494 + name: Plain + friendly_id: zipper_pull_style__plain +- id: 1495 + name: Textured + friendly_id: zipper_pull_style__textured +- id: 1496 + name: Patterned + friendly_id: zipper_pull_style__patterned +- id: 1497 + name: Engraved + friendly_id: zipper_pull_style__engraved +- id: 1498 + name: Embossed + friendly_id: zipper_pull_style__embossed +- id: 1499 + name: Printed + friendly_id: zipper_pull_style__printed +- id: 1500 + name: Bottle + friendly_id: dispenser_type__bottle +- id: 1501 + name: Jar + friendly_id: dispenser_type__jar +- id: 1502 + name: Pan + friendly_id: dispenser_type__pan +- id: 1503 + name: Spray + friendly_id: dispenser_type__spray +- id: 1504 + name: Tube + friendly_id: dispenser_type__tube +- id: 1505 + name: Gel + friendly_id: paint_dye_form__gel +- id: 1506 + name: Hard + friendly_id: paint_dye_form__hard +- id: 1507 + name: Liquid + friendly_id: paint_dye_form__liquid +- id: 1508 + name: Marker + friendly_id: paint_dye_form__marker +- id: 1509 + name: Paste + friendly_id: paint_dye_form__paste +- id: 1510 + name: Powder + friendly_id: paint_dye_form__powder +- id: 1511 + name: Spray + friendly_id: paint_dye_form__spray +- id: 1512 + name: Acrylic + friendly_id: paint_type__acrylic +- id: 1513 + name: Acrylic primer + friendly_id: paint_type__acrylic_primer +- id: 1514 + name: Enamel + friendly_id: paint_type__enamel +- id: 1515 + name: Fresco + friendly_id: paint_type__fresco +- id: 1516 + name: Glass + friendly_id: paint_type__glass +- id: 1517 + name: Glitter poster + friendly_id: paint_type__glitter_poster +- id: 1518 + name: Gouache + friendly_id: paint_type__gouache +- id: 1519 + name: Hot wax + friendly_id: paint_type__hot_wax +- id: 1520 + name: Ink + friendly_id: paint_type__ink +- id: 1521 + name: Oil + friendly_id: paint_type__oil +- id: 1522 + name: Pastel + friendly_id: paint_type__pastel +- id: 1523 + name: Poster + friendly_id: paint_type__poster +- id: 1524 + name: Silk + friendly_id: paint_type__silk +- id: 1525 + name: Spray + friendly_id: paint_type__spray +- id: 1526 + name: Tempera + friendly_id: paint_type__tempera +- id: 1527 + name: Textile + friendly_id: paint_type__textile +- id: 1528 + name: Texturizing paste + friendly_id: paint_type__texturizing_paste +- id: 1529 + name: Vinyl + friendly_id: paint_type__vinyl +- id: 1530 + name: Water miscible oil + friendly_id: paint_type__water_miscible_oil +- id: 1531 + name: Water-based + friendly_id: paint_type__water_based +- id: 1532 + name: Watercolor + friendly_id: paint_type__watercolor +- id: 1533 + name: Weathering powder + friendly_id: paint_type__weathering_powder +- id: 1534 + name: Aerosol + friendly_id: art_fixative_application_method__aerosol +- id: 1535 + name: Brush-on + friendly_id: art_fixative_application_method__brush_on +- id: 1536 + name: Gloss + friendly_id: finish__gloss +- id: 1537 + name: Matte + friendly_id: finish__matte +- id: 1538 + name: Satin + friendly_id: finish__satin +- id: 1539 + name: Acrylic + friendly_id: suitable_for_crafting_material__acrylic +- id: 1540 + name: Cardboard + friendly_id: suitable_for_crafting_material__cardboard +- id: 1541 + name: Ceramic + friendly_id: suitable_for_crafting_material__ceramic +- id: 1542 + name: Fabric + friendly_id: suitable_for_crafting_material__fabric +- id: 1543 + name: Foam + friendly_id: suitable_for_crafting_material__foam +- id: 1544 + name: Glass + friendly_id: suitable_for_crafting_material__glass +- id: 1545 + name: Leather + friendly_id: suitable_for_crafting_material__leather +- id: 1546 + name: Metal + friendly_id: suitable_for_crafting_material__metal +- id: 1547 + name: Paper + friendly_id: suitable_for_crafting_material__paper +- id: 1548 + name: Plastic + friendly_id: suitable_for_crafting_material__plastic +- id: 1549 + name: Rubber + friendly_id: suitable_for_crafting_material__rubber +- id: 1550 + name: Wax + friendly_id: suitable_for_crafting_material__wax +- id: 1551 + name: Wood + friendly_id: suitable_for_crafting_material__wood +- id: 1552 + name: Bottle + friendly_id: ink_form__bottle +- id: 1553 + name: Jar + friendly_id: ink_form__jar +- id: 1554 + name: Marker + friendly_id: ink_form__marker +- id: 1555 + name: Pen + friendly_id: ink_form__pen +- id: 1556 + name: Ink stick + friendly_id: ink_form__ink_stick +- id: 1557 + name: Clear + friendly_id: glaze_finish__clear +- id: 1558 + name: Crackle + friendly_id: glaze_finish__crackle +- id: 1559 + name: Gloss + friendly_id: glaze_finish__gloss +- id: 1560 + name: Matte + friendly_id: glaze_finish__matte +- id: 1561 + name: Opaque + friendly_id: glaze_finish__opaque +- id: 1562 + name: Satin + friendly_id: glaze_finish__satin +- id: 1563 + name: Textured + friendly_id: glaze_finish__textured +- id: 1564 + name: Crystalline + friendly_id: visual_effect__crystalline +- id: 1565 + name: Speckled + friendly_id: visual_effect__speckled +- id: 1566 + name: Texture + friendly_id: visual_effect__texture +- id: 1567 + name: Metallic + friendly_id: visual_effect__metallic +- id: 1568 + name: Metallic + friendly_id: finish__metallic +- id: 1569 + name: Pigment + friendly_id: ink_type__pigment +- id: 1570 + name: Dye + friendly_id: ink_type__dye +- id: 1571 + name: Archival + friendly_id: ink_type__archival +- id: 1572 + name: Solvent-based + friendly_id: ink_type__solvent_based +- id: 1573 + name: Embossing + friendly_id: ink_type__embossing +- id: 1574 + name: Stamping + friendly_id: ink_type__stamping +- id: 1575 + name: Acrylic + friendly_id: paint_medium_type__acrylic +- id: 1576 + name: Oil + friendly_id: paint_medium_type__oil +- id: 1577 + name: Watercolor + friendly_id: paint_medium_type__watercolor +- id: 1578 + name: Gouache + friendly_id: paint_medium_type__gouache +- id: 1579 + name: Encaustic + friendly_id: paint_medium_type__encaustic +- id: 1580 + name: Pouring + friendly_id: paint_medium_type__pouring +- id: 1581 + name: Texture + friendly_id: paint_medium_type__texture +- id: 1582 + name: Glazing + friendly_id: paint_medium_type__glazing +- id: 1583 + name: Varnish + friendly_id: paint_medium_type__varnish +- id: 1584 + name: Retarder + friendly_id: paint_medium_type__retarder +- id: 1585 + name: Ball + friendly_id: foam_form__ball +- id: 1586 + name: Blocks + friendly_id: foam_form__blocks +- id: 1587 + name: Cones + friendly_id: foam_form__cones +- id: 1588 + name: Floral foam + friendly_id: foam_form__floral_foam +- id: 1589 + name: Rolls + friendly_id: foam_form__rolls +- id: 1590 + name: Shapes + friendly_id: foam_form__shapes +- id: 1591 + name: Sheets + friendly_id: foam_form__sheets +- id: 1592 + name: Wreath forms + friendly_id: foam_form__wreath_forms +- id: 1593 + name: Thin + friendly_id: thickness_type__thin +- id: 1594 + name: Medium + friendly_id: thickness_type__medium +- id: 1595 + name: Thick + friendly_id: thickness_type__thick +- id: 1596 + name: Ash wood + friendly_id: lumber_wood_type__ash_wood +- id: 1597 + name: Balsa wood + friendly_id: lumber_wood_type__balsa_wood +- id: 1598 + name: Bamboo + friendly_id: lumber_wood_type__bamboo +- id: 1599 + name: Basswood + friendly_id: lumber_wood_type__basswood +- id: 1600 + name: Birch wood + friendly_id: lumber_wood_type__birch_wood +- id: 1601 + name: Cedar wood + friendly_id: lumber_wood_type__cedar_wood +- id: 1602 + name: Cherry wood + friendly_id: lumber_wood_type__cherry_wood +- id: 1603 + name: Hickory wood + friendly_id: lumber_wood_type__hickory_wood +- id: 1604 + name: Maple wood + friendly_id: lumber_wood_type__maple_wood +- id: 1605 + name: Medium density fiberboard (MDF) + friendly_id: lumber_wood_type__medium_density_fiberboard_mdf +- id: 1606 + name: Oak wood + friendly_id: lumber_wood_type__oak_wood +- id: 1607 + name: Pine wood + friendly_id: lumber_wood_type__pine_wood +- id: 1608 + name: Plywood + friendly_id: lumber_wood_type__plywood +- id: 1609 + name: Poplar wood + friendly_id: lumber_wood_type__poplar_wood +- id: 1610 + name: Redwood + friendly_id: lumber_wood_type__redwood +- id: 1611 + name: Walnut wood + friendly_id: lumber_wood_type__walnut_wood +- id: 1612 + name: Wood + friendly_id: lumber_wood_type__wood +- id: 1613 + name: Animal + friendly_id: papier_mache_shape__animal +- id: 1614 + name: Box + friendly_id: papier_mache_shape__box +- id: 1615 + name: Figurine + friendly_id: papier_mache_shape__figurine +- id: 1616 + name: Letter + friendly_id: papier_mache_shape__letter +- id: 1617 + name: Mask + friendly_id: papier_mache_shape__mask +- id: 1618 + name: Number + friendly_id: papier_mache_shape__number +- id: 1619 + name: Ornament + friendly_id: papier_mache_shape__ornament +- id: 1620 + name: Shape + friendly_id: papier_mache_shape__shape +- id: 1621 + name: Heart + friendly_id: shape__heart +- id: 1622 + name: Floral + friendly_id: wreath_design__floral +- id: 1623 + name: Grapevine + friendly_id: wreath_design__grapevine +- id: 1624 + name: Hoop + friendly_id: wreath_design__hoop +- id: 1625 + name: Metal + friendly_id: wreath_design__metal +- id: 1626 + name: Styrofoam + friendly_id: wreath_design__styrofoam +- id: 1627 + name: Wire + friendly_id: wreath_design__wire +- id: 1628 + name: Wood + friendly_id: wreath_design__wood +- id: 1629 + name: Amigurumi making + friendly_id: fiber_art_project_type__amigurumi_making +- id: 1630 + name: Crocheting + friendly_id: fiber_art_project_type__crocheting +- id: 1631 + name: Embroidery + friendly_id: fiber_art_project_type__embroidery +- id: 1632 + name: Knitting + friendly_id: fiber_art_project_type__knitting +- id: 1633 + name: Macrame + friendly_id: fiber_art_project_type__macrame +- id: 1634 + name: Rug making + friendly_id: fiber_art_project_type__rug_making +- id: 1635 + name: Tapestry + friendly_id: fiber_art_project_type__tapestry +- id: 1636 + name: Weaving + friendly_id: fiber_art_project_type__weaving +- id: 1637 + name: Other + friendly_id: fiber_art_project_type__other +- id: 1638 + name: Alnico + friendly_id: magnet_type__alnico +- id: 1639 + name: Beryllium + friendly_id: magnet_type__beryllium +- id: 1640 + name: Ceramic + friendly_id: magnet_type__ceramic +- id: 1641 + name: Cobalt + friendly_id: magnet_type__cobalt +- id: 1642 + name: Ferrite + friendly_id: magnet_type__ferrite +- id: 1643 + name: Mylar + friendly_id: magnet_type__mylar +- id: 1644 + name: NdFeB + friendly_id: magnet_type__ndfeb +- id: 1645 + name: Neo titanium + friendly_id: magnet_type__neo_titanium +- id: 1646 + name: Neodymium + friendly_id: magnet_type__neodymium +- id: 1647 + name: Rubidium + friendly_id: magnet_type__rubidium +- id: 1648 + name: Strontium + friendly_id: magnet_type__strontium +- id: 1649 + name: Titanium + friendly_id: magnet_type__titanium +- id: 1650 + name: Arrow + friendly_id: shape__arrow +- id: 1651 + name: Cylindrical + friendly_id: shape__cylindrical +- id: 1652 + name: Cushion making + friendly_id: knitting_padding_project_type__cushion_making +- id: 1653 + name: Pillow making + friendly_id: knitting_padding_project_type__pillow_making +- id: 1654 + name: Quilting + friendly_id: knitting_padding_project_type__quilting +- id: 1655 + name: Sewing project + friendly_id: knitting_padding_project_type__sewing_project +- id: 1656 + name: Stuffed toy making + friendly_id: knitting_padding_project_type__stuffed_toy_making +- id: 1657 + name: Upholstery crafting + friendly_id: knitting_padding_project_type__upholstery_crafting +- id: 1658 + name: Other + friendly_id: knitting_padding_project_type__other +- id: 1659 + name: Fingering + friendly_id: yarn_weight_category__fingering +- id: 1660 + name: Sock + friendly_id: yarn_weight_category__sock +- id: 1661 + name: Babies + friendly_id: yarn_weight_category__babies +- id: 1662 + name: Sports + friendly_id: yarn_weight_category__sports +- id: 1663 + name: DK + friendly_id: yarn_weight_category__dk +- id: 1664 + name: Worsted + friendly_id: yarn_weight_category__worsted +- id: 1665 + name: Aran + friendly_id: yarn_weight_category__aran +- id: 1666 + name: Afghan + friendly_id: yarn_weight_category__afghan +- id: 1667 + name: Chunky + friendly_id: yarn_weight_category__chunky +- id: 1668 + name: Super bulky + friendly_id: yarn_weight_category__super_bulky +- id: 1669 + name: Craft + friendly_id: yarn_weight_category__craft +- id: 1670 + name: Rug + friendly_id: yarn_weight_category__rug +- id: 1671 + name: Jumbo + friendly_id: yarn_weight_category__jumbo +- id: 1672 + name: Roving + friendly_id: yarn_weight_category__roving +- id: 1673 + name: Macramé + friendly_id: yarn_weight_category__macram +- id: 1674 + name: Felting + friendly_id: yarn_weight_category__felting +- id: 1675 + name: Aluminum + friendly_id: wire_rope_material__aluminum +- id: 1676 + name: Brass + friendly_id: wire_rope_material__brass +- id: 1677 + name: Copper + friendly_id: wire_rope_material__copper +- id: 1678 + name: Galvanized steel + friendly_id: wire_rope_material__galvanized_steel +- id: 1679 + name: Gold + friendly_id: wire_rope_material__gold +- id: 1680 + name: Nickel + friendly_id: wire_rope_material__nickel +- id: 1681 + name: Nickel-plated + friendly_id: wire_rope_material__nickel_plated +- id: 1682 + name: Nylon + friendly_id: wire_rope_material__nylon +- id: 1683 + name: Polyester + friendly_id: wire_rope_material__polyester +- id: 1684 + name: Polypropylene + friendly_id: wire_rope_material__polypropylene +- id: 1685 + name: Silver + friendly_id: wire_rope_material__silver +- id: 1686 + name: Silver-plated + friendly_id: wire_rope_material__silver_plated +- id: 1687 + name: Stainless steel + friendly_id: wire_rope_material__stainless_steel +- id: 1688 + name: Steel + friendly_id: wire_rope_material__steel +- id: 1689 + name: Vinyl + friendly_id: wire_rope_material__vinyl +- id: 1690 + name: Zinc + friendly_id: wire_rope_material__zinc +- id: 1691 + name: Beading project + friendly_id: jewelry_project_type__beading_project +- id: 1692 + name: Bracelet making + friendly_id: jewelry_project_type__bracelet_making +- id: 1693 + name: Earring making + friendly_id: jewelry_project_type__earring_making +- id: 1694 + name: Jewelry making + friendly_id: jewelry_project_type__jewelry_making +- id: 1695 + name: Necklace making + friendly_id: jewelry_project_type__necklace_making +- id: 1696 + name: Pendant making + friendly_id: jewelry_project_type__pendant_making +- id: 1697 + name: Wire sculpting + friendly_id: jewelry_project_type__wire_sculpting +- id: 1698 + name: Wire wrapping + friendly_id: jewelry_project_type__wire_wrapping +- id: 1699 + name: Wirework + friendly_id: jewelry_project_type__wirework +- id: 1700 + name: Other + friendly_id: jewelry_project_type__other +- id: 1701 + name: Abstract + friendly_id: applique_patch_shape__abstract +- id: 1702 + name: Animal + friendly_id: applique_patch_shape__animal +- id: 1703 + name: Figure + friendly_id: applique_patch_shape__figure +- id: 1704 + name: Floral + friendly_id: applique_patch_shape__floral +- id: 1705 + name: Geometric + friendly_id: applique_patch_shape__geometric +- id: 1706 + name: Letter + friendly_id: applique_patch_shape__letter +- id: 1707 + name: Number + friendly_id: applique_patch_shape__number +- id: 1708 + name: Sport accessory + friendly_id: applique_patch_shape__sport_accessory +- id: 1709 + name: Symbol + friendly_id: applique_patch_shape__symbol +- id: 1710 + name: Bamboo + friendly_id: embellishment_trim_material__bamboo +- id: 1711 + name: Cotton + friendly_id: embellishment_trim_material__cotton +- id: 1712 + name: Linen + friendly_id: embellishment_trim_material__linen +- id: 1713 + name: Nylon + friendly_id: embellishment_trim_material__nylon +- id: 1714 + name: Polyester + friendly_id: embellishment_trim_material__polyester +- id: 1715 + name: Silk + friendly_id: embellishment_trim_material__silk +- id: 1716 + name: Viscose + friendly_id: embellishment_trim_material__viscose +- id: 1717 + name: Wool + friendly_id: embellishment_trim_material__wool +- id: 1718 + name: Acrylic + friendly_id: embellishment_trim_material__acrylic +- id: 1719 + name: Ceramic + friendly_id: embellishment_trim_material__ceramic +- id: 1720 + name: Copper + friendly_id: embellishment_trim_material__copper +- id: 1721 + name: Coral + friendly_id: embellishment_trim_material__coral +- id: 1722 + name: Cork + friendly_id: embellishment_trim_material__cork +- id: 1723 + name: Felt + friendly_id: embellishment_trim_material__felt +- id: 1724 + name: Glass + friendly_id: embellishment_trim_material__glass +- id: 1725 + name: Gold + friendly_id: embellishment_trim_material__gold +- id: 1726 + name: Metal + friendly_id: embellishment_trim_material__metal +- id: 1727 + name: Plastic + friendly_id: embellishment_trim_material__plastic +- id: 1728 + name: Polypropylene (PP) + friendly_id: embellishment_trim_material__polypropylene_pp +- id: 1729 + name: Resin + friendly_id: embellishment_trim_material__resin +- id: 1730 + name: Rose gold + friendly_id: embellishment_trim_material__rose_gold +- id: 1731 + name: Silver + friendly_id: embellishment_trim_material__silver +- id: 1732 + name: Stone + friendly_id: embellishment_trim_material__stone +- id: 1733 + name: Wax + friendly_id: embellishment_trim_material__wax +- id: 1734 + name: Wood + friendly_id: embellishment_trim_material__wood +- id: 1735 + name: Satin + friendly_id: embellishment_trim_material__satin +- id: 1736 + name: Velvet + friendly_id: embellishment_trim_material__velvet +- id: 1737 + name: Paper + friendly_id: embellishment_trim_material__paper +- id: 1738 + name: Vinyl + friendly_id: embellishment_trim_material__vinyl +- id: 1739 + name: Rubber + friendly_id: embellishment_trim_material__rubber +- id: 1740 + name: Spandex + friendly_id: embellishment_trim_material__spandex +- id: 1741 + name: Crystal + friendly_id: embellishment_trim_material__crystal +- id: 1742 + name: Gemstone + friendly_id: embellishment_trim_material__gemstone +- id: 1743 + name: Pearl + friendly_id: embellishment_trim_material__pearl +- id: 1744 + name: Sequins + friendly_id: embellishment_trim_material__sequins +- id: 1745 + name: Other + friendly_id: embellishment_trim_material__other +- id: 1746 + name: Crocheting + friendly_id: textile_craft_project_type__crocheting +- id: 1747 + name: Cross-stitching + friendly_id: textile_craft_project_type__cross_stitching +- id: 1748 + name: Embellishments + friendly_id: textile_craft_project_type__embellishments +- id: 1749 + name: Hand embroidery + friendly_id: textile_craft_project_type__hand_embroidery +- id: 1750 + name: Knitting + friendly_id: textile_craft_project_type__knitting +- id: 1751 + name: Quilting + friendly_id: textile_craft_project_type__quilting +- id: 1752 + name: Sewing project + friendly_id: textile_craft_project_type__sewing_project +- id: 1753 + name: Upholstery crafting + friendly_id: textile_craft_project_type__upholstery_crafting +- id: 1754 + name: Weaving + friendly_id: textile_craft_project_type__weaving +- id: 1755 + name: Other + friendly_id: textile_craft_project_type__other +- id: 1756 + name: Alphabet + friendly_id: theme__alphabet +- id: 1757 + name: Animals + friendly_id: theme__animals +- id: 1758 + name: Anime + friendly_id: theme__anime +- id: 1759 + name: Architecture + friendly_id: theme__architecture +- id: 1760 + name: Art + friendly_id: theme__art +- id: 1761 + name: Beach + friendly_id: theme__beach +- id: 1762 + name: Cars + friendly_id: theme__cars +- id: 1763 + name: Cartoons + friendly_id: theme__cartoons +- id: 1764 + name: Celebrities + friendly_id: theme__celebrities +- id: 1765 + name: City + friendly_id: theme__city +- id: 1766 + name: Comics + friendly_id: theme__comics +- id: 1767 + name: Ethnic + friendly_id: theme__ethnic +- id: 1768 + name: Fantasy + friendly_id: theme__fantasy +- id: 1769 + name: Fashion + friendly_id: theme__fashion +- id: 1770 + name: Floral + friendly_id: theme__floral +- id: 1771 + name: Food & drinks + friendly_id: theme__food_drinks +- id: 1772 + name: History + friendly_id: theme__history +- id: 1773 + name: Holidays + friendly_id: theme__holidays +- id: 1774 + name: Landmarks + friendly_id: theme__landmarks +- id: 1775 + name: Landscape + friendly_id: theme__landscape +- id: 1776 + name: Literature + friendly_id: theme__literature +- id: 1777 + name: Modern + friendly_id: theme__modern +- id: 1778 + name: Movies & TV + friendly_id: theme__movies_tv +- id: 1779 + name: Music + friendly_id: theme__music +- id: 1780 + name: Mythology + friendly_id: theme__mythology +- id: 1781 + name: Nature + friendly_id: theme__nature +- id: 1782 + name: Numbers + friendly_id: theme__numbers +- id: 1783 + name: Princesses + friendly_id: theme__princesses +- id: 1784 + name: Retro/Vintage + friendly_id: theme__retro_vintage +- id: 1785 + name: Romantic + friendly_id: theme__romantic +- id: 1786 + name: Sci-fi + friendly_id: theme__sci_fi +- id: 1787 + name: Science + friendly_id: theme__science +- id: 1788 + name: Sea/Ocean + friendly_id: theme__sea_ocean +- id: 1789 + name: Space + friendly_id: theme__space +- id: 1790 + name: Spirituality + friendly_id: theme__spirituality +- id: 1791 + name: Sports + friendly_id: theme__sports +- id: 1792 + name: Superheroes + friendly_id: theme__superheroes +- id: 1793 + name: Video games + friendly_id: theme__video_games +- id: 1794 + name: World map + friendly_id: theme__world_map +- id: 1795 + name: Other + friendly_id: theme__other +- id: 1796 + name: Hair pipe + friendly_id: bead_shape__hair_pipe +- id: 1797 + name: Heart + friendly_id: bead_shape__heart +- id: 1798 + name: Oval + friendly_id: bead_shape__oval +- id: 1799 + name: Round + friendly_id: bead_shape__round +- id: 1800 + name: Seed + friendly_id: bead_shape__seed +- id: 1801 + name: Square + friendly_id: bead_shape__square +- id: 1802 + name: Star + friendly_id: bead_shape__star +- id: 1803 + name: Tube + friendly_id: bead_shape__tube +- id: 1804 + name: Permanent + friendly_id: adhesive_type__permanent +- id: 1805 + name: Removable + friendly_id: adhesive_type__removable +- id: 1806 + name: Baby gender reveal + friendly_id: celebration_type__baby_gender_reveal +- id: 1807 + name: Baby shower + friendly_id: celebration_type__baby_shower +- id: 1808 + name: Birthday + friendly_id: celebration_type__birthday +- id: 1809 + name: Christmas + friendly_id: celebration_type__christmas +- id: 1810 + name: Easter + friendly_id: celebration_type__easter +- id: 1811 + name: Graduation + friendly_id: celebration_type__graduation +- id: 1812 + name: Halloween + friendly_id: celebration_type__halloween +- id: 1813 + name: Retirement + friendly_id: celebration_type__retirement +- id: 1814 + name: Summer + friendly_id: celebration_type__summer +- id: 1815 + name: Travel + friendly_id: celebration_type__travel +- id: 1816 + name: Valentine's day + friendly_id: celebration_type__valentines_day +- id: 1817 + name: Wedding + friendly_id: celebration_type__wedding +- id: 1818 + name: Costume making + friendly_id: craft_project_type__costume_making +- id: 1819 + name: Floral arrangements + friendly_id: craft_project_type__floral_arrangements +- id: 1820 + name: Hair accessory making + friendly_id: craft_project_type__hair_accessory_making +- id: 1821 + name: Home decor + friendly_id: craft_project_type__home_decor +- id: 1822 + name: Jewelry making + friendly_id: craft_project_type__jewelry_making +- id: 1823 + name: Mask making + friendly_id: craft_project_type__mask_making +- id: 1824 + name: Millinery + friendly_id: craft_project_type__millinery +- id: 1825 + name: Scrapbooking + friendly_id: craft_project_type__scrapbooking +- id: 1826 + name: Other + friendly_id: craft_project_type__other +- id: 1827 + name: Heart + friendly_id: stone_shape__heart +- id: 1828 + name: Hexagonal + friendly_id: stone_shape__hexagonal +- id: 1829 + name: Marquise + friendly_id: stone_shape__marquise +- id: 1830 + name: Oval + friendly_id: stone_shape__oval +- id: 1831 + name: Pear + friendly_id: stone_shape__pear +- id: 1832 + name: Rectangular + friendly_id: stone_shape__rectangular +- id: 1833 + name: Round + friendly_id: stone_shape__round +- id: 1834 + name: Square + friendly_id: stone_shape__square +- id: 1835 + name: Teardrop + friendly_id: stone_shape__teardrop +- id: 1836 + name: Triangular + friendly_id: stone_shape__triangular +- id: 1837 + name: Cardmaking + friendly_id: craft_project_type__cardmaking +- id: 1838 + name: Clothing embellishments + friendly_id: craft_project_type__clothing_embellishments +- id: 1839 + name: Gift wrapping + friendly_id: craft_project_type__gift_wrapping +- id: 1840 + name: Sewing project + friendly_id: craft_project_type__sewing_project +- id: 1841 + name: DIY craft project + friendly_id: craft_project_type__diy_craft_project +- id: 1842 + name: Nail art + friendly_id: craft_project_type__nail_art +- id: 1843 + name: Party decorations + friendly_id: craft_project_type__party_decorations +- id: 1844 + name: Butterfly + friendly_id: sequin_glitter_shape__butterfly +- id: 1845 + name: Flower + friendly_id: sequin_glitter_shape__flower +- id: 1846 + name: Heart + friendly_id: sequin_glitter_shape__heart +- id: 1847 + name: Round + friendly_id: sequin_glitter_shape__round +- id: 1848 + name: Square + friendly_id: sequin_glitter_shape__square +- id: 1849 + name: Star + friendly_id: sequin_glitter_shape__star +- id: 1850 + name: Accessory making + friendly_id: labelling_project_type__accessory_making +- id: 1851 + name: Bag making + friendly_id: labelling_project_type__bag_making +- id: 1852 + name: Clothing making + friendly_id: labelling_project_type__clothing_making +- id: 1853 + name: Hand crafting + friendly_id: labelling_project_type__hand_crafting +- id: 1854 + name: Home textile crafting + friendly_id: labelling_project_type__home_textile_crafting +- id: 1855 + name: Personalized gift making + friendly_id: labelling_project_type__personalized_gift_making +- id: 1856 + name: Quilting + friendly_id: labelling_project_type__quilting +- id: 1857 + name: Other + friendly_id: labelling_project_type__other +- id: 1858 + name: Cardmaking + friendly_id: embossing_project_type__cardmaking +- id: 1859 + name: DIY craft project + friendly_id: embossing_project_type__diy_craft_project +- id: 1860 + name: Heat embossing + friendly_id: embossing_project_type__heat_embossing +- id: 1861 + name: Mixed media project + friendly_id: embossing_project_type__mixed_media_project +- id: 1862 + name: Paper crafting + friendly_id: embossing_project_type__paper_crafting +- id: 1863 + name: Rubber stamping + friendly_id: embossing_project_type__rubber_stamping +- id: 1864 + name: Scrapbooking + friendly_id: embossing_project_type__scrapbooking +- id: 1865 + name: Other + friendly_id: embossing_project_type__other +- id: 1866 + name: Bag making + friendly_id: knitting_padding_project_type__bag_making +- id: 1867 + name: Bookbinding + friendly_id: knitting_padding_project_type__bookbinding +- id: 1868 + name: Clothing embellishments + friendly_id: knitting_padding_project_type__clothing_embellishments +- id: 1869 + name: DIY craft project + friendly_id: knitting_padding_project_type__diy_craft_project +- id: 1870 + name: Home decor + friendly_id: knitting_padding_project_type__home_decor +- id: 1871 + name: Jewelry making + friendly_id: knitting_padding_project_type__jewelry_making +- id: 1872 + name: Leathercraft + friendly_id: knitting_padding_project_type__leathercraft +- id: 1873 + name: Sensory item crafting + friendly_id: knitting_padding_project_type__sensory_item_crafting +- id: 1874 + name: Weighted blanket crafting + friendly_id: knitting_padding_project_type__weighted_blanket_crafting +- id: 1875 + name: Bolster + friendly_id: pillow_shape__bolster +- id: 1876 + name: Lumbar + friendly_id: pillow_shape__lumbar +- id: 1877 + name: Neck roll + friendly_id: pillow_shape__neck_roll +- id: 1878 + name: Round + friendly_id: pillow_shape__round +- id: 1879 + name: Square + friendly_id: pillow_shape__square +- id: 1880 + name: Art project + friendly_id: craft_sculpting_project_type__art_project +- id: 1881 + name: Casting + friendly_id: craft_sculpting_project_type__casting +- id: 1882 + name: Mask making + friendly_id: craft_sculpting_project_type__mask_making +- id: 1883 + name: Modeling + friendly_id: craft_sculpting_project_type__modeling +- id: 1884 + name: Mold making + friendly_id: craft_sculpting_project_type__mold_making +- id: 1885 + name: Object decoration + friendly_id: craft_sculpting_project_type__object_decoration +- id: 1886 + name: Piñata making + friendly_id: craft_sculpting_project_type__piata_making +- id: 1887 + name: Sculpting + friendly_id: craft_sculpting_project_type__sculpting +- id: 1888 + name: Other + friendly_id: craft_sculpting_project_type__other +- id: 1889 + name: Distressed + friendly_id: leather_vinyl_texture__distressed +- id: 1890 + name: Embossed + friendly_id: leather_vinyl_texture__embossed +- id: 1891 + name: Grainy + friendly_id: leather_vinyl_texture__grainy +- id: 1892 + name: Metallic + friendly_id: leather_vinyl_texture__metallic +- id: 1893 + name: Smooth + friendly_id: leather_vinyl_texture__smooth +- id: 1894 + name: Smooth + friendly_id: clay_slip_texture__smooth +- id: 1895 + name: Medium + friendly_id: clay_slip_texture__medium +- id: 1896 + name: Coarse + friendly_id: clay_slip_texture__coarse +- id: 1897 + name: Slow-drying + friendly_id: drying_speed__slow_drying +- id: 1898 + name: Regular + friendly_id: drying_speed__regular +- id: 1899 + name: Fast-drying + friendly_id: drying_speed__fast_drying +- id: 1900 + name: Aquatic + friendly_id: fragrance__aquatic +- id: 1901 + name: Cherry + friendly_id: fragrance__cherry +- id: 1902 + name: Cinnamon + friendly_id: fragrance__cinnamon +- id: 1903 + name: Citrus + friendly_id: fragrance__citrus +- id: 1904 + name: Eucalyptus + friendly_id: fragrance__eucalyptus +- id: 1905 + name: Floral + friendly_id: fragrance__floral +- id: 1906 + name: Fresh linen + friendly_id: fragrance__fresh_linen +- id: 1907 + name: Fruity + friendly_id: fragrance__fruity +- id: 1908 + name: Herbal + friendly_id: fragrance__herbal +- id: 1909 + name: Jasmine + friendly_id: fragrance__jasmine +- id: 1910 + name: Lavender + friendly_id: fragrance__lavender +- id: 1911 + name: Ocean breeze + friendly_id: fragrance__ocean_breeze +- id: 1912 + name: Oriental + friendly_id: fragrance__oriental +- id: 1913 + name: Pine + friendly_id: fragrance__pine +- id: 1914 + name: Rose + friendly_id: fragrance__rose +- id: 1915 + name: Sandalwood + friendly_id: fragrance__sandalwood +- id: 1916 + name: Strawberry + friendly_id: fragrance__strawberry +- id: 1917 + name: Tea tree + friendly_id: fragrance__tea_tree +- id: 1918 + name: Vanilla + friendly_id: fragrance__vanilla +- id: 1919 + name: Woody + friendly_id: fragrance__woody +- id: 1920 + name: Unscented + friendly_id: fragrance__unscented +- id: 1921 + name: Other + friendly_id: fragrance__other +- id: 1922 + name: Aida cloth + friendly_id: canvas_material__aida_cloth +- id: 1923 + name: Cotton + friendly_id: canvas_material__cotton +- id: 1924 + name: Linen + friendly_id: canvas_material__linen +- id: 1925 + name: Plastic + friendly_id: canvas_material__plastic +- id: 1926 + name: Synthetic + friendly_id: canvas_material__synthetic +- id: 1927 + name: Primed + friendly_id: canvas_finish__primed +- id: 1928 + name: Unprimed + friendly_id: canvas_finish__unprimed +- id: 1929 + name: Smooth + friendly_id: canvas_texture__smooth +- id: 1930 + name: Medium grain + friendly_id: canvas_texture__medium_grain +- id: 1931 + name: Heavy grain + friendly_id: canvas_texture__heavy_grain +- id: 1932 + name: Cotton + friendly_id: painting_canvas_material__cotton +- id: 1933 + name: Linen + friendly_id: painting_canvas_material__linen +- id: 1934 + name: Synthetic + friendly_id: painting_canvas_material__synthetic +- id: 1935 + name: Machine washable + friendly_id: care_instructions__machine_washable +- id: 1936 + name: Dry clean only + friendly_id: care_instructions__dry_clean_only +- id: 1937 + name: Hand wash + friendly_id: care_instructions__hand_wash +- id: 1938 + name: Ironing instructions + friendly_id: care_instructions__ironing_instructions +- id: 1939 + name: Woven + friendly_id: fabric_design__woven +- id: 1940 + name: Non-woven + friendly_id: fabric_design__non_woven +- id: 1941 + name: Inkjet + friendly_id: compatible_printer__inkjet +- id: 1942 + name: Laser + friendly_id: compatible_printer__laser +- id: 1943 + name: Adjustable bias binder + friendly_id: sewing_foot_type__adjustable_bias_binder +- id: 1944 + name: Beading + friendly_id: sewing_foot_type__beading +- id: 1945 + name: Bias binder + friendly_id: sewing_foot_type__bias_binder +- id: 1946 + name: Binder + friendly_id: sewing_foot_type__binder +- id: 1947 + name: Blind hem + friendly_id: sewing_foot_type__blind_hem +- id: 1948 + name: Braiding + friendly_id: sewing_foot_type__braiding +- id: 1949 + name: Buttonhole + friendly_id: sewing_foot_type__buttonhole +- id: 1950 + name: Round attachment + friendly_id: sewing_foot_type__round_attachment +- id: 1951 + name: Clear + friendly_id: sewing_foot_type__clear +- id: 1952 + name: Cording + friendly_id: sewing_foot_type__cording +- id: 1953 + name: Couching + friendly_id: sewing_foot_type__couching +- id: 1954 + name: Darning + friendly_id: sewing_foot_type__darning +- id: 1955 + name: Edge stitching + friendly_id: sewing_foot_type__edge_stitching +- id: 1956 + name: Free motion + friendly_id: sewing_foot_type__free_motion +- id: 1957 + name: Fringe + friendly_id: sewing_foot_type__fringe +- id: 1958 + name: Gathering + friendly_id: sewing_foot_type__gathering +- id: 1959 + name: Hemmer + friendly_id: sewing_foot_type__hemmer +- id: 1960 + name: Invisible zipper + friendly_id: sewing_foot_type__invisible_zipper +- id: 1961 + name: Non-stick + friendly_id: sewing_foot_type__non_stick +- id: 1962 + name: Open toe + friendly_id: sewing_foot_type__open_toe +- id: 1963 + name: Overcasting + friendly_id: sewing_foot_type__overcasting +- id: 1964 + name: Pearl + friendly_id: sewing_foot_type__pearl +- id: 1965 + name: Pintuck + friendly_id: sewing_foot_type__pintuck +- id: 1966 + name: Piping + friendly_id: sewing_foot_type__piping +- id: 1967 + name: Quilting + friendly_id: sewing_foot_type__quilting +- id: 1968 + name: Rolled hem + friendly_id: sewing_foot_type__rolled_hem +- id: 1969 + name: Roller + friendly_id: sewing_foot_type__roller +- id: 1970 + name: Ruffler + friendly_id: sewing_foot_type__ruffler +- id: 1971 + name: Satin stitch + friendly_id: sewing_foot_type__satin_stitch +- id: 1972 + name: Sequin + friendly_id: sewing_foot_type__sequin +- id: 1973 + name: Shirring + friendly_id: sewing_foot_type__shirring +- id: 1974 + name: Smocking + friendly_id: sewing_foot_type__smocking +- id: 1975 + name: Taping + friendly_id: sewing_foot_type__taping +- id: 1976 + name: Teflon + friendly_id: sewing_foot_type__teflon +- id: 1977 + name: Topstitch + friendly_id: sewing_foot_type__topstitch +- id: 1978 + name: Tucks + friendly_id: sewing_foot_type__tucks +- id: 1979 + name: Walking + friendly_id: sewing_foot_type__walking +- id: 1980 + name: Welt + friendly_id: sewing_foot_type__welt +- id: 1981 + name: Zigzag + friendly_id: sewing_foot_type__zigzag +- id: 1982 + name: Zipper + friendly_id: sewing_foot_type__zipper +- id: 1983 + name: Other + friendly_id: sewing_foot_type__other +- id: 1984 + name: Bobbin + friendly_id: sewing_machine_part_category__bobbin +- id: 1985 + name: Bobbin case + friendly_id: sewing_machine_part_category__bobbin_case +- id: 1986 + name: Feed dog + friendly_id: sewing_machine_part_category__feed_dog +- id: 1987 + name: Foot control pedal + friendly_id: sewing_machine_part_category__foot_control_pedal +- id: 1988 + name: Handwheel + friendly_id: sewing_machine_part_category__handwheel +- id: 1989 + name: Light bulb + friendly_id: sewing_machine_part_category__light_bulb +- id: 1990 + name: Motor belt + friendly_id: sewing_machine_part_category__motor_belt +- id: 1991 + name: Needle plate + friendly_id: sewing_machine_part_category__needle_plate +- id: 1992 + name: Needle set + friendly_id: sewing_machine_part_category__needle_set +- id: 1993 + name: Needle threader + friendly_id: sewing_machine_part_category__needle_threader +- id: 1994 + name: Presser foot + friendly_id: sewing_machine_part_category__presser_foot +- id: 1995 + name: Presser foot holder + friendly_id: sewing_machine_part_category__presser_foot_holder +- id: 1996 + name: Reverse lever + friendly_id: sewing_machine_part_category__reverse_lever +- id: 1997 + name: Stitch selector/dial + friendly_id: sewing_machine_part_category__stitch_selector_dial +- id: 1998 + name: Tension assembly + friendly_id: sewing_machine_part_category__tension_assembly +- id: 1999 + name: Thread cutter + friendly_id: sewing_machine_part_category__thread_cutter +- id: 2000 + name: Thread guides + friendly_id: sewing_machine_part_category__thread_guides +- id: 2001 + name: Thread spool pin + friendly_id: sewing_machine_part_category__thread_spool_pin +- id: 2002 + name: Thread stand + friendly_id: sewing_machine_part_category__thread_stand +- id: 2003 + name: Thread take-up lever + friendly_id: sewing_machine_part_category__thread_take_up_lever +- id: 2004 + name: Thread tension spring + friendly_id: sewing_machine_part_category__thread_tension_spring +- id: 2005 + name: Other + friendly_id: sewing_machine_part_category__other +- id: 2006 + name: Travel size + friendly_id: accessory_size__travel_size +- id: 2007 + name: Acrylic + friendly_id: art_crafting_tool_material__acrylic +- id: 2008 + name: Aluminum + friendly_id: art_crafting_tool_material__aluminum +- id: 2009 + name: Bamboo + friendly_id: art_crafting_tool_material__bamboo +- id: 2010 + name: Ceramic + friendly_id: art_crafting_tool_material__ceramic +- id: 2011 + name: Copper + friendly_id: art_crafting_tool_material__copper +- id: 2012 + name: Cork + friendly_id: art_crafting_tool_material__cork +- id: 2013 + name: Ethylene vinyl acetate (EVA) + friendly_id: art_crafting_tool_material__ethylene_vinyl_acetate_eva +- id: 2014 + name: Faux leather + friendly_id: art_crafting_tool_material__faux_leather +- id: 2015 + name: Glass + friendly_id: art_crafting_tool_material__glass +- id: 2016 + name: Leather + friendly_id: art_crafting_tool_material__leather +- id: 2017 + name: Metal + friendly_id: art_crafting_tool_material__metal +- id: 2018 + name: Nickel-plated + friendly_id: art_crafting_tool_material__nickel_plated +- id: 2019 + name: Plastic + friendly_id: art_crafting_tool_material__plastic +- id: 2020 + name: Polyvinyl chloride (PVC) + friendly_id: art_crafting_tool_material__polyvinyl_chloride_pvc +- id: 2021 + name: Porcelain + friendly_id: art_crafting_tool_material__porcelain +- id: 2022 + name: Rubber + friendly_id: art_crafting_tool_material__rubber +- id: 2023 + name: Silicone + friendly_id: art_crafting_tool_material__silicone +- id: 2024 + name: Stainless steel + friendly_id: art_crafting_tool_material__stainless_steel +- id: 2025 + name: Steel + friendly_id: art_crafting_tool_material__steel +- id: 2026 + name: Wood + friendly_id: art_crafting_tool_material__wood +- id: 2027 + name: Wool + friendly_id: art_crafting_tool_material__wool +- id: 2028 + name: Other + friendly_id: art_crafting_tool_material__other +- id: 2029 + name: Diamond + friendly_id: shape__diamond +- id: 2030 + name: Flower + friendly_id: shape__flower +- id: 2031 + name: Hexagonal + friendly_id: shape__hexagonal +- id: 2032 + name: Star + friendly_id: shape__star +- id: 2033 + name: Fine + friendly_id: wire_thickness__fine +- id: 2034 + name: Medium + friendly_id: wire_thickness__medium +- id: 2035 + name: Thick + friendly_id: wire_thickness__thick +- id: 2036 + name: Angular + friendly_id: palette_knife_shape__angular +- id: 2037 + name: Diamond + friendly_id: palette_knife_shape__diamond +- id: 2038 + name: Offset + friendly_id: palette_knife_shape__offset +- id: 2039 + name: Pointed + friendly_id: palette_knife_shape__pointed +- id: 2040 + name: Round + friendly_id: palette_knife_shape__round +- id: 2041 + name: Spatula + friendly_id: palette_knife_shape__spatula +- id: 2042 + name: Straight + friendly_id: palette_knife_shape__straight +- id: 2043 + name: Trowel + friendly_id: palette_knife_shape__trowel +- id: 2044 + name: Foldable + friendly_id: palette_design__foldable +- id: 2045 + name: Thumb-hole + friendly_id: palette_design__thumb_hole +- id: 2046 + name: Kidney-shaped + friendly_id: shape__kidney_shaped +- id: 2047 + name: Aluminum + friendly_id: blade_material__aluminum +- id: 2048 + name: Carbide + friendly_id: blade_material__carbide +- id: 2049 + name: Carbon fiber + friendly_id: blade_material__carbon_fiber +- id: 2050 + name: Carbon steel + friendly_id: blade_material__carbon_steel +- id: 2051 + name: Cast iron + friendly_id: blade_material__cast_iron +- id: 2052 + name: Ceramic + friendly_id: blade_material__ceramic +- id: 2053 + name: Damascus steel + friendly_id: blade_material__damascus_steel +- id: 2054 + name: Diamond + friendly_id: blade_material__diamond +- id: 2055 + name: Fiberglass + friendly_id: blade_material__fiberglass +- id: 2056 + name: G-10 + friendly_id: blade_material__g_10 +- id: 2057 + name: High-speed steel + friendly_id: blade_material__high_speed_steel +- id: 2058 + name: Iron + friendly_id: blade_material__iron +- id: 2059 + name: Metal + friendly_id: blade_material__metal +- id: 2060 + name: Plastic + friendly_id: blade_material__plastic +- id: 2061 + name: Polyvinyl chloride (PVC) + friendly_id: blade_material__polyvinyl_chloride_pvc +- id: 2062 + name: Silicone + friendly_id: blade_material__silicone +- id: 2063 + name: Stainless steel + friendly_id: blade_material__stainless_steel +- id: 2064 + name: Steel + friendly_id: blade_material__steel +- id: 2065 + name: Titanium + friendly_id: blade_material__titanium +- id: 2066 + name: VG-10 + friendly_id: blade_material__vg_10 +- id: 2067 + name: Wood + friendly_id: blade_material__wood +- id: 2068 + name: Aluminum + friendly_id: handle_material__aluminum +- id: 2069 + name: Bamboo + friendly_id: handle_material__bamboo +- id: 2070 + name: Beryllium + friendly_id: handle_material__beryllium +- id: 2071 + name: Brass + friendly_id: handle_material__brass +- id: 2072 + name: Bronze + friendly_id: handle_material__bronze +- id: 2073 + name: Carbide + friendly_id: handle_material__carbide +- id: 2074 + name: Carbon steel + friendly_id: handle_material__carbon_steel +- id: 2075 + name: Ceramic + friendly_id: handle_material__ceramic +- id: 2076 + name: Copper + friendly_id: handle_material__copper +- id: 2077 + name: Cork + friendly_id: handle_material__cork +- id: 2078 + name: Duroplast + friendly_id: handle_material__duroplast +- id: 2079 + name: Ethylene vinyl acetate (EVA) + friendly_id: handle_material__ethylene_vinyl_acetate_eva +- id: 2080 + name: Fiberglass + friendly_id: handle_material__fiberglass +- id: 2081 + name: G-10 + friendly_id: handle_material__g_10 +- id: 2082 + name: Galvanized steel + friendly_id: handle_material__galvanized_steel +- id: 2083 + name: Graphite + friendly_id: handle_material__graphite +- id: 2084 + name: Iron + friendly_id: handle_material__iron +- id: 2085 + name: Leather + friendly_id: handle_material__leather +- id: 2086 + name: Metal + friendly_id: handle_material__metal +- id: 2087 + name: Nylon + friendly_id: handle_material__nylon +- id: 2088 + name: Plastic + friendly_id: handle_material__plastic +- id: 2089 + name: Polyvinyl chloride (PVC) + friendly_id: handle_material__polyvinyl_chloride_pvc +- id: 2090 + name: Rubber + friendly_id: handle_material__rubber +- id: 2091 + name: Silicone + friendly_id: handle_material__silicone +- id: 2092 + name: Stainless steel + friendly_id: handle_material__stainless_steel +- id: 2093 + name: Synthetic + friendly_id: handle_material__synthetic +- id: 2094 + name: Teflon + friendly_id: handle_material__teflon +- id: 2095 + name: Thermoplastic elastomer (TPE) + friendly_id: handle_material__thermoplastic_elastomer_tpe +- id: 2096 + name: Titanium + friendly_id: handle_material__titanium +- id: 2097 + name: Wood + friendly_id: handle_material__wood +- id: 2098 + name: Other + friendly_id: handle_material__other +- id: 2099 + name: Straight + friendly_id: scissor_blade_type__straight +- id: 2100 + name: Micro-tip + friendly_id: scissor_blade_type__micro_tip +- id: 2101 + name: Curved + friendly_id: scissor_blade_type__curved +- id: 2102 + name: Serrated + friendly_id: scissor_blade_type__serrated +- id: 2103 + name: Scallop + friendly_id: scissor_blade_type__scallop +- id: 2104 + name: Pinking + friendly_id: scissor_blade_type__pinking +- id: 2105 + name: Precision + friendly_id: craft_knife_design__precision +- id: 2106 + name: Snap-off + friendly_id: craft_knife_design__snap_off +- id: 2107 + name: Straight + friendly_id: craft_knife_design__straight +- id: 2108 + name: Swivel + friendly_id: craft_knife_design__swivel +- id: 2109 + name: '0' + friendly_id: brush_size__0 +- id: 2110 + name: '1' + friendly_id: brush_size__1 +- id: 2111 + name: '2' + friendly_id: brush_size__2 +- id: 2112 + name: '4' + friendly_id: brush_size__4 +- id: 2113 + name: '6' + friendly_id: brush_size__6 +- id: 2114 + name: '8' + friendly_id: brush_size__8 +- id: 2115 + name: '10' + friendly_id: brush_size__10 +- id: 2116 + name: '12' + friendly_id: brush_size__12 +- id: 2117 + name: '14' + friendly_id: brush_size__14 +- id: 2118 + name: '16' + friendly_id: brush_size__16 +- id: 2119 + name: '18' + friendly_id: brush_size__18 +- id: 2120 + name: '20' + friendly_id: brush_size__20 +- id: 2121 + name: '24' + friendly_id: brush_size__24 +- id: 2122 + name: Other + friendly_id: brush_size__other +- id: 2123 + name: Ink application + friendly_id: ink_application_technique__ink_application +- id: 2124 + name: Screen printing + friendly_id: ink_application_technique__screen_printing +- id: 2125 + name: Stenciling + friendly_id: ink_application_technique__stenciling +- id: 2126 + name: Paper crafting + friendly_id: craft_project_type__paper_crafting +- id: 2127 + name: Animal + friendly_id: decorative_stamp_design__animal +- id: 2128 + name: Butterflies + friendly_id: decorative_stamp_design__butterflies +- id: 2129 + name: Damask + friendly_id: decorative_stamp_design__damask +- id: 2130 + name: Fairytale + friendly_id: decorative_stamp_design__fairytale +- id: 2131 + name: Feathers + friendly_id: decorative_stamp_design__feathers +- id: 2132 + name: Floral + friendly_id: decorative_stamp_design__floral +- id: 2133 + name: Fruits + friendly_id: decorative_stamp_design__fruits +- id: 2134 + name: Geometric + friendly_id: decorative_stamp_design__geometric +- id: 2135 + name: Hearts + friendly_id: decorative_stamp_design__hearts +- id: 2136 + name: Holidays + friendly_id: decorative_stamp_design__holidays +- id: 2137 + name: Landscape + friendly_id: decorative_stamp_design__landscape +- id: 2138 + name: Letters + friendly_id: decorative_stamp_design__letters +- id: 2139 + name: Mandala + friendly_id: decorative_stamp_design__mandala +- id: 2140 + name: Musical + friendly_id: decorative_stamp_design__musical +- id: 2141 + name: Nautical + friendly_id: decorative_stamp_design__nautical +- id: 2142 + name: Pattern + friendly_id: decorative_stamp_design__pattern +- id: 2143 + name: Quote + friendly_id: decorative_stamp_design__quote +- id: 2144 + name: Retro/Vintage + friendly_id: decorative_stamp_design__retro_vintage +- id: 2145 + name: Stars + friendly_id: decorative_stamp_design__stars +- id: 2146 + name: Travel + friendly_id: decorative_stamp_design__travel +- id: 2147 + name: Other + friendly_id: decorative_stamp_design__other +- id: 2148 + name: Round + friendly_id: squeegee_blade_design__round +- id: 2149 + name: Straight + friendly_id: squeegee_blade_design__straight +- id: 2150 + name: Animal + friendly_id: mold_cut_shape__animal +- id: 2151 + name: Bird + friendly_id: mold_cut_shape__bird +- id: 2152 + name: Butterfly + friendly_id: mold_cut_shape__butterfly +- id: 2153 + name: Cloud + friendly_id: mold_cut_shape__cloud +- id: 2154 + name: Fish + friendly_id: mold_cut_shape__fish +- id: 2155 + name: Floral + friendly_id: mold_cut_shape__floral +- id: 2156 + name: Fruit + friendly_id: mold_cut_shape__fruit +- id: 2157 + name: Geometric + friendly_id: mold_cut_shape__geometric +- id: 2158 + name: Heart + friendly_id: mold_cut_shape__heart +- id: 2159 + name: House + friendly_id: mold_cut_shape__house +- id: 2160 + name: Leaf + friendly_id: mold_cut_shape__leaf +- id: 2161 + name: Letter + friendly_id: mold_cut_shape__letter +- id: 2162 + name: Moon + friendly_id: mold_cut_shape__moon +- id: 2163 + name: Number + friendly_id: mold_cut_shape__number +- id: 2164 + name: Round + friendly_id: mold_cut_shape__round +- id: 2165 + name: Square + friendly_id: mold_cut_shape__square +- id: 2166 + name: Star + friendly_id: mold_cut_shape__star +- id: 2167 + name: Sun + friendly_id: mold_cut_shape__sun +- id: 2168 + name: Tree + friendly_id: mold_cut_shape__tree +- id: 2169 + name: Triangular + friendly_id: mold_cut_shape__triangular +- id: 2170 + name: Vegetable + friendly_id: mold_cut_shape__vegetable +- id: 2171 + name: Vehicle + friendly_id: mold_cut_shape__vehicle +- id: 2172 + name: Customizable + friendly_id: accessory_size__customizable +- id: 2173 + name: Standard + friendly_id: accessory_size__standard +- id: 2174 + name: High + friendly_id: temperature__high +- id: 2175 + name: Low + friendly_id: temperature__low +- id: 2176 + name: Dual + friendly_id: temperature__dual +- id: 2177 + name: LED + friendly_id: light_source__led +- id: 2178 + name: Comfort grip + friendly_id: hook_grip_design__comfort_grip +- id: 2179 + name: Ergonomic + friendly_id: hook_grip_design__ergonomic +- id: 2180 + name: Non-slip + friendly_id: hook_grip_design__non_slip +- id: 2181 + name: B + friendly_id: hook_size__b +- id: 2182 + name: G + friendly_id: hook_size__g +- id: 2183 + name: I + friendly_id: hook_size__i +- id: 2184 + name: J + friendly_id: hook_size__j +- id: 2185 + name: K + friendly_id: hook_size__k +- id: 2186 + name: Large + friendly_id: needle_eye_type__large +- id: 2187 + name: Small + friendly_id: needle_eye_type__small +- id: 2188 + name: Long + friendly_id: needle_eye_type__long +- id: 2189 + name: Split + friendly_id: needle_eye_type__split +- id: 2190 + name: '5' + friendly_id: needle_size__5 +- id: 2191 + name: '7' + friendly_id: needle_size__7 +- id: 2192 + name: '9' + friendly_id: needle_size__9 +- id: 2193 + name: '11' + friendly_id: needle_size__11 +- id: 2194 + name: '14' + friendly_id: needle_size__14 +- id: 2195 + name: '16' + friendly_id: needle_size__16 +- id: 2196 + name: 0/10 + friendly_id: needle_size__0_10 +- id: 2197 + name: 80/12 + friendly_id: needle_size__80_12 +- id: 2198 + name: 90/14 + friendly_id: needle_size__90_14 +- id: 2199 + name: 100/16 + friendly_id: needle_size__100_16 +- id: 2200 + name: 110/18 + friendly_id: needle_size__110_18 +- id: 2201 + name: '00' + friendly_id: pin_size__00 +- id: 2202 + name: '0' + friendly_id: pin_size__0 +- id: 2203 + name: '1' + friendly_id: pin_size__1 +- id: 2204 + name: '2' + friendly_id: pin_size__2 +- id: 2205 + name: '3' + friendly_id: pin_size__3 +- id: 2206 + name: '4' + friendly_id: pin_size__4 +- id: 2207 + name: Bamboo + friendly_id: brush_material__bamboo +- id: 2208 + name: Carbon + friendly_id: brush_material__carbon +- id: 2209 + name: Ceramic + friendly_id: brush_material__ceramic +- id: 2210 + name: Fleece + friendly_id: brush_material__fleece +- id: 2211 + name: Graphite + friendly_id: brush_material__graphite +- id: 2212 + name: Latex + friendly_id: brush_material__latex +- id: 2213 + name: Leather + friendly_id: brush_material__leather +- id: 2214 + name: Metal + friendly_id: brush_material__metal +- id: 2215 + name: Nylon + friendly_id: brush_material__nylon +- id: 2216 + name: Plastic + friendly_id: brush_material__plastic +- id: 2217 + name: Rubber + friendly_id: brush_material__rubber +- id: 2218 + name: Silicone + friendly_id: brush_material__silicone +- id: 2219 + name: Steel + friendly_id: brush_material__steel +- id: 2220 + name: Wood + friendly_id: brush_material__wood +- id: 2221 + name: PDF + friendly_id: pattern_distribution_format__pdf +- id: 2222 + name: Printed + friendly_id: pattern_distribution_format__printed +- id: 2223 + name: Online tutorials + friendly_id: pattern_distribution_format__online_tutorials +- id: 2224 + name: Beginner + friendly_id: skill_level__beginner +- id: 2225 + name: Intermediate + friendly_id: skill_level__intermediate +- id: 2226 + name: Advanced + friendly_id: skill_level__advanced +- id: 2227 + name: Paper + friendly_id: pattern_distribution_format__paper +- id: 2228 + name: Gem mint (GM) + friendly_id: condition__gem_mint_gm +- id: 2229 + name: Pristine (P) + friendly_id: condition__pristine_p +- id: 2230 + name: Mint (M) + friendly_id: condition__mint_m +- id: 2231 + name: Near mint-mint (NM-MT) + friendly_id: condition__near_mint_mint_nm_mt +- id: 2232 + name: Near mint (NM) + friendly_id: condition__near_mint_nm +- id: 2233 + name: Excellent-mint (EX-MT) + friendly_id: condition__excellent_mint_ex_mt +- id: 2234 + name: Excellent (EX) + friendly_id: condition__excellent_ex +- id: 2235 + name: Very good-excellent (VG-EX) + friendly_id: condition__very_good_excellent_vg_ex +- id: 2236 + name: Very good (VG) + friendly_id: condition__very_good_vg +- id: 2237 + name: Good (G) + friendly_id: condition__good_g +- id: 2238 + name: Fair (F) + friendly_id: condition__fair_f +- id: 2239 + name: Poor (P) + friendly_id: condition__poor_p +- id: 2240 + name: Uncirculated + friendly_id: condition__uncirculated +- id: 2241 + name: Circulated + friendly_id: condition__circulated +- id: 2242 + name: Graded + friendly_id: condition__graded +- id: 2243 + name: Art + friendly_id: autograph_type__art +- id: 2244 + name: Automotive + friendly_id: autograph_type__automotive +- id: 2245 + name: Baseball + friendly_id: autograph_type__baseball +- id: 2246 + name: Basketball + friendly_id: autograph_type__basketball +- id: 2247 + name: Boxing + friendly_id: autograph_type__boxing +- id: 2248 + name: Celebrities + friendly_id: autograph_type__celebrities +- id: 2249 + name: Football + friendly_id: autograph_type__football +- id: 2250 + name: History + friendly_id: autograph_type__history +- id: 2251 + name: Hockey + friendly_id: autograph_type__hockey +- id: 2252 + name: Literary + friendly_id: autograph_type__literary +- id: 2253 + name: Music + friendly_id: autograph_type__music +- id: 2254 + name: Political + friendly_id: autograph_type__political +- id: 2255 + name: Science + friendly_id: autograph_type__science +- id: 2256 + name: Soccer + friendly_id: autograph_type__soccer +- id: 2257 + name: Sports + friendly_id: autograph_type__sports +- id: 2258 + name: Tennis + friendly_id: autograph_type__tennis +- id: 2259 + name: Artwork + friendly_id: medium__artwork +- id: 2260 + name: Book + friendly_id: medium__book +- id: 2261 + name: CD + friendly_id: medium__cd +- id: 2262 + name: Memorabilia + friendly_id: medium__memorabilia +- id: 2263 + name: Photo + friendly_id: medium__photo +- id: 2264 + name: Poster + friendly_id: medium__poster +- id: 2265 + name: Sports equipment + friendly_id: medium__sports_equipment +- id: 2266 + name: Trading card + friendly_id: medium__trading_card +- id: 2267 + name: Vinyl record + friendly_id: medium__vinyl_record +- id: 2268 + name: Back + friendly_id: signature_placement__back +- id: 2269 + name: Cover + friendly_id: signature_placement__cover +- id: 2270 + name: Exterior + friendly_id: signature_placement__exterior +- id: 2271 + name: Front + friendly_id: signature_placement__front +- id: 2272 + name: Interior + friendly_id: signature_placement__interior +- id: 2273 + name: Multiple + friendly_id: signature_placement__multiple +- id: 2274 + name: Specific page + friendly_id: signature_placement__specific_page +- id: 2275 + name: Other + friendly_id: signature_placement__other +- id: 2276 + name: Afghanistan + friendly_id: country__afghanistan +- id: 2277 + name: Albania + friendly_id: country__albania +- id: 2278 + name: Algeria + friendly_id: country__algeria +- id: 2279 + name: Andorra + friendly_id: country__andorra +- id: 2280 + name: Angola + friendly_id: country__angola +- id: 2281 + name: Antigua and Barbuda + friendly_id: country__antigua_and_barbuda +- id: 2282 + name: Argentina + friendly_id: country__argentina +- id: 2283 + name: Armenia + friendly_id: country__armenia +- id: 2284 + name: Australia + friendly_id: country__australia +- id: 2285 + name: Austria + friendly_id: country__austria +- id: 2286 + name: Azerbaijan + friendly_id: country__azerbaijan +- id: 2287 + name: Bahamas + friendly_id: country__bahamas +- id: 2288 + name: Bahrain + friendly_id: country__bahrain +- id: 2289 + name: Bangladesh + friendly_id: country__bangladesh +- id: 2290 + name: Barbados + friendly_id: country__barbados +- id: 2291 + name: Belarus + friendly_id: country__belarus +- id: 2292 + name: Belgium + friendly_id: country__belgium +- id: 2293 + name: Belize + friendly_id: country__belize +- id: 2294 + name: Benin + friendly_id: country__benin +- id: 2295 + name: Bhutan + friendly_id: country__bhutan +- id: 2296 + name: Bolivia + friendly_id: country__bolivia +- id: 2297 + name: Bosnia and Herzegovina + friendly_id: country__bosnia_and_herzegovina +- id: 2298 + name: Botswana + friendly_id: country__botswana +- id: 2299 + name: Brazil + friendly_id: country__brazil +- id: 2300 + name: Brunei + friendly_id: country__brunei +- id: 2301 + name: Bulgaria + friendly_id: country__bulgaria +- id: 2302 + name: Burkina Faso + friendly_id: country__burkina_faso +- id: 2303 + name: Burundi + friendly_id: country__burundi +- id: 2304 + name: Cambodia + friendly_id: country__cambodia +- id: 2305 + name: Cameroon + friendly_id: country__cameroon +- id: 2306 + name: Canada + friendly_id: country__canada +- id: 2307 + name: Cape Verde + friendly_id: country__cape_verde +- id: 2308 + name: Central Africa + friendly_id: country__central_africa +- id: 2309 + name: Chad + friendly_id: country__chad +- id: 2310 + name: Chile + friendly_id: country__chile +- id: 2311 + name: China + friendly_id: country__china +- id: 2312 + name: Colombia + friendly_id: country__colombia +- id: 2313 + name: Comoros + friendly_id: country__comoros +- id: 2314 + name: Congo + friendly_id: country__congo +- id: 2315 + name: Congo (Dem. Republic) + friendly_id: country__congo_dem_republic +- id: 2316 + name: Costa Rica + friendly_id: country__costa_rica +- id: 2317 + name: Croatia + friendly_id: country__croatia +- id: 2318 + name: Cyprus + friendly_id: country__cyprus +- id: 2319 + name: Czechia + friendly_id: country__czechia +- id: 2320 + name: Denmark + friendly_id: country__denmark +- id: 2321 + name: Djibouti + friendly_id: country__djibouti +- id: 2322 + name: Dominica + friendly_id: country__dominica +- id: 2323 + name: Dominican Republic + friendly_id: country__dominican_republic +- id: 2324 + name: Ecuador + friendly_id: country__ecuador +- id: 2325 + name: Egypt + friendly_id: country__egypt +- id: 2326 + name: El Salvador + friendly_id: country__el_salvador +- id: 2327 + name: Equatorial Guinea + friendly_id: country__equatorial_guinea +- id: 2328 + name: Eritrea + friendly_id: country__eritrea +- id: 2329 + name: Estonia + friendly_id: country__estonia +- id: 2330 + name: Eswatini + friendly_id: country__eswatini +- id: 2331 + name: Ethiopia + friendly_id: country__ethiopia +- id: 2332 + name: Fiji + friendly_id: country__fiji +- id: 2333 + name: Finland + friendly_id: country__finland +- id: 2334 + name: France + friendly_id: country__france +- id: 2335 + name: Gabon + friendly_id: country__gabon +- id: 2336 + name: Gambia + friendly_id: country__gambia +- id: 2337 + name: Georgia + friendly_id: country__georgia +- id: 2338 + name: Germany + friendly_id: country__germany +- id: 2339 + name: Ghana + friendly_id: country__ghana +- id: 2340 + name: Greece + friendly_id: country__greece +- id: 2341 + name: Grenada + friendly_id: country__grenada +- id: 2342 + name: Guatemala + friendly_id: country__guatemala +- id: 2343 + name: Guinea + friendly_id: country__guinea +- id: 2344 + name: Guinea-Bissau + friendly_id: country__guinea_bissau +- id: 2345 + name: Guyana + friendly_id: country__guyana +- id: 2346 + name: Haiti + friendly_id: country__haiti +- id: 2347 + name: Honduras + friendly_id: country__honduras +- id: 2348 + name: Hungary + friendly_id: country__hungary +- id: 2349 + name: Iceland + friendly_id: country__iceland +- id: 2350 + name: India + friendly_id: country__india +- id: 2351 + name: Indonesia + friendly_id: country__indonesia +- id: 2352 + name: Iraq + friendly_id: country__iraq +- id: 2353 + name: Ireland + friendly_id: country__ireland +- id: 2354 + name: Israel + friendly_id: country__israel +- id: 2355 + name: Italy + friendly_id: country__italy +- id: 2356 + name: Ivory Coast + friendly_id: country__ivory_coast +- id: 2357 + name: Jamaica + friendly_id: country__jamaica +- id: 2358 + name: Japan + friendly_id: country__japan +- id: 2359 + name: Jordan + friendly_id: country__jordan +- id: 2360 + name: Kazakhstan + friendly_id: country__kazakhstan +- id: 2361 + name: Kenya + friendly_id: country__kenya +- id: 2362 + name: Kiribati + friendly_id: country__kiribati +- id: 2363 + name: Kuwait + friendly_id: country__kuwait +- id: 2364 + name: Kyrgyzstan + friendly_id: country__kyrgyzstan +- id: 2365 + name: Laos + friendly_id: country__laos +- id: 2366 + name: Latvia + friendly_id: country__latvia +- id: 2367 + name: Lebanon + friendly_id: country__lebanon +- id: 2368 + name: Lesotho + friendly_id: country__lesotho +- id: 2369 + name: Liberia + friendly_id: country__liberia +- id: 2370 + name: Libya + friendly_id: country__libya +- id: 2371 + name: Liechtenstein + friendly_id: country__liechtenstein +- id: 2372 + name: Lithuania + friendly_id: country__lithuania +- id: 2373 + name: Luxembourg + friendly_id: country__luxembourg +- id: 2374 + name: Madagascar + friendly_id: country__madagascar +- id: 2375 + name: Malawi + friendly_id: country__malawi +- id: 2376 + name: Malaysia + friendly_id: country__malaysia +- id: 2377 + name: Maldives + friendly_id: country__maldives +- id: 2378 + name: Mali + friendly_id: country__mali +- id: 2379 + name: Malta + friendly_id: country__malta +- id: 2380 + name: Marshall Islands + friendly_id: country__marshall_islands +- id: 2381 + name: Mauritania + friendly_id: country__mauritania +- id: 2382 + name: Mauritius + friendly_id: country__mauritius +- id: 2383 + name: Mexico + friendly_id: country__mexico +- id: 2384 + name: Micronesia + friendly_id: country__micronesia +- id: 2385 + name: Moldova + friendly_id: country__moldova +- id: 2386 + name: Monaco + friendly_id: country__monaco +- id: 2387 + name: Mongolia + friendly_id: country__mongolia +- id: 2388 + name: Montenegro + friendly_id: country__montenegro +- id: 2389 + name: Morocco + friendly_id: country__morocco +- id: 2390 + name: Mozambique + friendly_id: country__mozambique +- id: 2391 + name: Myanmar + friendly_id: country__myanmar +- id: 2392 + name: Namibia + friendly_id: country__namibia +- id: 2393 + name: Nauru + friendly_id: country__nauru +- id: 2394 + name: Nepal + friendly_id: country__nepal +- id: 2395 + name: Netherlands + friendly_id: country__netherlands +- id: 2396 + name: New Zealand + friendly_id: country__new_zealand +- id: 2397 + name: Nicaragua + friendly_id: country__nicaragua +- id: 2398 + name: Niger + friendly_id: country__niger +- id: 2399 + name: Nigeria + friendly_id: country__nigeria +- id: 2400 + name: North Macedonia + friendly_id: country__north_macedonia +- id: 2401 + name: Norway + friendly_id: country__norway +- id: 2402 + name: Oman + friendly_id: country__oman +- id: 2403 + name: Pakistan + friendly_id: country__pakistan +- id: 2404 + name: Palau + friendly_id: country__palau +- id: 2405 + name: Panama + friendly_id: country__panama +- id: 2406 + name: Papua New Guinea + friendly_id: country__papua_new_guinea +- id: 2407 + name: Paraguay + friendly_id: country__paraguay +- id: 2408 + name: Peru + friendly_id: country__peru +- id: 2409 + name: Philippines + friendly_id: country__philippines +- id: 2410 + name: Poland + friendly_id: country__poland +- id: 2411 + name: Portugal + friendly_id: country__portugal +- id: 2412 + name: Qatar + friendly_id: country__qatar +- id: 2413 + name: Romania + friendly_id: country__romania +- id: 2414 + name: Rwanda + friendly_id: country__rwanda +- id: 2415 + name: Saint Kitts and Nevis + friendly_id: country__saint_kitts_and_nevis +- id: 2416 + name: Saint Lucia + friendly_id: country__saint_lucia +- id: 2417 + name: Saint Vincent and the Grenadines + friendly_id: country__saint_vincent_and_the_grenadines +- id: 2418 + name: Samoa + friendly_id: country__samoa +- id: 2419 + name: San Marino + friendly_id: country__san_marino +- id: 2420 + name: Sao Tome and Principe + friendly_id: country__sao_tome_and_principe +- id: 2421 + name: Saudi Arabia + friendly_id: country__saudi_arabia +- id: 2422 + name: Senegal + friendly_id: country__senegal +- id: 2423 + name: Serbia + friendly_id: country__serbia +- id: 2424 + name: Seychelles + friendly_id: country__seychelles +- id: 2425 + name: Sierra Leone + friendly_id: country__sierra_leone +- id: 2426 + name: Singapore + friendly_id: country__singapore +- id: 2427 + name: Slovakia + friendly_id: country__slovakia +- id: 2428 + name: Slovenia + friendly_id: country__slovenia +- id: 2429 + name: Solomon Islands + friendly_id: country__solomon_islands +- id: 2430 + name: Somalia + friendly_id: country__somalia +- id: 2431 + name: South Africa + friendly_id: country__south_africa +- id: 2432 + name: South Korea + friendly_id: country__south_korea +- id: 2433 + name: South Sudan + friendly_id: country__south_sudan +- id: 2434 + name: Spain + friendly_id: country__spain +- id: 2435 + name: Sri Lanka + friendly_id: country__sri_lanka +- id: 2436 + name: Sudan + friendly_id: country__sudan +- id: 2437 + name: Suriname + friendly_id: country__suriname +- id: 2438 + name: Sweden + friendly_id: country__sweden +- id: 2439 + name: Switzerland + friendly_id: country__switzerland +- id: 2440 + name: Tajikistan + friendly_id: country__tajikistan +- id: 2441 + name: Tanzania + friendly_id: country__tanzania +- id: 2442 + name: Thailand + friendly_id: country__thailand +- id: 2443 + name: Timor-Leste + friendly_id: country__timor_leste +- id: 2444 + name: Togo + friendly_id: country__togo +- id: 2445 + name: Tonga + friendly_id: country__tonga +- id: 2446 + name: Trinidad and Tobago + friendly_id: country__trinidad_and_tobago +- id: 2447 + name: Tunisia + friendly_id: country__tunisia +- id: 2448 + name: Turkey + friendly_id: country__turkey +- id: 2449 + name: Turkmenistan + friendly_id: country__turkmenistan +- id: 2450 + name: Tuvalu + friendly_id: country__tuvalu +- id: 2451 + name: Uganda + friendly_id: country__uganda +- id: 2452 + name: Ukraine + friendly_id: country__ukraine +- id: 2453 + name: United Arab Emirates + friendly_id: country__united_arab_emirates +- id: 2454 + name: United Kingdom + friendly_id: country__united_kingdom +- id: 2455 + name: United States + friendly_id: country__united_states +- id: 2456 + name: Uruguay + friendly_id: country__uruguay +- id: 2457 + name: Uzbekistan + friendly_id: country__uzbekistan +- id: 2458 + name: Vanuatu + friendly_id: country__vanuatu +- id: 2459 + name: Vietnam + friendly_id: country__vietnam +- id: 2460 + name: Yemen + friendly_id: country__yemen +- id: 2461 + name: Zambia + friendly_id: country__zambia +- id: 2462 + name: Zimbabwe + friendly_id: country__zimbabwe +- id: 2463 + name: 1 dollar + friendly_id: denomination__1_dollar +- id: 2464 + name: 1,000 dollars + friendly_id: denomination__1000_dollars +- id: 2465 + name: 10 dollars + friendly_id: denomination__10_dollars +- id: 2466 + name: 10,000 dollars + friendly_id: denomination__10000_dollars +- id: 2467 + name: 100 dollars + friendly_id: denomination__100_dollars +- id: 2468 + name: 20 dollars + friendly_id: denomination__20_dollars +- id: 2469 + name: 5 dollars + friendly_id: denomination__5_dollars +- id: 2470 + name: 5,000 dollars + friendly_id: denomination__5000_dollars +- id: 2471 + name: 50 dollars + friendly_id: denomination__50_dollars +- id: 2472 + name: 500 dollars + friendly_id: denomination__500_dollars +- id: 2473 + name: 1 cent (penny) + friendly_id: denomination__1_cent_penny +- id: 2474 + name: 10 cents + friendly_id: denomination__10_cents +- id: 2475 + name: 2 dollars + friendly_id: denomination__2_dollars +- id: 2476 + name: 25 cents + friendly_id: denomination__25_cents +- id: 2477 + name: 5 cents + friendly_id: denomination__5_cents +- id: 2478 + name: 50 cents + friendly_id: denomination__50_cents +- id: 2479 + name: Bronze + friendly_id: coin_material__bronze +- id: 2480 + name: Copper + friendly_id: coin_material__copper +- id: 2481 + name: Gold + friendly_id: coin_material__gold +- id: 2482 + name: Nickel + friendly_id: coin_material__nickel +- id: 2483 + name: Silver + friendly_id: coin_material__silver +- id: 2484 + name: Autographed + friendly_id: card_attributes__autographed +- id: 2485 + name: Relic + friendly_id: card_attributes__relic +- id: 2486 + name: Rookie + friendly_id: card_attributes__rookie +- id: 2487 + name: Parallel + friendly_id: card_attributes__parallel +- id: 2488 + name: Foil + friendly_id: card_attributes__foil +- id: 2489 + name: Holographic + friendly_id: card_attributes__holographic +- id: 2490 + name: Numbered + friendly_id: card_attributes__numbered +- id: 2491 + name: BCCG + friendly_id: grading__bccg +- id: 2492 + name: BGS + friendly_id: grading__bgs +- id: 2493 + name: BVG + friendly_id: grading__bvg +- id: 2494 + name: CGC trading cards + friendly_id: grading__cgc_trading_cards +- id: 2495 + name: CSG + friendly_id: grading__csg +- id: 2496 + name: GAI + friendly_id: grading__gai +- id: 2497 + name: GMA + friendly_id: grading__gma +- id: 2498 + name: HGA + friendly_id: grading__hga +- id: 2499 + name: KSA + friendly_id: grading__ksa +- id: 2500 + name: PSA + friendly_id: grading__psa +- id: 2501 + name: SGC + friendly_id: grading__sgc +- id: 2502 + name: SGC authentic + friendly_id: grading__sgc_authentic +- id: 2503 + name: Common + friendly_id: rarity__common +- id: 2504 + name: Limited edition + friendly_id: rarity__limited_edition +- id: 2505 + name: Promo + friendly_id: rarity__promo +- id: 2506 + name: Rare + friendly_id: rarity__rare +- id: 2507 + name: Super rare + friendly_id: rarity__super_rare +- id: 2508 + name: Ultra rare + friendly_id: rarity__ultra_rare +- id: 2509 + name: Uncommon + friendly_id: rarity__uncommon +- id: 2510 + name: Blister pack + friendly_id: trading_card_packaging__blister_pack +- id: 2511 + name: Booster pack + friendly_id: trading_card_packaging__booster_pack +- id: 2512 + name: Box + friendly_id: trading_card_packaging__box +- id: 2513 + name: Starter deck + friendly_id: trading_card_packaging__starter_deck +- id: 2514 + name: Tin + friendly_id: trading_card_packaging__tin +- id: 2515 + name: Travel + friendly_id: theme__travel +- id: 2516 + name: Pop culture + friendly_id: theme__pop_culture +- id: 2517 + name: Aerobics + friendly_id: sports_theme__aerobics +- id: 2518 + name: Aikido + friendly_id: sports_theme__aikido +- id: 2519 + name: Air hockey + friendly_id: sports_theme__air_hockey +- id: 2520 + name: Australian football + friendly_id: sports_theme__australian_football +- id: 2521 + name: Badminton + friendly_id: sports_theme__badminton +- id: 2522 + name: Ballet + friendly_id: sports_theme__ballet +- id: 2523 + name: Baseball + friendly_id: sports_theme__baseball +- id: 2524 + name: Basketball + friendly_id: sports_theme__basketball +- id: 2525 + name: Boxing + friendly_id: sports_theme__boxing +- id: 2526 + name: Brazilian jiu-jitsu + friendly_id: sports_theme__brazilian_jiu_jitsu +- id: 2527 + name: Car racing + friendly_id: sports_theme__car_racing +- id: 2528 + name: Cheerleading + friendly_id: sports_theme__cheerleading +- id: 2529 + name: Climbing + friendly_id: sports_theme__climbing +- id: 2530 + name: Cricket + friendly_id: sports_theme__cricket +- id: 2531 + name: Cycling + friendly_id: sports_theme__cycling +- id: 2532 + name: Dancing + friendly_id: sports_theme__dancing +- id: 2533 + name: Darts + friendly_id: sports_theme__darts +- id: 2534 + name: Field hockey + friendly_id: sports_theme__field_hockey +- id: 2535 + name: Fishing + friendly_id: sports_theme__fishing +- id: 2536 + name: Floorball + friendly_id: sports_theme__floorball +- id: 2537 + name: Football + friendly_id: sports_theme__football +- id: 2538 + name: Futsal + friendly_id: sports_theme__futsal +- id: 2539 + name: Gaelic football + friendly_id: sports_theme__gaelic_football +- id: 2540 + name: Golf + friendly_id: sports_theme__golf +- id: 2541 + name: Gymnastics + friendly_id: sports_theme__gymnastics +- id: 2542 + name: Handball + friendly_id: sports_theme__handball +- id: 2543 + name: Hiking + friendly_id: sports_theme__hiking +- id: 2544 + name: Hockey + friendly_id: sports_theme__hockey +- id: 2545 + name: Horse riding + friendly_id: sports_theme__horse_riding +- id: 2546 + name: Hunting + friendly_id: sports_theme__hunting +- id: 2547 + name: Hurling + friendly_id: sports_theme__hurling +- id: 2548 + name: Ice hockey + friendly_id: sports_theme__ice_hockey +- id: 2549 + name: Inline skating + friendly_id: sports_theme__inline_skating +- id: 2550 + name: Judo + friendly_id: sports_theme__judo +- id: 2551 + name: Karate + friendly_id: sports_theme__karate +- id: 2552 + name: Kickboxing + friendly_id: sports_theme__kickboxing +- id: 2553 + name: Krav maga + friendly_id: sports_theme__krav_maga +- id: 2554 + name: Lacrosse + friendly_id: sports_theme__lacrosse +- id: 2555 + name: Mixed martial arts (MMA) + friendly_id: sports_theme__mixed_martial_arts_mma +- id: 2556 + name: Motorcycling + friendly_id: sports_theme__motorcycling +- id: 2557 + name: Muay thai + friendly_id: sports_theme__muay_thai +- id: 2558 + name: Netball + friendly_id: sports_theme__netball +- id: 2559 + name: Olympics + friendly_id: sports_theme__olympics +- id: 2560 + name: Padel + friendly_id: sports_theme__padel +- id: 2561 + name: Pilates + friendly_id: sports_theme__pilates +- id: 2562 + name: Racquetball + friendly_id: sports_theme__racquetball +- id: 2563 + name: Rounders + friendly_id: sports_theme__rounders +- id: 2564 + name: Rugby + friendly_id: sports_theme__rugby +- id: 2565 + name: Running + friendly_id: sports_theme__running +- id: 2566 + name: Skiing + friendly_id: sports_theme__skiing +- id: 2567 + name: Snowboarding + friendly_id: sports_theme__snowboarding +- id: 2568 + name: Soccer + friendly_id: sports_theme__soccer +- id: 2569 + name: Softball + friendly_id: sports_theme__softball +- id: 2570 + name: Squash + friendly_id: sports_theme__squash +- id: 2571 + name: Taekwondo + friendly_id: sports_theme__taekwondo +- id: 2572 + name: Team handball + friendly_id: sports_theme__team_handball +- id: 2573 + name: Tennis + friendly_id: sports_theme__tennis +- id: 2574 + name: Track & field + friendly_id: sports_theme__track_field +- id: 2575 + name: Ultimate frisbee + friendly_id: sports_theme__ultimate_frisbee +- id: 2576 + name: Universal + friendly_id: sports_theme__universal +- id: 2577 + name: Values + friendly_id: sports_theme__values +- id: 2578 + name: Volleyball + friendly_id: sports_theme__volleyball +- id: 2579 + name: Water polo + friendly_id: sports_theme__water_polo +- id: 2580 + name: Wrestling + friendly_id: sports_theme__wrestling +- id: 2581 + name: Yoga + friendly_id: sports_theme__yoga +- id: 2582 + name: Other + friendly_id: sports_theme__other +- id: 2583 + name: Civil War + friendly_id: era__civil_war +- id: 2584 + name: Cold War + friendly_id: era__cold_war +- id: 2585 + name: Korean War + friendly_id: era__korean_war +- id: 2586 + name: Modern + friendly_id: era__modern +- id: 2587 + name: Revolutionary War + friendly_id: era__revolutionary_war +- id: 2588 + name: Vietnam War + friendly_id: era__vietnam_war +- id: 2589 + name: Wild West + friendly_id: era__wild_west +- id: 2590 + name: World War I + friendly_id: era__world_war_i +- id: 2591 + name: World War II + friendly_id: era__world_war_ii +- id: 2592 + name: Other + friendly_id: era__other +- id: 2593 + name: Aemi + friendly_id: denomination__aemi +- id: 2594 + name: Engraving + friendly_id: printing_method__engraving +- id: 2595 + name: Lithography + friendly_id: printing_method__lithography +- id: 2596 + name: Offset printing + friendly_id: printing_method__offset_printing +- id: 2597 + name: Animals + friendly_id: stamp_theme__animals +- id: 2598 + name: Architecture + friendly_id: stamp_theme__architecture +- id: 2599 + name: Art + friendly_id: stamp_theme__art +- id: 2600 + name: Astronomy + friendly_id: stamp_theme__astronomy +- id: 2601 + name: Aviation + friendly_id: stamp_theme__aviation +- id: 2602 + name: Birds + friendly_id: stamp_theme__birds +- id: 2603 + name: Butterflies + friendly_id: stamp_theme__butterflies +- id: 2604 + name: Cars + friendly_id: stamp_theme__cars +- id: 2605 + name: Cats + friendly_id: stamp_theme__cats +- id: 2606 + name: Chess + friendly_id: stamp_theme__chess +- id: 2607 + name: Coins + friendly_id: stamp_theme__coins +- id: 2608 + name: Comics + friendly_id: stamp_theme__comics +- id: 2609 + name: Dance + friendly_id: stamp_theme__dance +- id: 2610 + name: Dinosaurs + friendly_id: stamp_theme__dinosaurs +- id: 2611 + name: Dogs + friendly_id: stamp_theme__dogs +- id: 2612 + name: Exploration + friendly_id: stamp_theme__exploration +- id: 2613 + name: Fairytale + friendly_id: stamp_theme__fairytale +- id: 2614 + name: Famous people + friendly_id: stamp_theme__famous_people +- id: 2615 + name: Fashion + friendly_id: stamp_theme__fashion +- id: 2616 + name: Flags + friendly_id: stamp_theme__flags +- id: 2617 + name: Floral + friendly_id: stamp_theme__floral +- id: 2618 + name: Folklore + friendly_id: stamp_theme__folklore +- id: 2619 + name: Food & drinks + friendly_id: stamp_theme__food_drinks +- id: 2620 + name: Fruits + friendly_id: stamp_theme__fruits +- id: 2621 + name: Geology + friendly_id: stamp_theme__geology +- id: 2622 + name: History + friendly_id: stamp_theme__history +- id: 2623 + name: Holidays + friendly_id: stamp_theme__holidays +- id: 2624 + name: Horses + friendly_id: stamp_theme__horses +- id: 2625 + name: Indigenous art + friendly_id: stamp_theme__indigenous_art +- id: 2626 + name: Insects + friendly_id: stamp_theme__insects +- id: 2627 + name: Landmarks + friendly_id: stamp_theme__landmarks +- id: 2628 + name: Literature + friendly_id: stamp_theme__literature +- id: 2629 + name: Marine life + friendly_id: stamp_theme__marine_life +- id: 2630 + name: Movies & TV + friendly_id: stamp_theme__movies_tv +- id: 2631 + name: Music + friendly_id: stamp_theme__music +- id: 2632 + name: Mythology + friendly_id: stamp_theme__mythology +- id: 2633 + name: National parks + friendly_id: stamp_theme__national_parks +- id: 2634 + name: Nature + friendly_id: stamp_theme__nature +- id: 2635 + name: Olympics + friendly_id: stamp_theme__olympics +- id: 2636 + name: Religion + friendly_id: stamp_theme__religion +- id: 2637 + name: Reptiles + friendly_id: stamp_theme__reptiles +- id: 2638 + name: Science + friendly_id: stamp_theme__science +- id: 2639 + name: Space + friendly_id: stamp_theme__space +- id: 2640 + name: Sports + friendly_id: stamp_theme__sports +- id: 2641 + name: Technology + friendly_id: stamp_theme__technology +- id: 2642 + name: Theater + friendly_id: stamp_theme__theater +- id: 2643 + name: Trains + friendly_id: stamp_theme__trains +- id: 2644 + name: Transportation + friendly_id: stamp_theme__transportation +- id: 2645 + name: Underwater life + friendly_id: stamp_theme__underwater_life +- id: 2646 + name: Weather + friendly_id: stamp_theme__weather +- id: 2647 + name: Wildlife + friendly_id: stamp_theme__wildlife +- id: 2648 + name: World heritage sites + friendly_id: stamp_theme__world_heritage_sites +- id: 2649 + name: Other + friendly_id: stamp_theme__other +- id: 2650 + name: Genuine + friendly_id: authenticity__genuine +- id: 2651 + name: Replica + friendly_id: authenticity__replica +- id: 2652 + name: Cubic + friendly_id: crystal_system__cubic +- id: 2653 + name: Tetragonal + friendly_id: crystal_system__tetragonal +- id: 2654 + name: Orthorhombic + friendly_id: crystal_system__orthorhombic +- id: 2655 + name: Hexagonal + friendly_id: crystal_system__hexagonal +- id: 2656 + name: Trigonal + friendly_id: crystal_system__trigonal +- id: 2657 + name: Monoclinic + friendly_id: crystal_system__monoclinic +- id: 2658 + name: Triclinic + friendly_id: crystal_system__triclinic +- id: 2659 + name: Amber + friendly_id: fossil_type__amber +- id: 2660 + name: Ammonite + friendly_id: fossil_type__ammonite +- id: 2661 + name: Belemnite + friendly_id: fossil_type__belemnite +- id: 2662 + name: Bird + friendly_id: fossil_type__bird +- id: 2663 + name: Brachiopod + friendly_id: fossil_type__brachiopod +- id: 2664 + name: Coprolite + friendly_id: fossil_type__coprolite +- id: 2665 + name: Coral + friendly_id: fossil_type__coral +- id: 2666 + name: Crinoid + friendly_id: fossil_type__crinoid +- id: 2667 + name: Dinosaur bone + friendly_id: fossil_type__dinosaur_bone +- id: 2668 + name: Echinoid + friendly_id: fossil_type__echinoid +- id: 2669 + name: Fish + friendly_id: fossil_type__fish +- id: 2670 + name: Gastropod + friendly_id: fossil_type__gastropod +- id: 2671 + name: Insect + friendly_id: fossil_type__insect +- id: 2672 + name: Mammal + friendly_id: fossil_type__mammal +- id: 2673 + name: Petrified wood + friendly_id: fossil_type__petrified_wood +- id: 2674 + name: Plant + friendly_id: fossil_type__plant +- id: 2675 + name: Reptile + friendly_id: fossil_type__reptile +- id: 2676 + name: Shark teeth + friendly_id: fossil_type__shark_teeth +- id: 2677 + name: Sponge + friendly_id: fossil_type__sponge +- id: 2678 + name: Trilobite + friendly_id: fossil_type__trilobite +- id: 2679 + name: Precambrian + friendly_id: geological_era__precambrian +- id: 2680 + name: Paleozoic + friendly_id: geological_era__paleozoic +- id: 2681 + name: Mesozoic + friendly_id: geological_era__mesozoic +- id: 2682 + name: Cenozoic + friendly_id: geological_era__cenozoic +- id: 2683 + name: Borates + friendly_id: mineral_class__borates +- id: 2684 + name: Carbonates + friendly_id: mineral_class__carbonates +- id: 2685 + name: Cyclosilicates + friendly_id: mineral_class__cyclosilicates +- id: 2686 + name: Halides + friendly_id: mineral_class__halides +- id: 2687 + name: Hydroxides + friendly_id: mineral_class__hydroxides +- id: 2688 + name: Inosilicates + friendly_id: mineral_class__inosilicates +- id: 2689 + name: Native elements + friendly_id: mineral_class__native_elements +- id: 2690 + name: Nesosilicates + friendly_id: mineral_class__nesosilicates +- id: 2691 + name: Oxides + friendly_id: mineral_class__oxides +- id: 2692 + name: Phosphates + friendly_id: mineral_class__phosphates +- id: 2693 + name: Phyllosilicates + friendly_id: mineral_class__phyllosilicates +- id: 2694 + name: Silicates + friendly_id: mineral_class__silicates +- id: 2695 + name: Sorosilicates + friendly_id: mineral_class__sorosilicates +- id: 2696 + name: Sulfates + friendly_id: mineral_class__sulfates +- id: 2697 + name: Sulfides + friendly_id: mineral_class__sulfides +- id: 2698 + name: Tectosilicate + friendly_id: mineral_class__tectosilicate +- id: 2699 + name: Andesite + friendly_id: rock_composition__andesite +- id: 2700 + name: Basalt + friendly_id: rock_composition__basalt +- id: 2701 + name: Breccia + friendly_id: rock_composition__breccia +- id: 2702 + name: Chalk + friendly_id: rock_composition__chalk +- id: 2703 + name: Chert + friendly_id: rock_composition__chert +- id: 2704 + name: Conglomerate + friendly_id: rock_composition__conglomerate +- id: 2705 + name: Diorite + friendly_id: rock_composition__diorite +- id: 2706 + name: Gabbro + friendly_id: rock_composition__gabbro +- id: 2707 + name: Gneiss + friendly_id: rock_composition__gneiss +- id: 2708 + name: Granite + friendly_id: rock_composition__granite +- id: 2709 + name: Limestone + friendly_id: rock_composition__limestone +- id: 2710 + name: Marble + friendly_id: rock_composition__marble +- id: 2711 + name: Obsidian + friendly_id: rock_composition__obsidian +- id: 2712 + name: Pumice + friendly_id: rock_composition__pumice +- id: 2713 + name: Quartzite + friendly_id: rock_composition__quartzite +- id: 2714 + name: Rhyolite + friendly_id: rock_composition__rhyolite +- id: 2715 + name: Sandstone + friendly_id: rock_composition__sandstone +- id: 2716 + name: Schist + friendly_id: rock_composition__schist +- id: 2717 + name: Shale + friendly_id: rock_composition__shale +- id: 2718 + name: Slate + friendly_id: rock_composition__slate +- id: 2719 + name: Other + friendly_id: rock_composition__other +- id: 2720 + name: Igneous + friendly_id: rock_formation__igneous +- id: 2721 + name: Sedimentary + friendly_id: rock_formation__sedimentary +- id: 2722 + name: Metamorphic + friendly_id: rock_formation__metamorphic +- id: 2723 + name: Buildings + friendly_id: scale_model_accessory_type__buildings +- id: 2724 + name: Decals + friendly_id: scale_model_accessory_type__decals +- id: 2725 + name: Diorama accessories + friendly_id: scale_model_accessory_type__diorama_accessories +- id: 2726 + name: Display stands + friendly_id: scale_model_accessory_type__display_stands +- id: 2727 + name: Figures + friendly_id: scale_model_accessory_type__figures +- id: 2728 + name: Landscape features + friendly_id: scale_model_accessory_type__landscape_features +- id: 2729 + name: Lighting + friendly_id: scale_model_accessory_type__lighting +- id: 2730 + name: Tracks + friendly_id: scale_model_accessory_type__tracks +- id: 2731 + name: Vehicles + friendly_id: scale_model_accessory_type__vehicles +- id: 2732 + name: Other + friendly_id: scale_model_accessory_type__other +- id: 2733 + name: Architecture + friendly_id: scale_model_theme__architecture +- id: 2734 + name: Automotive + friendly_id: scale_model_theme__automotive +- id: 2735 + name: Aviation + friendly_id: scale_model_theme__aviation +- id: 2736 + name: Fantasy + friendly_id: scale_model_theme__fantasy +- id: 2737 + name: History + friendly_id: scale_model_theme__history +- id: 2738 + name: Military + friendly_id: scale_model_theme__military +- id: 2739 + name: Nature + friendly_id: scale_model_theme__nature +- id: 2740 + name: Sci-fi + friendly_id: scale_model_theme__sci_fi +- id: 2741 + name: Assembly kit + friendly_id: kit_construction_type__assembly_kit +- id: 2742 + name: Preassembled + friendly_id: kit_construction_type__preassembled +- id: 2743 + name: Acrylonitrile butadiene styrene (ABS) + friendly_id: scale_model_material__acrylonitrile_butadiene_styrene_abs +- id: 2744 + name: Cardstock + friendly_id: scale_model_material__cardstock +- id: 2745 + name: Metal + friendly_id: scale_model_material__metal +- id: 2746 + name: Paper + friendly_id: scale_model_material__paper +- id: 2747 + name: Plastic + friendly_id: scale_model_material__plastic +- id: 2748 + name: Polylactic acid (PLA) + friendly_id: scale_model_material__polylactic_acid_pla +- id: 2749 + name: Resin + friendly_id: scale_model_material__resin +- id: 2750 + name: Wood + friendly_id: scale_model_material__wood +- id: 2751 + name: Animal + friendly_id: seal_stamp_design__animal +- id: 2752 + name: Calligraphy + friendly_id: seal_stamp_design__calligraphy +- id: 2753 + name: Cultural symbols + friendly_id: seal_stamp_design__cultural_symbols +- id: 2754 + name: Decorative + friendly_id: seal_stamp_design__decorative +- id: 2755 + name: Floral + friendly_id: seal_stamp_design__floral +- id: 2756 + name: Monogram + friendly_id: seal_stamp_design__monogram +- id: 2757 + name: Mythological + friendly_id: seal_stamp_design__mythological +- id: 2758 + name: Personalized + friendly_id: seal_stamp_design__personalized +- id: 2759 + name: Traditional + friendly_id: seal_stamp_design__traditional +- id: 2760 + name: College/University teams + friendly_id: logo__college_university_teams +- id: 2761 + name: MLB + friendly_id: logo__mlb +- id: 2762 + name: NBA + friendly_id: logo__nba +- id: 2763 + name: NFL + friendly_id: logo__nfl +- id: 2764 + name: NHL + friendly_id: logo__nhl +- id: 2765 + name: Soccer clubs + friendly_id: logo__soccer_clubs +- id: 2766 + name: Car racing + friendly_id: activity__car_racing +- id: 2767 + name: Art nouveau + friendly_id: art_style__art_nouveau +- id: 2768 + name: Art deco + friendly_id: art_style__art_deco +- id: 2769 + name: Retro/Vintage + friendly_id: art_style__retro_vintage +- id: 2770 + name: Illustrative + friendly_id: art_style__illustrative +- id: 2771 + name: Typography + friendly_id: art_style__typography +- id: 2772 + name: Amber + friendly_id: beer_style__amber +- id: 2773 + name: Astringent + friendly_id: beer_style__astringent +- id: 2774 + name: Bitter + friendly_id: beer_style__bitter +- id: 2775 + name: Brown + friendly_id: beer_style__brown +- id: 2776 + name: Clear + friendly_id: beer_style__clear +- id: 2777 + name: Cloudy + friendly_id: beer_style__cloudy +- id: 2778 + name: Complex + friendly_id: beer_style__complex +- id: 2779 + name: Creamy + friendly_id: beer_style__creamy +- id: 2780 + name: Crisp + friendly_id: beer_style__crisp +- id: 2781 + name: Dry + friendly_id: beer_style__dry +- id: 2782 + name: Full + friendly_id: beer_style__full +- id: 2783 + name: Gold + friendly_id: beer_style__gold +- id: 2784 + name: Hazy + friendly_id: beer_style__hazy +- id: 2785 + name: Heavy + friendly_id: beer_style__heavy +- id: 2786 + name: High carbonation + friendly_id: beer_style__high_carbonation +- id: 2787 + name: Light + friendly_id: beer_style__light +- id: 2788 + name: Low carbonation + friendly_id: beer_style__low_carbonation +- id: 2789 + name: Red + friendly_id: beer_style__red +- id: 2790 + name: Smooth + friendly_id: beer_style__smooth +- id: 2791 + name: Sweet + friendly_id: beer_style__sweet +- id: 2792 + name: Unfiltered + friendly_id: beer_style__unfiltered +- id: 2793 + name: Unpasteurised + friendly_id: beer_style__unpasteurised +- id: 2794 + name: Malty + friendly_id: flavor_profile__malty +- id: 2795 + name: Nutty + friendly_id: flavor_profile__nutty +- id: 2796 + name: Caramel + friendly_id: flavor_profile__caramel +- id: 2797 + name: Roasty + friendly_id: flavor_profile__roasty +- id: 2798 + name: Light + friendly_id: lovibond__light +- id: 2799 + name: Medium + friendly_id: lovibond__medium +- id: 2800 + name: Dark + friendly_id: lovibond__dark +- id: 2801 + name: Low + friendly_id: potential_extract__low +- id: 2802 + name: Medium + friendly_id: potential_extract__medium +- id: 2803 + name: High + friendly_id: potential_extract__high +- id: 2804 + name: Cork + friendly_id: bottle_closure_type__cork +- id: 2805 + name: Crown cap + friendly_id: bottle_closure_type__crown_cap +- id: 2806 + name: Swing top + friendly_id: bottle_closure_type__swing_top +- id: 2807 + name: Cabernet Sauvignon + friendly_id: grape_variety__cabernet_sauvignon +- id: 2808 + name: Chardonnay + friendly_id: grape_variety__chardonnay +- id: 2809 + name: Chenin Blanc + friendly_id: grape_variety__chenin_blanc +- id: 2810 + name: Gewürztraminer + friendly_id: grape_variety__gewrztraminer +- id: 2811 + name: Grenache/Garnacha + friendly_id: grape_variety__grenache_garnacha +- id: 2812 + name: Malbec + friendly_id: grape_variety__malbec +- id: 2813 + name: Merlot + friendly_id: grape_variety__merlot +- id: 2814 + name: Nebbiolo + friendly_id: grape_variety__nebbiolo +- id: 2815 + name: Pinot Noir + friendly_id: grape_variety__pinot_noir +- id: 2816 + name: Riesling + friendly_id: grape_variety__riesling +- id: 2817 + name: Sangiovese + friendly_id: grape_variety__sangiovese +- id: 2818 + name: Sauvignon blanc + friendly_id: grape_variety__sauvignon_blanc +- id: 2819 + name: Syrah/Shiraz + friendly_id: grape_variety__syrah_shiraz +- id: 2820 + name: Tempranillo + friendly_id: grape_variety__tempranillo +- id: 2821 + name: Zinfandel + friendly_id: grape_variety__zinfandel +- id: 2822 + name: Other + friendly_id: grape_variety__other +- id: 2823 + name: Bordeaux + friendly_id: region__bordeaux +- id: 2824 + name: Napa Valley + friendly_id: region__napa_valley +- id: 2825 + name: Rioja + friendly_id: region__rioja +- id: 2826 + name: Tuscany + friendly_id: region__tuscany +- id: 2827 + name: Dry + friendly_id: wine_sweetness__dry +- id: 2828 + name: Off-dry + friendly_id: wine_sweetness__off_dry +- id: 2829 + name: Semi-sweet + friendly_id: wine_sweetness__semi_sweet +- id: 2830 + name: Sweet + friendly_id: wine_sweetness__sweet +- id: 2831 + name: Light + friendly_id: weight_type__light +- id: 2832 + name: Medium + friendly_id: weight_type__medium +- id: 2833 + name: Heavy + friendly_id: weight_type__heavy +- id: 2834 + name: Buildings + friendly_id: model_train_accessory_type__buildings +- id: 2835 + name: Controls + friendly_id: model_train_accessory_type__controls +- id: 2836 + name: Decals + friendly_id: model_train_accessory_type__decals +- id: 2837 + name: Figures + friendly_id: model_train_accessory_type__figures +- id: 2838 + name: Landscape features + friendly_id: model_train_accessory_type__landscape_features +- id: 2839 + name: Lighting + friendly_id: model_train_accessory_type__lighting +- id: 2840 + name: Scenery materials + friendly_id: model_train_accessory_type__scenery_materials +- id: 2841 + name: Signals + friendly_id: model_train_accessory_type__signals +- id: 2842 + name: Tracks + friendly_id: model_train_accessory_type__tracks +- id: 2843 + name: Vehicles + friendly_id: model_train_accessory_type__vehicles +- id: 2844 + name: Other + friendly_id: model_train_accessory_type__other +- id: 2845 + name: Cityscape + friendly_id: model_train_them__cityscape +- id: 2846 + name: Contemporary + friendly_id: model_train_them__contemporary +- id: 2847 + name: Countryside + friendly_id: model_train_them__countryside +- id: 2848 + name: Historical + friendly_id: model_train_them__historical +- id: 2849 + name: Industrial + friendly_id: model_train_them__industrial +- id: 2850 + name: Modern + friendly_id: model_train_them__modern +- id: 2851 + name: Sci-fi + friendly_id: model_train_them__sci_fi +- id: 2852 + name: Analog + friendly_id: model_control_technology__analog +- id: 2853 + name: Digital + friendly_id: model_control_technology__digital +- id: 2854 + name: Wireless + friendly_id: model_control_technology__wireless +- id: 2855 + name: Alto horn + friendly_id: compatible_brass_instrument__alto_horn +- id: 2856 + name: Baritone horn + friendly_id: compatible_brass_instrument__baritone_horn +- id: 2857 + name: Bass trombone + friendly_id: compatible_brass_instrument__bass_trombone +- id: 2858 + name: Bugle + friendly_id: compatible_brass_instrument__bugle +- id: 2859 + name: Cornet + friendly_id: compatible_brass_instrument__cornet +- id: 2860 + name: Euphonium + friendly_id: compatible_brass_instrument__euphonium +- id: 2861 + name: Flugel horn + friendly_id: compatible_brass_instrument__flugel_horn +- id: 2862 + name: French horn + friendly_id: compatible_brass_instrument__french_horn +- id: 2863 + name: Mellophone + friendly_id: compatible_brass_instrument__mellophone +- id: 2864 + name: Piccolo trumpet + friendly_id: compatible_brass_instrument__piccolo_trumpet +- id: 2865 + name: Sousaphone + friendly_id: compatible_brass_instrument__sousaphone +- id: 2866 + name: Tenor horn + friendly_id: compatible_brass_instrument__tenor_horn +- id: 2867 + name: Trombone + friendly_id: compatible_brass_instrument__trombone +- id: 2868 + name: Trumpet + friendly_id: compatible_brass_instrument__trumpet +- id: 2869 + name: Tuba + friendly_id: compatible_brass_instrument__tuba +- id: 2870 + name: Wagner tuba + friendly_id: compatible_brass_instrument__wagner_tuba +- id: 2871 + name: Acrylonitrile butadiene styrene (ABS) + friendly_id: instrument_accessory_material__acrylonitrile_butadiene_styrene_abs +- id: 2872 + name: Aluminum + friendly_id: instrument_accessory_material__aluminum +- id: 2873 + name: Bamboo + friendly_id: instrument_accessory_material__bamboo +- id: 2874 + name: Brass + friendly_id: instrument_accessory_material__brass +- id: 2875 + name: Bronze + friendly_id: instrument_accessory_material__bronze +- id: 2876 + name: Canvas + friendly_id: instrument_accessory_material__canvas +- id: 2877 + name: Carbon fiber + friendly_id: instrument_accessory_material__carbon_fiber +- id: 2878 + name: Ceramic + friendly_id: instrument_accessory_material__ceramic +- id: 2879 + name: Clay + friendly_id: instrument_accessory_material__clay +- id: 2880 + name: Cotton + friendly_id: instrument_accessory_material__cotton +- id: 2881 + name: Fabric + friendly_id: instrument_accessory_material__fabric +- id: 2882 + name: Fiberglass + friendly_id: instrument_accessory_material__fiberglass +- id: 2883 + name: Fleece + friendly_id: instrument_accessory_material__fleece +- id: 2884 + name: Fluorocarbon + friendly_id: instrument_accessory_material__fluorocarbon +- id: 2885 + name: Foam + friendly_id: instrument_accessory_material__foam +- id: 2886 + name: Hard rubber + friendly_id: instrument_accessory_material__hard_rubber +- id: 2887 + name: Leather + friendly_id: instrument_accessory_material__leather +- id: 2888 + name: Medium density fiberboard (MDF) + friendly_id: instrument_accessory_material__medium_density_fiberboard_mdf +- id: 2889 + name: Mesh + friendly_id: instrument_accessory_material__mesh +- id: 2890 + name: Metal + friendly_id: instrument_accessory_material__metal +- id: 2891 + name: Microfiber + friendly_id: instrument_accessory_material__microfiber +- id: 2892 + name: Neoprene + friendly_id: instrument_accessory_material__neoprene +- id: 2893 + name: Nickel + friendly_id: instrument_accessory_material__nickel +- id: 2894 + name: Nylon + friendly_id: instrument_accessory_material__nylon +- id: 2895 + name: Plastic + friendly_id: instrument_accessory_material__plastic +- id: 2896 + name: Plywood + friendly_id: instrument_accessory_material__plywood +- id: 2897 + name: Polyester + friendly_id: instrument_accessory_material__polyester +- id: 2898 + name: Rubber + friendly_id: instrument_accessory_material__rubber +- id: 2899 + name: Silicone + friendly_id: instrument_accessory_material__silicone +- id: 2900 + name: Silk + friendly_id: instrument_accessory_material__silk +- id: 2901 + name: Sponge + friendly_id: instrument_accessory_material__sponge +- id: 2902 + name: Stainless steel + friendly_id: instrument_accessory_material__stainless_steel +- id: 2903 + name: Steel + friendly_id: instrument_accessory_material__steel +- id: 2904 + name: Synthetic + friendly_id: instrument_accessory_material__synthetic +- id: 2905 + name: Synthetic resin + friendly_id: instrument_accessory_material__synthetic_resin +- id: 2906 + name: Wood + friendly_id: instrument_accessory_material__wood +- id: 2907 + name: Other + friendly_id: instrument_accessory_material__other +- id: 2908 + name: Stick + friendly_id: dispenser_type__stick +- id: 2909 + name: Gel + friendly_id: lubricant_form__gel +- id: 2910 + name: Liquid + friendly_id: lubricant_form__liquid +- id: 2911 + name: Paste + friendly_id: lubricant_form__paste +- id: 2912 + name: Oil + friendly_id: lubricant_form__oil +- id: 2913 + name: Cork grip + friendly_id: baton_grip_design__cork_grip +- id: 2914 + name: Rubber grip + friendly_id: baton_grip_design__rubber_grip +- id: 2915 + name: Wooden handle + friendly_id: baton_grip_design__wooden_handle +- id: 2916 + name: Plastic handle + friendly_id: baton_grip_design__plastic_handle +- id: 2917 + name: Cotton + friendly_id: tip_material__cotton +- id: 2918 + name: Plastic + friendly_id: tip_material__plastic +- id: 2919 + name: Silicone + friendly_id: tip_material__silicone +- id: 2920 + name: LCD + friendly_id: display_technology__lcd +- id: 2921 + name: LED + friendly_id: display_technology__led +- id: 2922 + name: Color + friendly_id: display_technology__color +- id: 2923 + name: Rechargeable + friendly_id: power_source__rechargeable +- id: 2924 + name: USB + friendly_id: power_source__usb +- id: 2925 + name: Chromatic + friendly_id: tuning_modes__chromatic +- id: 2926 + name: Guitar + friendly_id: tuning_modes__guitar +- id: 2927 + name: Bass + friendly_id: tuning_modes__bass +- id: 2928 + name: Violin + friendly_id: tuning_modes__violin +- id: 2929 + name: Cello + friendly_id: tuning_modes__cello +- id: 2930 + name: Ukulele + friendly_id: tuning_modes__ukulele +- id: 2931 + name: Mandolin + friendly_id: tuning_modes__mandolin +- id: 2932 + name: Banjo + friendly_id: tuning_modes__banjo +- id: 2933 + name: Brass instruments + friendly_id: tuning_modes__brass_instruments +- id: 2934 + name: Woodwind instruments + friendly_id: tuning_modes__woodwind_instruments +- id: 2935 + name: Custom + friendly_id: tuning_range__custom +- id: 2936 + name: Drop + friendly_id: tuning_range__drop +- id: 2937 + name: Open + friendly_id: tuning_range__open +- id: 2938 + name: Standard + friendly_id: tuning_range__standard +- id: 2939 + name: Quarter note + friendly_id: beat_subdivisions__quarter_note +- id: 2940 + name: Eighth note + friendly_id: beat_subdivisions__eighth_note +- id: 2941 + name: Sixteenth note + friendly_id: beat_subdivisions__sixteenth_note +- id: 2942 + name: Triplet + friendly_id: beat_subdivisions__triplet +- id: 2943 + name: Analog + friendly_id: display_technology__analog +- id: 2944 + name: Bell + friendly_id: sound_options__bell +- id: 2945 + name: Click + friendly_id: sound_options__click +- id: 2946 + name: Drum + friendly_id: sound_options__drum +- id: 2947 + name: Voice count + friendly_id: sound_options__voice_count +- id: 2948 + name: 2/4 + friendly_id: time_signatures__2_4 +- id: 2949 + name: 3/4 + friendly_id: time_signatures__3_4 +- id: 2950 + name: 4/4 + friendly_id: time_signatures__4_4 +- id: 2951 + name: 5/4 + friendly_id: time_signatures__5_4 +- id: 2952 + name: 6/4 + friendly_id: time_signatures__6_4 +- id: 2953 + name: 7/4 + friendly_id: time_signatures__7_4 +- id: 2954 + name: 3/8 + friendly_id: time_signatures__3_8 +- id: 2955 + name: 6/8 + friendly_id: time_signatures__6_8 +- id: 2956 + name: 9/8 + friendly_id: time_signatures__9_8 +- id: 2957 + name: 12/8 + friendly_id: time_signatures__12_8 +- id: 2958 + name: Fixed height + friendly_id: height_adjustment__fixed_height +- id: 2959 + name: Adjustable height + friendly_id: height_adjustment__adjustable_height +- id: 2960 + name: Padded + friendly_id: seat_cushioning__padded +- id: 2961 + name: Non-padded + friendly_id: seat_cushioning__non_padded +- id: 2962 + name: Contoured + friendly_id: seat_shape__contoured +- id: 2963 + name: Rectangular + friendly_id: seat_shape__rectangular +- id: 2964 + name: Round + friendly_id: seat_shape__round +- id: 2965 + name: Saddle + friendly_id: seat_shape__saddle +- id: 2966 + name: Clip-on + friendly_id: lyre_flip_folder_attachment_type__clip_on +- id: 2967 + name: Magnetic + friendly_id: lyre_flip_folder_attachment_type__magnetic +- id: 2968 + name: Lyre clamp + friendly_id: lyre_flip_folder_attachment_type__lyre_clamp +- id: 2969 + name: Lyre screw + friendly_id: lyre_flip_folder_attachment_type__lyre_screw +- id: 2970 + name: Strap + friendly_id: lyre_flip_folder_attachment_type__strap +- id: 2971 + name: Horizontal + friendly_id: orientation__horizontal +- id: 2972 + name: Vertical + friendly_id: orientation__vertical +- id: 2973 + name: Accordion + friendly_id: compatible_instrument__accordion +- id: 2974 + name: Acoustic guitar + friendly_id: compatible_instrument__acoustic_guitar +- id: 2975 + name: Alto horn + friendly_id: compatible_instrument__alto_horn +- id: 2976 + name: Alto saxophone + friendly_id: compatible_instrument__alto_saxophone +- id: 2977 + name: Banjo + friendly_id: compatible_instrument__banjo +- id: 2978 + name: Baritone horn + friendly_id: compatible_instrument__baritone_horn +- id: 2979 + name: Baritone saxophone + friendly_id: compatible_instrument__baritone_saxophone +- id: 2980 + name: Bass drum + friendly_id: compatible_instrument__bass_drum +- id: 2981 + name: Bass guitar + friendly_id: compatible_instrument__bass_guitar +- id: 2982 + name: Bass trombone + friendly_id: compatible_instrument__bass_trombone +- id: 2983 + name: Bassoon + friendly_id: compatible_instrument__bassoon +- id: 2984 + name: Bongo + friendly_id: compatible_instrument__bongo +- id: 2985 + name: Bugle + friendly_id: compatible_instrument__bugle +- id: 2986 + name: Cello + friendly_id: compatible_instrument__cello +- id: 2987 + name: Clarinet + friendly_id: compatible_instrument__clarinet +- id: 2988 + name: Conga drum + friendly_id: compatible_instrument__conga_drum +- id: 2989 + name: Cornet + friendly_id: compatible_instrument__cornet +- id: 2990 + name: Cowbell + friendly_id: compatible_instrument__cowbell +- id: 2991 + name: Cymbal + friendly_id: compatible_instrument__cymbal +- id: 2992 + name: Digital wind instrument + friendly_id: compatible_instrument__digital_wind_instrument +- id: 2993 + name: Double bass + friendly_id: compatible_instrument__double_bass +- id: 2994 + name: Drum + friendly_id: compatible_instrument__drum +- id: 2995 + name: Electric guitar + friendly_id: compatible_instrument__electric_guitar +- id: 2996 + name: Euphonium + friendly_id: compatible_instrument__euphonium +- id: 2997 + name: Floor tom + friendly_id: compatible_instrument__floor_tom +- id: 2998 + name: Flugel horn + friendly_id: compatible_instrument__flugel_horn +- id: 2999 + name: Flute + friendly_id: compatible_instrument__flute +- id: 3000 + name: French horn + friendly_id: compatible_instrument__french_horn +- id: 3001 + name: Gong drum + friendly_id: compatible_instrument__gong_drum +- id: 3002 + name: Guitar + friendly_id: compatible_instrument__guitar +- id: 3003 + name: Hand bell + friendly_id: compatible_instrument__hand_bell +- id: 3004 + name: Harmonica + friendly_id: compatible_instrument__harmonica +- id: 3005 + name: Harp + friendly_id: compatible_instrument__harp +- id: 3006 + name: Keyboard + friendly_id: compatible_instrument__keyboard +- id: 3007 + name: Mandolin + friendly_id: compatible_instrument__mandolin +- id: 3008 + name: Marching baritone + friendly_id: compatible_instrument__marching_baritone +- id: 3009 + name: Mellophone + friendly_id: compatible_instrument__mellophone +- id: 3010 + name: Oboe + friendly_id: compatible_instrument__oboe +- id: 3011 + name: Octoban + friendly_id: compatible_instrument__octoban +- id: 3012 + name: Organ + friendly_id: compatible_instrument__organ +- id: 3013 + name: Piano + friendly_id: compatible_instrument__piano +- id: 3014 + name: Piccolo trumpet + friendly_id: compatible_instrument__piccolo_trumpet +- id: 3015 + name: Rototom + friendly_id: compatible_instrument__rototom +- id: 3016 + name: Saxophone + friendly_id: compatible_instrument__saxophone +- id: 3017 + name: Snare drum + friendly_id: compatible_instrument__snare_drum +- id: 3018 + name: Sousaphone + friendly_id: compatible_instrument__sousaphone +- id: 3019 + name: Synthesizer + friendly_id: compatible_instrument__synthesizer +- id: 3020 + name: Tenor horn + friendly_id: compatible_instrument__tenor_horn +- id: 3021 + name: Tenor saxophone + friendly_id: compatible_instrument__tenor_saxophone +- id: 3022 + name: Timbales + friendly_id: compatible_instrument__timbales +- id: 3023 + name: Tom-tom + friendly_id: compatible_instrument__tom_tom +- id: 3024 + name: Trombone + friendly_id: compatible_instrument__trombone +- id: 3025 + name: Trumpet + friendly_id: compatible_instrument__trumpet +- id: 3026 + name: Tuba + friendly_id: compatible_instrument__tuba +- id: 3027 + name: Ukulele + friendly_id: compatible_instrument__ukulele +- id: 3028 + name: Viola + friendly_id: compatible_instrument__viola +- id: 3029 + name: Violin + friendly_id: compatible_instrument__violin +- id: 3030 + name: Wagner tuba + friendly_id: compatible_instrument__wagner_tuba +- id: 3031 + name: Xylophone + friendly_id: compatible_instrument__xylophone +- id: 3032 + name: Other + friendly_id: compatible_instrument__other +- id: 3033 + name: Incandescent + friendly_id: light_source__incandescent +- id: 3034 + name: Halogen + friendly_id: light_source__halogen +- id: 3035 + name: Closed-back + friendly_id: speaker_configuration__closed_back +- id: 3036 + name: Open-back + friendly_id: speaker_configuration__open_back +- id: 3037 + name: Drawstring + friendly_id: closure_type__drawstring +- id: 3038 + name: Velcro + friendly_id: closure_type__velcro +- id: 3039 + name: Bass + friendly_id: compatible_amplifier__bass +- id: 3040 + name: Guitar + friendly_id: compatible_amplifier__guitar +- id: 3041 + name: Keyboard + friendly_id: compatible_amplifier__keyboard +- id: 3042 + name: Channel switching + friendly_id: control_functions__channel_switching +- id: 3043 + name: Effects on/off + friendly_id: control_functions__effects_on_off +- id: 3044 + name: Tuner activation + friendly_id: control_functions__tuner_activation +- id: 3045 + name: Tap tempo + friendly_id: control_functions__tap_tempo +- id: 3046 + name: Volume + friendly_id: knob_function__volume +- id: 3047 + name: Gain + friendly_id: knob_function__gain +- id: 3048 + name: Tone + friendly_id: knob_function__tone +- id: 3049 + name: EQ + friendly_id: knob_function__eq +- id: 3050 + name: Presence + friendly_id: knob_function__presence +- id: 3051 + name: Power + friendly_id: knob_function__power +- id: 3052 + name: Custom + friendly_id: knob_style__custom +- id: 3053 + name: Ribbed + friendly_id: knob_style__ribbed +- id: 3054 + name: Smooth + friendly_id: knob_style__smooth +- id: 3055 + name: Standard + friendly_id: knob_style__standard +- id: 3056 + name: Retro/Vintage + friendly_id: knob_style__retro_vintage +- id: 3057 + name: Acoustic guitar + friendly_id: compatible_electric_acoustic_instrument__acoustic_guitar +- id: 3058 + name: Digital wind instrument + friendly_id: compatible_electric_acoustic_instrument__digital_wind_instrument +- id: 3059 + name: Electric accordion + friendly_id: compatible_electric_acoustic_instrument__electric_accordion +- id: 3060 + name: Electric banjo + friendly_id: compatible_electric_acoustic_instrument__electric_banjo +- id: 3061 + name: Electric bass guitar + friendly_id: compatible_electric_acoustic_instrument__electric_bass_guitar +- id: 3062 + name: Electric cello + friendly_id: compatible_electric_acoustic_instrument__electric_cello +- id: 3063 + name: Electric double bass + friendly_id: compatible_electric_acoustic_instrument__electric_double_bass +- id: 3064 + name: Electric drum + friendly_id: compatible_electric_acoustic_instrument__electric_drum +- id: 3065 + name: Electric guitar + friendly_id: compatible_electric_acoustic_instrument__electric_guitar +- id: 3066 + name: Electric mandolin + friendly_id: compatible_electric_acoustic_instrument__electric_mandolin +- id: 3067 + name: Electric organ + friendly_id: compatible_electric_acoustic_instrument__electric_organ +- id: 3068 + name: Electric piano + friendly_id: compatible_electric_acoustic_instrument__electric_piano +- id: 3069 + name: Electric ukulele + friendly_id: compatible_electric_acoustic_instrument__electric_ukulele +- id: 3070 + name: Electric violin + friendly_id: compatible_electric_acoustic_instrument__electric_violin +- id: 3071 + name: Electronic saxophone + friendly_id: compatible_electric_acoustic_instrument__electronic_saxophone +- id: 3072 + name: Electronic trumpet + friendly_id: compatible_electric_acoustic_instrument__electronic_trumpet +- id: 3073 + name: Harmonica synth + friendly_id: compatible_electric_acoustic_instrument__harmonica_synth +- id: 3074 + name: Keyboard + friendly_id: compatible_electric_acoustic_instrument__keyboard +- id: 3075 + name: Synthesizer + friendly_id: compatible_electric_acoustic_instrument__synthesizer +- id: 3076 + name: Other + friendly_id: compatible_electric_acoustic_instrument__other +- id: 3077 + name: DC-powered + friendly_id: power_source__dc_powered +- id: 3078 + name: Case + friendly_id: tube_component__case +- id: 3079 + name: Footswitch/Controller + friendly_id: tube_component__footswitch_controller +- id: 3080 + name: Stand + friendly_id: tube_component__stand +- id: 3081 + name: Tone capsule + friendly_id: tube_component__tone_capsule +- id: 3082 + name: Single tube + friendly_id: tube_configuration__single_tube +- id: 3083 + name: Matched pair + friendly_id: tube_configuration__matched_pair +- id: 3084 + name: Quartet + friendly_id: tube_configuration__quartet +- id: 3085 + name: Octet + friendly_id: tube_configuration__octet +- id: 3086 + name: Input jack + friendly_id: input_output_ports__input_jack +- id: 3087 + name: Output jack + friendly_id: input_output_ports__output_jack +- id: 3088 + name: Headphone jack + friendly_id: input_output_ports__headphone_jack +- id: 3089 + name: AUX + friendly_id: input_output_ports__aux +- id: 3090 + name: Gain + friendly_id: sound_controls__gain +- id: 3091 + name: Volume + friendly_id: sound_controls__volume +- id: 3092 + name: Tone + friendly_id: sound_controls__tone +- id: 3093 + name: Equalizer + friendly_id: sound_controls__equalizer +- id: 3094 + name: Reverb + friendly_id: sound_controls__reverb +- id: 3095 + name: Distortion + friendly_id: sound_controls__distortion +- id: 3096 + name: Overdrive + friendly_id: sound_controls__overdrive +- id: 3097 + name: Effects level + friendly_id: sound_controls__effects_level +- id: 3098 + name: Master volume + friendly_id: sound_controls__master_volume +- id: 3099 + name: 61-key + friendly_id: compatible_keyboard_configuration__61_key +- id: 3100 + name: 76-key + friendly_id: compatible_keyboard_configuration__76_key +- id: 3101 + name: 88-key + friendly_id: compatible_keyboard_configuration__88_key +- id: 3102 + name: Wired + friendly_id: connection_method__wired +- id: 3103 + name: Wireless + friendly_id: connection_method__wireless +- id: 3104 + name: NC + friendly_id: pedal_polarity__nc +- id: 3105 + name: 'NO' + friendly_id: pedal_polarity__no +- id: 3106 + name: Bass drum + friendly_id: compatible_percussion_instrument__bass_drum +- id: 3107 + name: Bongo + friendly_id: compatible_percussion_instrument__bongo +- id: 3108 + name: Conga drum + friendly_id: compatible_percussion_instrument__conga_drum +- id: 3109 + name: Cowbell + friendly_id: compatible_percussion_instrument__cowbell +- id: 3110 + name: Cymbal + friendly_id: compatible_percussion_instrument__cymbal +- id: 3111 + name: Drum + friendly_id: compatible_percussion_instrument__drum +- id: 3112 + name: Drum set + friendly_id: compatible_percussion_instrument__drum_set +- id: 3113 + name: Floor tom + friendly_id: compatible_percussion_instrument__floor_tom +- id: 3114 + name: Gong drum + friendly_id: compatible_percussion_instrument__gong_drum +- id: 3115 + name: Octoban + friendly_id: compatible_percussion_instrument__octoban +- id: 3116 + name: Rototom + friendly_id: compatible_percussion_instrument__rototom +- id: 3117 + name: Snare drum + friendly_id: compatible_percussion_instrument__snare_drum +- id: 3118 + name: Timbales + friendly_id: compatible_percussion_instrument__timbales +- id: 3119 + name: Tom-tom + friendly_id: compatible_percussion_instrument__tom_tom +- id: 3120 + name: Aluminum + friendly_id: drum_hardware_material__aluminum +- id: 3121 + name: Bamboo + friendly_id: drum_hardware_material__bamboo +- id: 3122 + name: Carbon fiber + friendly_id: drum_hardware_material__carbon_fiber +- id: 3123 + name: Chrome + friendly_id: drum_hardware_material__chrome +- id: 3124 + name: Felt + friendly_id: drum_hardware_material__felt +- id: 3125 + name: Fiberglass + friendly_id: drum_hardware_material__fiberglass +- id: 3126 + name: Fleece + friendly_id: drum_hardware_material__fleece +- id: 3127 + name: Mesh + friendly_id: drum_hardware_material__mesh +- id: 3128 + name: Metal + friendly_id: drum_hardware_material__metal +- id: 3129 + name: Nylon + friendly_id: drum_hardware_material__nylon +- id: 3130 + name: Plastic + friendly_id: drum_hardware_material__plastic +- id: 3131 + name: Rubber + friendly_id: drum_hardware_material__rubber +- id: 3132 + name: Steel + friendly_id: drum_hardware_material__steel +- id: 3133 + name: Synthetic + friendly_id: drum_hardware_material__synthetic +- id: 3134 + name: Wood + friendly_id: drum_hardware_material__wood +- id: 3135 + name: Aluminum + friendly_id: mount_material__aluminum +- id: 3136 + name: Brass + friendly_id: mount_material__brass +- id: 3137 + name: Ceramic + friendly_id: mount_material__ceramic +- id: 3138 + name: Chrome + friendly_id: mount_material__chrome +- id: 3139 + name: Glass + friendly_id: mount_material__glass +- id: 3140 + name: Leather + friendly_id: mount_material__leather +- id: 3141 + name: Metal + friendly_id: mount_material__metal +- id: 3142 + name: Nylon + friendly_id: mount_material__nylon +- id: 3143 + name: Plastic + friendly_id: mount_material__plastic +- id: 3144 + name: Polyester + friendly_id: mount_material__polyester +- id: 3145 + name: Polypropylene (PP) + friendly_id: mount_material__polypropylene_pp +- id: 3146 + name: Rubber + friendly_id: mount_material__rubber +- id: 3147 + name: Stainless steel + friendly_id: mount_material__stainless_steel +- id: 3148 + name: Steel + friendly_id: mount_material__steel +- id: 3149 + name: Vinyl + friendly_id: mount_material__vinyl +- id: 3150 + name: Wood + friendly_id: mount_material__wood +- id: 3151 + name: Adjustable beater angle + friendly_id: adjustability__adjustable_beater_angle +- id: 3152 + name: Adjustable footboard height + friendly_id: adjustability__adjustable_footboard_height +- id: 3153 + name: Adjustable spring tension + friendly_id: adjustability__adjustable_spring_tension +- id: 3154 + name: Double bass + friendly_id: compatible_drum_configuration__double_bass +- id: 3155 + name: Hi-hat + friendly_id: compatible_drum_configuration__hi_hat +- id: 3156 + name: Single bass + friendly_id: compatible_drum_configuration__single_bass +- id: 3157 + name: Universal + friendly_id: compatible_drum_configuration__universal +- id: 3158 + name: Solid + friendly_id: footboard_type__solid +- id: 3159 + name: Perforated + friendly_id: footboard_type__perforated +- id: 3160 + name: Longboard + friendly_id: footboard_type__longboard +- id: 3161 + name: Shortboard + friendly_id: footboard_type__shortboard +- id: 3162 + name: Smooth + friendly_id: grip_texture__smooth +- id: 3163 + name: Lacquered + friendly_id: grip_texture__lacquered +- id: 3164 + name: Dipped + friendly_id: grip_texture__dipped +- id: 3165 + name: Rubberized + friendly_id: grip_texture__rubberized +- id: 3166 + name: Acorn + friendly_id: percussion_tip_shape__acorn +- id: 3167 + name: Barrel + friendly_id: percussion_tip_shape__barrel +- id: 3168 + name: Round + friendly_id: percussion_tip_shape__round +- id: 3169 + name: Teardrop + friendly_id: percussion_tip_shape__teardrop +- id: 3170 + name: Audio output + friendly_id: input_output_ports__audio_output +- id: 3171 + name: USB + friendly_id: input_output_ports__usb +- id: 3172 + name: MIDI in + friendly_id: midi_connectivity__midi_in +- id: 3173 + name: MIDI out + friendly_id: midi_connectivity__midi_out +- id: 3174 + name: USB midi + friendly_id: midi_connectivity__usb_midi +- id: 3175 + name: Reverb + friendly_id: sound_effects__reverb +- id: 3176 + name: Delay + friendly_id: sound_effects__delay +- id: 3177 + name: EQ + friendly_id: sound_effects__eq +- id: 3178 + name: Compression + friendly_id: sound_effects__compression +- id: 3179 + name: Overdrive + friendly_id: sound_effects__overdrive +- id: 3180 + name: Textured + friendly_id: grip_texture__textured +- id: 3181 + name: Aluminum + friendly_id: mallet_material__aluminum +- id: 3182 + name: Brass + friendly_id: mallet_material__brass +- id: 3183 + name: Bronze + friendly_id: mallet_material__bronze +- id: 3184 + name: Copper + friendly_id: mallet_material__copper +- id: 3185 + name: Faux leather + friendly_id: mallet_material__faux_leather +- id: 3186 + name: Felt + friendly_id: mallet_material__felt +- id: 3187 + name: Fiberglass + friendly_id: mallet_material__fiberglass +- id: 3188 + name: Graphite + friendly_id: mallet_material__graphite +- id: 3189 + name: Iron + friendly_id: mallet_material__iron +- id: 3190 + name: Leather + friendly_id: mallet_material__leather +- id: 3191 + name: Neoprene + friendly_id: mallet_material__neoprene +- id: 3192 + name: Nylon + friendly_id: mallet_material__nylon +- id: 3193 + name: Plastic + friendly_id: mallet_material__plastic +- id: 3194 + name: Polyurethane (PU) + friendly_id: mallet_material__polyurethane_pu +- id: 3195 + name: Rubber + friendly_id: mallet_material__rubber +- id: 3196 + name: Stainless steel + friendly_id: mallet_material__stainless_steel +- id: 3197 + name: Steel + friendly_id: mallet_material__steel +- id: 3198 + name: Wood + friendly_id: mallet_material__wood +- id: 3199 + name: Yarn + friendly_id: mallet_material__yarn +- id: 3200 + name: Mount + friendly_id: percussion_stand_design__mount +- id: 3201 + name: Rack + friendly_id: percussion_stand_design__rack +- id: 3202 + name: Acoustic bass guitar + friendly_id: compatible_string_instrument__acoustic_bass_guitar +- id: 3203 + name: Acoustic guitar + friendly_id: compatible_string_instrument__acoustic_guitar +- id: 3204 + name: Banjo + friendly_id: compatible_string_instrument__banjo +- id: 3205 + name: Bass guitar + friendly_id: compatible_string_instrument__bass_guitar +- id: 3206 + name: Classical guitar + friendly_id: compatible_string_instrument__classical_guitar +- id: 3207 + name: Electric guitar + friendly_id: compatible_string_instrument__electric_guitar +- id: 3208 + name: Lap steel guitar + friendly_id: compatible_string_instrument__lap_steel_guitar +- id: 3209 + name: Mandolin + friendly_id: compatible_string_instrument__mandolin +- id: 3210 + name: Semi-acoustic guitar + friendly_id: compatible_string_instrument__semi_acoustic_guitar +- id: 3211 + name: Ukulele + friendly_id: compatible_string_instrument__ukulele +- id: 3212 + name: Universal + friendly_id: compatible_string_instrument__universal +- id: 3213 + name: High + friendly_id: output_level__high +- id: 3214 + name: Medium + friendly_id: output_level__medium +- id: 3215 + name: Low + friendly_id: output_level__low +- id: 3216 + name: Clip-on + friendly_id: pickup_mounting_type__clip_on +- id: 3217 + name: Screw-on + friendly_id: pickup_mounting_type__screw_on +- id: 3218 + name: Stick-on + friendly_id: pickup_mounting_type__stick_on +- id: 3219 + name: Active + friendly_id: pickup_type__active +- id: 3220 + name: Dogear + friendly_id: pickup_type__dogear +- id: 3221 + name: Humbucker + friendly_id: pickup_type__humbucker +- id: 3222 + name: Magnetic + friendly_id: pickup_type__magnetic +- id: 3223 + name: P-90 + friendly_id: pickup_type__p_90 +- id: 3224 + name: Piezo + friendly_id: pickup_type__piezo +- id: 3225 + name: Single coil + friendly_id: pickup_type__single_coil +- id: 3226 + name: Soapbar + friendly_id: pickup_type__soapbar +- id: 3227 + name: Soundhole + friendly_id: pickup_type__soundhole +- id: 3228 + name: Undersaddle + friendly_id: pickup_type__undersaddle +- id: 3229 + name: Neck + friendly_id: pickup_position__neck +- id: 3230 + name: Bridge + friendly_id: pickup_position__bridge +- id: 3231 + name: Middle + friendly_id: pickup_position__middle +- id: 3232 + name: African blackwood + friendly_id: instrument_part_material__african_blackwood +- id: 3233 + name: Bone + friendly_id: instrument_part_material__bone +- id: 3234 + name: Boxwood + friendly_id: instrument_part_material__boxwood +- id: 3235 + name: Brass + friendly_id: instrument_part_material__brass +- id: 3236 + name: Cork + friendly_id: instrument_part_material__cork +- id: 3237 + name: Ebony wood + friendly_id: instrument_part_material__ebony_wood +- id: 3238 + name: Faux ivory + friendly_id: instrument_part_material__faux_ivory +- id: 3239 + name: Gold + friendly_id: instrument_part_material__gold +- id: 3240 + name: Gold-plated + friendly_id: instrument_part_material__gold_plated +- id: 3241 + name: Graphite + friendly_id: instrument_part_material__graphite +- id: 3242 + name: Maple wood + friendly_id: instrument_part_material__maple_wood +- id: 3243 + name: Metal + friendly_id: instrument_part_material__metal +- id: 3244 + name: Nickel silver + friendly_id: instrument_part_material__nickel_silver +- id: 3245 + name: Plastic + friendly_id: instrument_part_material__plastic +- id: 3246 + name: Rosewood + friendly_id: instrument_part_material__rosewood +- id: 3247 + name: Rubber + friendly_id: instrument_part_material__rubber +- id: 3248 + name: Silver + friendly_id: instrument_part_material__silver +- id: 3249 + name: Silver-plated + friendly_id: instrument_part_material__silver_plated +- id: 3250 + name: Snakewood + friendly_id: instrument_part_material__snakewood +- id: 3251 + name: Synthetic + friendly_id: instrument_part_material__synthetic +- id: 3252 + name: Wood + friendly_id: instrument_part_material__wood +- id: 3253 + name: Standard + friendly_id: pick_design__standard +- id: 3254 + name: Triangular + friendly_id: pick_design__triangular +- id: 3255 + name: Teardrop + friendly_id: pick_design__teardrop +- id: 3256 + name: Jazz III + friendly_id: pick_design__jazz_iii +- id: 3257 + name: Thumb pick + friendly_id: pick_design__thumb_pick +- id: 3258 + name: Floor + friendly_id: music_stand_design__floor +- id: 3259 + name: Wall + friendly_id: music_stand_design__wall +- id: 3260 + name: Embroidered + friendly_id: strap_design__embroidered +- id: 3261 + name: Patterned + friendly_id: strap_design__patterned +- id: 3262 + name: Plain + friendly_id: strap_design__plain +- id: 3263 + name: Printed + friendly_id: strap_design__printed +- id: 3264 + name: Bronze + friendly_id: instrument_string_material__bronze +- id: 3265 + name: Fluorocarbon + friendly_id: instrument_string_material__fluorocarbon +- id: 3266 + name: Nickel + friendly_id: instrument_string_material__nickel +- id: 3267 + name: Nylon + friendly_id: instrument_string_material__nylon +- id: 3268 + name: Steel + friendly_id: instrument_string_material__steel +- id: 3269 + name: Synthetic + friendly_id: instrument_string_material__synthetic +- id: 3270 + name: Chrome + friendly_id: instrument_accessory_finish__chrome +- id: 3271 + name: Nickel + friendly_id: instrument_accessory_finish__nickel +- id: 3272 + name: Black + friendly_id: instrument_accessory_finish__black +- id: 3273 + name: Gold + friendly_id: instrument_accessory_finish__gold +- id: 3274 + name: Clasp + friendly_id: closure_type__clasp +- id: 3275 + name: Cello + friendly_id: compatible_orchestral_string_instrument__cello +- id: 3276 + name: Double bass + friendly_id: compatible_orchestral_string_instrument__double_bass +- id: 3277 + name: Viola + friendly_id: compatible_orchestral_string_instrument__viola +- id: 3278 + name: Violin + friendly_id: compatible_orchestral_string_instrument__violin +- id: 3279 + name: Universal + friendly_id: compatible_orchestral_string_instrument__universal +- id: 3280 + name: Horsehair + friendly_id: bow_hair_material__horsehair +- id: 3281 + name: Nylon + friendly_id: bow_hair_material__nylon +- id: 3282 + name: Synthetic + friendly_id: bow_hair_material__synthetic +- id: 3283 + name: Brown + friendly_id: instrument_accessory_finish__brown +- id: 3284 + name: Natural + friendly_id: instrument_accessory_finish__natural +- id: 3285 + name: Reddish-brown + friendly_id: instrument_accessory_finish__reddish_brown +- id: 3286 + name: Light + friendly_id: tension__light +- id: 3287 + name: Medium + friendly_id: tension__medium +- id: 3288 + name: Heavy + friendly_id: tension__heavy +- id: 3289 + name: Extra-heavy + friendly_id: tension__extra_heavy +- id: 3290 + name: Tin + friendly_id: package_type__tin +- id: 3291 + name: Block + friendly_id: rosin_form__block +- id: 3292 + name: Cake + friendly_id: rosin_form__cake +- id: 3293 + name: Light + friendly_id: rosin_grade__light +- id: 3294 + name: Medium + friendly_id: rosin_grade__medium +- id: 3295 + name: Dark + friendly_id: rosin_grade__dark +- id: 3296 + name: Spray + friendly_id: application_method__spray +- id: 3297 + name: Liquid + friendly_id: application_method__liquid +- id: 3298 + name: Paste + friendly_id: application_method__paste +- id: 3299 + name: Natural + friendly_id: ingredient_origin__natural +- id: 3300 + name: Synthetic + friendly_id: ingredient_origin__synthetic +- id: 3301 + name: Cotton + friendly_id: swab_material__cotton +- id: 3302 + name: Felt + friendly_id: swab_material__felt +- id: 3303 + name: Microfiber + friendly_id: swab_material__microfiber +- id: 3304 + name: Paper + friendly_id: swab_material__paper +- id: 3305 + name: Plastic + friendly_id: swab_material__plastic +- id: 3306 + name: Silk + friendly_id: swab_material__silk +- id: 3307 + name: Wool + friendly_id: swab_material__wool +- id: 3308 + name: Soft + friendly_id: reed_strength__soft +- id: 3309 + name: Medium + friendly_id: reed_strength__medium +- id: 3310 + name: Hard + friendly_id: reed_strength__hard +- id: 3311 + name: Cleaning brush + friendly_id: woodwind_care_items_included__cleaning_brush +- id: 3312 + name: Cleaning cloth + friendly_id: woodwind_care_items_included__cleaning_cloth +- id: 3313 + name: Cleaning rod + friendly_id: woodwind_care_items_included__cleaning_rod +- id: 3314 + name: Cleaning swab + friendly_id: woodwind_care_items_included__cleaning_swab +- id: 3315 + name: Cork grease + friendly_id: woodwind_care_items_included__cork_grease +- id: 3316 + name: Flute plug + friendly_id: woodwind_care_items_included__flute_plug +- id: 3317 + name: Pad paper + friendly_id: woodwind_care_items_included__pad_paper +- id: 3318 + name: Polishing cloth + friendly_id: woodwind_care_items_included__polishing_cloth +- id: 3319 + name: Reed case + friendly_id: woodwind_care_items_included__reed_case +- id: 3320 + name: Reed guard + friendly_id: woodwind_care_items_included__reed_guard +- id: 3321 + name: Reed holder + friendly_id: woodwind_care_items_included__reed_holder +- id: 3322 + name: Screwdriver + friendly_id: woodwind_care_items_included__screwdriver +- id: 3323 + name: Swab + friendly_id: woodwind_care_items_included__swab +- id: 3324 + name: A clarinet + friendly_id: compatible_clarinet_type__a_clarinet +- id: 3325 + name: B♭ clarinet + friendly_id: compatible_clarinet_type__b_clarinet +- id: 3326 + name: E♭ clarinet + friendly_id: compatible_clarinet_type__e_clarinet +- id: 3327 + name: Universal + friendly_id: compatible_clarinet_type__universal +- id: 3328 + name: Lacquered + friendly_id: instrument_accessory_finish__lacquered +- id: 3329 + name: Plated + friendly_id: instrument_accessory_finish__plated +- id: 3330 + name: Close + friendly_id: facing__close +- id: 3331 + name: Medium + friendly_id: facing__medium +- id: 3332 + name: Open + friendly_id: facing__open +- id: 3333 + name: Oval + friendly_id: embouchure_hole_shape__oval +- id: 3334 + name: Round + friendly_id: embouchure_hole_shape__round +- id: 3335 + name: Flute + friendly_id: compatible_flute_type__flute +- id: 3336 + name: Piccolo + friendly_id: compatible_flute_type__piccolo +- id: 3337 + name: Universal + friendly_id: compatible_flute_type__universal +- id: 3338 + name: Diatonic harmonica + friendly_id: compatible_harmonica_type__diatonic_harmonica +- id: 3339 + name: Chromatic harmonica + friendly_id: compatible_harmonica_type__chromatic_harmonica +- id: 3340 + name: Universal + friendly_id: compatible_harmonica_type__universal +- id: 3341 + name: English horn + friendly_id: compatible_oboe_type__english_horn +- id: 3342 + name: Oboe + friendly_id: compatible_oboe_type__oboe +- id: 3343 + name: Universal + friendly_id: compatible_oboe_type__universal +- id: 3344 + name: Recorder cleaner + friendly_id: cleaning_solution__recorder_cleaner +- id: 3345 + name: Cleaning spray + friendly_id: cleaning_solution__cleaning_spray +- id: 3346 + name: Brass + friendly_id: instrument_accessory_finish__brass +- id: 3347 + name: Gold-plated + friendly_id: instrument_accessory_finish__gold_plated +- id: 3348 + name: Pewter + friendly_id: instrument_accessory_finish__pewter +- id: 3349 + name: Pink gold-plated + friendly_id: instrument_accessory_finish__pink_gold_plated +- id: 3350 + name: Silver-plated + friendly_id: instrument_accessory_finish__silver_plated +- id: 3351 + name: Small + friendly_id: tip_opening__small +- id: 3352 + name: Medium + friendly_id: tip_opening__medium +- id: 3353 + name: Large + friendly_id: tip_opening__large +- id: 3354 + name: African blackwood + friendly_id: instrument_material__african_blackwood +- id: 3355 + name: Alder wood + friendly_id: instrument_material__alder_wood +- id: 3356 + name: Aluminum + friendly_id: instrument_material__aluminum +- id: 3357 + name: Ash wood + friendly_id: instrument_material__ash_wood +- id: 3358 + name: Basswood + friendly_id: instrument_material__basswood +- id: 3359 + name: Beech wood + friendly_id: instrument_material__beech_wood +- id: 3360 + name: Birch wood + friendly_id: instrument_material__birch_wood +- id: 3361 + name: Brass + friendly_id: instrument_material__brass +- id: 3362 + name: Brazilwood + friendly_id: instrument_material__brazilwood +- id: 3363 + name: Bronze + friendly_id: instrument_material__bronze +- id: 3364 + name: Carbon fiber + friendly_id: instrument_material__carbon_fiber +- id: 3365 + name: Ceramic + friendly_id: instrument_material__ceramic +- id: 3366 + name: Cocobolo + friendly_id: instrument_material__cocobolo +- id: 3367 + name: Copper + friendly_id: instrument_material__copper +- id: 3368 + name: Ebony wood + friendly_id: instrument_material__ebony_wood +- id: 3369 + name: Fiberglass + friendly_id: instrument_material__fiberglass +- id: 3370 + name: Gold + friendly_id: instrument_material__gold +- id: 3371 + name: Gold-plated + friendly_id: instrument_material__gold_plated +- id: 3372 + name: Hard rubber + friendly_id: instrument_material__hard_rubber +- id: 3373 + name: Mahogany + friendly_id: instrument_material__mahogany +- id: 3374 + name: Maple wood + friendly_id: instrument_material__maple_wood +- id: 3375 + name: Metal + friendly_id: instrument_material__metal +- id: 3376 + name: Nickel + friendly_id: instrument_material__nickel +- id: 3377 + name: Nickel silver + friendly_id: instrument_material__nickel_silver +- id: 3378 + name: Nickel-plated + friendly_id: instrument_material__nickel_plated +- id: 3379 + name: Nylon + friendly_id: instrument_material__nylon +- id: 3380 + name: Oak wood + friendly_id: instrument_material__oak_wood +- id: 3381 + name: Pernambuco + friendly_id: instrument_material__pernambuco +- id: 3382 + name: Plastic + friendly_id: instrument_material__plastic +- id: 3383 + name: Rosewood + friendly_id: instrument_material__rosewood +- id: 3384 + name: Rubber + friendly_id: instrument_material__rubber +- id: 3385 + name: Silicone + friendly_id: instrument_material__silicone +- id: 3386 + name: Silver + friendly_id: instrument_material__silver +- id: 3387 + name: Silver-plated + friendly_id: instrument_material__silver_plated +- id: 3388 + name: Spruce wood + friendly_id: instrument_material__spruce_wood +- id: 3389 + name: Stainless steel + friendly_id: instrument_material__stainless_steel +- id: 3390 + name: Steel + friendly_id: instrument_material__steel +- id: 3391 + name: Synthetic + friendly_id: instrument_material__synthetic +- id: 3392 + name: Wood + friendly_id: instrument_material__wood +- id: 3393 + name: Other + friendly_id: instrument_material__other +- id: 3394 + name: Concert pitch + friendly_id: accordion_tuning__concert_pitch +- id: 3395 + name: Dry + friendly_id: accordion_tuning__dry +- id: 3396 + name: Four voice double octave + friendly_id: accordion_tuning__four_voice_double_octave +- id: 3397 + name: Musette + friendly_id: accordion_tuning__musette +- id: 3398 + name: Three voice musette + friendly_id: accordion_tuning__three_voice_musette +- id: 3399 + name: Three voice octave + friendly_id: accordion_tuning__three_voice_octave +- id: 3400 + name: Tremolo + friendly_id: accordion_tuning__tremolo +- id: 3401 + name: Two voice octave + friendly_id: accordion_tuning__two_voice_octave +- id: 3402 + name: Two voice unison + friendly_id: accordion_tuning__two_voice_unison +- id: 3403 + name: Wet + friendly_id: accordion_tuning__wet +- id: 3404 + name: 8 bass + friendly_id: bass_button_configuration__8_bass +- id: 3405 + name: 12 bass + friendly_id: bass_button_configuration__12_bass +- id: 3406 + name: 24 bass + friendly_id: bass_button_configuration__24_bass +- id: 3407 + name: 32 bass + friendly_id: bass_button_configuration__32_bass +- id: 3408 + name: 48 bass + friendly_id: bass_button_configuration__48_bass +- id: 3409 + name: 60 bass + friendly_id: bass_button_configuration__60_bass +- id: 3410 + name: 72 bass + friendly_id: bass_button_configuration__72_bass +- id: 3411 + name: 80 bass + friendly_id: bass_button_configuration__80_bass +- id: 3412 + name: 96 bass + friendly_id: bass_button_configuration__96_bass +- id: 3413 + name: 120 bass + friendly_id: bass_button_configuration__120_bass +- id: 3414 + name: More than 120 + friendly_id: bass_button_configuration__more_than_120 +- id: 3415 + name: 104-button English concertina + friendly_id: concertina_button_configuration__104_button_english_concertina +- id: 3416 + name: 20-button anglo concertina + friendly_id: concertina_button_configuration__20_button_anglo_concertina +- id: 3417 + name: 30-button anglo concertina + friendly_id: concertina_button_configuration__30_button_anglo_concertina +- id: 3418 + name: 35-button duet concertina + friendly_id: concertina_button_configuration__35_button_duet_concertina +- id: 3419 + name: 40-button anglo concertina + friendly_id: concertina_button_configuration__40_button_anglo_concertina +- id: 3420 + name: 46-button duet concertina + friendly_id: concertina_button_configuration__46_button_duet_concertina +- id: 3421 + name: 48-button English concertina + friendly_id: concertina_button_configuration__48_button_english_concertina +- id: 3422 + name: 55-button duet concertina + friendly_id: concertina_button_configuration__55_button_duet_concertina +- id: 3423 + name: 56-button English concertina + friendly_id: concertina_button_configuration__56_button_english_concertina +- id: 3424 + name: 64-button English concertina + friendly_id: concertina_button_configuration__64_button_english_concertina +- id: 3425 + name: 65-button duet concertina + friendly_id: concertina_button_configuration__65_button_duet_concertina +- id: 3426 + name: 72-button English concertina + friendly_id: concertina_button_configuration__72_button_english_concertina +- id: 3427 + name: 80-button English concertina + friendly_id: concertina_button_configuration__80_button_english_concertina +- id: 3428 + name: 87-button English concertina + friendly_id: concertina_button_configuration__87_button_english_concertina +- id: 3429 + name: Other + friendly_id: concertina_button_configuration__other +- id: 3430 + name: A + friendly_id: tuning_pitch__a +- id: 3431 + name: A# + friendly_id: tuning_pitch__a# +- id: 3432 + name: Ab + friendly_id: tuning_pitch__ab +- id: 3433 + name: B + friendly_id: tuning_pitch__b +- id: 3434 + name: Bb + friendly_id: tuning_pitch__bb +- id: 3435 + name: C + friendly_id: tuning_pitch__c +- id: 3436 + name: C# + friendly_id: tuning_pitch__c# +- id: 3437 + name: D + friendly_id: tuning_pitch__d +- id: 3438 + name: D# + friendly_id: tuning_pitch__d# +- id: 3439 + name: Db + friendly_id: tuning_pitch__db +- id: 3440 + name: E + friendly_id: tuning_pitch__e +- id: 3441 + name: Eb + friendly_id: tuning_pitch__eb +- id: 3442 + name: F + friendly_id: tuning_pitch__f +- id: 3443 + name: F# + friendly_id: tuning_pitch__f# +- id: 3444 + name: G + friendly_id: tuning_pitch__g +- id: 3445 + name: G# + friendly_id: tuning_pitch__g# +- id: 3446 + name: Gb + friendly_id: tuning_pitch__gb +- id: 3447 + name: Bluetooth + friendly_id: interface_type__bluetooth +- id: 3448 + name: MIDI + friendly_id: interface_type__midi +- id: 3449 + name: USB + friendly_id: interface_type__usb +- id: 3450 + name: Weighted + friendly_id: key_type__weighted +- id: 3451 + name: Semi-weighted + friendly_id: key_type__semi_weighted +- id: 3452 + name: Synth-action + friendly_id: key_type__synth_action +- id: 3453 + name: Monophonic + friendly_id: polyphony__monophonic +- id: 3454 + name: Polyphonic + friendly_id: polyphony__polyphonic +- id: 3455 + name: Multi-timbral + friendly_id: polyphony__multi_timbral +- id: 3456 + name: Analog + friendly_id: synthesis_method__analog +- id: 3457 + name: Digital + friendly_id: synthesis_method__digital +- id: 3458 + name: Virtual analog + friendly_id: synthesis_method__virtual_analog +- id: 3459 + name: 10-piece + friendly_id: drum_configuration__10_piece +- id: 3460 + name: 4-piece + friendly_id: drum_configuration__4_piece +- id: 3461 + name: 5-piece + friendly_id: drum_configuration__5_piece +- id: 3462 + name: 6-piece + friendly_id: drum_configuration__6_piece +- id: 3463 + name: 7-piece + friendly_id: drum_configuration__7_piece +- id: 3464 + name: 8-piece + friendly_id: drum_configuration__8_piece +- id: 3465 + name: 9-piece + friendly_id: drum_configuration__9_piece +- id: 3466 + name: Shell pack + friendly_id: drum_configuration__shell_pack +- id: 3467 + name: Drum pads + friendly_id: instrument_components__drum_pads +- id: 3468 + name: Cymbal pads + friendly_id: instrument_components__cymbal_pads +- id: 3469 + name: Drum module + friendly_id: instrument_components__drum_module +- id: 3470 + name: Audio output + friendly_id: interface_type__audio_output +- id: 3471 + name: Floor + friendly_id: tom_tom_design__floor +- id: 3472 + name: Rack + friendly_id: tom_tom_design__rack +- id: 3473 + name: Hammer action + friendly_id: keyboard_action__hammer_action +- id: 3474 + name: Weighted keys + friendly_id: keyboard_action__weighted_keys +- id: 3475 + name: Sustain + friendly_id: piano_pedals__sustain +- id: 3476 + name: Soft + friendly_id: piano_pedals__soft +- id: 3477 + name: Sostenuto + friendly_id: piano_pedals__sostenuto +- id: 3478 + name: Baby grand + friendly_id: piano_size__baby_grand +- id: 3479 + name: Concert grand + friendly_id: piano_size__concert_grand +- id: 3480 + name: Console + friendly_id: piano_size__console +- id: 3481 + name: Medium grand + friendly_id: piano_size__medium_grand +- id: 3482 + name: Parlor grand + friendly_id: piano_size__parlor_grand +- id: 3483 + name: Semi-concert grand + friendly_id: piano_size__semi_concert_grand +- id: 3484 + name: Spinet + friendly_id: piano_size__spinet +- id: 3485 + name: Studio + friendly_id: piano_size__studio +- id: 3486 + name: Upright + friendly_id: piano_size__upright +- id: 3487 + name: 1/2 + friendly_id: string_instrument_size__1_2 +- id: 3488 + name: 1/4 + friendly_id: string_instrument_size__1_4 +- id: 3489 + name: 1/8 + friendly_id: string_instrument_size__1_8 +- id: 3490 + name: 1/10 + friendly_id: string_instrument_size__1_10 +- id: 3491 + name: 1/16 + friendly_id: string_instrument_size__1_16 +- id: 3492 + name: 3/4 + friendly_id: string_instrument_size__3_4 +- id: 3493 + name: 4/4 + friendly_id: string_instrument_size__4_4 +- id: 3494 + name: 7/8 + friendly_id: string_instrument_size__7_8 +- id: 3495 + name: 1/32 + friendly_id: string_instrument_size__1_32 +- id: 3496 + name: Full size + friendly_id: string_instrument_size__full_size +- id: 3497 + name: 1/2 + friendly_id: guitar_size__1_2 +- id: 3498 + name: 1/4 + friendly_id: guitar_size__1_4 +- id: 3499 + name: 3/4 + friendly_id: guitar_size__3_4 +- id: 3500 + name: Concert + friendly_id: guitar_size__concert +- id: 3501 + name: Full size + friendly_id: guitar_size__full_size +- id: 3502 + name: Jumbo + friendly_id: guitar_size__jumbo +- id: 3503 + name: Parlor + friendly_id: guitar_size__parlor +- id: 3504 + name: Short scale + friendly_id: guitar_size__short_scale +- id: 3505 + name: Concert grand + friendly_id: harp_size__concert_grand +- id: 3506 + name: Semi-grand + friendly_id: harp_size__semi_grand +- id: 3507 + name: Petite + friendly_id: harp_size__petite +- id: 3508 + name: Albert + friendly_id: clarinet_key_system__albert +- id: 3509 + name: Boehm + friendly_id: clarinet_key_system__boehm +- id: 3510 + name: Oehler + friendly_id: clarinet_key_system__oehler +- id: 3511 + name: A + friendly_id: mouthpiece__a +- id: 3512 + name: Alto + friendly_id: mouthpiece__alto +- id: 3513 + name: Bass + friendly_id: mouthpiece__bass +- id: 3514 + name: Bb + friendly_id: mouthpiece__bb +- id: 3515 + name: Contra-alto + friendly_id: mouthpiece__contra_alto +- id: 3516 + name: Eb + friendly_id: mouthpiece__eb +- id: 3517 + name: Nickel-plated + friendly_id: instrument_accessory_finish__nickel_plated +- id: 3518 + name: B footjoint + friendly_id: flute_configuration__b_footjoint +- id: 3519 + name: Closed hole (plateau) + friendly_id: flute_configuration__closed_hole_plateau +- id: 3520 + name: Inline G + friendly_id: flute_configuration__inline_g +- id: 3521 + name: Offset G + friendly_id: flute_configuration__offset_g +- id: 3522 + name: Open hole (French) + friendly_id: flute_configuration__open_hole_french +- id: 3523 + name: Conical + friendly_id: headjoint_cut__conical +- id: 3524 + name: Cylindrical + friendly_id: headjoint_cut__cylindrical +- id: 3525 + name: Wave + friendly_id: headjoint_cut__wave +- id: 3526 + name: Z-cut + friendly_id: headjoint_cut__z_cut +- id: 3527 + name: C + friendly_id: tuning__c +- id: 3528 + name: D + friendly_id: tuning__d +- id: 3529 + name: E + friendly_id: tuning__e +- id: 3530 + name: F + friendly_id: tuning__f +- id: 3531 + name: G + friendly_id: tuning__g +- id: 3532 + name: A + friendly_id: tuning__a +- id: 3533 + name: B + friendly_id: tuning__b +- id: 3534 + name: Piano-style + friendly_id: melodica_style__piano_style +- id: 3535 + name: Keyboard-style + friendly_id: melodica_style__keyboard_style +- id: 3536 + name: A major + friendly_id: musical_key__a_major +- id: 3537 + name: A minor + friendly_id: musical_key__a_minor +- id: 3538 + name: A# + friendly_id: musical_key__a# +- id: 3539 + name: Ab major + friendly_id: musical_key__ab_major +- id: 3540 + name: Ab minor + friendly_id: musical_key__ab_minor +- id: 3541 + name: B major + friendly_id: musical_key__b_major +- id: 3542 + name: B minor + friendly_id: musical_key__b_minor +- id: 3543 + name: Bb major + friendly_id: musical_key__bb_major +- id: 3544 + name: Bb minor + friendly_id: musical_key__bb_minor +- id: 3545 + name: C major + friendly_id: musical_key__c_major +- id: 3546 + name: C minor + friendly_id: musical_key__c_minor +- id: 3547 + name: C# + friendly_id: musical_key__c# +- id: 3548 + name: D major + friendly_id: musical_key__d_major +- id: 3549 + name: D minor + friendly_id: musical_key__d_minor +- id: 3550 + name: D# + friendly_id: musical_key__d# +- id: 3551 + name: Db major + friendly_id: musical_key__db_major +- id: 3552 + name: Db minor + friendly_id: musical_key__db_minor +- id: 3553 + name: E major + friendly_id: musical_key__e_major +- id: 3554 + name: E minor + friendly_id: musical_key__e_minor +- id: 3555 + name: Eb major + friendly_id: musical_key__eb_major +- id: 3556 + name: Eb minor + friendly_id: musical_key__eb_minor +- id: 3557 + name: F major + friendly_id: musical_key__f_major +- id: 3558 + name: F minor + friendly_id: musical_key__f_minor +- id: 3559 + name: F# + friendly_id: musical_key__f# +- id: 3560 + name: G major + friendly_id: musical_key__g_major +- id: 3561 + name: G minor + friendly_id: musical_key__g_minor +- id: 3562 + name: G# + friendly_id: musical_key__g# +- id: 3563 + name: Gb major + friendly_id: musical_key__gb_major +- id: 3564 + name: Gb minor + friendly_id: musical_key__gb_minor +- id: 3565 + name: Conservatory + friendly_id: oboe_key_system__conservatory +- id: 3566 + name: French + friendly_id: oboe_key_system__french +- id: 3567 + name: Pendant + friendly_id: ocarina_style__pendant +- id: 3568 + name: Inline + friendly_id: ocarina_style__inline +- id: 3569 + name: Transverse + friendly_id: ocarina_style__transverse +- id: 3570 + name: Baroque + friendly_id: recorder_fingering_system__baroque +- id: 3571 + name: German + friendly_id: recorder_fingering_system__german +- id: 3572 + name: High F# key + friendly_id: extended_saxophone_range__high_f#_key +- id: 3573 + name: Low A key + friendly_id: extended_saxophone_range__low_a_key +- id: 3574 + name: Unlacquered + friendly_id: instrument_accessory_finish__unlacquered +- id: 3575 + name: Abstract + friendly_id: item_style__abstract +- id: 3576 + name: Colorful + friendly_id: item_style__colorful +- id: 3577 + name: Elegant + friendly_id: item_style__elegant +- id: 3578 + name: Floral + friendly_id: item_style__floral +- id: 3579 + name: Formal + friendly_id: item_style__formal +- id: 3580 + name: Geometric + friendly_id: item_style__geometric +- id: 3581 + name: Minimalist + friendly_id: item_style__minimalist +- id: 3582 + name: Modern + friendly_id: item_style__modern +- id: 3583 + name: Novelty + friendly_id: item_style__novelty +- id: 3584 + name: Retro/Vintage + friendly_id: item_style__retro_vintage +- id: 3585 + name: Rustic + friendly_id: item_style__rustic +- id: 3586 + name: Other + friendly_id: item_style__other +- id: 3587 + name: Handheld + friendly_id: corsage_boutonnire_design__handheld +- id: 3588 + name: Pin-on + friendly_id: corsage_boutonnire_design__pin_on +- id: 3589 + name: Wrist + friendly_id: corsage_boutonnire_design__wrist +- id: 3590 + name: Bouquet + friendly_id: arrangement__bouquet +- id: 3591 + name: Vase + friendly_id: arrangement__vase +- id: 3592 + name: Basket + friendly_id: arrangement__basket +- id: 3593 + name: Box + friendly_id: arrangement__box +- id: 3594 + name: Short + friendly_id: stem_length__short +- id: 3595 + name: Medium + friendly_id: stem_length__medium +- id: 3596 + name: Long + friendly_id: stem_length__long +- id: 3597 + name: Rope + friendly_id: gift_bag_handle_design__rope +- id: 3598 + name: Ribbon + friendly_id: gift_bag_handle_design__ribbon +- id: 3599 + name: Die-cut + friendly_id: gift_bag_handle_design__die_cut +- id: 3600 + name: Weddings + friendly_id: celebration_type__weddings +- id: 3601 + name: Printed + friendly_id: personalization_design__printed +- id: 3602 + name: Blank + friendly_id: personalization_design__blank +- id: 3603 + name: Customizable + friendly_id: personalization_design__customizable +- id: 3604 + name: Clips + friendly_id: balloon_kit_items_included__clips +- id: 3605 + name: Pump + friendly_id: balloon_kit_items_included__pump +- id: 3606 + name: Ribbon + friendly_id: balloon_kit_items_included__ribbon +- id: 3607 + name: Weights + friendly_id: balloon_kit_items_included__weights +- id: 3608 + name: Regular (R) + friendly_id: accessory_size__regular_r +- id: 3609 + name: Animal-shaped + friendly_id: balloon_shape__animal_shaped +- id: 3610 + name: Cartoon character + friendly_id: balloon_shape__cartoon_character +- id: 3611 + name: Heart + friendly_id: balloon_shape__heart +- id: 3612 + name: Round + friendly_id: balloon_shape__round +- id: 3613 + name: Star + friendly_id: balloon_shape__star +- id: 3614 + name: Garland + friendly_id: banner_design__garland +- id: 3615 + name: Letters + friendly_id: banner_design__letters +- id: 3616 + name: Shapes + friendly_id: banner_design__shapes +- id: 3617 + name: Tassel + friendly_id: banner_design__tassel +- id: 3618 + name: Age-specific + friendly_id: birthday_candle_design__age_specific +- id: 3619 + name: Animal-shaped + friendly_id: birthday_candle_design__animal_shaped +- id: 3620 + name: Cartoon character + friendly_id: birthday_candle_design__cartoon_character +- id: 3621 + name: Sports accessory + friendly_id: birthday_candle_design__sports_accessory +- id: 3622 + name: Tropical + friendly_id: cocktail_decoration_design__tropical +- id: 3623 + name: Polka dots + friendly_id: cocktail_decoration_design__polka_dots +- id: 3624 + name: Striped + friendly_id: cocktail_decoration_design__striped +- id: 3625 + name: Novelty shapes + friendly_id: cocktail_decoration_design__novelty_shapes +- id: 3626 + name: Aluminum + friendly_id: accessory_material__aluminum +- id: 3627 + name: Bamboo + friendly_id: accessory_material__bamboo +- id: 3628 + name: Cardboard + friendly_id: accessory_material__cardboard +- id: 3629 + name: Glass + friendly_id: accessory_material__glass +- id: 3630 + name: Metal + friendly_id: accessory_material__metal +- id: 3631 + name: Paper + friendly_id: accessory_material__paper +- id: 3632 + name: Plastic + friendly_id: accessory_material__plastic +- id: 3633 + name: Rubber + friendly_id: accessory_material__rubber +- id: 3634 + name: Silicone + friendly_id: accessory_material__silicone +- id: 3635 + name: Stainless steel + friendly_id: accessory_material__stainless_steel +- id: 3636 + name: Wood + friendly_id: accessory_material__wood +- id: 3637 + name: Custom + friendly_id: shape__custom +- id: 3638 + name: Cups + friendly_id: game_components__cups +- id: 3639 + name: Deck of cards + friendly_id: game_components__deck_of_cards +- id: 3640 + name: Dice + friendly_id: game_components__dice +- id: 3641 + name: Game board + friendly_id: game_components__game_board +- id: 3642 + name: Jenga blocks + friendly_id: game_components__jenga_blocks +- id: 3643 + name: Ping pong balls + friendly_id: game_components__ping_pong_balls +- id: 3644 + name: Other + friendly_id: game_components__other +- id: 3645 + name: Easy + friendly_id: game_difficulty__easy +- id: 3646 + name: Medium + friendly_id: game_difficulty__medium +- id: 3647 + name: Difficult + friendly_id: game_difficulty__difficult +- id: 3648 + name: Beer pong + friendly_id: game_name__beer_pong +- id: 3649 + name: Drunk jenga + friendly_id: game_name__drunk_jenga +- id: 3650 + name: Flip cup + friendly_id: game_name__flip_cup +- id: 3651 + name: Kings cup + friendly_id: game_name__kings_cup +- id: 3652 + name: Never have I ever + friendly_id: game_name__never_have_i_ever +- id: 3653 + name: Power hour + friendly_id: game_name__power_hour +- id: 3654 + name: Quarters + friendly_id: game_name__quarters +- id: 3655 + name: Ring of fire + friendly_id: game_name__ring_of_fire +- id: 3656 + name: Truth or drink + friendly_id: game_name__truth_or_drink +- id: 3657 + name: Other + friendly_id: game_name__other +- id: 3658 + name: Extra long + friendly_id: accessory_size__extra_long +- id: 3659 + name: Flexible + friendly_id: straw_stirrer_design__flexible +- id: 3660 + name: Straight + friendly_id: straw_stirrer_design__straight +- id: 3661 + name: Umbrella + friendly_id: straw_stirrer_design__umbrella +- id: 3662 + name: Monogram + friendly_id: envelope_seal_design__monogram +- id: 3663 + name: Floral + friendly_id: envelope_seal_design__floral +- id: 3664 + name: Foil stamped + friendly_id: envelope_seal_design__foil_stamped +- id: 3665 + name: Wax seal + friendly_id: envelope_seal_design__wax_seal +- id: 3666 + name: Personalized + friendly_id: envelope_seal_design__personalized +- id: 3667 + name: Concert + friendly_id: celebration_type__concert +- id: 3668 + name: Conference + friendly_id: celebration_type__conference +- id: 3669 + name: Theater performance + friendly_id: celebration_type__theater_performance +- id: 3670 + name: Booklet + friendly_id: program_format__booklet +- id: 3671 + name: Folded + friendly_id: program_format__folded +- id: 3672 + name: Letter + friendly_id: program_format__letter +- id: 3673 + name: Single sheet + friendly_id: program_format__single_sheet +- id: 3674 + name: Low + friendly_id: noise_intensity__low +- id: 3675 + name: Medium + friendly_id: noise_intensity__medium +- id: 3676 + name: High + friendly_id: noise_intensity__high +- id: 3677 + name: Flat card + friendly_id: card_format__flat_card +- id: 3678 + name: Folded card + friendly_id: card_format__folded_card +- id: 3679 + name: Pocket invitation + friendly_id: card_format__pocket_invitation +- id: 3680 + name: Customizable + friendly_id: invitation_personalization_design__customizable +- id: 3681 + name: Blank spaces + friendly_id: invitation_personalization_design__blank_spaces +- id: 3682 + name: RSVP included + friendly_id: invitation_personalization_design__rsvp_included +- id: 3683 + name: Traditional + friendly_id: piata_design__traditional +- id: 3684 + name: Animal + friendly_id: piata_design__animal +- id: 3685 + name: Character + friendly_id: piata_design__character +- id: 3686 + name: Number + friendly_id: piata_design__number +- id: 3687 + name: Clip-on + friendly_id: card_holder_design__clip_on +- id: 3688 + name: Stand-up + friendly_id: card_holder_design__stand_up +- id: 3689 + name: Photo holder + friendly_id: card_holder_design__photo_holder +- id: 3690 + name: Novelty shapes + friendly_id: card_holder_design__novelty_shapes +- id: 3691 + name: Tent + friendly_id: card_design__tent +- id: 3692 + name: Flat + friendly_id: card_design__flat +- id: 3693 + name: Folded + friendly_id: card_design__folded +- id: 3694 + name: Ceiling + friendly_id: mounting_type__ceiling +- id: 3695 + name: Free-standing + friendly_id: mounting_type__free_standing +- id: 3696 + name: Wall + friendly_id: mounting_type__wall +- id: 3697 + name: Water-based + friendly_id: fluid_type__water_based +- id: 3698 + name: Fog juice + friendly_id: fluid_type__fog_juice +- id: 3699 + name: Dry ice + friendly_id: fluid_type__dry_ice +- id: 3700 + name: DMX + friendly_id: sfx_control_technology__dmx +- id: 3701 + name: Manual + friendly_id: sfx_control_technology__manual +- id: 3702 + name: Remote control + friendly_id: sfx_control_technology__remote_control +- id: 3703 + name: LED lights + friendly_id: compatible_special_effects_device__led_lights +- id: 3704 + name: Fog machine + friendly_id: compatible_special_effects_device__fog_machine +- id: 3705 + name: Laser lights + friendly_id: compatible_special_effects_device__laser_lights +- id: 3706 + name: Strobe lights + friendly_id: compatible_special_effects_device__strobe_lights +- id: 3707 + name: Lighting fixtures + friendly_id: compatible_special_effects_device__lighting_fixtures +- id: 3708 + name: Gobo projector + friendly_id: compatible_special_effects_device__gobo_projector +- id: 3709 + name: Light-duty + friendly_id: load_capacity__light_duty +- id: 3710 + name: Medium-duty + friendly_id: load_capacity__medium_duty +- id: 3711 + name: Heavy-duty + friendly_id: load_capacity__heavy_duty +- id: 3712 + name: Floor + friendly_id: mounting_type__floor +- id: 3713 + name: Sound-activated + friendly_id: sfx_control_technology__sound_activated +- id: 3714 + name: Academic + friendly_id: award_occasion__academic +- id: 3715 + name: Achievement + friendly_id: award_occasion__achievement +- id: 3716 + name: Employee recognition + friendly_id: award_occasion__employee_recognition +- id: 3717 + name: Graduation + friendly_id: award_occasion__graduation +- id: 3718 + name: Sports event + friendly_id: award_occasion__sports_event +- id: 3719 + name: Formal + friendly_id: award_design__formal +- id: 3720 + name: Modern + friendly_id: award_design__modern +- id: 3721 + name: Elegant + friendly_id: award_design__elegant +- id: 3722 + name: Fun + friendly_id: award_design__fun +- id: 3723 + name: Custom text + friendly_id: engraving__custom_text +- id: 3724 + name: Logo engraving + friendly_id: engraving__logo_engraving +- id: 3725 + name: Column + friendly_id: trophy_design__column +- id: 3726 + name: Cup + friendly_id: trophy_design__cup +- id: 3727 + name: Custom + friendly_id: trophy_design__custom +- id: 3728 + name: Diamond + friendly_id: trophy_design__diamond +- id: 3729 + name: Figurine + friendly_id: trophy_design__figurine +- id: 3730 + name: Globe + friendly_id: trophy_design__globe +- id: 3731 + name: Plaque + friendly_id: trophy_design__plaque +- id: 3732 + name: Shield + friendly_id: trophy_design__shield +- id: 3733 + name: Star + friendly_id: trophy_design__star +- id: 3734 + name: 0-3 months + friendly_id: infant_age_group__0_3_months +- id: 3735 + name: 3-6 months + friendly_id: infant_age_group__3_6_months +- id: 3736 + name: 0-6 months + friendly_id: infant_age_group__0_6_months +- id: 3737 + name: 6-12 months + friendly_id: infant_age_group__6_12_months +- id: 3738 + name: 0-24 months + friendly_id: infant_age_group__0_24_months +- id: 3739 + name: 1-2 years + friendly_id: infant_age_group__1_2_years +- id: 3740 + name: 2-3 years + friendly_id: infant_age_group__2_3_years +- id: 3741 + name: Newborn + friendly_id: infant_age_group__newborn +- id: 3742 + name: 6 months or older + friendly_id: infant_age_group__6_months_or_older +- id: 3743 + name: 9 months or older + friendly_id: infant_age_group__9_months_or_older +- id: 3744 + name: 12 months or older + friendly_id: infant_age_group__12_months_or_older +- id: 3745 + name: 24 months or older + friendly_id: infant_age_group__24_months_or_older +- id: 3746 + name: 3 years or older + friendly_id: infant_age_group__3_years_or_older +- id: 3747 + name: Other + friendly_id: infant_age_group__other +- id: 3748 + name: All ages + friendly_id: infant_age_group__all_ages +- id: 3749 + name: ASTM F1967-19 + friendly_id: safety_certifications__astm_f1967_19 +- id: 3750 + name: EN 71 + friendly_id: safety_certifications__en_71 +- id: 3751 + name: BPA-free + friendly_id: safety_certifications__bpa_free +- id: 3752 + name: Phthalate-free + friendly_id: safety_certifications__phthalate_free +- id: 3753 + name: Clothing + friendly_id: baby_gift_items_included__clothing +- id: 3754 + name: Blanket + friendly_id: baby_gift_items_included__blanket +- id: 3755 + name: Bibs + friendly_id: baby_gift_items_included__bibs +- id: 3756 + name: Socks + friendly_id: baby_gift_items_included__socks +- id: 3757 + name: Hats + friendly_id: baby_gift_items_included__hats +- id: 3758 + name: Toys + friendly_id: baby_gift_items_included__toys +- id: 3759 + name: Books + friendly_id: baby_gift_items_included__books +- id: 3760 + name: Rattles + friendly_id: baby_gift_items_included__rattles +- id: 3761 + name: Teethers + friendly_id: baby_gift_items_included__teethers +- id: 3762 + name: Washcloths + friendly_id: baby_gift_items_included__washcloths +- id: 3763 + name: Burp cloths + friendly_id: baby_gift_items_included__burp_cloths +- id: 3764 + name: Other + friendly_id: baby_gift_items_included__other +- id: 3765 + name: Gift box + friendly_id: gift_set_format__gift_box +- id: 3766 + name: Gift bag + friendly_id: gift_set_format__gift_bag +- id: 3767 + name: Gift basket + friendly_id: gift_set_format__gift_basket +- id: 3768 + name: Custom message + friendly_id: personalization_options__custom_message +- id: 3769 + name: Monogram + friendly_id: personalization_options__monogram +- id: 3770 + name: Personalized name + friendly_id: personalization_options__personalized_name +- id: 3771 + name: None + friendly_id: personalization_options__none +- id: 3772 + name: Nail clippers + friendly_id: baby_health_items_included__nail_clippers +- id: 3773 + name: Hair brush + friendly_id: baby_health_items_included__hair_brush +- id: 3774 + name: Comb + friendly_id: baby_health_items_included__comb +- id: 3775 + name: Thermometer + friendly_id: baby_health_items_included__thermometer +- id: 3776 + name: Nasal aspirator + friendly_id: baby_health_items_included__nasal_aspirator +- id: 3777 + name: Medicine dropper + friendly_id: baby_health_items_included__medicine_dropper +- id: 3778 + name: Finger toothbrush + friendly_id: baby_health_items_included__finger_toothbrush +- id: 3779 + name: Gum massager + friendly_id: baby_health_items_included__gum_massager +- id: 3780 + name: Storage case + friendly_id: baby_health_items_included__storage_case +- id: 3781 + name: Other + friendly_id: baby_health_items_included__other +- id: 3782 + name: Kit bag + friendly_id: grooming_kit_format__kit_bag +- id: 3783 + name: Box + friendly_id: grooming_kit_format__box +- id: 3784 + name: Fresh + friendly_id: wipe_fragrance__fresh +- id: 3785 + name: Citrus + friendly_id: wipe_fragrance__citrus +- id: 3786 + name: Lavender + friendly_id: wipe_fragrance__lavender +- id: 3787 + name: Pure + friendly_id: wipe_fragrance__pure +- id: 3788 + name: Unscented + friendly_id: wipe_fragrance__unscented +- id: 3789 + name: Other + friendly_id: wipe_fragrance__other +- id: 3790 + name: Orthodontic + friendly_id: pacifier_teether_design__orthodontic +- id: 3791 + name: Symmetrical + friendly_id: pacifier_teether_design__symmetrical +- id: 3792 + name: Animal-shaped + friendly_id: pacifier_teether_design__animal_shaped +- id: 3793 + name: Fruit-shaped + friendly_id: pacifier_teether_design__fruit_shaped +- id: 3794 + name: Ring-shaped + friendly_id: pacifier_teether_design__ring_shaped +- id: 3795 + name: Other + friendly_id: pacifier_teether_design__other +- id: 3796 + name: Wedge-shaped + friendly_id: door_stopper_design__wedge_shaped +- id: 3797 + name: Hook-shaped + friendly_id: door_stopper_design__hook_shaped +- id: 3798 + name: Pressure-mounted + friendly_id: safety_device_installation__pressure_mounted +- id: 3799 + name: Hardware-mounted + friendly_id: safety_device_installation__hardware_mounted +- id: 3800 + name: Push-button + friendly_id: locking_mechanism__push_button +- id: 3801 + name: Slide + friendly_id: locking_mechanism__slide +- id: 3802 + name: Twist + friendly_id: locking_mechanism__twist +- id: 3803 + name: One-handed operation + friendly_id: locking_mechanism__one_handed_operation +- id: 3804 + name: Double-locking + friendly_id: locking_mechanism__double_locking +- id: 3805 + name: Auto-close + friendly_id: locking_mechanism__auto_close +- id: 3806 + name: Doorway + friendly_id: gate_mounting_type__doorway +- id: 3807 + name: Wall + friendly_id: gate_mounting_type__wall +- id: 3808 + name: One-way swing + friendly_id: opening_direction__one_way_swing +- id: 3809 + name: Two-way swing + friendly_id: opening_direction__two_way_swing +- id: 3810 + name: Push-button + friendly_id: opening_mechanism__push_button +- id: 3811 + name: Lever + friendly_id: opening_mechanism__lever +- id: 3812 + name: Foot pedal + friendly_id: opening_mechanism__foot_pedal +- id: 3813 + name: DECT + friendly_id: connectivity_technology__dect +- id: 3814 + name: Black & white + friendly_id: display_color_mode__black_white +- id: 3815 + name: Color + friendly_id: display_color_mode__color +- id: 3816 + name: Short-range + friendly_id: range_type__short_range +- id: 3817 + name: Long-range + friendly_id: range_type__long_range +- id: 3818 + name: Adhesive + friendly_id: safety_device_installation__adhesive +- id: 3819 + name: Screw-mounted + friendly_id: safety_device_installation__screw_mounted +- id: 3820 + name: Magnetic + friendly_id: locking_mechanism__magnetic +- id: 3821 + name: Sliding + friendly_id: locking_mechanism__sliding +- id: 3822 + name: Portable + friendly_id: safety_rail_installation__portable +- id: 3823 + name: Permanent + friendly_id: safety_rail_installation__permanent +- id: 3824 + name: Adjustable + friendly_id: safety_rail_installation__adjustable +- id: 3825 + name: Afrikaans + friendly_id: language__afrikaans +- id: 3826 + name: Albanian + friendly_id: language__albanian +- id: 3827 + name: Arabic + friendly_id: language__arabic +- id: 3828 + name: Armenian + friendly_id: language__armenian +- id: 3829 + name: Basque + friendly_id: language__basque +- id: 3830 + name: Bulgarian + friendly_id: language__bulgarian +- id: 3831 + name: Catalan + friendly_id: language__catalan +- id: 3832 + name: Chinese (simplified) + friendly_id: language__chinese_simplified +- id: 3833 + name: Chinese (traditional) + friendly_id: language__chinese_traditional +- id: 3834 + name: Croatian + friendly_id: language__croatian +- id: 3835 + name: Czech + friendly_id: language__czech +- id: 3836 + name: Danish + friendly_id: language__danish +- id: 3837 + name: Dutch + friendly_id: language__dutch +- id: 3838 + name: Dutch (Belgium) + friendly_id: language__dutch_belgium +- id: 3839 + name: English + friendly_id: language__english +- id: 3840 + name: English (India) + friendly_id: language__english_india +- id: 3841 + name: English (Singapore) + friendly_id: language__english_singapore +- id: 3842 + name: English (United States) + friendly_id: language__english_united_states +- id: 3843 + name: Estonian + friendly_id: language__estonian +- id: 3844 + name: Farsi + friendly_id: language__farsi +- id: 3845 + name: Filipino + friendly_id: language__filipino +- id: 3846 + name: Finnish + friendly_id: language__finnish +- id: 3847 + name: French + friendly_id: language__french +- id: 3848 + name: French (Belgium) + friendly_id: language__french_belgium +- id: 3849 + name: French (Switzerland) + friendly_id: language__french_switzerland +- id: 3850 + name: Galician + friendly_id: language__galician +- id: 3851 + name: Georgian + friendly_id: language__georgian +- id: 3852 + name: German + friendly_id: language__german +- id: 3853 + name: German (Belgium) + friendly_id: language__german_belgium +- id: 3854 + name: German (Switzerland) + friendly_id: language__german_switzerland +- id: 3855 + name: Greek + friendly_id: language__greek +- id: 3856 + name: Hebrew + friendly_id: language__hebrew +- id: 3857 + name: Hindi + friendly_id: language__hindi +- id: 3858 + name: Hungarian + friendly_id: language__hungarian +- id: 3859 + name: Icelandic + friendly_id: language__icelandic +- id: 3860 + name: Indonesian + friendly_id: language__indonesian +- id: 3861 + name: Italian + friendly_id: language__italian +- id: 3862 + name: Japanese + friendly_id: language__japanese +- id: 3863 + name: Kazakh + friendly_id: language__kazakh +- id: 3864 + name: Kirghiz + friendly_id: language__kirghiz +- id: 3865 + name: Korean + friendly_id: language__korean +- id: 3866 + name: Kurdish + friendly_id: language__kurdish +- id: 3867 + name: Latvian + friendly_id: language__latvian +- id: 3868 + name: Lithuanian + friendly_id: language__lithuanian +- id: 3869 + name: Malay + friendly_id: language__malay +- id: 3870 + name: Mandar + friendly_id: language__mandar +- id: 3871 + name: Mongolian + friendly_id: language__mongolian +- id: 3872 + name: Nepali + friendly_id: language__nepali +- id: 3873 + name: Norwegian + friendly_id: language__norwegian +- id: 3874 + name: Persian + friendly_id: language__persian +- id: 3875 + name: Polish + friendly_id: language__polish +- id: 3876 + name: Portuguese + friendly_id: language__portuguese +- id: 3877 + name: Portuguese (Brazil) + friendly_id: language__portuguese_brazil +- id: 3878 + name: Romanian + friendly_id: language__romanian +- id: 3879 + name: Romansh + friendly_id: language__romansh +- id: 3880 + name: Russian + friendly_id: language__russian +- id: 3881 + name: Serbian + friendly_id: language__serbian +- id: 3882 + name: Slovak + friendly_id: language__slovak +- id: 3883 + name: Slovenian + friendly_id: language__slovenian +- id: 3884 + name: Spanish + friendly_id: language__spanish +- id: 3885 + name: Spanish (Latin America) + friendly_id: language__spanish_latin_america +- id: 3886 + name: Swedish + friendly_id: language__swedish +- id: 3887 + name: Tagalog + friendly_id: language__tagalog +- id: 3888 + name: Thai + friendly_id: language__thai +- id: 3889 + name: Tibetan + friendly_id: language__tibetan +- id: 3890 + name: Turkish + friendly_id: language__turkish +- id: 3891 + name: Ukrainian + friendly_id: language__ukrainian +- id: 3892 + name: Vietnamese + friendly_id: language__vietnamese +- id: 3893 + name: Multilingual + friendly_id: language__multilingual +- id: 3894 + name: Vibrating + friendly_id: motion__vibrating +- id: 3895 + name: Bouncing + friendly_id: motion__bouncing +- id: 3896 + name: Rocking + friendly_id: motion__rocking +- id: 3897 + name: Swinging + friendly_id: motion__swinging +- id: 3898 + name: 3-point harness + friendly_id: safety_features__3_point_harness +- id: 3899 + name: 5-point harness + friendly_id: safety_features__5_point_harness +- id: 3900 + name: Non-slip base + friendly_id: safety_features__non_slip_base +- id: 3901 + name: Other + friendly_id: safety_features__other +- id: 3902 + name: Crib + friendly_id: mobile_mounting_type__crib +- id: 3903 + name: Stroller + friendly_id: mobile_mounting_type__stroller +- id: 3904 + name: Wall + friendly_id: mobile_mounting_type__wall +- id: 3905 + name: Hanging + friendly_id: attachment_method__hanging +- id: 3906 + name: Clamping + friendly_id: attachment_method__clamping +- id: 3907 + name: Velcro + friendly_id: attachment_method__velcro +- id: 3908 + name: Wind-up + friendly_id: mobile_movement__wind_up +- id: 3909 + name: Battery-operated + friendly_id: mobile_movement__battery_operated +- id: 3910 + name: Animals + friendly_id: nursery_theme__animals +- id: 3911 + name: Dinosaurs + friendly_id: nursery_theme__dinosaurs +- id: 3912 + name: Floral + friendly_id: nursery_theme__floral +- id: 3913 + name: Forest + friendly_id: nursery_theme__forest +- id: 3914 + name: Jungle + friendly_id: nursery_theme__jungle +- id: 3915 + name: Nautical + friendly_id: nursery_theme__nautical +- id: 3916 + name: Nature + friendly_id: nursery_theme__nature +- id: 3917 + name: Music + friendly_id: nursery_theme__music +- id: 3918 + name: Ocean + friendly_id: nursery_theme__ocean +- id: 3919 + name: Princess + friendly_id: nursery_theme__princess +- id: 3920 + name: Rainbows + friendly_id: nursery_theme__rainbows +- id: 3921 + name: Space + friendly_id: nursery_theme__space +- id: 3922 + name: Other + friendly_id: nursery_theme__other +- id: 3923 + name: Clip-on + friendly_id: attachment_method__clip_on +- id: 3924 + name: Standalone + friendly_id: attachment_method__standalone +- id: 3925 + name: Soft glow + friendly_id: light_options__soft_glow +- id: 3926 + name: Color-changing + friendly_id: light_options__color_changing +- id: 3927 + name: Projector + friendly_id: light_options__projector +- id: 3928 + name: Heartbeat + friendly_id: soothing_sounds__heartbeat +- id: 3929 + name: Lullabies + friendly_id: soothing_sounds__lullabies +- id: 3930 + name: Nature + friendly_id: soothing_sounds__nature +- id: 3931 + name: White noise + friendly_id: soothing_sounds__white_noise +- id: 3932 + name: Latch system + friendly_id: car_seat_installation__latch_system +- id: 3933 + name: Seat belt installation + friendly_id: car_seat_installation__seat_belt_installation +- id: 3934 + name: Rear-facing + friendly_id: car_seat_orientation__rear_facing +- id: 3935 + name: Forward-facing + friendly_id: car_seat_orientation__forward_facing +- id: 3936 + name: One-hand + friendly_id: folding_mechanism__one_hand +- id: 3937 + name: Compact + friendly_id: folding_mechanism__compact +- id: 3938 + name: Self-standing + friendly_id: folding_mechanism__self_standing +- id: 3939 + name: All-terrain + friendly_id: stroller_wheel_type__all_terrain +- id: 3940 + name: Air-filled + friendly_id: stroller_wheel_type__air_filled +- id: 3941 + name: Swivel + friendly_id: stroller_wheel_type__swivel +- id: 3942 + name: Front-facing + friendly_id: carrying_positions__front_facing +- id: 3943 + name: Back-facing + friendly_id: carrying_positions__back_facing +- id: 3944 + name: Hip carry + friendly_id: carrying_positions__hip_carry +- id: 3945 + name: Ties + friendly_id: closure_type__ties +- id: 3946 + name: Side-by-side + friendly_id: double_stroller_configuration__side_by_side +- id: 3947 + name: Tandem (front & back) + friendly_id: double_stroller_configuration__tandem_front_back +- id: 3948 + name: Booster seat + friendly_id: compatible_seat_type__booster_seat +- id: 3949 + name: Convertible car seat + friendly_id: compatible_seat_type__convertible_car_seat +- id: 3950 + name: Infant car seat + friendly_id: compatible_seat_type__infant_car_seat +- id: 3951 + name: Backpack carrier + friendly_id: compatible_baby_carrier_type__backpack_carrier +- id: 3952 + name: Mei tai + friendly_id: compatible_baby_carrier_type__mei_tai +- id: 3953 + name: Ring sling + friendly_id: compatible_baby_carrier_type__ring_sling +- id: 3954 + name: Soft-structured carrier + friendly_id: compatible_baby_carrier_type__soft_structured_carrier +- id: 3955 + name: Wrap + friendly_id: compatible_baby_carrier_type__wrap +- id: 3956 + name: Convertible + friendly_id: compatible_stroller_type__convertible +- id: 3957 + name: Double + friendly_id: compatible_stroller_type__double +- id: 3958 + name: Full-sized + friendly_id: compatible_stroller_type__full_sized +- id: 3959 + name: Jogging + friendly_id: compatible_stroller_type__jogging +- id: 3960 + name: Umbrella + friendly_id: compatible_stroller_type__umbrella +- id: 3961 + name: Baby carrier + friendly_id: compatible_baby_transport_type__baby_carrier +- id: 3962 + name: Car seat + friendly_id: compatible_baby_transport_type__car_seat +- id: 3963 + name: Stroller + friendly_id: compatible_baby_transport_type__stroller +- id: 3964 + name: High chair + friendly_id: compatible_baby_chair_type__high_chair +- id: 3965 + name: Restaurant high chair + friendly_id: compatible_baby_chair_type__restaurant_high_chair +- id: 3966 + name: Shopping cart + friendly_id: compatible_baby_chair_type__shopping_cart +- id: 3967 + name: Plastic tub + friendly_id: wipe_packaging__plastic_tub +- id: 3968 + name: Refill pack + friendly_id: wipe_packaging__refill_pack +- id: 3969 + name: Soft pack + friendly_id: wipe_packaging__soft_pack +- id: 3970 + name: Travel size + friendly_id: wipe_packaging__travel_size +- id: 3971 + name: Diaper changing pad + friendly_id: diaper_kit_components__diaper_changing_pad +- id: 3972 + name: Diapers + friendly_id: diaper_kit_components__diapers +- id: 3973 + name: Wipes + friendly_id: diaper_kit_components__wipes +- id: 3974 + name: Diaper cream + friendly_id: diaper_kit_components__diaper_cream +- id: 3975 + name: Disposable bags + friendly_id: diaper_kit_components__disposable_bags +- id: 3976 + name: Changing mat + friendly_id: diaper_kit_components__changing_mat +- id: 3977 + name: Hand sanitizer + friendly_id: diaper_kit_components__hand_sanitizer +- id: 3978 + name: Pump bottle + friendly_id: dispenser_type__pump_bottle +- id: 3979 + name: Squeeze bottle + friendly_id: dispenser_type__squeeze_bottle +- id: 3980 + name: Fragrance-free + friendly_id: fragrance_level__fragrance_free +- id: 3981 + name: Lightly scented + friendly_id: fragrance_level__lightly_scented +- id: 3982 + name: Other + friendly_id: fragrance_level__other +- id: 3983 + name: Zinc oxide + friendly_id: ingredients__zinc_oxide +- id: 3984 + name: Petroleum jelly + friendly_id: ingredients__petroleum_jelly +- id: 3985 + name: Calendula + friendly_id: ingredients__calendula +- id: 3986 + name: Aloe vera + friendly_id: ingredients__aloe_vera +- id: 3987 + name: Vitamin E + friendly_id: ingredients__vitamin_e +- id: 3988 + name: Lanolin + friendly_id: ingredients__lanolin +- id: 3989 + name: Other + friendly_id: ingredients__other +- id: 3990 + name: Creamy + friendly_id: treatment_texture__creamy +- id: 3991 + name: Thick + friendly_id: treatment_texture__thick +- id: 3992 + name: Smooth + friendly_id: treatment_texture__smooth +- id: 3993 + name: Powder + friendly_id: treatment_texture__powder +- id: 3994 + name: '1' + friendly_id: diaper_size__1 +- id: 3995 + name: '2' + friendly_id: diaper_size__2 +- id: 3996 + name: '3' + friendly_id: diaper_size__3 +- id: 3997 + name: '4' + friendly_id: diaper_size__4 +- id: 3998 + name: '5' + friendly_id: diaper_size__5 +- id: 3999 + name: '6' + friendly_id: diaper_size__6 +- id: 4000 + name: '7' + friendly_id: diaper_size__7 +- id: 4001 + name: Preemie + friendly_id: diaper_size__preemie +- id: 4002 + name: Newborn + friendly_id: diaper_size__newborn +- id: 4003 + name: Toddler + friendly_id: diaper_size__toddler +- id: 4004 + name: Other + friendly_id: diaper_size__other +- id: 4005 + name: Gluten-free + friendly_id: dietary_preferences__gluten_free +- id: 4006 + name: Dairy-free + friendly_id: dietary_preferences__dairy_free +- id: 4007 + name: Nut-free + friendly_id: dietary_preferences__nut_free +- id: 4008 + name: Soy-free + friendly_id: dietary_preferences__soy_free +- id: 4009 + name: Other + friendly_id: dietary_preferences__other +- id: 4010 + name: Barley + friendly_id: flour_grain_type__barley +- id: 4011 + name: Multigrain + friendly_id: flour_grain_type__multigrain +- id: 4012 + name: Oats + friendly_id: flour_grain_type__oats +- id: 4013 + name: Rice + friendly_id: flour_grain_type__rice +- id: 4014 + name: Other + friendly_id: flour_grain_type__other +- id: 4015 + name: Chocolate + friendly_id: baby_food_flavor__chocolate +- id: 4016 + name: Mixed fruits + friendly_id: baby_food_flavor__mixed_fruits +- id: 4017 + name: Strawberry + friendly_id: baby_food_flavor__strawberry +- id: 4018 + name: Unflavored + friendly_id: baby_food_flavor__unflavored +- id: 4019 + name: Vanilla + friendly_id: baby_food_flavor__vanilla +- id: 4020 + name: Other + friendly_id: baby_food_flavor__other +- id: 4021 + name: Bottle + friendly_id: baby_drink_packaging__bottle +- id: 4022 + name: Carton + friendly_id: baby_drink_packaging__carton +- id: 4023 + name: Tetra pack + friendly_id: baby_drink_packaging__tetra_pack +- id: 4024 + name: Apple + friendly_id: baby_food_flavor__apple +- id: 4025 + name: Apricot + friendly_id: baby_food_flavor__apricot +- id: 4026 + name: Avocado + friendly_id: baby_food_flavor__avocado +- id: 4027 + name: Banana + friendly_id: baby_food_flavor__banana +- id: 4028 + name: Barley + friendly_id: baby_food_flavor__barley +- id: 4029 + name: Blackberry + friendly_id: baby_food_flavor__blackberry +- id: 4030 + name: Blueberry + friendly_id: baby_food_flavor__blueberry +- id: 4031 + name: Broccoli + friendly_id: baby_food_flavor__broccoli +- id: 4032 + name: Brown rice + friendly_id: baby_food_flavor__brown_rice +- id: 4033 + name: Butternut squash + friendly_id: baby_food_flavor__butternut_squash +- id: 4034 + name: Carrot + friendly_id: baby_food_flavor__carrot +- id: 4035 + name: Cauliflower + friendly_id: baby_food_flavor__cauliflower +- id: 4036 + name: Cherry + friendly_id: baby_food_flavor__cherry +- id: 4037 + name: Green beans + friendly_id: baby_food_flavor__green_beans +- id: 4038 + name: Kiwi + friendly_id: baby_food_flavor__kiwi +- id: 4039 + name: Lentils + friendly_id: baby_food_flavor__lentils +- id: 4040 + name: Mango + friendly_id: baby_food_flavor__mango +- id: 4041 + name: Meat + friendly_id: baby_food_flavor__meat +- id: 4042 + name: Oatmeal + friendly_id: baby_food_flavor__oatmeal +- id: 4043 + name: Papaya + friendly_id: baby_food_flavor__papaya +- id: 4044 + name: Peas + friendly_id: baby_food_flavor__peas +- id: 4045 + name: Peach + friendly_id: baby_food_flavor__peach +- id: 4046 + name: Pear + friendly_id: baby_food_flavor__pear +- id: 4047 + name: Pineapple + friendly_id: baby_food_flavor__pineapple +- id: 4048 + name: Plum + friendly_id: baby_food_flavor__plum +- id: 4049 + name: Pumpkin + friendly_id: baby_food_flavor__pumpkin +- id: 4050 + name: Quinoa + friendly_id: baby_food_flavor__quinoa +- id: 4051 + name: Raspberry + friendly_id: baby_food_flavor__raspberry +- id: 4052 + name: Spinach + friendly_id: baby_food_flavor__spinach +- id: 4053 + name: Sweet potato + friendly_id: baby_food_flavor__sweet_potato +- id: 4054 + name: Vegetables + friendly_id: baby_food_flavor__vegetables +- id: 4055 + name: Watermelon + friendly_id: baby_food_flavor__watermelon +- id: 4056 + name: Zucchini + friendly_id: baby_food_flavor__zucchini +- id: 4057 + name: Level 1 (0-6 months) + friendly_id: formula_level__level_1_0_6_months +- id: 4058 + name: Level 2 (6-12 months) + friendly_id: formula_level__level_2_6_12_months +- id: 4059 + name: Level 3 (+12 months) + friendly_id: formula_level__level_3_+12_months +- id: 4060 + name: Dry powder + friendly_id: baby_formula_format__dry_powder +- id: 4061 + name: Ready-to-feed + friendly_id: baby_formula_format__ready_to_feed +- id: 4062 + name: Cheese + friendly_id: baby_snack_flavor__cheese +- id: 4063 + name: Fruit + friendly_id: baby_snack_flavor__fruit +- id: 4064 + name: Grains + friendly_id: baby_snack_flavor__grains +- id: 4065 + name: Vegetables + friendly_id: baby_snack_flavor__vegetables +- id: 4066 + name: Other + friendly_id: baby_snack_flavor__other +- id: 4067 + name: Puffs + friendly_id: baby_snack_texture__puffs +- id: 4068 + name: Crackers + friendly_id: baby_snack_texture__crackers +- id: 4069 + name: Soft bites + friendly_id: baby_snack_texture__soft_bites +- id: 4070 + name: Berries + friendly_id: baby_food_flavor__berries +- id: 4071 + name: Orange + friendly_id: baby_food_flavor__orange +- id: 4072 + name: Standard + friendly_id: compatible_baby_bottle_design__standard +- id: 4073 + name: Wide-neck + friendly_id: compatible_baby_bottle_design__wide_neck +- id: 4074 + name: Slow + friendly_id: flow_rate_type__slow +- id: 4075 + name: Medium + friendly_id: flow_rate_type__medium +- id: 4076 + name: Fast + friendly_id: flow_rate_type__fast +- id: 4077 + name: Variable + friendly_id: flow_rate_type__variable +- id: 4078 + name: Round + friendly_id: nipple_shape__round +- id: 4079 + name: Flat + friendly_id: nipple_shape__flat +- id: 4080 + name: Angled + friendly_id: nipple_shape__angled +- id: 4081 + name: Other + friendly_id: nipple_shape__other +- id: 4082 + name: Newborn + friendly_id: stage__newborn +- id: 4083 + name: Stage 1 + friendly_id: stage__stage_1 +- id: 4084 + name: Stage 2 + friendly_id: stage__stage_2 +- id: 4085 + name: Stage 3 + friendly_id: stage__stage_3 +- id: 4086 + name: Stage 4 + friendly_id: stage__stage_4 +- id: 4087 + name: Ergonomic shape + friendly_id: bottle_design__ergonomic_shape +- id: 4088 + name: Contoured grip + friendly_id: bottle_design__contoured_grip +- id: 4089 + name: Easy-to-hold handles + friendly_id: bottle_design__easy_to_hold_handles +- id: 4090 + name: Latex + friendly_id: nipple_material__latex +- id: 4091 + name: Silicone + friendly_id: nipple_material__silicone +- id: 4092 + name: Orthodontic + friendly_id: nipple_type__orthodontic +- id: 4093 + name: Wide neck + friendly_id: nipple_type__wide_neck +- id: 4094 + name: Standard + friendly_id: nipple_type__standard +- id: 4095 + name: Bandana + friendly_id: bib_design__bandana +- id: 4096 + name: Full coverage + friendly_id: bib_design__full_coverage +- id: 4097 + name: Sleeved + friendly_id: bib_design__sleeved +- id: 4098 + name: Smock + friendly_id: bib_design__smock +- id: 4099 + name: Steam + friendly_id: heating_method__steam +- id: 4100 + name: Water bath + friendly_id: heating_method__water_bath +- id: 4101 + name: Fast + friendly_id: heating_speed__fast +- id: 4102 + name: Slow + friendly_id: heating_speed__slow +- id: 4103 + name: Adjustable temperature + friendly_id: temperature_control__adjustable_temperature +- id: 4104 + name: Preset temperature + friendly_id: temperature_control__preset_temperature +- id: 4105 + name: Quick + friendly_id: sterilization_cycle_time__quick +- id: 4106 + name: Standard + friendly_id: sterilization_cycle_time__standard +- id: 4107 + name: Microwave + friendly_id: sterilization_method__microwave +- id: 4108 + name: Steam + friendly_id: sterilization_method__steam +- id: 4109 + name: UV + friendly_id: sterilization_method__uv +- id: 4110 + name: Screw-on + friendly_id: closure_type__screw_on +- id: 4111 + name: Boiling + friendly_id: sterilization_instructions__boiling +- id: 4112 + name: Dishwasher safe + friendly_id: sterilization_instructions__dishwasher_safe +- id: 4113 + name: Microwave safe + friendly_id: sterilization_instructions__microwave_safe +- id: 4114 + name: Breast shields + friendly_id: pump_accessories__breast_shields +- id: 4115 + name: Bottles + friendly_id: pump_accessories__bottles +- id: 4116 + name: Storage bags + friendly_id: pump_accessories__storage_bags +- id: 4117 + name: Carrying case + friendly_id: pump_accessories__carrying_case +- id: 4118 + name: Dishwasher safe + friendly_id: cleaning_instructions__dishwasher_safe +- id: 4119 + name: Hand wash only + friendly_id: cleaning_instructions__hand_wash_only +- id: 4120 + name: Portable + friendly_id: portability__portable +- id: 4121 + name: Compact size + friendly_id: portability__compact_size +- id: 4122 + name: Adjustable speed + friendly_id: pump_speed_settings__adjustable_speed +- id: 4123 + name: Single speed + friendly_id: pump_speed_settings__single_speed +- id: 4124 + name: Adjustable + friendly_id: suction_levels__adjustable +- id: 4125 + name: Fixed + friendly_id: suction_levels__fixed +- id: 4126 + name: Machine washable + friendly_id: cleaning_instructions__machine_washable +- id: 4127 + name: Tumble dry + friendly_id: cleaning_instructions__tumble_dry +- id: 4128 + name: Adjustable straps + friendly_id: closure_type__adjustable_straps +- id: 4129 + name: Full + friendly_id: nursing_cover_coverage__full +- id: 4130 + name: Partial + friendly_id: nursing_cover_coverage__partial +- id: 4131 + name: Round + friendly_id: nursing_pad_design__round +- id: 4132 + name: Contoured + friendly_id: nursing_pad_design__contoured +- id: 4133 + name: Thin + friendly_id: nursing_pad_design__thin +- id: 4134 + name: Thick + friendly_id: nursing_pad_design__thick +- id: 4135 + name: Other + friendly_id: nursing_pad_design__other +- id: 4136 + name: Zipper + friendly_id: cover_closure_design__zipper +- id: 4137 + name: Envelope + friendly_id: cover_closure_design__envelope +- id: 4138 + name: Soft + friendly_id: firmness__soft +- id: 4139 + name: Medium + friendly_id: firmness__medium +- id: 4140 + name: Firm + friendly_id: firmness__firm +- id: 4141 + name: C-shaped + friendly_id: nursing_pillow_shape__c_shaped +- id: 4142 + name: U-shaped + friendly_id: nursing_pillow_shape__u_shaped +- id: 4143 + name: Other + friendly_id: nursing_pillow_shape__other +- id: 4144 + name: Flip-top + friendly_id: lid_type__flip_top +- id: 4145 + name: Screw-on + friendly_id: lid_type__screw_on +- id: 4146 + name: Snap-on + friendly_id: lid_type__snap_on +- id: 4147 + name: Hard + friendly_id: spout_type__hard +- id: 4148 + name: Soft + friendly_id: spout_type__soft +- id: 4149 + name: Straw + friendly_id: spout_type__straw +- id: 4150 + name: Folding + friendly_id: potty_toilet_seat_design__folding +- id: 4151 + name: Standard + friendly_id: potty_toilet_seat_design__standard +- id: 4152 + name: Potty seat + friendly_id: potty_training_kit_components__potty_seat +- id: 4153 + name: Step stool + friendly_id: potty_training_kit_components__step_stool +- id: 4154 + name: Training pants + friendly_id: potty_training_kit_components__training_pants +- id: 4155 + name: Reward chart + friendly_id: potty_training_kit_components__reward_chart +- id: 4156 + name: Stickers + friendly_id: potty_training_kit_components__stickers +- id: 4157 + name: None + friendly_id: closure_type__none +- id: 4158 + name: Accordion fold + friendly_id: fold_type__accordion_fold +- id: 4159 + name: Bi-fold + friendly_id: fold_type__bi_fold +- id: 4160 + name: Gate fold + friendly_id: fold_type__gate_fold +- id: 4161 + name: Half fold + friendly_id: fold_type__half_fold +- id: 4162 + name: Tri-fold + friendly_id: fold_type__tri_fold +- id: 4163 + name: Z-fold + friendly_id: fold_type__z_fold +- id: 4164 + name: Recycled + friendly_id: paper_finish__recycled +- id: 4165 + name: Satin + friendly_id: paper_finish__satin +- id: 4166 + name: Uncoated + friendly_id: paper_finish__uncoated +- id: 4167 + name: DL + friendly_id: paper_size__dl +- id: 4168 + name: DVI + friendly_id: connectivity_technology__dvi +- id: 4169 + name: Ethernet + friendly_id: connectivity_technology__ethernet +- id: 4170 + name: HDMI + friendly_id: connectivity_technology__hdmi +- id: 4171 + name: Commercial + friendly_id: display_recommended_use__commercial +- id: 4172 + name: Corporate + friendly_id: display_recommended_use__corporate +- id: 4173 + name: Education + friendly_id: display_recommended_use__education +- id: 4174 + name: Finance + friendly_id: display_recommended_use__finance +- id: 4175 + name: Government + friendly_id: display_recommended_use__government +- id: 4176 + name: Healthcare + friendly_id: display_recommended_use__healthcare +- id: 4177 + name: Retail + friendly_id: display_recommended_use__retail +- id: 4178 + name: Transportation + friendly_id: display_recommended_use__transportation +- id: 4179 + name: Universal + friendly_id: display_recommended_use__universal +- id: 4180 + name: 1024 x 768 + friendly_id: display_resolution__1024_x_768 +- id: 4181 + name: 1280 x 1024 + friendly_id: display_resolution__1280_x_1024 +- id: 4182 + name: 1280 x 768 + friendly_id: display_resolution__1280_x_768 +- id: 4183 + name: 1366 x 768 + friendly_id: display_resolution__1366_x_768 +- id: 4184 + name: 1440 x 900 + friendly_id: display_resolution__1440_x_900 +- id: 4185 + name: 1680 x 1050 + friendly_id: display_resolution__1680_x_1050 +- id: 4186 + name: 4K ultra HD + friendly_id: display_resolution__4k_ultra_hd +- id: 4187 + name: 5K ultra HD + friendly_id: display_resolution__5k_ultra_hd +- id: 4188 + name: 8K ultra HD + friendly_id: display_resolution__8k_ultra_hd +- id: 4189 + name: Full HD + friendly_id: display_resolution__full_hd +- id: 4190 + name: Quad HD + friendly_id: display_resolution__quad_hd +- id: 4191 + name: Other + friendly_id: display_resolution__other +- id: 4192 + name: OLED + friendly_id: display_technology__oled +- id: 4193 + name: Plasma + friendly_id: display_technology__plasma +- id: 4194 + name: Android + friendly_id: operating_system__android +- id: 4195 + name: Android TV + friendly_id: operating_system__android_tv +- id: 4196 + name: Chrome OS + friendly_id: operating_system__chrome_os +- id: 4197 + name: Linux + friendly_id: operating_system__linux +- id: 4198 + name: macOS + friendly_id: operating_system__macos +- id: 4199 + name: Raspberry Pi OS + friendly_id: operating_system__raspberry_pi_os +- id: 4200 + name: Tizen + friendly_id: operating_system__tizen +- id: 4201 + name: webOS + friendly_id: operating_system__webos +- id: 4202 + name: Windows + friendly_id: operating_system__windows +- id: 4203 + name: Double-sided + friendly_id: totem_design__double_sided +- id: 4204 + name: Single-sided + friendly_id: totem_design__single_sided +- id: 4205 + name: Solar + friendly_id: power_source__solar +- id: 4206 + name: Crumbles + friendly_id: animal_feed_form__crumbles +- id: 4207 + name: Cubes + friendly_id: animal_feed_form__cubes +- id: 4208 + name: Mash + friendly_id: animal_feed_form__mash +- id: 4209 + name: Pellets + friendly_id: animal_feed_form__pellets +- id: 4210 + name: Barley + friendly_id: livestock_food_ingredients__barley +- id: 4211 + name: Corn + friendly_id: livestock_food_ingredients__corn +- id: 4212 + name: Oats + friendly_id: livestock_food_ingredients__oats +- id: 4213 + name: Soybean meal + friendly_id: livestock_food_ingredients__soybean_meal +- id: 4214 + name: Wheat + friendly_id: livestock_food_ingredients__wheat +- id: 4215 + name: Fatty acids + friendly_id: ingredient_category__fatty_acids +- id: 4216 + name: Fiber + friendly_id: ingredient_category__fiber +- id: 4217 + name: Minerals + friendly_id: ingredient_category__minerals +- id: 4218 + name: Protein + friendly_id: ingredient_category__protein +- id: 4219 + name: Vitamins + friendly_id: ingredient_category__vitamins +- id: 4220 + name: Broiler + friendly_id: chicken_feed_stage__broiler +- id: 4221 + name: Grower + friendly_id: chicken_feed_stage__grower +- id: 4222 + name: Layer + friendly_id: chicken_feed_stage__layer +- id: 4223 + name: Scratch + friendly_id: chicken_feed_stage__scratch +- id: 4224 + name: Starter + friendly_id: chicken_feed_stage__starter +- id: 4225 + name: Finisher + friendly_id: pig_feed_stage__finisher +- id: 4226 + name: Grower + friendly_id: pig_feed_stage__grower +- id: 4227 + name: Sow + friendly_id: pig_feed_stage__sow +- id: 4228 + name: Starter + friendly_id: pig_feed_stage__starter +- id: 4229 + name: Cattle + friendly_id: animal_type__cattle +- id: 4230 + name: Chickens + friendly_id: animal_type__chickens +- id: 4231 + name: Goats + friendly_id: animal_type__goats +- id: 4232 + name: Mixed herd + friendly_id: animal_type__mixed_herd +- id: 4233 + name: Pigs + friendly_id: animal_type__pigs +- id: 4234 + name: Sheep + friendly_id: animal_type__sheep +- id: 4235 + name: Cow + friendly_id: suitable_for_animal_type__cow +- id: 4236 + name: Goat + friendly_id: suitable_for_animal_type__goat +- id: 4237 + name: Horse + friendly_id: suitable_for_animal_type__horse +- id: 4238 + name: Lama + friendly_id: suitable_for_animal_type__lama +- id: 4239 + name: Pig + friendly_id: suitable_for_animal_type__pig +- id: 4240 + name: Sheep + friendly_id: suitable_for_animal_type__sheep +- id: 4241 + name: Universal + friendly_id: suitable_for_animal_type__universal +- id: 4242 + name: Ethernet + friendly_id: communication_protocols__ethernet +- id: 4243 + name: Modbus + friendly_id: communication_protocols__modbus +- id: 4244 + name: Profibus + friendly_id: communication_protocols__profibus +- id: 4245 + name: Profinet + friendly_id: communication_protocols__profinet +- id: 4246 + name: Serial + friendly_id: communication_protocols__serial +- id: 4247 + name: USB + friendly_id: communication_protocols__usb +- id: 4248 + name: Compact + friendly_id: controller_design__compact +- id: 4249 + name: Modular + friendly_id: controller_design__modular +- id: 4250 + name: Rack-mounted + friendly_id: controller_design__rack_mounted +- id: 4251 + name: Safety + friendly_id: controller_design__safety +- id: 4252 + name: Small + friendly_id: controller_design__small +- id: 4253 + name: Single-phase + friendly_id: phase_type__single_phase +- id: 4254 + name: Two-phase + friendly_id: phase_type__two_phase +- id: 4255 + name: Three-phase + friendly_id: phase_type__three_phase +- id: 4256 + name: Direct torque + friendly_id: control_method__direct_torque +- id: 4257 + name: Scalar (V/f) + friendly_id: control_method__scalar_v_f +- id: 4258 + name: Vector + friendly_id: control_method__vector +- id: 4259 + name: AC-powered + friendly_id: controller_drive_type__ac_powered +- id: 4260 + name: DC + friendly_id: controller_drive_type__dc +- id: 4261 + name: Servo + friendly_id: controller_drive_type__servo +- id: 4262 + name: Stepper + friendly_id: controller_drive_type__stepper +- id: 4263 + name: Double-ended + friendly_id: mirror_handle_design__double_ended +- id: 4264 + name: Single-ended + friendly_id: mirror_handle_design__single_ended +- id: 4265 + name: Octagonal + friendly_id: shape__octagonal +- id: 4266 + name: Dental mirror + friendly_id: dentistry_items_included__dental_mirror +- id: 4267 + name: Dental polisher + friendly_id: dentistry_items_included__dental_polisher +- id: 4268 + name: Interdental pick + friendly_id: dentistry_items_included__interdental_pick +- id: 4269 + name: Plaque removal tool + friendly_id: dentistry_items_included__plaque_removal_tool +- id: 4270 + name: Stain eraser + friendly_id: dentistry_items_included__stain_eraser +- id: 4271 + name: Whitening paste + friendly_id: dentistry_items_included__whitening_paste +- id: 4272 + name: Latches + friendly_id: attachment_type__latches +- id: 4273 + name: Screws + friendly_id: attachment_type__screws +- id: 4274 + name: Snap-on + friendly_id: attachment_type__snap_on +- id: 4275 + name: Brush + friendly_id: prophy_cup_design__brush +- id: 4276 + name: Ribbed + friendly_id: prophy_cup_design__ribbed +- id: 4277 + name: Webbed + friendly_id: prophy_cup_design__webbed +- id: 4278 + name: Bubblegum + friendly_id: dental_paste_flavor__bubblegum +- id: 4279 + name: Cherry + friendly_id: dental_paste_flavor__cherry +- id: 4280 + name: Mint + friendly_id: dental_paste_flavor__mint +- id: 4281 + name: Unflavored + friendly_id: dental_paste_flavor__unflavored +- id: 4282 + name: Coarse + friendly_id: grit_type__coarse +- id: 4283 + name: Fine + friendly_id: grit_type__fine +- id: 4284 + name: Medium + friendly_id: grit_type__medium +- id: 4285 + name: Contemporary + friendly_id: costume_theme__contemporary +- id: 4286 + name: Bars + friendly_id: bullion_form__bars +- id: 4287 + name: Coins + friendly_id: bullion_form__coins +- id: 4288 + name: Rounds + friendly_id: bullion_form__rounds +- id: 4289 + name: Bamboo + friendly_id: shelf_material__bamboo +- id: 4290 + name: Beech wood + friendly_id: shelf_material__beech_wood +- id: 4291 + name: Chrome + friendly_id: shelf_material__chrome +- id: 4292 + name: Chrome steel + friendly_id: shelf_material__chrome_steel +- id: 4293 + name: Glass + friendly_id: shelf_material__glass +- id: 4294 + name: Medium density fiberboard (MDF) + friendly_id: shelf_material__medium_density_fiberboard_mdf +- id: 4295 + name: Metal + friendly_id: shelf_material__metal +- id: 4296 + name: Oak wood + friendly_id: shelf_material__oak_wood +- id: 4297 + name: Particle board + friendly_id: shelf_material__particle_board +- id: 4298 + name: Plastic + friendly_id: shelf_material__plastic +- id: 4299 + name: Stainless steel + friendly_id: shelf_material__stainless_steel +- id: 4300 + name: Steel + friendly_id: shelf_material__steel +- id: 4301 + name: Wood + friendly_id: shelf_material__wood +- id: 4302 + name: Gasoline + friendly_id: power_source__gasoline +- id: 4303 + name: Aluminum + friendly_id: cookware_bakeware_material__aluminum +- id: 4304 + name: Carbon steel + friendly_id: cookware_bakeware_material__carbon_steel +- id: 4305 + name: Cast iron + friendly_id: cookware_bakeware_material__cast_iron +- id: 4306 + name: Ceramic + friendly_id: cookware_bakeware_material__ceramic +- id: 4307 + name: Copper + friendly_id: cookware_bakeware_material__copper +- id: 4308 + name: Enamel + friendly_id: cookware_bakeware_material__enamel +- id: 4309 + name: Glass + friendly_id: cookware_bakeware_material__glass +- id: 4310 + name: Metal + friendly_id: cookware_bakeware_material__metal +- id: 4311 + name: Silicone + friendly_id: cookware_bakeware_material__silicone +- id: 4312 + name: Stainless steel + friendly_id: cookware_bakeware_material__stainless_steel +- id: 4313 + name: Teflon + friendly_id: cookware_bakeware_material__teflon +- id: 4314 + name: Acrylic + friendly_id: gear_material__acrylic +- id: 4315 + name: Acrylonitrile butadiene styrene (ABS) + friendly_id: gear_material__acrylonitrile_butadiene_styrene_abs +- id: 4316 + name: Aluminum + friendly_id: gear_material__aluminum +- id: 4317 + name: Canvas + friendly_id: gear_material__canvas +- id: 4318 + name: Carbon fiber + friendly_id: gear_material__carbon_fiber +- id: 4319 + name: Ceramic + friendly_id: gear_material__ceramic +- id: 4320 + name: Cotton + friendly_id: gear_material__cotton +- id: 4321 + name: Denim + friendly_id: gear_material__denim +- id: 4322 + name: Elastane + friendly_id: gear_material__elastane +- id: 4323 + name: Faux fur + friendly_id: gear_material__faux_fur +- id: 4324 + name: Faux leather + friendly_id: gear_material__faux_leather +- id: 4325 + name: Fiberglass + friendly_id: gear_material__fiberglass +- id: 4326 + name: Foam + friendly_id: gear_material__foam +- id: 4327 + name: Fur + friendly_id: gear_material__fur +- id: 4328 + name: Jute + friendly_id: gear_material__jute +- id: 4329 + name: Kevlar + friendly_id: gear_material__kevlar +- id: 4330 + name: Latex + friendly_id: gear_material__latex +- id: 4331 + name: Leather + friendly_id: gear_material__leather +- id: 4332 + name: Linen + friendly_id: gear_material__linen +- id: 4333 + name: Lyocell + friendly_id: gear_material__lyocell +- id: 4334 + name: Metal + friendly_id: gear_material__metal +- id: 4335 + name: Microfiber + friendly_id: gear_material__microfiber +- id: 4336 + name: Nylon + friendly_id: gear_material__nylon +- id: 4337 + name: Paper + friendly_id: gear_material__paper +- id: 4338 + name: Plastic + friendly_id: gear_material__plastic +- id: 4339 + name: Polyamide (PA) + friendly_id: gear_material__polyamide_pa +- id: 4340 + name: Polyethylene (PE) + friendly_id: gear_material__polyethylene_pe +- id: 4341 + name: Polypropylene (PP) + friendly_id: gear_material__polypropylene_pp +- id: 4342 + name: Polyurethane (PU) + friendly_id: gear_material__polyurethane_pu +- id: 4343 + name: Polyvinyl chloride (PVC) + friendly_id: gear_material__polyvinyl_chloride_pvc +- id: 4344 + name: Rope + friendly_id: gear_material__rope +- id: 4345 + name: Rubber + friendly_id: gear_material__rubber +- id: 4346 + name: Silk + friendly_id: gear_material__silk +- id: 4347 + name: Spandex + friendly_id: gear_material__spandex +- id: 4348 + name: Steel + friendly_id: gear_material__steel +- id: 4349 + name: Synthetic + friendly_id: gear_material__synthetic +- id: 4350 + name: Tarpaulin + friendly_id: gear_material__tarpaulin +- id: 4351 + name: Titanium + friendly_id: gear_material__titanium +- id: 4352 + name: Vinyl + friendly_id: gear_material__vinyl +- id: 4353 + name: Wool + friendly_id: gear_material__wool +- id: 4354 + name: Other + friendly_id: gear_material__other +- id: 4355 + name: Universal + friendly_id: age_group__universal +- id: 4356 + name: Angle + friendly_id: bulldozer_blade_type__angle +- id: 4357 + name: Semi-U + friendly_id: bulldozer_blade_type__semi_u +- id: 4358 + name: Straight (S-blade) + friendly_id: bulldozer_blade_type__straight_s_blade +- id: 4359 + name: Universal (U-blade) + friendly_id: bulldozer_blade_type__universal_u_blade +- id: 4360 + name: Disk + friendly_id: chipper_technology__disk +- id: 4361 + name: Drum + friendly_id: chipper_technology__drum +- id: 4362 + name: High-torque roller + friendly_id: chipper_technology__high_torque_roller +- id: 4363 + name: Screw + friendly_id: chipper_technology__screw +- id: 4364 + name: Diesel + friendly_id: power_source__diesel +- id: 4365 + name: Bottom dump + friendly_id: discharge_type__bottom_dump +- id: 4366 + name: Side dump + friendly_id: discharge_type__side_dump +- id: 4367 + name: Standard + friendly_id: discharge_type__standard +- id: 4368 + name: Transfer + friendly_id: discharge_type__transfer +- id: 4369 + name: 2WD + friendly_id: drive_type__2wd +- id: 4370 + name: 4WD + friendly_id: drive_type__4wd +- id: 4371 + name: Track + friendly_id: drive_type__track +- id: 4372 + name: Pull + friendly_id: propulsion_type__pull +- id: 4373 + name: Pull/Push + friendly_id: propulsion_type__pull_push +- id: 4374 + name: Push + friendly_id: propulsion_type__push +- id: 4375 + name: Self-propelled + friendly_id: propulsion_type__self_propelled +- id: 4376 + name: Ride-on + friendly_id: propulsion_type__ride_on +- id: 4377 + name: Curved + friendly_id: counter_shape__curved +- id: 4378 + name: L-shaped + friendly_id: counter_shape__l_shaped +- id: 4379 + name: Straight + friendly_id: counter_shape__straight +- id: 4380 + name: U-shaped + friendly_id: counter_shape__u_shaped +- id: 4381 + name: Compartment + friendly_id: rack_design__compartment +- id: 4382 + name: Open + friendly_id: rack_design__open +- id: 4383 + name: Stemware + friendly_id: rack_design__stemware +- id: 4384 + name: Tabletop + friendly_id: mounting_type__tabletop +- id: 4385 + name: Call bell + friendly_id: bell_design__call_bell +- id: 4386 + name: Push + friendly_id: bell_design__push +- id: 4387 + name: Tap + friendly_id: bell_design__tap +- id: 4388 + name: Chime + friendly_id: bell_sound__chime +- id: 4389 + name: Ding + friendly_id: bell_sound__ding +- id: 4390 + name: Ding-dong + friendly_id: bell_sound__ding_dong +- id: 4391 + name: Aluminum + friendly_id: hardware_material__aluminum +- id: 4392 + name: Brass + friendly_id: hardware_material__brass +- id: 4393 + name: Bronze + friendly_id: hardware_material__bronze +- id: 4394 + name: Carbon steel + friendly_id: hardware_material__carbon_steel +- id: 4395 + name: Cast iron + friendly_id: hardware_material__cast_iron +- id: 4396 + name: Ceramic + friendly_id: hardware_material__ceramic +- id: 4397 + name: Chrome-plated + friendly_id: hardware_material__chrome_plated +- id: 4398 + name: Copper + friendly_id: hardware_material__copper +- id: 4399 + name: Galvanized iron + friendly_id: hardware_material__galvanized_iron +- id: 4400 + name: Iron + friendly_id: hardware_material__iron +- id: 4401 + name: Metal + friendly_id: hardware_material__metal +- id: 4402 + name: Nickel-plated + friendly_id: hardware_material__nickel_plated +- id: 4403 + name: Nylon + friendly_id: hardware_material__nylon +- id: 4404 + name: Plastic + friendly_id: hardware_material__plastic +- id: 4405 + name: Polyvinyl chloride (PVC) + friendly_id: hardware_material__polyvinyl_chloride_pvc +- id: 4406 + name: Stainless steel + friendly_id: hardware_material__stainless_steel +- id: 4407 + name: Steel + friendly_id: hardware_material__steel +- id: 4408 + name: Titanium + friendly_id: hardware_material__titanium +- id: 4409 + name: Vinyl + friendly_id: hardware_material__vinyl +- id: 4410 + name: Zinc + friendly_id: hardware_material__zinc +- id: 4411 + name: Biometric lock + friendly_id: lock_type__biometric_lock +- id: 4412 + name: Combination lock + friendly_id: lock_type__combination_lock +- id: 4413 + name: Double key + friendly_id: lock_type__double_key +- id: 4414 + name: Key lock + friendly_id: lock_type__key_lock +- id: 4415 + name: Latch + friendly_id: lock_type__latch +- id: 4416 + name: Padlock loop + friendly_id: lock_type__padlock_loop +- id: 4417 + name: RFID lock + friendly_id: lock_type__rfid_lock +- id: 4418 + name: Smart lock + friendly_id: lock_type__smart_lock +- id: 4419 + name: Tool less locking mechanism + friendly_id: lock_type__tool_less_locking_mechanism +- id: 4420 + name: Double lock + friendly_id: handcuff_lock_type__double_lock +- id: 4421 + name: Key + friendly_id: handcuff_lock_type__key +- id: 4422 + name: Push pin + friendly_id: handcuff_lock_type__push_pin +- id: 4423 + name: Adjustable + friendly_id: detector_sensitivity__adjustable +- id: 4424 + name: Fixed + friendly_id: detector_sensitivity__fixed +- id: 4425 + name: Automatic + friendly_id: automation__automatic +- id: 4426 + name: Manual + friendly_id: automation__manual +- id: 4427 + name: Semi-automatic + friendly_id: automation__semi_automatic +- id: 4428 + name: Electromagnetic + friendly_id: conveyor_operation__electromagnetic +- id: 4429 + name: Gravity-driven + friendly_id: conveyor_operation__gravity_driven +- id: 4430 + name: Manual + friendly_id: conveyor_operation__manual +- id: 4431 + name: Powered + friendly_id: conveyor_operation__powered +- id: 4432 + name: Dense phase + friendly_id: pneumatic_conveyor_operation__dense_phase +- id: 4433 + name: Dilute phase + friendly_id: pneumatic_conveyor_operation__dilute_phase +- id: 4434 + name: Eco phase + friendly_id: pneumatic_conveyor_operation__eco_phase +- id: 4435 + name: Manual + friendly_id: power_source__manual +- id: 4436 + name: Bus + friendly_id: suitable_for_vehicle_type__bus +- id: 4437 + name: Car + friendly_id: suitable_for_vehicle_type__car +- id: 4438 + name: Tractor + friendly_id: suitable_for_vehicle_type__tractor +- id: 4439 + name: Truck + friendly_id: suitable_for_vehicle_type__truck +- id: 4440 + name: Universal + friendly_id: suitable_for_vehicle_type__universal +- id: 4441 + name: Hydraulic + friendly_id: power_source__hydraulic +- id: 4442 + name: Twin + friendly_id: bedding_size__twin +- id: 4443 + name: Queen + friendly_id: bedding_size__queen +- id: 4444 + name: King + friendly_id: bedding_size__king +- id: 4445 + name: Semi-automatic + friendly_id: operating_mode__semi_automatic +- id: 4446 + name: Weighted + friendly_id: tuning_fork_design__weighted +- id: 4447 + name: Unweighted + friendly_id: tuning_fork_design__unweighted +- id: 4448 + name: 128 Hz + friendly_id: tuning_fork_frequency__128_hz +- id: 4449 + name: 256 hZ + friendly_id: tuning_fork_frequency__256_hz +- id: 4450 + name: 512 Hz + friendly_id: tuning_fork_frequency__512_hz +- id: 4451 + name: Average + friendly_id: compatible_patient_profile__average +- id: 4452 + name: Bariatric + friendly_id: compatible_patient_profile__bariatric +- id: 4453 + name: Geriatric + friendly_id: compatible_patient_profile__geriatric +- id: 4454 + name: Neonatal + friendly_id: compatible_patient_profile__neonatal +- id: 4455 + name: Pediatric + friendly_id: compatible_patient_profile__pediatric +- id: 4456 + name: Universal + friendly_id: compatible_patient_profile__universal +- id: 4457 + name: Ambulance + friendly_id: stretcher_gurney_intended_use__ambulance +- id: 4458 + name: Emergency transport + friendly_id: stretcher_gurney_intended_use__emergency_transport +- id: 4459 + name: Fluoroscopy + friendly_id: stretcher_gurney_intended_use__fluoroscopy +- id: 4460 + name: General transport + friendly_id: stretcher_gurney_intended_use__general_transport +- id: 4461 + name: MRI + friendly_id: stretcher_gurney_intended_use__mri +- id: 4462 + name: Surgical + friendly_id: stretcher_gurney_intended_use__surgical +- id: 4463 + name: Portable + friendly_id: mounting_type__portable +- id: 4464 + name: Manual + friendly_id: tool_operation__manual +- id: 4465 + name: Powered + friendly_id: tool_operation__powered +- id: 4466 + name: Dual-head + friendly_id: stethoscope_design__dual_head +- id: 4467 + name: Single-head + friendly_id: stethoscope_design__single_head +- id: 4468 + name: Acoustic + friendly_id: stethoscope_technology__acoustic +- id: 4469 + name: Electronic + friendly_id: stethoscope_technology__electronic +- id: 4470 + name: Decompression + friendly_id: chiropractic_table_design__decompression +- id: 4471 + name: Drop + friendly_id: chiropractic_table_design__drop +- id: 4472 + name: Elevation + friendly_id: chiropractic_table_design__elevation +- id: 4473 + name: Flexion-distraction + friendly_id: chiropractic_table_design__flexion_distraction +- id: 4474 + name: Hylo + friendly_id: chiropractic_table_design__hylo +- id: 4475 + name: Mobile + friendly_id: mounting_type__mobile +- id: 4476 + name: Double-hook + friendly_id: cart_design__double_hook +- id: 4477 + name: Multiple-hook + friendly_id: cart_design__multiple_hook +- id: 4478 + name: Single-hook + friendly_id: cart_design__single_hook +- id: 4479 + name: With base + friendly_id: cart_design__with_base +- id: 4480 + name: Curved + friendly_id: shape__curved +- id: 4481 + name: Straight + friendly_id: shape__straight +- id: 4482 + name: Non-sterile + friendly_id: product_sterility__non_sterile +- id: 4483 + name: Sterile + friendly_id: product_sterility__sterile +- id: 4484 + name: '6' + friendly_id: scalpel_blade_number__6 +- id: 4485 + name: '9' + friendly_id: scalpel_blade_number__9 +- id: 4486 + name: '10' + friendly_id: scalpel_blade_number__10 +- id: 4487 + name: '11' + friendly_id: scalpel_blade_number__11 +- id: 4488 + name: '12' + friendly_id: scalpel_blade_number__12 +- id: 4489 + name: '13' + friendly_id: scalpel_blade_number__13 +- id: 4490 + name: '14' + friendly_id: scalpel_blade_number__14 +- id: 4491 + name: '15' + friendly_id: scalpel_blade_number__15 +- id: 4492 + name: '16' + friendly_id: scalpel_blade_number__16 +- id: 4493 + name: '17' + friendly_id: scalpel_blade_number__17 +- id: 4494 + name: '18' + friendly_id: scalpel_blade_number__18 +- id: 4495 + name: '19' + friendly_id: scalpel_blade_number__19 +- id: 4496 + name: '20' + friendly_id: scalpel_blade_number__20 +- id: 4497 + name: '21' + friendly_id: scalpel_blade_number__21 +- id: 4498 + name: '22' + friendly_id: scalpel_blade_number__22 +- id: 4499 + name: '23' + friendly_id: scalpel_blade_number__23 +- id: 4500 + name: '24' + friendly_id: scalpel_blade_number__24 +- id: 4501 + name: '25' + friendly_id: scalpel_blade_number__25 +- id: 4502 + name: '26' + friendly_id: scalpel_blade_number__26 +- id: 4503 + name: '27' + friendly_id: scalpel_blade_number__27 +- id: 4504 + name: '34' + friendly_id: scalpel_blade_number__34 +- id: 4505 + name: '36' + friendly_id: scalpel_blade_number__36 +- id: 4506 + name: '40' + friendly_id: scalpel_blade_number__40 +- id: 4507 + name: '60' + friendly_id: scalpel_blade_number__60 +- id: 4508 + name: 10a + friendly_id: scalpel_blade_number__10a +- id: 4509 + name: 11P + friendly_id: scalpel_blade_number__11p +- id: 4510 + name: 12D + friendly_id: scalpel_blade_number__12d +- id: 4511 + name: 15A + friendly_id: scalpel_blade_number__15a +- id: 4512 + name: 15C + friendly_id: scalpel_blade_number__15c +- id: 4513 + name: 15T + friendly_id: scalpel_blade_number__15t +- id: 4514 + name: 22A + friendly_id: scalpel_blade_number__22a +- id: 4515 + name: 25a + friendly_id: scalpel_blade_number__25a +- id: 4516 + name: D/15 + friendly_id: scalpel_blade_number__d_15 +- id: 4517 + name: E/11 + friendly_id: scalpel_blade_number__e_11 +- id: 4518 + name: E11 + friendly_id: scalpel_blade_number__e11 +- id: 4519 + name: PM40 + friendly_id: scalpel_blade_number__pm40 +- id: 4520 + name: PM40B + friendly_id: scalpel_blade_number__pm40b +- id: 4521 + name: PM60 + friendly_id: scalpel_blade_number__pm60 +- id: 4522 + name: PM60B + friendly_id: scalpel_blade_number__pm60b +- id: 4523 + name: Other + friendly_id: scalpel_blade_number__other +- id: 4524 + name: '3' + friendly_id: scalpel_handle_number__3 +- id: 4525 + name: 3L + friendly_id: scalpel_handle_number__3l +- id: 4526 + name: '4' + friendly_id: scalpel_handle_number__4 +- id: 4527 + name: 4L + friendly_id: scalpel_handle_number__4l +- id: 4528 + name: '7' + friendly_id: scalpel_handle_number__7 +- id: 4529 + name: '9' + friendly_id: scalpel_handle_number__9 +- id: 4530 + name: Injection + friendly_id: medical_syringe_purpose__injection +- id: 4531 + name: Irrigation + friendly_id: medical_syringe_purpose__irrigation +- id: 4532 + name: Tubing + friendly_id: medical_syringe_purpose__tubing +- id: 4533 + name: '6' + friendly_id: needle_gauge__6 +- id: 4534 + name: '7' + friendly_id: needle_gauge__7 +- id: 4535 + name: '8' + friendly_id: needle_gauge__8 +- id: 4536 + name: '9' + friendly_id: needle_gauge__9 +- id: 4537 + name: '10' + friendly_id: needle_gauge__10 +- id: 4538 + name: '11' + friendly_id: needle_gauge__11 +- id: 4539 + name: '12' + friendly_id: needle_gauge__12 +- id: 4540 + name: '13' + friendly_id: needle_gauge__13 +- id: 4541 + name: '14' + friendly_id: needle_gauge__14 +- id: 4542 + name: '15' + friendly_id: needle_gauge__15 +- id: 4543 + name: '16' + friendly_id: needle_gauge__16 +- id: 4544 + name: '17' + friendly_id: needle_gauge__17 +- id: 4545 + name: '18' + friendly_id: needle_gauge__18 +- id: 4546 + name: '19' + friendly_id: needle_gauge__19 +- id: 4547 + name: '20' + friendly_id: needle_gauge__20 +- id: 4548 + name: '21' + friendly_id: needle_gauge__21 +- id: 4549 + name: '22' + friendly_id: needle_gauge__22 +- id: 4550 + name: 22s + friendly_id: needle_gauge__22s +- id: 4551 + name: '23' + friendly_id: needle_gauge__23 +- id: 4552 + name: '24' + friendly_id: needle_gauge__24 +- id: 4553 + name: '25' + friendly_id: needle_gauge__25 +- id: 4554 + name: '26' + friendly_id: needle_gauge__26 +- id: 4555 + name: 26s + friendly_id: needle_gauge__26s +- id: 4556 + name: '27' + friendly_id: needle_gauge__27 +- id: 4557 + name: '28' + friendly_id: needle_gauge__28 +- id: 4558 + name: '29' + friendly_id: needle_gauge__29 +- id: 4559 + name: '30' + friendly_id: needle_gauge__30 +- id: 4560 + name: '31' + friendly_id: needle_gauge__31 +- id: 4561 + name: '32' + friendly_id: needle_gauge__32 +- id: 4562 + name: '33' + friendly_id: needle_gauge__33 +- id: 4563 + name: '34' + friendly_id: needle_gauge__34 +- id: 4564 + name: Other + friendly_id: needle_gauge__other +- id: 4565 + name: Catheter tip + friendly_id: tip_design__catheter_tip +- id: 4566 + name: Eccentric tip + friendly_id: tip_design__eccentric_tip +- id: 4567 + name: Luer lock + friendly_id: tip_design__luer_lock +- id: 4568 + name: Slip tip + friendly_id: tip_design__slip_tip +- id: 4569 + name: DTH + friendly_id: drilling_method__dth +- id: 4570 + name: Percussion + friendly_id: drilling_method__percussion +- id: 4571 + name: Rotary + friendly_id: drilling_method__rotary +- id: 4572 + name: Top hammer + friendly_id: drilling_method__top_hammer +- id: 4573 + name: Directional + friendly_id: drilling_rig_orientation__directional +- id: 4574 + name: Horizontal + friendly_id: drilling_rig_orientation__horizontal +- id: 4575 + name: Vertical + friendly_id: drilling_rig_orientation__vertical +- id: 4576 + name: Gold + friendly_id: needle_material__gold +- id: 4577 + name: Nickel + friendly_id: needle_material__nickel +- id: 4578 + name: Silver-plated + friendly_id: needle_material__silver_plated +- id: 4579 + name: Stainless steel + friendly_id: needle_material__stainless_steel +- id: 4580 + name: Titanium + friendly_id: needle_material__titanium +- id: 4581 + name: Afghan Afghani (AFN) + friendly_id: currency__afghan_afghani_afn +- id: 4582 + name: Albanian Lek (ALL) + friendly_id: currency__albanian_lek_all +- id: 4583 + name: Algerian Dinar (DZD) + friendly_id: currency__algerian_dinar_dzd +- id: 4584 + name: Angolan Kwanza (AOA) + friendly_id: currency__angolan_kwanza_aoa +- id: 4585 + name: Argentine Peso (ARS) + friendly_id: currency__argentine_peso_ars +- id: 4586 + name: Armenian Dram (AMD) + friendly_id: currency__armenian_dram_amd +- id: 4587 + name: Aruban Florin (AWG) + friendly_id: currency__aruban_florin_awg +- id: 4588 + name: Australian Dollar (AUD) + friendly_id: currency__australian_dollar_aud +- id: 4589 + name: Azerbaijani Manat (AZN) + friendly_id: currency__azerbaijani_manat_azn +- id: 4590 + name: Bahamian Dollar (BSD) + friendly_id: currency__bahamian_dollar_bsd +- id: 4591 + name: Bahraini Dinar (BHD) + friendly_id: currency__bahraini_dinar_bhd +- id: 4592 + name: Bangladeshi Taka (BDT) + friendly_id: currency__bangladeshi_taka_bdt +- id: 4593 + name: Barbadian Dollar (BBD) + friendly_id: currency__barbadian_dollar_bbd +- id: 4594 + name: Belarusian Ruble (BYN) + friendly_id: currency__belarusian_ruble_byn +- id: 4595 + name: Belize Dollar (BZD) + friendly_id: currency__belize_dollar_bzd +- id: 4596 + name: Bermudian Dollar (BMD) + friendly_id: currency__bermudian_dollar_bmd +- id: 4597 + name: Bhutanese Ngultrum (BTN) + friendly_id: currency__bhutanese_ngultrum_btn +- id: 4598 + name: Bolivian Boliviano (BOB) + friendly_id: currency__bolivian_boliviano_bob +- id: 4599 + name: Bosnia and Herzegovina Convertible Mark (BAM) + friendly_id: currency__bosnia_and_herzegovina_convertible_mark_bam +- id: 4600 + name: Botswana Pula (BWP) + friendly_id: currency__botswana_pula_bwp +- id: 4601 + name: Brazilian Real (BRL) + friendly_id: currency__brazilian_real_brl +- id: 4602 + name: British Pound Sterling (GBP) + friendly_id: currency__british_pound_sterling_gbp +- id: 4603 + name: Brunei Dollar (BND) + friendly_id: currency__brunei_dollar_bnd +- id: 4604 + name: Bulgarian Lev (BGN) + friendly_id: currency__bulgarian_lev_bgn +- id: 4605 + name: Burundian Franc (BIF) + friendly_id: currency__burundian_franc_bif +- id: 4606 + name: Cambodian Riel (KHR) + friendly_id: currency__cambodian_riel_khr +- id: 4607 + name: Canadian Dollar (CAD) + friendly_id: currency__canadian_dollar_cad +- id: 4608 + name: Cape Verdean Escudo (CVE) + friendly_id: currency__cape_verdean_escudo_cve +- id: 4609 + name: Central African CFA Franc (XAF) + friendly_id: currency__central_african_cfa_franc_xaf +- id: 4610 + name: CFP Franc (XPF) + friendly_id: currency__cfp_franc_xpf +- id: 4611 + name: Chilean Peso (CLP) + friendly_id: currency__chilean_peso_clp +- id: 4612 + name: Chinese Yuan (CNY) + friendly_id: currency__chinese_yuan_cny +- id: 4613 + name: Colombian Peso (COP) + friendly_id: currency__colombian_peso_cop +- id: 4614 + name: Comorian Franc (KMF) + friendly_id: currency__comorian_franc_kmf +- id: 4615 + name: Congolese Franc (CDF) + friendly_id: currency__congolese_franc_cdf +- id: 4616 + name: Costa Rican Colón (CRC) + friendly_id: currency__costa_rican_coln_crc +- id: 4617 + name: Croatian Kuna (HRK) + friendly_id: currency__croatian_kuna_hrk +- id: 4618 + name: Cuban Peso (CUP) + friendly_id: currency__cuban_peso_cup +- id: 4619 + name: Czech Koruna (CZK) + friendly_id: currency__czech_koruna_czk +- id: 4620 + name: Danish Krone (DKK) + friendly_id: currency__danish_krone_dkk +- id: 4621 + name: Djiboutian Franc (DJF) + friendly_id: currency__djiboutian_franc_djf +- id: 4622 + name: Dominican Peso (DOP) + friendly_id: currency__dominican_peso_dop +- id: 4623 + name: East Caribbean Dollar (XCD) + friendly_id: currency__east_caribbean_dollar_xcd +- id: 4624 + name: Egyptian Pound (EGP) + friendly_id: currency__egyptian_pound_egp +- id: 4625 + name: Eritrean Nakfa (ERN) + friendly_id: currency__eritrean_nakfa_ern +- id: 4626 + name: Ethiopian Birr (ETB) + friendly_id: currency__ethiopian_birr_etb +- id: 4627 + name: Euro (EUR) + friendly_id: currency__euro_eur +- id: 4628 + name: Fijian Dollar (FJD) + friendly_id: currency__fijian_dollar_fjd +- id: 4629 + name: Gambian Dalasi (GMD) + friendly_id: currency__gambian_dalasi_gmd +- id: 4630 + name: Georgian Lari (GEL) + friendly_id: currency__georgian_lari_gel +- id: 4631 + name: Ghanaian Cedi (GHS) + friendly_id: currency__ghanaian_cedi_ghs +- id: 4632 + name: Guatemalan Quetzal (GTQ) + friendly_id: currency__guatemalan_quetzal_gtq +- id: 4633 + name: Guinean Franc (GNF) + friendly_id: currency__guinean_franc_gnf +- id: 4634 + name: Guyanese Dollar (GYD) + friendly_id: currency__guyanese_dollar_gyd +- id: 4635 + name: Haitian Gourde (HTG) + friendly_id: currency__haitian_gourde_htg +- id: 4636 + name: Honduran Lempira (HNL) + friendly_id: currency__honduran_lempira_hnl +- id: 4637 + name: Hong Kong Dollar (HKD) + friendly_id: currency__hong_kong_dollar_hkd +- id: 4638 + name: Hungarian Forint (HUF) + friendly_id: currency__hungarian_forint_huf +- id: 4639 + name: Icelandic Króna (ISK) + friendly_id: currency__icelandic_krna_isk +- id: 4640 + name: Indian Rupee (INR) + friendly_id: currency__indian_rupee_inr +- id: 4641 + name: Indonesian Rupiah (IDR) + friendly_id: currency__indonesian_rupiah_idr +- id: 4642 + name: Iranian Rial (IRR) + friendly_id: currency__iranian_rial_irr +- id: 4643 + name: Iraqi Dinar (IQD) + friendly_id: currency__iraqi_dinar_iqd +- id: 4644 + name: Israeli New Shekel (ILS) + friendly_id: currency__israeli_new_shekel_ils +- id: 4645 + name: Jamaican Dollar (JMD) + friendly_id: currency__jamaican_dollar_jmd +- id: 4646 + name: Japanese Yen (JPY) + friendly_id: currency__japanese_yen_jpy +- id: 4647 + name: Jordanian Dinar (JOD) + friendly_id: currency__jordanian_dinar_jod +- id: 4648 + name: Kazakhstani Tenge (KZT) + friendly_id: currency__kazakhstani_tenge_kzt +- id: 4649 + name: Kenyan Shilling (KES) + friendly_id: currency__kenyan_shilling_kes +- id: 4650 + name: Kuwaiti Dinar (KWD) + friendly_id: currency__kuwaiti_dinar_kwd +- id: 4651 + name: Kyrgyzstani Som (KGS) + friendly_id: currency__kyrgyzstani_som_kgs +- id: 4652 + name: Lao Kip (LAK) + friendly_id: currency__lao_kip_lak +- id: 4653 + name: Lebanese Pound (LBP) + friendly_id: currency__lebanese_pound_lbp +- id: 4654 + name: Lesotho Loti (LSL) + friendly_id: currency__lesotho_loti_lsl +- id: 4655 + name: Liberian Dollar (LRD) + friendly_id: currency__liberian_dollar_lrd +- id: 4656 + name: Libyan Dinar (LYD) + friendly_id: currency__libyan_dinar_lyd +- id: 4657 + name: Macanese Pataca (MOP) + friendly_id: currency__macanese_pataca_mop +- id: 4658 + name: Macedonian Denar (MKD) + friendly_id: currency__macedonian_denar_mkd +- id: 4659 + name: Malagasy Ariary (MGA) + friendly_id: currency__malagasy_ariary_mga +- id: 4660 + name: Malawian Kwacha (MWK) + friendly_id: currency__malawian_kwacha_mwk +- id: 4661 + name: Malaysian Ringgit (MYR) + friendly_id: currency__malaysian_ringgit_myr +- id: 4662 + name: Maldivian Rufiyaa (MVR) + friendly_id: currency__maldivian_rufiyaa_mvr +- id: 4663 + name: Mauritanian Ouguiya (MRU) + friendly_id: currency__mauritanian_ouguiya_mru +- id: 4664 + name: Mauritian Rupee (MUR) + friendly_id: currency__mauritian_rupee_mur +- id: 4665 + name: Mexican Peso (MXN) + friendly_id: currency__mexican_peso_mxn +- id: 4666 + name: Moldovan Leu (MDL) + friendly_id: currency__moldovan_leu_mdl +- id: 4667 + name: Mongolian Tögrög (MNT) + friendly_id: currency__mongolian_tgrg_mnt +- id: 4668 + name: Moroccan Dirham (MAD) + friendly_id: currency__moroccan_dirham_mad +- id: 4669 + name: Mozambican Metical (MZN) + friendly_id: currency__mozambican_metical_mzn +- id: 4670 + name: Myanmar Kyat (MMK) + friendly_id: currency__myanmar_kyat_mmk +- id: 4671 + name: Namibian Dollar (NAD) + friendly_id: currency__namibian_dollar_nad +- id: 4672 + name: Nepalese Rupee (NPR) + friendly_id: currency__nepalese_rupee_npr +- id: 4673 + name: New Zealand Dollar (NZD) + friendly_id: currency__new_zealand_dollar_nzd +- id: 4674 + name: Nicaraguan Córdoba (NIO) + friendly_id: currency__nicaraguan_crdoba_nio +- id: 4675 + name: Nigerian Naira (NGN) + friendly_id: currency__nigerian_naira_ngn +- id: 4676 + name: Norwegian Krone (NOK) + friendly_id: currency__norwegian_krone_nok +- id: 4677 + name: Omani Rial (OMR) + friendly_id: currency__omani_rial_omr +- id: 4678 + name: Pakistani Rupee (PKR) + friendly_id: currency__pakistani_rupee_pkr +- id: 4679 + name: Panamanian Balboa (PAB) + friendly_id: currency__panamanian_balboa_pab +- id: 4680 + name: Papua New Guinean Kina (PGK) + friendly_id: currency__papua_new_guinean_kina_pgk +- id: 4681 + name: Paraguayan Guarani (PYG) + friendly_id: currency__paraguayan_guarani_pyg +- id: 4682 + name: Peruvian Sol (PEN) + friendly_id: currency__peruvian_sol_pen +- id: 4683 + name: Philippine Peso (PHP) + friendly_id: currency__philippine_peso_php +- id: 4684 + name: Polish Złoty (PLN) + friendly_id: currency__polish_zoty_pln +- id: 4685 + name: Qatari Riyal (QAR) + friendly_id: currency__qatari_riyal_qar +- id: 4686 + name: Romanian Leu (RON) + friendly_id: currency__romanian_leu_ron +- id: 4687 + name: Russian Ruble (RUB) + friendly_id: currency__russian_ruble_rub +- id: 4688 + name: Rwandan Franc (RWF) + friendly_id: currency__rwandan_franc_rwf +- id: 4689 + name: Saint Helena Pound (SHP) + friendly_id: currency__saint_helena_pound_shp +- id: 4690 + name: Samoan Tālā (WST) + friendly_id: currency__samoan_tl_wst +- id: 4691 + name: São Tomé and Príncipe Dobra (STN) + friendly_id: currency__so_tom_and_prncipe_dobra_stn +- id: 4692 + name: Saudi Riyal (SAR) + friendly_id: currency__saudi_riyal_sar +- id: 4693 + name: Serbian Dinar (RSD) + friendly_id: currency__serbian_dinar_rsd +- id: 4694 + name: Seychellois Rupee (SCR) + friendly_id: currency__seychellois_rupee_scr +- id: 4695 + name: Sierra Leonean Leone (SLL) + friendly_id: currency__sierra_leonean_leone_sll +- id: 4696 + name: Singapore Dollar (SGD) + friendly_id: currency__singapore_dollar_sgd +- id: 4697 + name: Solomon Islands Dollar (SBD) + friendly_id: currency__solomon_islands_dollar_sbd +- id: 4698 + name: Somali Shilling (SOS) + friendly_id: currency__somali_shilling_sos +- id: 4699 + name: South African Rand (ZAR) + friendly_id: currency__south_african_rand_zar +- id: 4700 + name: South Korean Won (KRW) + friendly_id: currency__south_korean_won_krw +- id: 4701 + name: Sri Lankan Rupee (LKR) + friendly_id: currency__sri_lankan_rupee_lkr +- id: 4702 + name: Sudanese Pound (SDG) + friendly_id: currency__sudanese_pound_sdg +- id: 4703 + name: Surinamese Dollar (SRD) + friendly_id: currency__surinamese_dollar_srd +- id: 4704 + name: Swazi Lilangeni (SZL) + friendly_id: currency__swazi_lilangeni_szl +- id: 4705 + name: Swedish Krona (SEK) + friendly_id: currency__swedish_krona_sek +- id: 4706 + name: Swiss Franc (CHF) + friendly_id: currency__swiss_franc_chf +- id: 4707 + name: Syrian Pound (SYP) + friendly_id: currency__syrian_pound_syp +- id: 4708 + name: Taiwanese Dollar (TWD) + friendly_id: currency__taiwanese_dollar_twd +- id: 4709 + name: Tajikistani Somoni (TJS) + friendly_id: currency__tajikistani_somoni_tjs +- id: 4710 + name: Tanzanian Shilling (TZS) + friendly_id: currency__tanzanian_shilling_tzs +- id: 4711 + name: Thai Baht (THB) + friendly_id: currency__thai_baht_thb +- id: 4712 + name: Tongan Paʻanga (TOP) + friendly_id: currency__tongan_paanga_top +- id: 4713 + name: Trinidad and Tobago Dollar (TTD) + friendly_id: currency__trinidad_and_tobago_dollar_ttd +- id: 4714 + name: Tunisian Dinar (TND) + friendly_id: currency__tunisian_dinar_tnd +- id: 4715 + name: Turkish Lira (TRY) + friendly_id: currency__turkish_lira_try +- id: 4716 + name: Turkmenistani Manat (TMT) + friendly_id: currency__turkmenistani_manat_tmt +- id: 4717 + name: Ugandan Shilling (UGX) + friendly_id: currency__ugandan_shilling_ugx +- id: 4718 + name: Ukrainian Hryvnia (UAH) + friendly_id: currency__ukrainian_hryvnia_uah +- id: 4719 + name: United Arab Emirates Dirham (AED) + friendly_id: currency__united_arab_emirates_dirham_aed +- id: 4720 + name: United States Dollar (USD) + friendly_id: currency__united_states_dollar_usd +- id: 4721 + name: Uruguayan Peso (UYU) + friendly_id: currency__uruguayan_peso_uyu +- id: 4722 + name: Uzbekistani Som (UZS) + friendly_id: currency__uzbekistani_som_uzs +- id: 4723 + name: Vanuatu Vatu (VUV) + friendly_id: currency__vanuatu_vatu_vuv +- id: 4724 + name: Venezuelan Bolívar (VEF) + friendly_id: currency__venezuelan_bolvar_vef +- id: 4725 + name: Vietnamese đồng (VND) + friendly_id: currency__vietnamese_ng_vnd +- id: 4726 + name: West African CFA Franc (XOF) + friendly_id: currency__west_african_cfa_franc_xof +- id: 4727 + name: Yemeni Rial (YER) + friendly_id: currency__yemeni_rial_yer +- id: 4728 + name: Zambian Kwacha (ZMW) + friendly_id: currency__zambian_kwacha_zmw +- id: 4729 + name: Zimbabwean Dollar (ZWL) + friendly_id: currency__zimbabwean_dollar_zwl +- id: 4730 + name: Other + friendly_id: currency__other +- id: 4731 + name: Color + friendly_id: verification_technology__color +- id: 4732 + name: Infrared + friendly_id: verification_technology__infrared +- id: 4733 + name: Ink + friendly_id: verification_technology__ink +- id: 4734 + name: Magnetic + friendly_id: verification_technology__magnetic +- id: 4735 + name: Metallic thread + friendly_id: verification_technology__metallic_thread +- id: 4736 + name: Size + friendly_id: verification_technology__size +- id: 4737 + name: Thickness + friendly_id: verification_technology__thickness +- id: 4738 + name: UV + friendly_id: verification_technology__uv +- id: 4739 + name: Watermark + friendly_id: verification_technology__watermark +- id: 4740 + name: Counter + friendly_id: mounting_type__counter +- id: 4741 + name: 1920 x 1080 + friendly_id: display_resolution__1920_x_1080 +- id: 4742 + name: TFT + friendly_id: display_technology__tft +- id: 4743 + name: Color + friendly_id: pad_display_profile__color +- id: 4744 + name: Monochrome + friendly_id: pad_display_profile__monochrome +- id: 4745 + name: Electronic + friendly_id: terminal_operation__electronic +- id: 4746 + name: Manual + friendly_id: terminal_operation__manual +- id: 4747 + name: Bills + friendly_id: currency_type__bills +- id: 4748 + name: Coins + friendly_id: currency_type__coins +- id: 4749 + name: Tokens + friendly_id: currency_type__tokens +- id: 4750 + name: Food + friendly_id: chemical_grade__food +- id: 4751 + name: Laboratory + friendly_id: chemical_grade__laboratory +- id: 4752 + name: Pharmaceutical + friendly_id: chemical_grade__pharmaceutical +- id: 4753 + name: Reagent + friendly_id: chemical_grade__reagent +- id: 4754 + name: ">90%" + friendly_id: chemical_purity__90 +- id: 4755 + name: ">95%" + friendly_id: chemical_purity__95 +- id: 4756 + name: ">99%" + friendly_id: chemical_purity__99 +- id: 4757 + name: Chemical vapor + friendly_id: autoclave_sterilization_method__chemical_vapor +- id: 4758 + name: Dry heat + friendly_id: autoclave_sterilization_method__dry_heat +- id: 4759 + name: Steam + friendly_id: autoclave_sterilization_method__steam +- id: 4760 + name: Batch + friendly_id: blending_type__batch +- id: 4761 + name: Continuous + friendly_id: blending_type__continuous +- id: 4762 + name: Chest + friendly_id: laboratory_freezer_design__chest +- id: 4763 + name: Undercounter + friendly_id: laboratory_freezer_design__undercounter +- id: 4764 + name: Upright + friendly_id: laboratory_freezer_design__upright +- id: 4765 + name: CCD + friendly_id: camera_sensor_type__ccd +- id: 4766 + name: CMOS + friendly_id: camera_sensor_type__cmos +- id: 4767 + name: EMCCD + friendly_id: camera_sensor_type__emccd +- id: 4768 + name: sCMOS + friendly_id: camera_sensor_type__scmos +- id: 4769 + name: Other + friendly_id: camera_sensor_type__other +- id: 4770 + name: 0.5x + friendly_id: magnification__0_5x +- id: 4771 + name: 1x + friendly_id: magnification__1x +- id: 4772 + name: 2x + friendly_id: magnification__2x +- id: 4773 + name: 4x + friendly_id: magnification__4x +- id: 4774 + name: 5x + friendly_id: magnification__5x +- id: 4775 + name: 10x + friendly_id: magnification__10x +- id: 4776 + name: 20x + friendly_id: magnification__20x +- id: 4777 + name: 40x + friendly_id: magnification__40x +- id: 4778 + name: 50x + friendly_id: magnification__50x +- id: 4779 + name: 60x + friendly_id: magnification__60x +- id: 4780 + name: 63x + friendly_id: magnification__63x +- id: 4781 + name: 100x + friendly_id: magnification__100x +- id: 4782 + name: 150x + friendly_id: magnification__150x +- id: 4783 + name: 200x + friendly_id: magnification__200x +- id: 4784 + name: Other + friendly_id: magnification__other +- id: 4785 + name: Aluminum + friendly_id: eyepiece_adapter_material__aluminum +- id: 4786 + name: Glass + friendly_id: eyepiece_adapter_material__glass +- id: 4787 + name: Metal + friendly_id: eyepiece_adapter_material__metal +- id: 4788 + name: Nylon + friendly_id: eyepiece_adapter_material__nylon +- id: 4789 + name: Plastic + friendly_id: eyepiece_adapter_material__plastic +- id: 4790 + name: Rubber + friendly_id: eyepiece_adapter_material__rubber +- id: 4791 + name: Silicone + friendly_id: eyepiece_adapter_material__silicone +- id: 4792 + name: Steel + friendly_id: eyepiece_adapter_material__steel +- id: 4793 + name: 0.5x + friendly_id: maximum_magnification__0_5x +- id: 4794 + name: 1x + friendly_id: maximum_magnification__1x +- id: 4795 + name: 2x + friendly_id: maximum_magnification__2x +- id: 4796 + name: 4x + friendly_id: maximum_magnification__4x +- id: 4797 + name: 5x + friendly_id: maximum_magnification__5x +- id: 4798 + name: 10x + friendly_id: maximum_magnification__10x +- id: 4799 + name: 20x + friendly_id: maximum_magnification__20x +- id: 4800 + name: 40x + friendly_id: maximum_magnification__40x +- id: 4801 + name: 50x + friendly_id: maximum_magnification__50x +- id: 4802 + name: 60x + friendly_id: maximum_magnification__60x +- id: 4803 + name: 63x + friendly_id: maximum_magnification__63x +- id: 4804 + name: 100x + friendly_id: maximum_magnification__100x +- id: 4805 + name: 150x + friendly_id: maximum_magnification__150x +- id: 4806 + name: 200x + friendly_id: maximum_magnification__200x +- id: 4807 + name: Other + friendly_id: maximum_magnification__other +- id: 4808 + name: 0.5x + friendly_id: minimum_magnification__0_5x +- id: 4809 + name: 1x + friendly_id: minimum_magnification__1x +- id: 4810 + name: 2x + friendly_id: minimum_magnification__2x +- id: 4811 + name: 4x + friendly_id: minimum_magnification__4x +- id: 4812 + name: 5x + friendly_id: minimum_magnification__5x +- id: 4813 + name: 10x + friendly_id: minimum_magnification__10x +- id: 4814 + name: 20x + friendly_id: minimum_magnification__20x +- id: 4815 + name: 40x + friendly_id: minimum_magnification__40x +- id: 4816 + name: 50x + friendly_id: minimum_magnification__50x +- id: 4817 + name: 60x + friendly_id: minimum_magnification__60x +- id: 4818 + name: 63x + friendly_id: minimum_magnification__63x +- id: 4819 + name: 100x + friendly_id: minimum_magnification__100x +- id: 4820 + name: 150x + friendly_id: minimum_magnification__150x +- id: 4821 + name: 200x + friendly_id: minimum_magnification__200x +- id: 4822 + name: Other + friendly_id: minimum_magnification__other +- id: 4823 + name: Plan + friendly_id: field_of_view__plan +- id: 4824 + name: Semi-plan + friendly_id: field_of_view__semi_plan +- id: 4825 + name: Super plan + friendly_id: field_of_view__super_plan +- id: 4826 + name: Fluorescent + friendly_id: light_source__fluorescent +- id: 4827 + name: Glass + friendly_id: lens_slide_material__glass +- id: 4828 + name: Plastic + friendly_id: lens_slide_material__plastic +- id: 4829 + name: Brightfield + friendly_id: illumination_technique__brightfield +- id: 4830 + name: Darkfield + friendly_id: illumination_technique__darkfield +- id: 4831 + name: DIC + friendly_id: illumination_technique__dic +- id: 4832 + name: Fluorescence + friendly_id: illumination_technique__fluorescence +- id: 4833 + name: Phase contrast + friendly_id: illumination_technique__phase_contrast +- id: 4834 + name: Dried + friendly_id: preservation_type__dried +- id: 4835 + name: Fixed + friendly_id: preservation_type__fixed +- id: 4836 + name: Fresh + friendly_id: preservation_type__fresh +- id: 4837 + name: Slide-mounted + friendly_id: preservation_type__slide_mounted +- id: 4838 + name: E-ink + friendly_id: display_technology__e_ink +- id: 4839 + name: FLD + friendly_id: display_technology__fld +- id: 4840 + name: IPS + friendly_id: display_technology__ips +- id: 4841 + name: LCM + friendly_id: display_technology__lcm +- id: 4842 + name: SVA + friendly_id: display_technology__sva +- id: 4843 + name: TFT-LCD + friendly_id: display_technology__tft_lcd +- id: 4844 + name: VFD + friendly_id: display_technology__vfd +- id: 4845 + name: Hanging + friendly_id: mounting_type__hanging +- id: 4846 + name: 1080p + friendly_id: display_resolution__1080p +- id: 4847 + name: 720p + friendly_id: display_resolution__720p +- id: 4848 + name: Advertising + friendly_id: display_sign_design__advertising +- id: 4849 + name: Closed + friendly_id: display_sign_design__closed +- id: 4850 + name: Custom + friendly_id: display_sign_design__custom +- id: 4851 + name: Discount + friendly_id: display_sign_design__discount +- id: 4852 + name: Entrance + friendly_id: display_sign_design__entrance +- id: 4853 + name: Exit + friendly_id: display_sign_design__exit +- id: 4854 + name: Open + friendly_id: display_sign_design__open +- id: 4855 + name: Open/Closed + friendly_id: display_sign_design__open_closed +- id: 4856 + name: Opening hours + friendly_id: display_sign_design__opening_hours +- id: 4857 + name: Restroom + friendly_id: display_sign_design__restroom +- id: 4858 + name: Sale + friendly_id: display_sign_design__sale +- id: 4859 + name: Wayfinding + friendly_id: display_sign_design__wayfinding +- id: 4860 + name: Other + friendly_id: display_sign_design__other +- id: 4861 + name: Assembly point + friendly_id: emergency_safety_sign_design__assembly_point +- id: 4862 + name: Emergency exit + friendly_id: emergency_safety_sign_design__emergency_exit +- id: 4863 + name: Exit + friendly_id: emergency_safety_sign_design__exit +- id: 4864 + name: Fire equipment + friendly_id: emergency_safety_sign_design__fire_equipment +- id: 4865 + name: Fire exit + friendly_id: emergency_safety_sign_design__fire_exit +- id: 4866 + name: Other + friendly_id: emergency_safety_sign_design__other +- id: 4867 + name: Illuminated + friendly_id: light_features__illuminated +- id: 4868 + name: Non-illuminated + friendly_id: light_features__non_illuminated +- id: 4869 + name: Photoluminescent + friendly_id: light_features__photoluminescent +- id: 4870 + name: Cafeteria + friendly_id: facility_sign_design__cafeteria +- id: 4871 + name: Conference room + friendly_id: facility_sign_design__conference_room +- id: 4872 + name: Elevator + friendly_id: facility_sign_design__elevator +- id: 4873 + name: Entrance/Exit + friendly_id: facility_sign_design__entrance_exit +- id: 4874 + name: First aid room + friendly_id: facility_sign_design__first_aid_room +- id: 4875 + name: Kitchen + friendly_id: facility_sign_design__kitchen +- id: 4876 + name: Lobby + friendly_id: facility_sign_design__lobby +- id: 4877 + name: Meeting room + friendly_id: facility_sign_design__meeting_room +- id: 4878 + name: Office + friendly_id: facility_sign_design__office +- id: 4879 + name: Parking + friendly_id: facility_sign_design__parking +- id: 4880 + name: Reception + friendly_id: facility_sign_design__reception +- id: 4881 + name: Restroom + friendly_id: facility_sign_design__restroom +- id: 4882 + name: Staff only + friendly_id: facility_sign_design__staff_only +- id: 4883 + name: Stairwell + friendly_id: facility_sign_design__stairwell +- id: 4884 + name: Storage room + friendly_id: facility_sign_design__storage_room +- id: 4885 + name: Other + friendly_id: facility_sign_design__other +- id: 4886 + name: Closed + friendly_id: open_closed_sign_design__closed +- id: 4887 + name: Custom + friendly_id: open_closed_sign_design__custom +- id: 4888 + name: Open + friendly_id: open_closed_sign_design__open +- id: 4889 + name: Open/Closed + friendly_id: open_closed_sign_design__open_closed +- id: 4890 + name: Opening hours + friendly_id: open_closed_sign_design__opening_hours +- id: 4891 + name: Accessible parking + friendly_id: parking_sign_design__accessible_parking +- id: 4892 + name: Compact cars only + friendly_id: parking_sign_design__compact_cars_only +- id: 4893 + name: Customer/Visitor parking + friendly_id: parking_sign_design__customer_visitor_parking +- id: 4894 + name: Employee parking + friendly_id: parking_sign_design__employee_parking +- id: 4895 + name: Fire lane + friendly_id: parking_sign_design__fire_lane +- id: 4896 + name: Loading zone + friendly_id: parking_sign_design__loading_zone +- id: 4897 + name: No parking + friendly_id: parking_sign_design__no_parking +- id: 4898 + name: Permit parking + friendly_id: parking_sign_design__permit_parking +- id: 4899 + name: Reserved parking + friendly_id: parking_sign_design__reserved_parking +- id: 4900 + name: Time limit parking + friendly_id: parking_sign_design__time_limit_parking +- id: 4901 + name: Other + friendly_id: parking_sign_design__other +- id: 4902 + name: Employees only + friendly_id: policy_sign_design__employees_only +- id: 4903 + name: Hand sanitizer required + friendly_id: policy_sign_design__hand_sanitizer_required +- id: 4904 + name: Mask required + friendly_id: policy_sign_design__mask_required +- id: 4905 + name: No cell phones + friendly_id: policy_sign_design__no_cell_phones +- id: 4906 + name: No food or drink + friendly_id: policy_sign_design__no_food_or_drink +- id: 4907 + name: No pets + friendly_id: policy_sign_design__no_pets +- id: 4908 + name: No photography + friendly_id: policy_sign_design__no_photography +- id: 4909 + name: No smoking + friendly_id: policy_sign_design__no_smoking +- id: 4910 + name: No soliciting + friendly_id: policy_sign_design__no_soliciting +- id: 4911 + name: Quiet zone + friendly_id: policy_sign_design__quiet_zone +- id: 4912 + name: Shirt and shoes required + friendly_id: policy_sign_design__shirt_and_shoes_required +- id: 4913 + name: Social distancing + friendly_id: policy_sign_design__social_distancing +- id: 4914 + name: Other + friendly_id: policy_sign_design__other +- id: 4915 + name: Clearance + friendly_id: retail_sale_sign_design__clearance +- id: 4916 + name: Closing sale + friendly_id: retail_sale_sign_design__closing_sale +- id: 4917 + name: Coming soon + friendly_id: retail_sale_sign_design__coming_soon +- id: 4918 + name: Custom + friendly_id: retail_sale_sign_design__custom +- id: 4919 + name: Entrance/Exit + friendly_id: retail_sale_sign_design__entrance_exit +- id: 4920 + name: Grand opening + friendly_id: retail_sale_sign_design__grand_opening +- id: 4921 + name: Limited time offer + friendly_id: retail_sale_sign_design__limited_time_offer +- id: 4922 + name: New arrival + friendly_id: retail_sale_sign_design__new_arrival +- id: 4923 + name: Now hiring + friendly_id: retail_sale_sign_design__now_hiring +- id: 4924 + name: Open/Closed + friendly_id: retail_sale_sign_design__open_closed +- id: 4925 + name: Restroom + friendly_id: retail_sale_sign_design__restroom +- id: 4926 + name: Sale + friendly_id: retail_sale_sign_design__sale +- id: 4927 + name: Seasonal sale + friendly_id: retail_sale_sign_design__seasonal_sale +- id: 4928 + name: Special offer + friendly_id: retail_sale_sign_design__special_offer +- id: 4929 + name: Bike lane + friendly_id: road_sign_design__bike_lane +- id: 4930 + name: Construction zone + friendly_id: road_sign_design__construction_zone +- id: 4931 + name: Do not enter + friendly_id: road_sign_design__do_not_enter +- id: 4932 + name: Merge + friendly_id: road_sign_design__merge +- id: 4933 + name: No parking + friendly_id: road_sign_design__no_parking +- id: 4934 + name: No U-turn + friendly_id: road_sign_design__no_u_turn +- id: 4935 + name: One way + friendly_id: road_sign_design__one_way +- id: 4936 + name: Pedestrian crossing + friendly_id: road_sign_design__pedestrian_crossing +- id: 4937 + name: School zone + friendly_id: road_sign_design__school_zone +- id: 4938 + name: Speed limit + friendly_id: road_sign_design__speed_limit +- id: 4939 + name: Stop + friendly_id: road_sign_design__stop +- id: 4940 + name: Traffic signal ahead + friendly_id: road_sign_design__traffic_signal_ahead +- id: 4941 + name: Yield + friendly_id: road_sign_design__yield +- id: 4942 + name: Other + friendly_id: road_sign_design__other +- id: 4943 + name: First aid + friendly_id: emergency_safety_sign_design__first_aid +- id: 4944 + name: Hard hat area + friendly_id: emergency_safety_sign_design__hard_hat_area +- id: 4945 + name: Hazardous materials + friendly_id: emergency_safety_sign_design__hazardous_materials +- id: 4946 + name: High voltage + friendly_id: emergency_safety_sign_design__high_voltage +- id: 4947 + name: No trespassing + friendly_id: emergency_safety_sign_design__no_trespassing +- id: 4948 + name: Slippery surface + friendly_id: emergency_safety_sign_design__slippery_surface +- id: 4949 + name: Staff only + friendly_id: emergency_safety_sign_design__staff_only +- id: 4950 + name: Emergency + friendly_id: warning_category__emergency +- id: 4951 + name: Mandatory + friendly_id: warning_category__mandatory +- id: 4952 + name: Prohibition + friendly_id: warning_category__prohibition +- id: 4953 + name: Warning + friendly_id: warning_category__warning +- id: 4954 + name: Alarm system + friendly_id: emergency_safety_sign_design__alarm_system +- id: 4955 + name: Guard dog + friendly_id: emergency_safety_sign_design__guard_dog +- id: 4956 + name: ID required + friendly_id: emergency_safety_sign_design__id_required +- id: 4957 + name: No entry + friendly_id: emergency_safety_sign_design__no_entry +- id: 4958 + name: Restricted area + friendly_id: emergency_safety_sign_design__restricted_area +- id: 4959 + name: Video surveillance + friendly_id: emergency_safety_sign_design__video_surveillance +- id: 4960 + name: Other + friendly_id: retail_sale_sign_design__other +- id: 4961 + name: II + friendly_id: bullet_protection_level__ii +- id: 4962 + name: IIA + friendly_id: bullet_protection_level__iia +- id: 4963 + name: III + friendly_id: bullet_protection_level__iii +- id: 4964 + name: IIIA + friendly_id: bullet_protection_level__iiia +- id: 4965 + name: IV + friendly_id: bullet_protection_level__iv +- id: 4966 + name: A1 + friendly_id: filtration_class__a1 +- id: 4967 + name: A2 + friendly_id: filtration_class__a2 +- id: 4968 + name: A3 + friendly_id: filtration_class__a3 +- id: 4969 + name: B1 + friendly_id: filtration_class__b1 +- id: 4970 + name: B2 + friendly_id: filtration_class__b2 +- id: 4971 + name: B3 + friendly_id: filtration_class__b3 +- id: 4972 + name: E1 + friendly_id: filtration_class__e1 +- id: 4973 + name: E2 + friendly_id: filtration_class__e2 +- id: 4974 + name: E3 + friendly_id: filtration_class__e3 +- id: 4975 + name: K1 + friendly_id: filtration_class__k1 +- id: 4976 + name: K2 + friendly_id: filtration_class__k2 +- id: 4977 + name: K3 + friendly_id: filtration_class__k3 +- id: 4978 + name: P1 + friendly_id: filtration_class__p1 +- id: 4979 + name: P2 + friendly_id: filtration_class__p2 +- id: 4980 + name: P3 + friendly_id: filtration_class__p3 +- id: 4981 + name: C (conductive) + friendly_id: hardhat_class__c_conductive +- id: 4982 + name: E (electrical) + friendly_id: hardhat_class__e_electrical +- id: 4983 + name: G (general) + friendly_id: hardhat_class__g_general +- id: 4984 + name: Type I + friendly_id: protection_type__type_i +- id: 4985 + name: Type II + friendly_id: protection_type__type_ii +- id: 4986 + name: Coverall + friendly_id: hazmat_suit_design__coverall +- id: 4987 + name: Encapsulated + friendly_id: hazmat_suit_design__encapsulated +- id: 4988 + name: Lab coat + friendly_id: hazmat_suit_design__lab_coat +- id: 4989 + name: One size + friendly_id: accessory_size__one_size +- id: 4990 + name: Cup + friendly_id: dust_mask_type__cup +- id: 4991 + name: Flat fold + friendly_id: dust_mask_type__flat_fold +- id: 4992 + name: FFP1 + friendly_id: filtration_class__ffp1 +- id: 4993 + name: FFP2 + friendly_id: filtration_class__ffp2 +- id: 4994 + name: FFP3 + friendly_id: filtration_class__ffp3 +- id: 4995 + name: Built-in + friendly_id: attachment_type__built_in +- id: 4996 + name: Clip-on + friendly_id: attachment_type__clip_on +- id: 4997 + name: Strap-on + friendly_id: attachment_type__strap_on +- id: 4998 + name: Auto-darkening + friendly_id: helmet_shade_design__auto_darkening +- id: 4999 + name: Fixed + friendly_id: helmet_shade_design__fixed +- id: 5000 + name: Passive + friendly_id: helmet_shade_design__passive +- id: 5001 + name: Variable + friendly_id: helmet_shade_design__variable +- id: 5002 + name: Large + friendly_id: viewing_area_height__large +- id: 5003 + name: Medium + friendly_id: viewing_area_height__medium +- id: 5004 + name: Small + friendly_id: viewing_area_height__small +- id: 5005 + name: Large + friendly_id: viewing_area_width__large +- id: 5006 + name: Medium + friendly_id: viewing_area_width__medium +- id: 5007 + name: Small + friendly_id: viewing_area_width__small +- id: 5008 + name: Aluminum + friendly_id: cable_housing_material__aluminum +- id: 5009 + name: Nylon + friendly_id: cable_housing_material__nylon +- id: 5010 + name: Polyvinyl chloride (PVC) + friendly_id: cable_housing_material__polyvinyl_chloride_pvc +- id: 5011 + name: Rubber + friendly_id: cable_housing_material__rubber +- id: 5012 + name: Stainless steel + friendly_id: cable_housing_material__stainless_steel +- id: 5013 + name: Thermoplastic elastomer (TPE) + friendly_id: cable_housing_material__thermoplastic_elastomer_tpe +- id: 5014 + name: Cinema + friendly_id: camera_lens_type__cinema +- id: 5015 + name: Extender + friendly_id: camera_lens_type__extender +- id: 5016 + name: Fixed focus + friendly_id: camera_lens_type__fixed_focus +- id: 5017 + name: Fisheye + friendly_id: camera_lens_type__fisheye +- id: 5018 + name: Macro + friendly_id: camera_lens_type__macro +- id: 5019 + name: Macro telephoto + friendly_id: camera_lens_type__macro_telephoto +- id: 5020 + name: Standard + friendly_id: camera_lens_type__standard +- id: 5021 + name: Standard zoom + friendly_id: camera_lens_type__standard_zoom +- id: 5022 + name: Super telephoto + friendly_id: camera_lens_type__super_telephoto +- id: 5023 + name: Super wide + friendly_id: camera_lens_type__super_wide +- id: 5024 + name: Telephoto + friendly_id: camera_lens_type__telephoto +- id: 5025 + name: Telephoto zoom + friendly_id: camera_lens_type__telephoto_zoom +- id: 5026 + name: Tilt-shift + friendly_id: camera_lens_type__tilt_shift +- id: 5027 + name: Ultra-telephoto zoom + friendly_id: camera_lens_type__ultra_telephoto_zoom +- id: 5028 + name: Ultra-wide + friendly_id: camera_lens_type__ultra_wide +- id: 5029 + name: Wide + friendly_id: camera_lens_type__wide +- id: 5030 + name: Wide angle macro + friendly_id: camera_lens_type__wide_angle_macro +- id: 5031 + name: Wide fish-eye + friendly_id: camera_lens_type__wide_fish_eye +- id: 5032 + name: Wide zoom + friendly_id: camera_lens_type__wide_zoom +- id: 5033 + name: Action sports camera + friendly_id: suitable_for_camera_type__action_sports_camera +- id: 5034 + name: Bridge camera + friendly_id: suitable_for_camera_type__bridge_camera +- id: 5035 + name: Camcorder + friendly_id: suitable_for_camera_type__camcorder +- id: 5036 + name: Camera drone + friendly_id: suitable_for_camera_type__camera_drone +- id: 5037 + name: CCTV camera + friendly_id: suitable_for_camera_type__cctv_camera +- id: 5038 + name: Compact camera + friendly_id: suitable_for_camera_type__compact_camera +- id: 5039 + name: Gimbal camera + friendly_id: suitable_for_camera_type__gimbal_camera +- id: 5040 + name: Instant print camera + friendly_id: suitable_for_camera_type__instant_print_camera +- id: 5041 + name: IP camera + friendly_id: suitable_for_camera_type__ip_camera +- id: 5042 + name: MILC + friendly_id: suitable_for_camera_type__milc +- id: 5043 + name: SLR + friendly_id: suitable_for_camera_type__slr +- id: 5044 + name: Smartphone + friendly_id: suitable_for_camera_type__smartphone +- id: 5045 + name: Tablet + friendly_id: suitable_for_camera_type__tablet +- id: 5046 + name: Time lapse camera + friendly_id: suitable_for_camera_type__time_lapse_camera +- id: 5047 + name: Auto + friendly_id: focus_adjustment__auto +- id: 5048 + name: Manual + friendly_id: focus_adjustment__manual +- id: 5049 + name: TTL + friendly_id: focus_type__ttl +- id: 5050 + name: TTL-CT-SIR + friendly_id: focus_type__ttl_ct_sir +- id: 5051 + name: TTL iESP + friendly_id: focus_type__ttl_iesp +- id: 5052 + name: Buckles + friendly_id: bag_closure__buckles +- id: 5053 + name: Button + friendly_id: bag_closure__button +- id: 5054 + name: Clip + friendly_id: bag_closure__clip +- id: 5055 + name: Combination lock + friendly_id: bag_closure__combination_lock +- id: 5056 + name: Drawstring + friendly_id: bag_closure__drawstring +- id: 5057 + name: Elastic + friendly_id: bag_closure__elastic +- id: 5058 + name: Flap + friendly_id: bag_closure__flap +- id: 5059 + name: Hook & loop + friendly_id: bag_closure__hook_loop +- id: 5060 + name: Key lock + friendly_id: bag_closure__key_lock +- id: 5061 + name: Latch + friendly_id: bag_closure__latch +- id: 5062 + name: Magnetic + friendly_id: bag_closure__magnetic +- id: 5063 + name: Open top + friendly_id: bag_closure__open_top +- id: 5064 + name: Push lock + friendly_id: bag_closure__push_lock +- id: 5065 + name: Roll-top + friendly_id: bag_closure__roll_top +- id: 5066 + name: Snap + friendly_id: bag_closure__snap +- id: 5067 + name: Toggle + friendly_id: bag_closure__toggle +- id: 5068 + name: Twist lock + friendly_id: bag_closure__twist_lock +- id: 5069 + name: Velcro + friendly_id: bag_closure__velcro +- id: 5070 + name: Zipper + friendly_id: bag_closure__zipper +- id: 5071 + name: Backpack strap + friendly_id: carrying_type__backpack_strap +- id: 5072 + name: Belt loop + friendly_id: carrying_type__belt_loop +- id: 5073 + name: Clip-on + friendly_id: carrying_type__clip_on +- id: 5074 + name: Hand carry + friendly_id: carrying_type__hand_carry +- id: 5075 + name: Shoulder strap + friendly_id: carrying_type__shoulder_strap +- id: 5076 + name: Binocular + friendly_id: lens_cap_compatible_device__binocular +- id: 5077 + name: Digital camera + friendly_id: lens_cap_compatible_device__digital_camera +- id: 5078 + name: Monocular + friendly_id: lens_cap_compatible_device__monocular +- id: 5079 + name: Depth of field + friendly_id: converter_functionality__depth_of_field +- id: 5080 + name: Fisheye + friendly_id: converter_functionality__fisheye +- id: 5081 + name: Macro + friendly_id: converter_functionality__macro +- id: 5082 + name: Speed booster + friendly_id: converter_functionality__speed_booster +- id: 5083 + name: Teleconverter + friendly_id: converter_functionality__teleconverter +- id: 5084 + name: Wide angle + friendly_id: converter_functionality__wide_angle +- id: 5085 + name: Color correction + friendly_id: lens_filter_effects__color_correction +- id: 5086 + name: Flare effect + friendly_id: lens_filter_effects__flare_effect +- id: 5087 + name: Increase contrast + friendly_id: lens_filter_effects__increase_contrast +- id: 5088 + name: Infrared effect + friendly_id: lens_filter_effects__infrared_effect +- id: 5089 + name: Macro + friendly_id: lens_filter_effects__macro +- id: 5090 + name: Reduce light intake + friendly_id: lens_filter_effects__reduce_light_intake +- id: 5091 + name: Reduce reflections + friendly_id: lens_filter_effects__reduce_reflections +- id: 5092 + name: Softening effect + friendly_id: lens_filter_effects__softening_effect +- id: 5093 + name: UV protection + friendly_id: lens_filter_effects__uv_protection +- id: 5094 + name: Close-up + friendly_id: lens_filter_type__close_up +- id: 5095 + name: Color + friendly_id: lens_filter_type__color +- id: 5096 + name: Diffusion + friendly_id: lens_filter_type__diffusion +- id: 5097 + name: Gradient + friendly_id: lens_filter_type__gradient +- id: 5098 + name: Infrared + friendly_id: lens_filter_type__infrared +- id: 5099 + name: Neutral density + friendly_id: lens_filter_type__neutral_density +- id: 5100 + name: Polarizing + friendly_id: lens_filter_type__polarizing +- id: 5101 + name: Starburst + friendly_id: lens_filter_type__starburst +- id: 5102 + name: Low + friendly_id: color_saturation__low +- id: 5103 + name: Normal + friendly_id: color_saturation__normal +- id: 5104 + name: High + friendly_id: color_saturation__high +- id: 5105 + name: Low + friendly_id: contrast__low +- id: 5106 + name: Normal + friendly_id: contrast__normal +- id: 5107 + name: High + friendly_id: contrast__high +- id: 5108 + name: 120/220 + friendly_id: film_format__120_220 +- id: 5109 + name: 35mm + friendly_id: film_format__35mm +- id: 5110 + name: 4x5 + friendly_id: film_format__4x5 +- id: 5111 + name: 5x7 + friendly_id: film_format__5x7 +- id: 5112 + name: 8x10 + friendly_id: film_format__8x10 +- id: 5113 + name: APS + friendly_id: film_format__aps +- id: 5114 + name: Instax mini + friendly_id: film_format__instax_mini +- id: 5115 + name: Instax square + friendly_id: film_format__instax_square +- id: 5116 + name: Polaroid + friendly_id: film_format__polaroid +- id: 5117 + name: Fine + friendly_id: grain__fine +- id: 5118 + name: Normal + friendly_id: grain__normal +- id: 5119 + name: High + friendly_id: grain__high +- id: 5120 + name: Auto + friendly_id: flash_modes__auto +- id: 5121 + name: Fill-in + friendly_id: flash_modes__fill_in +- id: 5122 + name: Flash off + friendly_id: flash_modes__flash_off +- id: 5123 + name: Flash on + friendly_id: flash_modes__flash_on +- id: 5124 + name: Forced off + friendly_id: flash_modes__forced_off +- id: 5125 + name: Forced on + friendly_id: flash_modes__forced_on +- id: 5126 + name: High-speed sync + friendly_id: flash_modes__high_speed_sync +- id: 5127 + name: Manual + friendly_id: flash_modes__manual +- id: 5128 + name: Multi + friendly_id: flash_modes__multi +- id: 5129 + name: Normal + friendly_id: flash_modes__normal +- id: 5130 + name: Pre-flash + friendly_id: flash_modes__pre_flash +- id: 5131 + name: Rear curtain + friendly_id: flash_modes__rear_curtain +- id: 5132 + name: Red-eye reduction + friendly_id: flash_modes__red_eye_reduction +- id: 5133 + name: Second curtain sync + friendly_id: flash_modes__second_curtain_sync +- id: 5134 + name: Slave + friendly_id: flash_modes__slave +- id: 5135 + name: Slow synchronization + friendly_id: flash_modes__slow_synchronization +- id: 5136 + name: Soft + friendly_id: flash_modes__soft +- id: 5137 + name: Stroboscopic + friendly_id: flash_modes__stroboscopic +- id: 5138 + name: Suppressed + friendly_id: flash_modes__suppressed +- id: 5139 + name: TTL + friendly_id: flash_modes__ttl +- id: 5140 + name: Bare bulb + friendly_id: flash_type__bare_bulb +- id: 5141 + name: Camcorder + friendly_id: flash_type__camcorder +- id: 5142 + name: Compact camera + friendly_id: flash_type__compact_camera +- id: 5143 + name: Macro + friendly_id: flash_type__macro +- id: 5144 + name: Off-camera + friendly_id: flash_type__off_camera +- id: 5145 + name: Ring + friendly_id: flash_type__ring +- id: 5146 + name: Shoe mount + friendly_id: flash_type__shoe_mount +- id: 5147 + name: Slave camera + friendly_id: flash_type__slave_camera +- id: 5148 + name: Studio + friendly_id: flash_type__studio +- id: 5149 + name: Hot shoe + friendly_id: camera_mounting_type__hot_shoe +- id: 5150 + name: Rod + friendly_id: camera_mounting_type__rod +- id: 5151 + name: Tripod + friendly_id: camera_mounting_type__tripod +- id: 5152 + name: Focus assist tool + friendly_id: focus_device_type__focus_assist_tool +- id: 5153 + name: Focus crank + friendly_id: focus_device_type__focus_crank +- id: 5154 + name: Focus handle + friendly_id: focus_device_type__focus_handle +- id: 5155 + name: Focus whip + friendly_id: focus_device_type__focus_whip +- id: 5156 + name: Follow focus system + friendly_id: focus_device_type__follow_focus_system +- id: 5157 + name: Remote focus puller + friendly_id: focus_device_type__remote_focus_puller +- id: 5158 + name: Camera drive + friendly_id: camera_gear_type__camera_drive +- id: 5159 + name: Follow focus + friendly_id: camera_gear_type__follow_focus +- id: 5160 + name: Iris control + friendly_id: camera_gear_type__iris_control +- id: 5161 + name: Lens gear ring + friendly_id: camera_gear_type__lens_gear_ring +- id: 5162 + name: Zoom control + friendly_id: camera_gear_type__zoom_control +- id: 5163 + name: Lens + friendly_id: camera_mounting_type__lens +- id: 5164 + name: Adhesive + friendly_id: camera_mounting_type__adhesive +- id: 5165 + name: Screw + friendly_id: camera_mounting_type__screw +- id: 5166 + name: 3CMOS + friendly_id: camera_sensor_type__3cmos +- id: 5167 + name: 3MOS + friendly_id: camera_sensor_type__3mos +- id: 5168 + name: BSI + friendly_id: camera_sensor_type__bsi +- id: 5169 + name: BSI CMOS + friendly_id: camera_sensor_type__bsi_cmos +- id: 5170 + name: CMOS II + friendly_id: camera_sensor_type__cmos_ii +- id: 5171 + name: CMOS III + friendly_id: camera_sensor_type__cmos_iii +- id: 5172 + name: Exmor R CMOS + friendly_id: camera_sensor_type__exmor_r_cmos +- id: 5173 + name: Exmor RS CMOS + friendly_id: camera_sensor_type__exmor_rs_cmos +- id: 5174 + name: Foveon + friendly_id: camera_sensor_type__foveon +- id: 5175 + name: Live MOS + friendly_id: camera_sensor_type__live_mos +- id: 5176 + name: MOS + friendly_id: camera_sensor_type__mos +- id: 5177 + name: MOS BSI + friendly_id: camera_sensor_type__mos_bsi +- id: 5178 + name: NMOS + friendly_id: camera_sensor_type__nmos +- id: 5179 + name: Super CCD + friendly_id: camera_sensor_type__super_ccd +- id: 5180 + name: X-trans CMOS 4 + friendly_id: camera_sensor_type__x_trans_cmos_4 +- id: 5181 + name: '1' + friendly_id: image_sensor_size__1 +- id: 5182 + name: 1/1.7 + friendly_id: image_sensor_size__1_1_7 +- id: 5183 + name: 1/2.3 + friendly_id: image_sensor_size__1_2_3 +- id: 5184 + name: APS-C + friendly_id: image_sensor_size__aps_c +- id: 5185 + name: Full frame + friendly_id: image_sensor_size__full_frame +- id: 5186 + name: Micro four thirds + friendly_id: image_sensor_size__micro_four_thirds +- id: 5187 + name: Cable release + friendly_id: camera_control_type__cable_release +- id: 5188 + name: Intervalometer + friendly_id: camera_control_type__intervalometer +- id: 5189 + name: Remote switch + friendly_id: camera_control_type__remote_switch +- id: 5190 + name: Shutter release + friendly_id: camera_control_type__shutter_release +- id: 5191 + name: Other + friendly_id: power_source__other +- id: 5192 + name: Bluetooth + friendly_id: remote_technology__bluetooth +- id: 5193 + name: Infrared + friendly_id: remote_technology__infrared +- id: 5194 + name: Mobile device + friendly_id: remote_technology__mobile_device +- id: 5195 + name: Radio + friendly_id: remote_technology__radio +- id: 5196 + name: Tethered + friendly_id: remote_technology__tethered +- id: 5197 + name: Wired + friendly_id: remote_technology__wired +- id: 5198 + name: Wireless + friendly_id: remote_technology__wireless +- id: 5199 + name: Body cover + friendly_id: camera_button_knob_type__body_cover +- id: 5200 + name: Command dial knob + friendly_id: camera_button_knob_type__command_dial_knob +- id: 5201 + name: Function button + friendly_id: camera_button_knob_type__function_button +- id: 5202 + name: Lens aperture control ring + friendly_id: camera_button_knob_type__lens_aperture_control_ring +- id: 5203 + name: Lens focus control ring + friendly_id: camera_button_knob_type__lens_focus_control_ring +- id: 5204 + name: Mode dial knob + friendly_id: camera_button_knob_type__mode_dial_knob +- id: 5205 + name: Opening latch + friendly_id: camera_button_knob_type__opening_latch +- id: 5206 + name: Shutter release button + friendly_id: camera_button_knob_type__shutter_release_button +- id: 5207 + name: Zoom control ring + friendly_id: camera_button_knob_type__zoom_control_ring +- id: 5208 + name: Display protector + friendly_id: screen_display_design__display_protector +- id: 5209 + name: Picture + friendly_id: screen_display_design__picture +- id: 5210 + name: Rotating + friendly_id: screen_display_design__rotating +- id: 5211 + name: Touch + friendly_id: screen_display_design__touch +- id: 5212 + name: Viewfinder + friendly_id: screen_display_design__viewfinder +- id: 5213 + name: Camera blimp + friendly_id: silencer_blimp_type__camera_blimp +- id: 5214 + name: Lens blimp + friendly_id: silencer_blimp_type__lens_blimp +- id: 5215 + name: Microphone silencer + friendly_id: silencer_blimp_type__microphone_silencer +- id: 5216 + name: Soundproof cover + friendly_id: silencer_blimp_type__soundproof_cover +- id: 5217 + name: Underwater sound blimp + friendly_id: silencer_blimp_type__underwater_sound_blimp +- id: 5218 + name: Action camera + friendly_id: suitable_for_camera_optics_device__action_camera +- id: 5219 + name: Binocular + friendly_id: suitable_for_camera_optics_device__binocular +- id: 5220 + name: Camcorder + friendly_id: suitable_for_camera_optics_device__camcorder +- id: 5221 + name: Digital camera + friendly_id: suitable_for_camera_optics_device__digital_camera +- id: 5222 + name: Camera filter + friendly_id: suitable_for_camera_optics_device__camera_filter +- id: 5223 + name: Lens + friendly_id: suitable_for_camera_optics_device__lens +- id: 5224 + name: Light meter + friendly_id: suitable_for_camera_optics_device__light_meter +- id: 5225 + name: Selfie stick + friendly_id: suitable_for_camera_optics_device__selfie_stick +- id: 5226 + name: Tripod + friendly_id: suitable_for_camera_optics_device__tripod +- id: 5227 + name: Other + friendly_id: suitable_for_camera_optics_device__other +- id: 5228 + name: Angle viewfinder + friendly_id: camera_attachment__angle_viewfinder +- id: 5229 + name: Eyecup viewfinder + friendly_id: camera_attachment__eyecup_viewfinder +- id: 5230 + name: Eyepiece adapter + friendly_id: camera_attachment__eyepiece_adapter +- id: 5231 + name: LCD viewfinder + friendly_id: camera_attachment__lcd_viewfinder +- id: 5232 + name: Magnifying viewfinder + friendly_id: camera_attachment__magnifying_viewfinder +- id: 5233 + name: Rubber eyecup + friendly_id: camera_attachment__rubber_eyecup +- id: 5234 + name: Sun hood + friendly_id: camera_attachment__sun_hood +- id: 5235 + name: 144p + friendly_id: display_resolution__144p +- id: 5236 + name: 240p + friendly_id: display_resolution__240p +- id: 5237 + name: 360p + friendly_id: display_resolution__360p +- id: 5238 + name: 480p + friendly_id: display_resolution__480p +- id: 5239 + name: 1440p + friendly_id: display_resolution__1440p +- id: 5240 + name: 2160p + friendly_id: display_resolution__2160p +- id: 5241 + name: 4320p + friendly_id: display_resolution__4320p +- id: 5242 + name: SD + friendly_id: display_resolution__sd +- id: 5243 + name: HD + friendly_id: display_resolution__hd +- id: 5244 + name: 3D LUT + friendly_id: monitor_type__3d_lut +- id: 5245 + name: 4K + friendly_id: monitor_type__4k +- id: 5246 + name: Field + friendly_id: monitor_type__field +- id: 5247 + name: HD + friendly_id: monitor_type__hd +- id: 5248 + name: HDR + friendly_id: monitor_type__hdr +- id: 5249 + name: On-camera + friendly_id: monitor_type__on_camera +- id: 5250 + name: Recording + friendly_id: monitor_type__recording +- id: 5251 + name: Touchscreen + friendly_id: monitor_type__touchscreen +- id: 5252 + name: Shoe + friendly_id: camera_mounting_type__shoe +- id: 5253 + name: Standalone + friendly_id: camera_mounting_type__standalone +- id: 5254 + name: Fill + friendly_id: light_design__fill +- id: 5255 + name: LED + friendly_id: light_design__led +- id: 5256 + name: Monolight + friendly_id: light_design__monolight +- id: 5257 + name: On-camera + friendly_id: light_design__on_camera +- id: 5258 + name: Ring + friendly_id: light_design__ring +- id: 5259 + name: Strobe + friendly_id: light_design__strobe +- id: 5260 + name: Studio + friendly_id: light_design__studio +- id: 5261 + name: Ball + friendly_id: tripod_monopod_head_type__ball +- id: 5262 + name: Equatorial mount + friendly_id: tripod_monopod_head_type__equatorial_mount +- id: 5263 + name: Fluid + friendly_id: tripod_monopod_head_type__fluid +- id: 5264 + name: Geared + friendly_id: tripod_monopod_head_type__geared +- id: 5265 + name: Gimbal + friendly_id: tripod_monopod_head_type__gimbal +- id: 5266 + name: Pan + friendly_id: tripod_monopod_head_type__pan +- id: 5267 + name: Panoramic + friendly_id: tripod_monopod_head_type__panoramic +- id: 5268 + name: Pistol grip heads + friendly_id: tripod_monopod_head_type__pistol_grip_heads +- id: 5269 + name: Video heads + friendly_id: tripod_monopod_head_type__video_heads +- id: 5270 + name: 1/4 + friendly_id: tripop_monopod_attachment_type__1_4 +- id: 5271 + name: 3/8 + friendly_id: tripop_monopod_attachment_type__3_8 +- id: 5272 + name: Universal + friendly_id: tripop_monopod_attachment_type__universal +- id: 5273 + name: Camera + friendly_id: collar_mount_compatible_device__camera +- id: 5274 + name: Lens + friendly_id: collar_mount_compatible_device__lens +- id: 5275 + name: Smartphone + friendly_id: collar_mount_compatible_device__smartphone +- id: 5276 + name: Ball head + friendly_id: collar_mount_design__ball_head +- id: 5277 + name: Boom pole + friendly_id: collar_mount_design__boom_pole +- id: 5278 + name: Clamp + friendly_id: collar_mount_design__clamp +- id: 5279 + name: Plate + friendly_id: collar_mount_design__plate +- id: 5280 + name: Quick release + friendly_id: collar_mount_design__quick_release +- id: 5281 + name: Ring + friendly_id: collar_mount_design__ring +- id: 5282 + name: Crank + friendly_id: tripop_handle_type__crank +- id: 5283 + name: Extension + friendly_id: tripop_handle_type__extension +- id: 5284 + name: Multi-function + friendly_id: tripop_handle_type__multi_function +- id: 5285 + name: Pan + friendly_id: tripop_handle_type__pan +- id: 5286 + name: Pistol grip + friendly_id: tripop_handle_type__pistol_grip +- id: 5287 + name: Tilt + friendly_id: tripop_handle_type__tilt +- id: 5288 + name: Trigger grip + friendly_id: tripop_handle_type__trigger_grip +- id: 5289 + name: Ground-level + friendly_id: spreader_type__ground_level +- id: 5290 + name: Mid-level + friendly_id: spreader_type__mid_level +- id: 5291 + name: On-ground + friendly_id: spreader_type__on_ground +- id: 5292 + name: Pivoting + friendly_id: feet_type__pivoting +- id: 5293 + name: Retractable + friendly_id: feet_type__retractable +- id: 5294 + name: Rubber + friendly_id: feet_type__rubber +- id: 5295 + name: Spiked + friendly_id: feet_type__spiked +- id: 5296 + name: Flip lock + friendly_id: leg_lock_type__flip_lock +- id: 5297 + name: Push-pull lock + friendly_id: leg_lock_type__push_pull_lock +- id: 5298 + name: Twist lock + friendly_id: leg_lock_type__twist_lock +- id: 5299 + name: '1' + friendly_id: leg_sections__1 +- id: 5300 + name: '2' + friendly_id: leg_sections__2 +- id: 5301 + name: '3' + friendly_id: leg_sections__3 +- id: 5302 + name: '4' + friendly_id: leg_sections__4 +- id: 5303 + name: 5+ + friendly_id: leg_sections__5+ +- id: 5304 + name: Fiberscope + friendly_id: borescope_design__fiberscope +- id: 5305 + name: Flexible + friendly_id: borescope_design__flexible +- id: 5306 + name: Inspection camera + friendly_id: borescope_design__inspection_camera +- id: 5307 + name: Rigid + friendly_id: borescope_design__rigid +- id: 5308 + name: Videoscope + friendly_id: borescope_design__videoscope +- id: 5309 + name: AI + friendly_id: auto_focusing_modes__ai +- id: 5310 + name: Area + friendly_id: auto_focusing_modes__area +- id: 5311 + name: Centre weighted + friendly_id: auto_focusing_modes__centre_weighted +- id: 5312 + name: Continuous + friendly_id: auto_focusing_modes__continuous +- id: 5313 + name: Contrast detection + friendly_id: auto_focusing_modes__contrast_detection +- id: 5314 + name: Far/Near + friendly_id: auto_focusing_modes__far_near +- id: 5315 + name: Flexible spot + friendly_id: auto_focusing_modes__flexible_spot +- id: 5316 + name: Monitoring + friendly_id: auto_focusing_modes__monitoring +- id: 5317 + name: Multi point + friendly_id: auto_focusing_modes__multi_point +- id: 5318 + name: One shot + friendly_id: auto_focusing_modes__one_shot +- id: 5319 + name: Selective + friendly_id: auto_focusing_modes__selective +- id: 5320 + name: Servo + friendly_id: auto_focusing_modes__servo +- id: 5321 + name: Single + friendly_id: auto_focusing_modes__single +- id: 5322 + name: Spot + friendly_id: auto_focusing_modes__spot +- id: 5323 + name: Tracking + friendly_id: auto_focusing_modes__tracking +- id: 5324 + name: AMOLED + friendly_id: camera_display_technology__amoled +- id: 5325 + name: LCD + friendly_id: camera_display_technology__lcd +- id: 5326 + name: OLED + friendly_id: camera_display_technology__oled +- id: 5327 + name: Super AMOLED + friendly_id: camera_display_technology__super_amoled +- id: 5328 + name: TFT + friendly_id: camera_display_technology__tft +- id: 5329 + name: 4.4K + friendly_id: camera_hd_type__4_4k +- id: 5330 + name: 4K ultra HD + friendly_id: camera_hd_type__4k_ultra_hd +- id: 5331 + name: 5.7K + friendly_id: camera_hd_type__5_7k +- id: 5332 + name: 5.8K + friendly_id: camera_hd_type__5_8k +- id: 5333 + name: 5K ultra HD + friendly_id: camera_hd_type__5k_ultra_hd +- id: 5334 + name: 6K ultra HD + friendly_id: camera_hd_type__6k_ultra_hd +- id: 5335 + name: 8K ultra HD + friendly_id: camera_hd_type__8k_ultra_hd +- id: 5336 + name: Full HD + friendly_id: camera_hd_type__full_hd +- id: 5337 + name: HD + friendly_id: camera_hd_type__hd +- id: 5338 + name: Not supported + friendly_id: camera_hd_type__not_supported +- id: 5339 + name: CF + friendly_id: compatible_memory_cards__cf +- id: 5340 + name: CF Type II + friendly_id: compatible_memory_cards__cf_type_ii +- id: 5341 + name: CF+ + friendly_id: compatible_memory_cards__cf+ +- id: 5342 + name: CFast + friendly_id: compatible_memory_cards__cfast +- id: 5343 + name: CFast 2.0 + friendly_id: compatible_memory_cards__cfast_2_0 +- id: 5344 + name: CFexpress + friendly_id: compatible_memory_cards__cfexpress +- id: 5345 + name: DV RS-MMC + friendly_id: compatible_memory_cards__dv_rs_mmc +- id: 5346 + name: EXD + friendly_id: compatible_memory_cards__exd +- id: 5347 + name: expressP2 + friendly_id: compatible_memory_cards__expressp2 +- id: 5348 + name: Eye-Fi + friendly_id: compatible_memory_cards__eye_fi +- id: 5349 + name: FLU + friendly_id: compatible_memory_cards__flu +- id: 5350 + name: HC MMC+ + friendly_id: compatible_memory_cards__hc_mmc+ +- id: 5351 + name: Microdrive + friendly_id: compatible_memory_cards__microdrive +- id: 5352 + name: MicroP2 + friendly_id: compatible_memory_cards__microp2 +- id: 5353 + name: MicroSD (transflash) + friendly_id: compatible_memory_cards__microsd_transflash +- id: 5354 + name: microSDHC + friendly_id: compatible_memory_cards__microsdhc +- id: 5355 + name: microSDXC + friendly_id: compatible_memory_cards__microsdxc +- id: 5356 + name: MiniMMC + friendly_id: compatible_memory_cards__minimmc +- id: 5357 + name: MiniSD + friendly_id: compatible_memory_cards__minisd +- id: 5358 + name: MiniSDHC + friendly_id: compatible_memory_cards__minisdhc +- id: 5359 + name: MMC + friendly_id: compatible_memory_cards__mmc +- id: 5360 + name: MMC micro + friendly_id: compatible_memory_cards__mmc_micro +- id: 5361 + name: MMC mobile + friendly_id: compatible_memory_cards__mmc_mobile +- id: 5362 + name: MMC+ + friendly_id: compatible_memory_cards__mmc+ +- id: 5363 + name: MS + friendly_id: compatible_memory_cards__ms +- id: 5364 + name: MS duo + friendly_id: compatible_memory_cards__ms_duo +- id: 5365 + name: MS micro (M2) + friendly_id: compatible_memory_cards__ms_micro_m2 +- id: 5366 + name: MS PRO + friendly_id: compatible_memory_cards__ms_pro +- id: 5367 + name: MS PRO duo + friendly_id: compatible_memory_cards__ms_pro_duo +- id: 5368 + name: MS PRO duo HS + friendly_id: compatible_memory_cards__ms_pro_duo_hs +- id: 5369 + name: MS PRO duo mark 2 + friendly_id: compatible_memory_cards__ms_pro_duo_mark_2 +- id: 5370 + name: MS Pro-HG + friendly_id: compatible_memory_cards__ms_pro_hg +- id: 5371 + name: MS Pro-HG duo + friendly_id: compatible_memory_cards__ms_pro_hg_duo +- id: 5372 + name: MS Pro-HG duo HX + friendly_id: compatible_memory_cards__ms_pro_hg_duo_hx +- id: 5373 + name: MS XC-HG duo + friendly_id: compatible_memory_cards__ms_xc_hg_duo +- id: 5374 + name: MSXC + friendly_id: compatible_memory_cards__msxc +- id: 5375 + name: Nano memory (NM) + friendly_id: compatible_memory_cards__nano_memory_nm +- id: 5376 + name: Not supported + friendly_id: compatible_memory_cards__not_supported +- id: 5377 + name: P2 + friendly_id: compatible_memory_cards__p2 +- id: 5378 + name: PSVita + friendly_id: compatible_memory_cards__psvita +- id: 5379 + name: RS-MMC + friendly_id: compatible_memory_cards__rs_mmc +- id: 5380 + name: SD + friendly_id: compatible_memory_cards__sd +- id: 5381 + name: SDHC + friendly_id: compatible_memory_cards__sdhc +- id: 5382 + name: SDIO + friendly_id: compatible_memory_cards__sdio +- id: 5383 + name: SDXC + friendly_id: compatible_memory_cards__sdxc +- id: 5384 + name: Smart media + friendly_id: compatible_memory_cards__smart_media +- id: 5385 + name: Smart media xD + friendly_id: compatible_memory_cards__smart_media_xd +- id: 5386 + name: SR memory + friendly_id: compatible_memory_cards__sr_memory +- id: 5387 + name: SxS + friendly_id: compatible_memory_cards__sxs +- id: 5388 + name: SxS Pro + friendly_id: compatible_memory_cards__sxs_pro +- id: 5389 + name: SxS-1 + friendly_id: compatible_memory_cards__sxs_1 +- id: 5390 + name: xD + friendly_id: compatible_memory_cards__xd +- id: 5391 + name: XQD + friendly_id: compatible_memory_cards__xqd +- id: 5392 + name: Other + friendly_id: compatible_memory_cards__other +- id: 5393 + name: JPEG + friendly_id: image_formats_supported__jpeg +- id: 5394 + name: DNG + friendly_id: image_formats_supported__dng +- id: 5395 + name: JPG + friendly_id: image_formats_supported__jpg +- id: 5396 + name: RAW + friendly_id: image_formats_supported__raw +- id: 5397 + name: EXIF + friendly_id: image_formats_supported__exif +- id: 5398 + name: NEF + friendly_id: image_formats_supported__nef +- id: 5399 + name: sRAW + friendly_id: image_formats_supported__sraw +- id: 5400 + name: TIFF + friendly_id: image_formats_supported__tiff +- id: 5401 + name: C-RAW + friendly_id: image_formats_supported__c_raw +- id: 5402 + name: HEIF + friendly_id: image_formats_supported__heif +- id: 5403 + name: 1/1.6 + friendly_id: image_sensor_size__1_1_6 +- id: 5404 + name: 1/1.63 + friendly_id: image_sensor_size__1_1_63 +- id: 5405 + name: 1/1.8 + friendly_id: image_sensor_size__1_1_8 +- id: 5406 + name: 1/2 + friendly_id: image_sensor_size__1_2 +- id: 5407 + name: 1/2.33 + friendly_id: image_sensor_size__1_2_33 +- id: 5408 + name: 1/2.4 + friendly_id: image_sensor_size__1_2_4 +- id: 5409 + name: 1/2.5 + friendly_id: image_sensor_size__1_2_5 +- id: 5410 + name: 1/2.7 + friendly_id: image_sensor_size__1_2_7 +- id: 5411 + name: 1/2.8 + friendly_id: image_sensor_size__1_2_8 +- id: 5412 + name: 1/2.9 + friendly_id: image_sensor_size__1_2_9 +- id: 5413 + name: 1/3 + friendly_id: image_sensor_size__1_3 +- id: 5414 + name: 1/4 + friendly_id: image_sensor_size__1_4 +- id: 5415 + name: 4/3 + friendly_id: image_sensor_size__4_3 +- id: 5416 + name: 2/3 + friendly_id: image_sensor_size__2_3 +- id: 5417 + name: 1/5.8 + friendly_id: image_sensor_size__1_5_8 +- id: 5418 + name: '1.5' + friendly_id: image_sensor_size__1_5 +- id: 5419 + name: 1/3.1 + friendly_id: image_sensor_size__1_3_1 +- id: 5420 + name: 1/3.2 + friendly_id: image_sensor_size__1_3_2 +- id: 5421 + name: 1/1.65 + friendly_id: image_sensor_size__1_1_65 +- id: 5422 + name: 1/1.2 + friendly_id: image_sensor_size__1_1_2 +- id: 5423 + name: Auto + friendly_id: light_exposure_modes__auto +- id: 5424 + name: Manual + friendly_id: light_exposure_modes__manual +- id: 5425 + name: Shutter priority AE + friendly_id: light_exposure_modes__shutter_priority_ae +- id: 5426 + name: Aperture priority AE + friendly_id: light_exposure_modes__aperture_priority_ae +- id: 5427 + name: Touch priority AE + friendly_id: light_exposure_modes__touch_priority_ae +- id: 5428 + name: No zoom + friendly_id: optical_zoom__no_zoom +- id: 5429 + name: Less than 10x + friendly_id: optical_zoom__less_than_10x +- id: 5430 + name: 10-20x + friendly_id: optical_zoom__10_20x +- id: 5431 + name: 20-30x + friendly_id: optical_zoom__20_30x +- id: 5432 + name: More than 30x + friendly_id: optical_zoom__more_than_30x +- id: 5433 + name: Antique + friendly_id: photo_effects_type__antique +- id: 5434 + name: Art + friendly_id: photo_effects_type__art +- id: 5435 + name: Black + friendly_id: photo_effects_type__black +- id: 5436 + name: Calm + friendly_id: photo_effects_type__calm +- id: 5437 + name: Cinema + friendly_id: photo_effects_type__cinema +- id: 5438 + name: Emboss + friendly_id: photo_effects_type__emboss +- id: 5439 + name: Fader + friendly_id: photo_effects_type__fader +- id: 5440 + name: Gray + friendly_id: photo_effects_type__gray +- id: 5441 + name: Mirror + friendly_id: photo_effects_type__mirror +- id: 5442 + name: Mosaic + friendly_id: photo_effects_type__mosaic +- id: 5443 + name: Muted + friendly_id: photo_effects_type__muted +- id: 5444 + name: Negative film + friendly_id: photo_effects_type__negative_film +- id: 5445 + name: Neutral + friendly_id: photo_effects_type__neutral +- id: 5446 + name: Pastel + friendly_id: photo_effects_type__pastel +- id: 5447 + name: Positive film + friendly_id: photo_effects_type__positive_film +- id: 5448 + name: Sepia + friendly_id: photo_effects_type__sepia +- id: 5449 + name: Skin tones + friendly_id: photo_effects_type__skin_tones +- id: 5450 + name: Solarisation + friendly_id: photo_effects_type__solarisation +- id: 5451 + name: Split screen + friendly_id: photo_effects_type__split_screen +- id: 5452 + name: Vintage + friendly_id: photo_effects_type__vintage +- id: 5453 + name: Vivid + friendly_id: photo_effects_type__vivid +- id: 5454 + name: White + friendly_id: photo_effects_type__white +- id: 5455 + name: Other + friendly_id: photo_effects_type__other +- id: 5456 + name: 3D photography + friendly_id: scene_modes__3d_photography +- id: 5457 + name: Auto + friendly_id: scene_modes__auto +- id: 5458 + name: Backlight + friendly_id: scene_modes__backlight +- id: 5459 + name: Beach + friendly_id: scene_modes__beach +- id: 5460 + name: Candlelight + friendly_id: scene_modes__candlelight +- id: 5461 + name: Close-up + friendly_id: scene_modes__close_up +- id: 5462 + name: Cuisine + friendly_id: scene_modes__cuisine +- id: 5463 + name: Dawn + friendly_id: scene_modes__dawn +- id: 5464 + name: Documents + friendly_id: scene_modes__documents +- id: 5465 + name: Dusk + friendly_id: scene_modes__dusk +- id: 5466 + name: Faithful + friendly_id: scene_modes__faithful +- id: 5467 + name: Fine detail + friendly_id: scene_modes__fine_detail +- id: 5468 + name: Fireworks + friendly_id: scene_modes__fireworks +- id: 5469 + name: Flower + friendly_id: scene_modes__flower +- id: 5470 + name: Food + friendly_id: scene_modes__food +- id: 5471 + name: Group photo + friendly_id: scene_modes__group_photo +- id: 5472 + name: Handheld night scene + friendly_id: scene_modes__handheld_night_scene +- id: 5473 + name: HDR backlight control + friendly_id: scene_modes__hdr_backlight_control +- id: 5474 + name: Landscape + friendly_id: scene_modes__landscape +- id: 5475 + name: Monochrome + friendly_id: scene_modes__monochrome +- id: 5476 + name: Night + friendly_id: scene_modes__night +- id: 5477 + name: Panorama + friendly_id: scene_modes__panorama +- id: 5478 + name: Portrait + friendly_id: scene_modes__portrait +- id: 5479 + name: Smooth skin + friendly_id: scene_modes__smooth_skin +- id: 5480 + name: Snow + friendly_id: scene_modes__snow +- id: 5481 + name: Sport + friendly_id: scene_modes__sport +- id: 5482 + name: Spotlight + friendly_id: scene_modes__spotlight +- id: 5483 + name: Underwater + friendly_id: scene_modes__underwater +- id: 5484 + name: Other + friendly_id: scene_modes__other +- id: 5485 + name: Auto + friendly_id: shooting_modes__auto +- id: 5486 + name: Program + friendly_id: shooting_modes__program +- id: 5487 + name: Scene + friendly_id: shooting_modes__scene +- id: 5488 + name: Lens priority + friendly_id: shooting_modes__lens_priority +- id: 5489 + name: Shutter priority + friendly_id: shooting_modes__shutter_priority +- id: 5490 + name: Aperture priority + friendly_id: shooting_modes__aperture_priority +- id: 5491 + name: Movie + friendly_id: shooting_modes__movie +- id: 5492 + name: Manual + friendly_id: shooting_modes__manual +- id: 5493 + name: Sensitivity priority + friendly_id: shooting_modes__sensitivity_priority +- id: 5494 + name: Intelligent auto + friendly_id: shooting_modes__intelligent_auto +- id: 5495 + name: Flexible priority + friendly_id: shooting_modes__flexible_priority +- id: 5496 + name: Aperture priority + friendly_id: exposure_control__aperture_priority +- id: 5497 + name: Automatic + friendly_id: exposure_control__automatic +- id: 5498 + name: Manual + friendly_id: exposure_control__manual +- id: 5499 + name: Program + friendly_id: exposure_control__program +- id: 5500 + name: Shutter priority + friendly_id: exposure_control__shutter_priority +- id: 5501 + name: 16 mm + friendly_id: film_type__16_mm +- id: 5502 + name: 35 mm + friendly_id: film_type__35_mm +- id: 5503 + name: 70 mm + friendly_id: film_type__70_mm +- id: 5504 + name: 120 mm + friendly_id: film_type__120_mm +- id: 5505 + name: 110 mm + friendly_id: film_type__110_mm +- id: 5506 + name: 48mm + friendly_id: film_type__48mm +- id: 5507 + name: 600 film + friendly_id: film_format__600_film +- id: 5508 + name: I-type film + friendly_id: film_format__i_type_film +- id: 5509 + name: Instax wide + friendly_id: film_format__instax_wide +- id: 5510 + name: Spectra film + friendly_id: film_format__spectra_film +- id: 5511 + name: SX-70 film + friendly_id: film_format__sx_70_film +- id: 5512 + name: Zink paper + friendly_id: film_format__zink_paper +- id: 5513 + name: Bullet + friendly_id: surveillance_camera_design__bullet +- id: 5514 + name: Dome + friendly_id: surveillance_camera_design__dome +- id: 5515 + name: Hidden + friendly_id: surveillance_camera_design__hidden +- id: 5516 + name: Panoramic + friendly_id: surveillance_camera_design__panoramic +- id: 5517 + name: PTZ + friendly_id: surveillance_camera_design__ptz +- id: 5518 + name: Thermal + friendly_id: surveillance_camera_design__thermal +- id: 5519 + name: Turret + friendly_id: surveillance_camera_design__turret +- id: 5520 + name: Ceiling + friendly_id: surveillance_camera_mounting_type__ceiling +- id: 5521 + name: Desk + friendly_id: surveillance_camera_mounting_type__desk +- id: 5522 + name: Floor + friendly_id: surveillance_camera_mounting_type__floor +- id: 5523 + name: Pole + friendly_id: surveillance_camera_mounting_type__pole +- id: 5524 + name: Wall + friendly_id: surveillance_camera_mounting_type__wall +- id: 5525 + name: Built-in memory + friendly_id: memory_storage_type__built_in_memory +- id: 5526 + name: Micro SD card + friendly_id: memory_storage_type__micro_sd_card +- id: 5527 + name: SD card + friendly_id: memory_storage_type__sd_card +- id: 5528 + name: Cellular + friendly_id: trail_camera_design__cellular +- id: 5529 + name: Multi-camera + friendly_id: trail_camera_design__multi_camera +- id: 5530 + name: Security + friendly_id: trail_camera_design__security +- id: 5531 + name: Standard + friendly_id: trail_camera_design__standard +- id: 5532 + name: Quad HD + friendly_id: camera_hd_type__quad_hd +- id: 5533 + name: VGA + friendly_id: camera_hd_type__vga +- id: 5534 + name: SD + friendly_id: camera_hd_type__sd +- id: 5535 + name: 4K + friendly_id: camera_hd_type__4k +- id: 5536 + name: 8K + friendly_id: camera_hd_type__8k +- id: 5537 + name: USB + friendly_id: connectivity_technology__usb +- id: 5538 + name: Radio + friendly_id: connectivity_technology__radio +- id: 5539 + name: CFast card + friendly_id: memory_storage_type__cfast_card +- id: 5540 + name: XQD card + friendly_id: memory_storage_type__xqd_card +- id: 5541 + name: Clip + friendly_id: camera_mounting_type__clip +- id: 5542 + name: Freestanding + friendly_id: camera_mounting_type__freestanding +- id: 5543 + name: Magnetic + friendly_id: camera_mounting_type__magnetic +- id: 5544 + name: Monitor + friendly_id: camera_mounting_type__monitor +- id: 5545 + name: Conference + friendly_id: webcam_design__conference +- id: 5546 + name: Desktop + friendly_id: webcam_design__desktop +- id: 5547 + name: Laptop + friendly_id: webcam_design__laptop +- id: 5548 + name: Plug-and-play + friendly_id: webcam_design__plug_and_play +- id: 5549 + name: Security + friendly_id: webcam_design__security +- id: 5550 + name: Astronomy + friendly_id: binocular_monocular_design__astronomy +- id: 5551 + name: Bird watching + friendly_id: binocular_monocular_design__bird_watching +- id: 5552 + name: Compact + friendly_id: binocular_monocular_design__compact +- id: 5553 + name: Hunting + friendly_id: binocular_monocular_design__hunting +- id: 5554 + name: Marine + friendly_id: binocular_monocular_design__marine +- id: 5555 + name: Opera + friendly_id: binocular_monocular_design__opera +- id: 5556 + name: Standard + friendly_id: binocular_monocular_design__standard +- id: 5557 + name: Zoom + friendly_id: binocular_monocular_design__zoom +- id: 5558 + name: Infrared + friendly_id: binocular_monocular_design__infrared +- id: 5559 + name: Night vision + friendly_id: binocular_monocular_design__night_vision +- id: 5560 + name: Thermal + friendly_id: binocular_monocular_design__thermal +- id: 5561 + name: Duplex + friendly_id: reticle_type__duplex +- id: 5562 + name: Mildot + friendly_id: reticle_type__mildot +- id: 5563 + name: BDC + friendly_id: reticle_type__bdc +- id: 5564 + name: Illuminated + friendly_id: reticle_type__illuminated +- id: 5565 + name: Dot + friendly_id: reticle_type__dot +- id: 5566 + name: German + friendly_id: reticle_type__german +- id: 5567 + name: Target + friendly_id: reticle_type__target +- id: 5568 + name: Rangefinder + friendly_id: reticle_type__rangefinder +- id: 5569 + name: ACSS + friendly_id: reticle_type__acss +- id: 5570 + name: Horus + friendly_id: reticle_type__horus +- id: 5571 + name: Holographic + friendly_id: scope_sight_design__holographic +- id: 5572 + name: Iron + friendly_id: scope_sight_design__iron +- id: 5573 + name: Laser + friendly_id: scope_sight_design__laser +- id: 5574 + name: Night vision + friendly_id: scope_sight_design__night_vision +- id: 5575 + name: Red dot + friendly_id: scope_sight_design__red_dot +- id: 5576 + name: Reflex + friendly_id: scope_sight_design__reflex +- id: 5577 + name: Pistol + friendly_id: suitable_for_weapon_type__pistol +- id: 5578 + name: Rifle + friendly_id: suitable_for_weapon_type__rifle +- id: 5579 + name: Shotgun + friendly_id: suitable_for_weapon_type__shotgun +- id: 5580 + name: Double + friendly_id: reel_capacity__double +- id: 5581 + name: Five + friendly_id: reel_capacity__five +- id: 5582 + name: Quad + friendly_id: reel_capacity__quad +- id: 5583 + name: Single + friendly_id: reel_capacity__single +- id: 5584 + name: Six + friendly_id: reel_capacity__six +- id: 5585 + name: Triple + friendly_id: reel_capacity__triple +- id: 5586 + name: Analog + friendly_id: timer_design__analog +- id: 5587 + name: Digital + friendly_id: timer_design__digital +- id: 5588 + name: Enlarging + friendly_id: timer_design__enlarging +- id: 5589 + name: Interval + friendly_id: timer_design__interval +- id: 5590 + name: Processing + friendly_id: timer_design__processing +- id: 5591 + name: Bayonet + friendly_id: camera_mounting_type__bayonet +- id: 5592 + name: Clip-on + friendly_id: camera_mounting_type__clip_on +- id: 5593 + name: Rail mount + friendly_id: camera_mounting_type__rail_mount +- id: 5594 + name: Opal + friendly_id: lamp_type__opal +- id: 5595 + name: Condenser + friendly_id: lamp_type__condenser +- id: 5596 + name: Cold light + friendly_id: lamp_type__cold_light +- id: 5597 + name: Dichroic + friendly_id: lamp_type__dichroic +- id: 5598 + name: Black & white film + friendly_id: compatible_film_type__black_white_film +- id: 5599 + name: Black & white paper + friendly_id: compatible_film_type__black_white_paper +- id: 5600 + name: Color film + friendly_id: compatible_film_type__color_film +- id: 5601 + name: Color paper + friendly_id: compatible_film_type__color_paper +- id: 5602 + name: Negative film + friendly_id: compatible_film_type__negative_film +- id: 5603 + name: Reversal film + friendly_id: compatible_film_type__reversal_film +- id: 5604 + name: Crystals + friendly_id: photographic_chemical_form__crystals +- id: 5605 + name: Liquid + friendly_id: photographic_chemical_form__liquid +- id: 5606 + name: Powder + friendly_id: photographic_chemical_form__powder +- id: 5607 + name: Tablets + friendly_id: photographic_chemical_form__tablets +- id: 5608 + name: 11" x 14" + friendly_id: photographic_paper_size__11_x_14 +- id: 5609 + name: 11" x 17" + friendly_id: photographic_paper_size__11_x_17 +- id: 5610 + name: 13" x 19" + friendly_id: photographic_paper_size__13_x_19 +- id: 5611 + name: 4" x 6" + friendly_id: photographic_paper_size__4_x_6 +- id: 5612 + name: 5" x 7" + friendly_id: photographic_paper_size__5_x_7 +- id: 5613 + name: 8" x 10" + friendly_id: photographic_paper_size__8_x_10 +- id: 5614 + name: 9" x 12" + friendly_id: photographic_paper_size__9_x_12 +- id: 5615 + name: A3 + friendly_id: photographic_paper_size__a3 +- id: 5616 + name: A4 + friendly_id: photographic_paper_size__a4 +- id: 5617 + name: A5 + friendly_id: photographic_paper_size__a5 +- id: 5618 + name: A6 + friendly_id: photographic_paper_size__a6 +- id: 5619 + name: Custom + friendly_id: photographic_paper_size__custom +- id: 5620 + name: Other + friendly_id: photographic_paper_size__other +- id: 5621 + name: Canvas + friendly_id: photographic_paper_type__canvas +- id: 5622 + name: Fine art + friendly_id: photographic_paper_type__fine_art +- id: 5623 + name: Glossy + friendly_id: photographic_paper_type__glossy +- id: 5624 + name: Lustre + friendly_id: photographic_paper_type__lustre +- id: 5625 + name: Matte + friendly_id: photographic_paper_type__matte +- id: 5626 + name: Metallic + friendly_id: photographic_paper_type__metallic +- id: 5627 + name: Pearl + friendly_id: photographic_paper_type__pearl +- id: 5628 + name: Satin + friendly_id: photographic_paper_type__satin +- id: 5629 + name: Semi-gloss + friendly_id: photographic_paper_type__semi_gloss +- id: 5630 + name: Silk + friendly_id: photographic_paper_type__silk +- id: 5631 + name: Infrared + friendly_id: light_source__infrared +- id: 5632 + name: Analog + friendly_id: display_mode__analog +- id: 5633 + name: Digital + friendly_id: display_mode__digital +- id: 5634 + name: Canvas + friendly_id: background_design__canvas +- id: 5635 + name: Chroma key + friendly_id: background_design__chroma_key +- id: 5636 + name: Collapsible + friendly_id: background_design__collapsible +- id: 5637 + name: Muslin + friendly_id: background_design__muslin +- id: 5638 + name: Printed + friendly_id: background_design__printed +- id: 5639 + name: Seamless paper + friendly_id: background_design__seamless_paper +- id: 5640 + name: Vinyl + friendly_id: background_design__vinyl +- id: 5641 + name: Beauty dish + friendly_id: diffuser_design__beauty_dish +- id: 5642 + name: Bounce + friendly_id: diffuser_design__bounce +- id: 5643 + name: Dome + friendly_id: diffuser_design__dome +- id: 5644 + name: Flash bender + friendly_id: diffuser_design__flash_bender +- id: 5645 + name: Honeycomb + friendly_id: diffuser_design__honeycomb +- id: 5646 + name: Ring + friendly_id: diffuser_design__ring +- id: 5647 + name: Snoot + friendly_id: diffuser_design__snoot +- id: 5648 + name: Softbox + friendly_id: diffuser_design__softbox +- id: 5649 + name: Umbrella + friendly_id: diffuser_design__umbrella +- id: 5650 + name: Barndoors + friendly_id: reflector_design__barndoors +- id: 5651 + name: Beauty dish + friendly_id: reflector_design__beauty_dish +- id: 5652 + name: Bounce + friendly_id: reflector_design__bounce +- id: 5653 + name: Honeycomb + friendly_id: reflector_design__honeycomb +- id: 5654 + name: Softbox + friendly_id: reflector_design__softbox +- id: 5655 + name: Umbrella + friendly_id: reflector_design__umbrella +- id: 5656 + name: Blackout + friendly_id: light_filtering__blackout +- id: 5657 + name: Color correction + friendly_id: light_filtering__color_correction +- id: 5658 + name: Color effects + friendly_id: light_filtering__color_effects +- id: 5659 + name: Diffusion + friendly_id: light_filtering__diffusion +- id: 5660 + name: General effects + friendly_id: light_filtering__general_effects +- id: 5661 + name: Patterned + friendly_id: light_filtering__patterned +- id: 5662 + name: Custom + friendly_id: projection_design__custom +- id: 5663 + name: Logo + friendly_id: projection_design__logo +- id: 5664 + name: Pattern + friendly_id: projection_design__pattern +- id: 5665 + name: Shadow + friendly_id: projection_design__shadow +- id: 5666 + name: Text + friendly_id: projection_design__text +- id: 5667 + name: Bowens + friendly_id: softbox_mounting_type__bowens +- id: 5668 + name: Elinchrom + friendly_id: softbox_mounting_type__elinchrom +- id: 5669 + name: Profoto + friendly_id: softbox_mounting_type__profoto +- id: 5670 + name: Speedlight + friendly_id: softbox_mounting_type__speedlight +- id: 5671 + name: Universal + friendly_id: softbox_mounting_type__universal +- id: 5672 + name: Square + friendly_id: softbox_shape__square +- id: 5673 + name: Rectangle + friendly_id: softbox_shape__rectangle +- id: 5674 + name: Octagon + friendly_id: softbox_shape__octagon +- id: 5675 + name: Round + friendly_id: softbox_shape__round +- id: 5676 + name: Strip + friendly_id: softbox_shape__strip +- id: 5677 + name: Archive storage box + friendly_id: negative_slide_storage_type__archive_storage_box +- id: 5678 + name: Negative binder + friendly_id: negative_slide_storage_type__negative_binder +- id: 5679 + name: Negative envelope + friendly_id: negative_slide_storage_type__negative_envelope +- id: 5680 + name: Negative file + friendly_id: negative_slide_storage_type__negative_file +- id: 5681 + name: Negative sleeves + friendly_id: negative_slide_storage_type__negative_sleeves +- id: 5682 + name: Slide binder + friendly_id: negative_slide_storage_type__slide_binder +- id: 5683 + name: Slide box + friendly_id: negative_slide_storage_type__slide_box +- id: 5684 + name: Slide carousel + friendly_id: negative_slide_storage_type__slide_carousel +- id: 5685 + name: Slide file + friendly_id: negative_slide_storage_type__slide_file +- id: 5686 + name: Slide storage pages + friendly_id: negative_slide_storage_type__slide_storage_pages +- id: 5687 + name: Slide tray + friendly_id: negative_slide_storage_type__slide_tray +- id: 5688 + name: Bartop + friendly_id: cabinet_type__bartop +- id: 5689 + name: Foldable + friendly_id: cabinet_type__foldable +- id: 5690 + name: Inflatable + friendly_id: cabinet_type__inflatable +- id: 5691 + name: Mini arcade + friendly_id: cabinet_type__mini_arcade +- id: 5692 + name: Miniature tabletop + friendly_id: cabinet_type__miniature_tabletop +- id: 5693 + name: Multi-player + friendly_id: cabinet_type__multi_player +- id: 5694 + name: Pedestal + friendly_id: cabinet_type__pedestal +- id: 5695 + name: Single-player + friendly_id: cabinet_type__single_player +- id: 5696 + name: Sit-down + friendly_id: cabinet_type__sit_down +- id: 5697 + name: Stand-up + friendly_id: cabinet_type__stand_up +- id: 5698 + name: Tabletop + friendly_id: cabinet_type__tabletop +- id: 5699 + name: Upright + friendly_id: cabinet_type__upright +- id: 5700 + name: Virtual reality + friendly_id: cabinet_type__virtual_reality +- id: 5701 + name: Wall-mounted + friendly_id: cabinet_type__wall_mounted +- id: 5702 + name: Other + friendly_id: shape__other +- id: 5703 + name: USB 1.0 + friendly_id: usb_standard__usb_1_0 +- id: 5704 + name: USB 1.1 + friendly_id: usb_standard__usb_1_1 +- id: 5705 + name: USB 2.0 + friendly_id: usb_standard__usb_2_0 +- id: 5706 + name: USB 3.1 gen 1 + friendly_id: usb_standard__usb_3_1_gen_1 +- id: 5707 + name: USB 3.2 gen 1x1 + friendly_id: usb_standard__usb_3_2_gen_1x1 +- id: 5708 + name: USB 3.2 gen 2 + friendly_id: usb_standard__usb_3_2_gen_2 +- id: 5709 + name: USB 3.2 gen 2x1 + friendly_id: usb_standard__usb_3_2_gen_2x1 +- id: 5710 + name: USB 3.2 gen 2x2 + friendly_id: usb_standard__usb_3_2_gen_2x2 +- id: 5711 + name: USB4 + friendly_id: usb_standard__usb4 +- id: 5712 + name: Alternative + friendly_id: music_genre__alternative +- id: 5713 + name: Alternative rock + friendly_id: music_genre__alternative_rock +- id: 5714 + name: Ambient + friendly_id: music_genre__ambient +- id: 5715 + name: Avant-garde + friendly_id: music_genre__avant_garde +- id: 5716 + name: Blues + friendly_id: music_genre__blues +- id: 5717 + name: Breakdance + friendly_id: music_genre__breakdance +- id: 5718 + name: Britpop + friendly_id: music_genre__britpop +- id: 5719 + name: Cabaret + friendly_id: music_genre__cabaret +- id: 5720 + name: Carnival music + friendly_id: music_genre__carnival_music +- id: 5721 + name: Chanson + friendly_id: music_genre__chanson +- id: 5722 + name: Children’s + friendly_id: music_genre__childrens +- id: 5723 + name: Christmas + friendly_id: music_genre__christmas +- id: 5724 + name: Classic + friendly_id: music_genre__classic +- id: 5725 + name: Comedy + friendly_id: music_genre__comedy +- id: 5726 + name: Country + friendly_id: music_genre__country +- id: 5727 + name: Dance + friendly_id: music_genre__dance +- id: 5728 + name: Deathrock + friendly_id: music_genre__deathrock +- id: 5729 + name: Doo-wop + friendly_id: music_genre__doo_wop +- id: 5730 + name: Drones + friendly_id: music_genre__drones +- id: 5731 + name: Drum & bass + friendly_id: music_genre__drum_bass +- id: 5732 + name: Dubstep + friendly_id: music_genre__dubstep +- id: 5733 + name: Electronic + friendly_id: music_genre__electronic +- id: 5734 + name: Folk + friendly_id: music_genre__folk +- id: 5735 + name: Funk + friendly_id: music_genre__funk +- id: 5736 + name: Futurepop + friendly_id: music_genre__futurepop +- id: 5737 + name: Gothic + friendly_id: music_genre__gothic +- id: 5738 + name: Hardcore + friendly_id: music_genre__hardcore +- id: 5739 + name: Heavy metal + friendly_id: music_genre__heavy_metal +- id: 5740 + name: Hip-hop + friendly_id: music_genre__hip_hop +- id: 5741 + name: House + friendly_id: music_genre__house +- id: 5742 + name: Humor + friendly_id: music_genre__humor +- id: 5743 + name: Indie + friendly_id: music_genre__indie +- id: 5744 + name: Industrial + friendly_id: music_genre__industrial +- id: 5745 + name: Jazz + friendly_id: music_genre__jazz +- id: 5746 + name: Latin + friendly_id: music_genre__latin +- id: 5747 + name: Lounge + friendly_id: music_genre__lounge +- id: 5748 + name: Medieval + friendly_id: music_genre__medieval +- id: 5749 + name: Metal + friendly_id: music_genre__metal +- id: 5750 + name: Metalcore + friendly_id: music_genre__metalcore +- id: 5751 + name: Minimal house + friendly_id: music_genre__minimal_house +- id: 5752 + name: Minimal techno + friendly_id: music_genre__minimal_techno +- id: 5753 + name: Musical + friendly_id: music_genre__musical +- id: 5754 + name: New wave + friendly_id: music_genre__new_wave +- id: 5755 + name: New-age + friendly_id: music_genre__new_age +- id: 5756 + name: Opera + friendly_id: music_genre__opera +- id: 5757 + name: Pop + friendly_id: music_genre__pop +- id: 5758 + name: Pop punk + friendly_id: music_genre__pop_punk +- id: 5759 + name: Pop rock + friendly_id: music_genre__pop_rock +- id: 5760 + name: Power metal + friendly_id: music_genre__power_metal +- id: 5761 + name: Prog metal + friendly_id: music_genre__prog_metal +- id: 5762 + name: Prog rock + friendly_id: music_genre__prog_rock +- id: 5763 + name: Progressive + friendly_id: music_genre__progressive +- id: 5764 + name: Punk + friendly_id: music_genre__punk +- id: 5765 + name: R & B + friendly_id: music_genre__r_b +- id: 5766 + name: Rap + friendly_id: music_genre__rap +- id: 5767 + name: Reggae + friendly_id: music_genre__reggae +- id: 5768 + name: Religious + friendly_id: music_genre__religious +- id: 5769 + name: Rock + friendly_id: music_genre__rock +- id: 5770 + name: Rock & roll + friendly_id: music_genre__rock_roll +- id: 5771 + name: SKA + friendly_id: music_genre__ska +- id: 5772 + name: Soul + friendly_id: music_genre__soul +- id: 5773 + name: Soundtrack + friendly_id: music_genre__soundtrack +- id: 5774 + name: Swing + friendly_id: music_genre__swing +- id: 5775 + name: Synth-pop + friendly_id: music_genre__synth_pop +- id: 5776 + name: Tech house + friendly_id: music_genre__tech_house +- id: 5777 + name: Techno + friendly_id: music_genre__techno +- id: 5778 + name: Trance + friendly_id: music_genre__trance +- id: 5779 + name: Vocal music + friendly_id: music_genre__vocal_music +- id: 5780 + name: World music + friendly_id: music_genre__world_music +- id: 5781 + name: Other + friendly_id: music_genre__other +- id: 5782 + name: 1/4"-20 + friendly_id: compatible_microphone_thread__1_4_20 +- id: 5783 + name: 3/8"-16 + friendly_id: compatible_microphone_thread__3_8_16 +- id: 5784 + name: 5/8"-27 + friendly_id: compatible_microphone_thread__5_8_27 +- id: 5785 + name: M10 + friendly_id: compatible_microphone_thread__m10 +- id: 5786 + name: M20 + friendly_id: compatible_microphone_thread__m20 +- id: 5787 + name: M6 + friendly_id: compatible_microphone_thread__m6 +- id: 5788 + name: Boom arm + friendly_id: base_type__boom_arm +- id: 5789 + name: Caster wheel + friendly_id: base_type__caster_wheel +- id: 5790 + name: Clamp + friendly_id: base_type__clamp +- id: 5791 + name: Folding tripod + friendly_id: base_type__folding_tripod +- id: 5792 + name: Low-profile + friendly_id: base_type__low_profile +- id: 5793 + name: Round + friendly_id: base_type__round +- id: 5794 + name: Round weighted + friendly_id: base_type__round_weighted +- id: 5795 + name: Tabletop + friendly_id: base_type__tabletop +- id: 5796 + name: Tripod + friendly_id: base_type__tripod +- id: 5797 + name: Wall-mounted + friendly_id: base_type__wall_mounted +- id: 5798 + name: 1/4"-20 + friendly_id: microphone_thread__1_4_20 +- id: 5799 + name: 3/8"-16 + friendly_id: microphone_thread__3_8_16 +- id: 5800 + name: 5/8"-27 + friendly_id: microphone_thread__5_8_27 +- id: 5801 + name: M10 + friendly_id: microphone_thread__m10 +- id: 5802 + name: M20 + friendly_id: microphone_thread__m20 +- id: 5803 + name: M6 + friendly_id: microphone_thread__m6 +- id: 5804 + name: Car charger + friendly_id: mp3_player_accessories_included__car_charger +- id: 5805 + name: Case + friendly_id: mp3_player_accessories_included__case +- id: 5806 + name: Charging cable + friendly_id: mp3_player_accessories_included__charging_cable +- id: 5807 + name: Earphones + friendly_id: mp3_player_accessories_included__earphones +- id: 5808 + name: Headset + friendly_id: mp3_player_accessories_included__headset +- id: 5809 + name: Portable speaker + friendly_id: mp3_player_accessories_included__portable_speaker +- id: 5810 + name: Screen protector + friendly_id: mp3_player_accessories_included__screen_protector +- id: 5811 + name: Stand + friendly_id: mp3_player_accessories_included__stand +- id: 5812 + name: Armband + friendly_id: case_type__armband +- id: 5813 + name: Back cover + friendly_id: case_type__back_cover +- id: 5814 + name: Belt clip + friendly_id: case_type__belt_clip +- id: 5815 + name: Book style + friendly_id: case_type__book_style +- id: 5816 + name: Bumper + friendly_id: case_type__bumper +- id: 5817 + name: Bumper with built-in screen protector + friendly_id: case_type__bumper_with_built_in_screen_protector +- id: 5818 + name: Decal + friendly_id: case_type__decal +- id: 5819 + name: Flip + friendly_id: case_type__flip +- id: 5820 + name: Folio + friendly_id: case_type__folio +- id: 5821 + name: Holder + friendly_id: case_type__holder +- id: 5822 + name: Holster + friendly_id: case_type__holster +- id: 5823 + name: Keyboard case + friendly_id: case_type__keyboard_case +- id: 5824 + name: Lanyard + friendly_id: case_type__lanyard +- id: 5825 + name: Shell cover + friendly_id: case_type__shell_cover +- id: 5826 + name: Skin + friendly_id: case_type__skin +- id: 5827 + name: Stand + friendly_id: case_type__stand +- id: 5828 + name: Wallet + friendly_id: case_type__wallet +- id: 5829 + name: Wallet with card slots + friendly_id: case_type__wallet_with_card_slots +- id: 5830 + name: Other + friendly_id: case_type__other +- id: 5831 + name: Other + friendly_id: mounting_type__other +- id: 5832 + name: Conical + friendly_id: stylus_type__conical +- id: 5833 + name: Crossover + friendly_id: stylus_type__crossover +- id: 5834 + name: Elliptical + friendly_id: stylus_type__elliptical +- id: 5835 + name: Spherical + friendly_id: stylus_type__spherical +- id: 5836 + name: AirPlay + friendly_id: connectivity_technology__airplay +- id: 5837 + name: ANT + friendly_id: connectivity_technology__ant +- id: 5838 + name: ANT+ + friendly_id: connectivity_technology__ant+ +- id: 5839 + name: GPS + friendly_id: connectivity_technology__gps +- id: 5840 + name: Infrared + friendly_id: connectivity_technology__infrared +- id: 5841 + name: Miracast + friendly_id: connectivity_technology__miracast +- id: 5842 + name: NFC + friendly_id: connectivity_technology__nfc +- id: 5843 + name: Satellite + friendly_id: connectivity_technology__satellite +- id: 5844 + name: Wireless dongle + friendly_id: connectivity_technology__wireless_dongle +- id: 5845 + name: A + friendly_id: amplifier_class__a +- id: 5846 + name: AB + friendly_id: amplifier_class__ab +- id: 5847 + name: B + friendly_id: amplifier_class__b +- id: 5848 + name: BD + friendly_id: amplifier_class__bd +- id: 5849 + name: C + friendly_id: amplifier_class__c +- id: 5850 + name: D + friendly_id: amplifier_class__d +- id: 5851 + name: E + friendly_id: amplifier_class__e +- id: 5852 + name: F + friendly_id: amplifier_class__f +- id: 5853 + name: FD + friendly_id: amplifier_class__fd +- id: 5854 + name: G + friendly_id: amplifier_class__g +- id: 5855 + name: H + friendly_id: amplifier_class__h +- id: 5856 + name: T + friendly_id: amplifier_class__t +- id: 5857 + name: XD + friendly_id: amplifier_class__xd +- id: 5858 + name: '2' + friendly_id: audio_output_channel__2 +- id: 5859 + name: '2.1' + friendly_id: audio_output_channel__2_1 +- id: 5860 + name: '3' + friendly_id: audio_output_channel__3 +- id: 5861 + name: '3.1' + friendly_id: audio_output_channel__3_1 +- id: 5862 + name: '4' + friendly_id: audio_output_channel__4 +- id: 5863 + name: '4.1' + friendly_id: audio_output_channel__4_1 +- id: 5864 + name: '5' + friendly_id: audio_output_channel__5 +- id: 5865 + name: '5.1' + friendly_id: audio_output_channel__5_1 +- id: 5866 + name: '6' + friendly_id: audio_output_channel__6 +- id: 5867 + name: '6.1' + friendly_id: audio_output_channel__6_1 +- id: 5868 + name: '7' + friendly_id: audio_output_channel__7 +- id: 5869 + name: '7.1' + friendly_id: audio_output_channel__7_1 +- id: 5870 + name: '9' + friendly_id: audio_output_channel__9 +- id: 5871 + name: '9.1' + friendly_id: audio_output_channel__9_1 +- id: 5872 + name: '11' + friendly_id: audio_output_channel__11 +- id: 5873 + name: '11.1' + friendly_id: audio_output_channel__11_1 +- id: 5874 + name: '13.2' + friendly_id: audio_output_channel__13_2 +- id: 5875 + name: AAC + friendly_id: audio_output_format__aac +- id: 5876 + name: Analog + friendly_id: audio_output_format__analog +- id: 5877 + name: aptX + friendly_id: audio_output_format__aptx +- id: 5878 + name: Digital + friendly_id: audio_output_format__digital +- id: 5879 + name: High-resolution + friendly_id: audio_output_format__high_resolution +- id: 5880 + name: LDAC + friendly_id: audio_output_format__ldac +- id: 5881 + name: Mono + friendly_id: audio_output_format__mono +- id: 5882 + name: Multi-zone + friendly_id: audio_output_format__multi_zone +- id: 5883 + name: S/PDIF + friendly_id: audio_output_format__s_pdif +- id: 5884 + name: SBC + friendly_id: audio_output_format__sbc +- id: 5885 + name: Stereo + friendly_id: audio_output_format__stereo +- id: 5886 + name: Surround + friendly_id: audio_output_format__surround +- id: 5887 + name: AAC + friendly_id: audio_technology__aac +- id: 5888 + name: Dolby atmos + friendly_id: audio_technology__dolby_atmos +- id: 5889 + name: Dolby digital (AC-3) + friendly_id: audio_technology__dolby_digital_ac_3 +- id: 5890 + name: Dolby Digital Plus (E-AC-3) + friendly_id: audio_technology__dolby_digital_plus_e_ac_3 +- id: 5891 + name: Dolby Pro Logic IIz + friendly_id: audio_technology__dolby_pro_logic_iiz +- id: 5892 + name: Dolby trueHD + friendly_id: audio_technology__dolby_truehd +- id: 5893 + name: DTS + friendly_id: audio_technology__dts +- id: 5894 + name: DTS Neo + friendly_id: audio_technology__dts_neo +- id: 5895 + name: DTS Virtual + friendly_id: audio_technology__dts_virtual +- id: 5896 + name: DTS-HD High Resolution Audio + friendly_id: audio_technology__dts_hd_high_resolution_audio +- id: 5897 + name: DTS-HD master audio + friendly_id: audio_technology__dts_hd_master_audio +- id: 5898 + name: DTS-X + friendly_id: audio_technology__dts_x +- id: 5899 + name: LPCM (Linear Pulse Code Modulation) + friendly_id: audio_technology__lpcm_linear_pulse_code_modulation +- id: 5900 + name: PCM (Pulse Code Modulation) + friendly_id: audio_technology__pcm_pulse_code_modulation +- id: 5901 + name: Other + friendly_id: audio_technology__other +- id: 5902 + name: 12G-SDI + friendly_id: device_interface__12g_sdi +- id: 5903 + name: 2.5 mm + friendly_id: device_interface__2_5_mm +- id: 5904 + name: 3.5 mm + friendly_id: device_interface__3_5_mm +- id: 5905 + name: 3G-SDI + friendly_id: device_interface__3g_sdi +- id: 5906 + name: 6.35 mm + friendly_id: device_interface__6_35_mm +- id: 5907 + name: 6G-SDI + friendly_id: device_interface__6g_sdi +- id: 5908 + name: AUX + friendly_id: device_interface__aux +- id: 5909 + name: Banana connector + friendly_id: device_interface__banana_connector +- id: 5910 + name: Binding post + friendly_id: device_interface__binding_post +- id: 5911 + name: Bluetooth + friendly_id: device_interface__bluetooth +- id: 5912 + name: BNC + friendly_id: device_interface__bnc +- id: 5913 + name: Coaxial + friendly_id: device_interface__coaxial +- id: 5914 + name: Coaxial (F-Type) + friendly_id: device_interface__coaxial_f_type +- id: 5915 + name: Component video + friendly_id: device_interface__component_video +- id: 5916 + name: Composite video + friendly_id: device_interface__composite_video +- id: 5917 + name: DIN + friendly_id: device_interface__din +- id: 5918 + name: Display port + friendly_id: device_interface__display_port +- id: 5919 + name: DVI + friendly_id: device_interface__dvi +- id: 5920 + name: DVI-I + friendly_id: device_interface__dvi_i +- id: 5921 + name: eSATA + friendly_id: device_interface__esata +- id: 5922 + name: Ethernet + friendly_id: device_interface__ethernet +- id: 5923 + name: Firewire + friendly_id: device_interface__firewire +- id: 5924 + name: HD-SDI + friendly_id: device_interface__hd_sdi +- id: 5925 + name: HDMI + friendly_id: device_interface__hdmi +- id: 5926 + name: I2C + friendly_id: device_interface__i2c +- id: 5927 + name: IDE (PATA) + friendly_id: device_interface__ide_pata +- id: 5928 + name: Infrared + friendly_id: device_interface__infrared +- id: 5929 + name: Lightning + friendly_id: device_interface__lightning +- id: 5930 + name: M.2 + friendly_id: device_interface__m_2 +- id: 5931 + name: Micro BNC + friendly_id: device_interface__micro_bnc +- id: 5932 + name: Micro DIN + friendly_id: device_interface__micro_din +- id: 5933 + name: Micro SD card + friendly_id: device_interface__micro_sd_card +- id: 5934 + name: Micro USB + friendly_id: device_interface__micro_usb +- id: 5935 + name: Micro XLR + friendly_id: device_interface__micro_xlr +- id: 5936 + name: Micro-VGA + friendly_id: device_interface__micro_vga +- id: 5937 + name: MIDI + friendly_id: device_interface__midi +- id: 5938 + name: Mini-DIN + friendly_id: device_interface__mini_din +- id: 5939 + name: Mini-VGA + friendly_id: device_interface__mini_vga +- id: 5940 + name: Molex + friendly_id: device_interface__molex +- id: 5941 + name: NFC + friendly_id: device_interface__nfc +- id: 5942 + name: NL2 + friendly_id: device_interface__nl2 +- id: 5943 + name: NL4 + friendly_id: device_interface__nl4 +- id: 5944 + name: PCIe + friendly_id: device_interface__pcie +- id: 5945 + name: PS/2 + friendly_id: device_interface__ps_2 +- id: 5946 + name: RCA + friendly_id: device_interface__rca +- id: 5947 + name: RFID + friendly_id: device_interface__rfid +- id: 5948 + name: S-video + friendly_id: device_interface__s_video +- id: 5949 + name: SATA + friendly_id: device_interface__sata +- id: 5950 + name: Satellite + friendly_id: device_interface__satellite +- id: 5951 + name: SCART + friendly_id: device_interface__scart +- id: 5952 + name: SCSI + friendly_id: device_interface__scsi +- id: 5953 + name: SD card + friendly_id: device_interface__sd_card +- id: 5954 + name: SDI + friendly_id: device_interface__sdi +- id: 5955 + name: SMA + friendly_id: device_interface__sma +- id: 5956 + name: SPI + friendly_id: device_interface__spi +- id: 5957 + name: Tethering + friendly_id: device_interface__tethering +- id: 5958 + name: Thunderbolt + friendly_id: device_interface__thunderbolt +- id: 5959 + name: TOSLINK + friendly_id: device_interface__toslink +- id: 5960 + name: TRS + friendly_id: device_interface__trs +- id: 5961 + name: UART + friendly_id: device_interface__uart +- id: 5962 + name: USB + friendly_id: device_interface__usb +- id: 5963 + name: VGA + friendly_id: device_interface__vga +- id: 5964 + name: Wi-Fi + friendly_id: device_interface__wi_fi +- id: 5965 + name: Wireless charging + friendly_id: device_interface__wireless_charging +- id: 5966 + name: Wireless display + friendly_id: device_interface__wireless_display +- id: 5967 + name: XLR + friendly_id: device_interface__xlr +- id: 5968 + name: XLR-5 + friendly_id: device_interface__xlr_5 +- id: 5969 + name: Other + friendly_id: device_interface__other +- id: 5970 + name: AMOLED + friendly_id: display_technology__amoled +- id: 5971 + name: CRT + friendly_id: display_technology__crt +- id: 5972 + name: DLP + friendly_id: display_technology__dlp +- id: 5973 + name: LCoS + friendly_id: display_technology__lcos +- id: 5974 + name: MicroLED + friendly_id: display_technology__microled +- id: 5975 + name: Mini-LED + friendly_id: display_technology__mini_led +- id: 5976 + name: QLED + friendly_id: display_technology__qled +- id: 5977 + name: TN + friendly_id: display_technology__tn +- id: 5978 + name: VA + friendly_id: display_technology__va +- id: 5979 + name: Other + friendly_id: display_technology__other +- id: 5980 + name: AM + friendly_id: frequency_radio_bands_supported__am +- id: 5981 + name: DAB + friendly_id: frequency_radio_bands_supported__dab +- id: 5982 + name: DAB+ + friendly_id: frequency_radio_bands_supported__dab+ +- id: 5983 + name: DMB + friendly_id: frequency_radio_bands_supported__dmb +- id: 5984 + name: DMB-A + friendly_id: frequency_radio_bands_supported__dmb_a +- id: 5985 + name: DMB-R + friendly_id: frequency_radio_bands_supported__dmb_r +- id: 5986 + name: FM + friendly_id: frequency_radio_bands_supported__fm +- id: 5987 + name: LW + friendly_id: frequency_radio_bands_supported__lw +- id: 5988 + name: MF + friendly_id: frequency_radio_bands_supported__mf +- id: 5989 + name: MW + friendly_id: frequency_radio_bands_supported__mw +- id: 5990 + name: Not supported + friendly_id: frequency_radio_bands_supported__not_supported +- id: 5991 + name: PLL + friendly_id: frequency_radio_bands_supported__pll +- id: 5992 + name: S + friendly_id: frequency_radio_bands_supported__s +- id: 5993 + name: SW + friendly_id: frequency_radio_bands_supported__sw +- id: 5994 + name: UHF + friendly_id: frequency_radio_bands_supported__uhf +- id: 5995 + name: UKW + friendly_id: frequency_radio_bands_supported__ukw +- id: 5996 + name: VHF + friendly_id: frequency_radio_bands_supported__vhf +- id: 5997 + name: 1080p + friendly_id: video_resolution_supported__1080p +- id: 5998 + name: 1440p + friendly_id: video_resolution_supported__1440p +- id: 5999 + name: 144p + friendly_id: video_resolution_supported__144p +- id: 6000 + name: 2160p + friendly_id: video_resolution_supported__2160p +- id: 6001 + name: 240p + friendly_id: video_resolution_supported__240p +- id: 6002 + name: 360p + friendly_id: video_resolution_supported__360p +- id: 6003 + name: 3D + friendly_id: video_resolution_supported__3d +- id: 6004 + name: 4320p + friendly_id: video_resolution_supported__4320p +- id: 6005 + name: 480p + friendly_id: video_resolution_supported__480p +- id: 6006 + name: 4K ultra HD + friendly_id: video_resolution_supported__4k_ultra_hd +- id: 6007 + name: 720p + friendly_id: video_resolution_supported__720p +- id: 6008 + name: 8K ultra HD + friendly_id: video_resolution_supported__8k_ultra_hd +- id: 6009 + name: Full HD + friendly_id: video_resolution_supported__full_hd +- id: 6010 + name: HD + friendly_id: video_resolution_supported__hd +- id: 6011 + name: Quad HD + friendly_id: video_resolution_supported__quad_hd +- id: 6012 + name: SD + friendly_id: video_resolution_supported__sd +- id: 6013 + name: Burr-brown + friendly_id: audio_d_a_converter_dac__burr_brown +- id: 6014 + name: Coaxial + friendly_id: audio_d_a_converter_dac__coaxial +- id: 6015 + name: DSD + friendly_id: audio_d_a_converter_dac__dsd +- id: 6016 + name: ESS sabre + friendly_id: audio_d_a_converter_dac__ess_sabre +- id: 6017 + name: Integrated + friendly_id: audio_d_a_converter_dac__integrated +- id: 6018 + name: Optical + friendly_id: audio_d_a_converter_dac__optical +- id: 6019 + name: PCM + friendly_id: audio_d_a_converter_dac__pcm +- id: 6020 + name: TOSLINK + friendly_id: audio_d_a_converter_dac__toslink +- id: 6021 + name: USB + friendly_id: audio_d_a_converter_dac__usb +- id: 6022 + name: 2.5 mm + friendly_id: headphone_jack_type__2_5_mm +- id: 6023 + name: 3.5 mm (1/8") + friendly_id: headphone_jack_type__3_5_mm_1_8 +- id: 6024 + name: 6.35 mm (1/4") + friendly_id: headphone_jack_type__6_35_mm_1_4 +- id: 6025 + name: Balanced XLR + friendly_id: headphone_jack_type__balanced_xlr +- id: 6026 + name: USB type-C + friendly_id: headphone_jack_type__usb_type_c +- id: 6027 + name: Home + friendly_id: amplifier_booster_suitable_location__home +- id: 6028 + name: Large venue + friendly_id: amplifier_booster_suitable_location__large_venue +- id: 6029 + name: Marine transport + friendly_id: amplifier_booster_suitable_location__marine_transport +- id: 6030 + name: Office + friendly_id: amplifier_booster_suitable_location__office +- id: 6031 + name: Small venue + friendly_id: amplifier_booster_suitable_location__small_venue +- id: 6032 + name: Vehicle + friendly_id: amplifier_booster_suitable_location__vehicle +- id: 6033 + name: Other + friendly_id: amplifier_booster_suitable_location__other +- id: 6034 + name: Automatic feedback suppression + friendly_id: digital_sound_processing__automatic_feedback_suppression +- id: 6035 + name: Chorus + friendly_id: digital_sound_processing__chorus +- id: 6036 + name: Compression + friendly_id: digital_sound_processing__compression +- id: 6037 + name: De-esser + friendly_id: digital_sound_processing__de_esser +- id: 6038 + name: Delay + friendly_id: digital_sound_processing__delay +- id: 6039 + name: DRC + friendly_id: digital_sound_processing__drc +- id: 6040 + name: EQ + friendly_id: digital_sound_processing__eq +- id: 6041 + name: Exciter + friendly_id: digital_sound_processing__exciter +- id: 6042 + name: Flanger + friendly_id: digital_sound_processing__flanger +- id: 6043 + name: Harmonic enhancement + friendly_id: digital_sound_processing__harmonic_enhancement +- id: 6044 + name: Limiter + friendly_id: digital_sound_processing__limiter +- id: 6045 + name: Multi-band processing + friendly_id: digital_sound_processing__multi_band_processing +- id: 6046 + name: Noise gate + friendly_id: digital_sound_processing__noise_gate +- id: 6047 + name: Phaser + friendly_id: digital_sound_processing__phaser +- id: 6048 + name: Pitch shifter + friendly_id: digital_sound_processing__pitch_shifter +- id: 6049 + name: Reverb + friendly_id: digital_sound_processing__reverb +- id: 6050 + name: Room correction + friendly_id: digital_sound_processing__room_correction +- id: 6051 + name: Spatial audio processing + friendly_id: digital_sound_processing__spatial_audio_processing +- id: 6052 + name: Surround sound processing + friendly_id: digital_sound_processing__surround_sound_processing +- id: 6053 + name: VST support + friendly_id: digital_sound_processing__vst_support +- id: 6054 + name: Automatic + friendly_id: pairing_method__automatic +- id: 6055 + name: Bluetooth + friendly_id: pairing_method__bluetooth +- id: 6056 + name: Manual + friendly_id: pairing_method__manual +- id: 6057 + name: NFC + friendly_id: pairing_method__nfc +- id: 6058 + name: QR code + friendly_id: pairing_method__qr_code +- id: 6059 + name: Wi-Fi + friendly_id: pairing_method__wi_fi +- id: 6060 + name: AC adapter + friendly_id: connection_type__ac_adapter +- id: 6061 + name: AUX + friendly_id: connection_type__aux +- id: 6062 + name: Bluetooth + friendly_id: connection_type__bluetooth +- id: 6063 + name: BNC + friendly_id: connection_type__bnc +- id: 6064 + name: Coaxial + friendly_id: connection_type__coaxial +- id: 6065 + name: Coaxial (F-Type) + friendly_id: connection_type__coaxial_f_type +- id: 6066 + name: Composite video + friendly_id: connection_type__composite_video +- id: 6067 + name: Display port + friendly_id: connection_type__display_port +- id: 6068 + name: DVI + friendly_id: connection_type__dvi +- id: 6069 + name: Ethernet + friendly_id: connection_type__ethernet +- id: 6070 + name: Firewire + friendly_id: connection_type__firewire +- id: 6071 + name: HDMI + friendly_id: connection_type__hdmi +- id: 6072 + name: Micro SD card + friendly_id: connection_type__micro_sd_card +- id: 6073 + name: Micro USB + friendly_id: connection_type__micro_usb +- id: 6074 + name: Mini USB + friendly_id: connection_type__mini_usb +- id: 6075 + name: Power cord + friendly_id: connection_type__power_cord +- id: 6076 + name: Power splitter + friendly_id: connection_type__power_splitter +- id: 6077 + name: RCA + friendly_id: connection_type__rca +- id: 6078 + name: S-video + friendly_id: connection_type__s_video +- id: 6079 + name: Satellite + friendly_id: connection_type__satellite +- id: 6080 + name: SD card + friendly_id: connection_type__sd_card +- id: 6081 + name: Thunderbolt + friendly_id: connection_type__thunderbolt +- id: 6082 + name: USB + friendly_id: connection_type__usb +- id: 6083 + name: VGA + friendly_id: connection_type__vga +- id: 6084 + name: Wi-Fi + friendly_id: connection_type__wi_fi +- id: 6085 + name: AM/FM + friendly_id: tuner_type__am_fm +- id: 6086 + name: ATSC + friendly_id: tuner_type__atsc +- id: 6087 + name: DAB/DAB+ + friendly_id: tuner_type__dab_dab+ +- id: 6088 + name: HD radio + friendly_id: tuner_type__hd_radio +- id: 6089 + name: NTSC + friendly_id: tuner_type__ntsc +- id: 6090 + name: QAM + friendly_id: tuner_type__qam +- id: 6091 + name: Satellite radio + friendly_id: tuner_type__satellite_radio +- id: 6092 + name: 2.5 mm + friendly_id: audio_connectivity__2_5_mm +- id: 6093 + name: 3.5 mm + friendly_id: audio_connectivity__3_5_mm +- id: 6094 + name: 6.35 mm + friendly_id: audio_connectivity__6_35_mm +- id: 6095 + name: Bluetooth + friendly_id: audio_connectivity__bluetooth +- id: 6096 + name: Display port + friendly_id: audio_connectivity__display_port +- id: 6097 + name: HDMI + friendly_id: audio_connectivity__hdmi +- id: 6098 + name: Micro USB + friendly_id: audio_connectivity__micro_usb +- id: 6099 + name: Optical + friendly_id: audio_connectivity__optical +- id: 6100 + name: USB + friendly_id: audio_connectivity__usb +- id: 6101 + name: Wi-Fi + friendly_id: audio_connectivity__wi_fi +- id: 6102 + name: Behind-the-neck + friendly_id: headphone_style__behind_the_neck +- id: 6103 + name: Closed-back + friendly_id: headphone_style__closed_back +- id: 6104 + name: Earbuds + friendly_id: headphone_style__earbuds +- id: 6105 + name: Ear hook + friendly_id: headphone_style__ear_hook +- id: 6106 + name: Open-back + friendly_id: headphone_style__open_back +- id: 6107 + name: Bi-directional + friendly_id: microphone_type__bi_directional +- id: 6108 + name: Boom + friendly_id: microphone_type__boom +- id: 6109 + name: Built-in + friendly_id: microphone_type__built_in +- id: 6110 + name: Condenser + friendly_id: microphone_type__condenser +- id: 6111 + name: Dynamic + friendly_id: microphone_type__dynamic +- id: 6112 + name: Inline + friendly_id: microphone_type__inline +- id: 6113 + name: Noise-canceling + friendly_id: microphone_type__noise_canceling +- id: 6114 + name: Omnidirectional + friendly_id: microphone_type__omnidirectional +- id: 6115 + name: Unidirectional + friendly_id: microphone_type__unidirectional +- id: 6116 + name: Canal + friendly_id: headphone_style__canal +- id: 6117 + name: Ear hooks + friendly_id: headphone_style__ear_hooks +- id: 6118 + name: Cardioid + friendly_id: polar_pattern__cardioid +- id: 6119 + name: Figure-8 + friendly_id: polar_pattern__figure_8 +- id: 6120 + name: Hypercardioid + friendly_id: polar_pattern__hypercardioid +- id: 6121 + name: Multi-pattern + friendly_id: polar_pattern__multi_pattern +- id: 6122 + name: Omnidirectional + friendly_id: polar_pattern__omnidirectional +- id: 6123 + name: Shotgun + friendly_id: polar_pattern__shotgun +- id: 6124 + name: Subcardioid + friendly_id: polar_pattern__subcardioid +- id: 6125 + name: Super-cardioid + friendly_id: polar_pattern__super_cardioid +- id: 6126 + name: Analog + friendly_id: processor_technology__analog +- id: 6127 + name: Digital + friendly_id: processor_technology__digital +- id: 6128 + name: DSP + friendly_id: processor_technology__dsp +- id: 6129 + name: FPGA + friendly_id: processor_technology__fpga +- id: 6130 + name: Hardware-based + friendly_id: processor_technology__hardware_based +- id: 6131 + name: Hybrid + friendly_id: processor_technology__hybrid +- id: 6132 + name: Modeling + friendly_id: processor_technology__modeling +- id: 6133 + name: Multi-channel + friendly_id: processor_technology__multi_channel +- id: 6134 + name: Software-based + friendly_id: processor_technology__software_based +- id: 6135 + name: Tube/Valve + friendly_id: processor_technology__tube_valve +- id: 6136 + name: Car audio + friendly_id: audio_purpose__car_audio +- id: 6137 + name: Computer audio + friendly_id: audio_purpose__computer_audio +- id: 6138 + name: Home audio + friendly_id: audio_purpose__home_audio +- id: 6139 + name: Home cinema + friendly_id: audio_purpose__home_cinema +- id: 6140 + name: Outdoor use + friendly_id: audio_purpose__outdoor_use +- id: 6141 + name: PA system + friendly_id: audio_purpose__pa_system +- id: 6142 + name: Portable audio + friendly_id: audio_purpose__portable_audio +- id: 6143 + name: Professional audio + friendly_id: audio_purpose__professional_audio +- id: 6144 + name: Smart home + friendly_id: audio_purpose__smart_home +- id: 6145 + name: Studio monitoring + friendly_id: audio_purpose__studio_monitoring +- id: 6146 + name: Bookshelf + friendly_id: speaker_design__bookshelf +- id: 6147 + name: Center channel + friendly_id: speaker_design__center_channel +- id: 6148 + name: Floorstanding + friendly_id: speaker_design__floorstanding +- id: 6149 + name: In-ceiling + friendly_id: speaker_design__in_ceiling +- id: 6150 + name: In-wall + friendly_id: speaker_design__in_wall +- id: 6151 + name: Outdoor + friendly_id: speaker_design__outdoor +- id: 6152 + name: Portable + friendly_id: speaker_design__portable +- id: 6153 + name: Satellite + friendly_id: speaker_design__satellite +- id: 6154 + name: Smart speakers + friendly_id: speaker_design__smart_speakers +- id: 6155 + name: Soundbar + friendly_id: speaker_design__soundbar +- id: 6156 + name: Subwoofer + friendly_id: speaker_design__subwoofer +- id: 6157 + name: Tower + friendly_id: speaker_design__tower +- id: 6158 + name: Dynamic + friendly_id: speaker_technology__dynamic +- id: 6159 + name: Electrostatic + friendly_id: speaker_technology__electrostatic +- id: 6160 + name: Horn + friendly_id: speaker_technology__horn +- id: 6161 + name: Piezoelectric + friendly_id: speaker_technology__piezoelectric +- id: 6162 + name: Planar magnetic + friendly_id: speaker_technology__planar_magnetic +- id: 6163 + name: Smart + friendly_id: speaker_technology__smart +- id: 6164 + name: Acoustic treatment panels + friendly_id: recording_accessories_included__acoustic_treatment_panels +- id: 6165 + name: Audio interface + friendly_id: recording_accessories_included__audio_interface +- id: 6166 + name: Headphones + friendly_id: recording_accessories_included__headphones +- id: 6167 + name: Microphone + friendly_id: recording_accessories_included__microphone +- id: 6168 + name: Microphone stand + friendly_id: recording_accessories_included__microphone_stand +- id: 6169 + name: Pop filter + friendly_id: recording_accessories_included__pop_filter +- id: 6170 + name: 3G2 + friendly_id: audio_codecs_formats_supported__3g2 +- id: 6171 + name: 3GA + friendly_id: audio_codecs_formats_supported__3ga +- id: 6172 + name: 3GP + friendly_id: audio_codecs_formats_supported__3gp +- id: 6173 + name: 3GPP + friendly_id: audio_codecs_formats_supported__3gpp +- id: 6174 + name: 3GPP2 + friendly_id: audio_codecs_formats_supported__3gpp2 +- id: 6175 + name: AAC + friendly_id: audio_codecs_formats_supported__aac +- id: 6176 + name: AAC HE + friendly_id: audio_codecs_formats_supported__aac_he +- id: 6177 + name: AAC-ELD + friendly_id: audio_codecs_formats_supported__aac_eld +- id: 6178 + name: AAC-LC + friendly_id: audio_codecs_formats_supported__aac_lc +- id: 6179 + name: AAC-LD + friendly_id: audio_codecs_formats_supported__aac_ld +- id: 6180 + name: AAC+ + friendly_id: audio_codecs_formats_supported__aac+ +- id: 6181 + name: AAC++ + friendly_id: audio_codecs_formats_supported__aac++ +- id: 6182 + name: AAX + friendly_id: audio_codecs_formats_supported__aax +- id: 6183 + name: AAX+ + friendly_id: audio_codecs_formats_supported__aax+ +- id: 6184 + name: AC3 + friendly_id: audio_codecs_formats_supported__ac3 +- id: 6185 + name: AC4 + friendly_id: audio_codecs_formats_supported__ac4 +- id: 6186 + name: ADPCM + friendly_id: audio_codecs_formats_supported__adpcm +- id: 6187 + name: ADTS + friendly_id: audio_codecs_formats_supported__adts +- id: 6188 + name: AIFF + friendly_id: audio_codecs_formats_supported__aiff +- id: 6189 + name: ALAC + friendly_id: audio_codecs_formats_supported__alac +- id: 6190 + name: AMR + friendly_id: audio_codecs_formats_supported__amr +- id: 6191 + name: AMR-NB + friendly_id: audio_codecs_formats_supported__amr_nb +- id: 6192 + name: AMR-WB + friendly_id: audio_codecs_formats_supported__amr_wb +- id: 6193 + name: AOB + friendly_id: audio_codecs_formats_supported__aob +- id: 6194 + name: APE + friendly_id: audio_codecs_formats_supported__ape +- id: 6195 + name: apt-X + friendly_id: audio_codecs_formats_supported__apt_x +- id: 6196 + name: ASF + friendly_id: audio_codecs_formats_supported__asf +- id: 6197 + name: AU + friendly_id: audio_codecs_formats_supported__au +- id: 6198 + name: AWB + friendly_id: audio_codecs_formats_supported__awb +- id: 6199 + name: CBR + friendly_id: audio_codecs_formats_supported__cbr +- id: 6200 + name: CD-A + friendly_id: audio_codecs_formats_supported__cd_a +- id: 6201 + name: CELP + friendly_id: audio_codecs_formats_supported__celp +- id: 6202 + name: COOK + friendly_id: audio_codecs_formats_supported__cook +- id: 6203 + name: Cook codec + friendly_id: audio_codecs_formats_supported__cook_codec +- id: 6204 + name: CUE + friendly_id: audio_codecs_formats_supported__cue +- id: 6205 + name: DFF + friendly_id: audio_codecs_formats_supported__dff +- id: 6206 + name: DS2 + friendly_id: audio_codecs_formats_supported__ds2 +- id: 6207 + name: DSD + friendly_id: audio_codecs_formats_supported__dsd +- id: 6208 + name: DSF + friendly_id: audio_codecs_formats_supported__dsf +- id: 6209 + name: DSS + friendly_id: audio_codecs_formats_supported__dss +- id: 6210 + name: DTS + friendly_id: audio_codecs_formats_supported__dts +- id: 6211 + name: eAAC+ + friendly_id: audio_codecs_formats_supported__eaac+ +- id: 6212 + name: EAC3 + friendly_id: audio_codecs_formats_supported__eac3 +- id: 6213 + name: FLAC + friendly_id: audio_codecs_formats_supported__flac +- id: 6214 + name: G.711 + friendly_id: audio_codecs_formats_supported__g_711 +- id: 6215 + name: G.711 A-law + friendly_id: audio_codecs_formats_supported__g_711_a_law +- id: 6216 + name: G.722 + friendly_id: audio_codecs_formats_supported__g_722 +- id: 6217 + name: G.722.1 + friendly_id: audio_codecs_formats_supported__g_722_1 +- id: 6218 + name: G.723 + friendly_id: audio_codecs_formats_supported__g_723 +- id: 6219 + name: G.726 + friendly_id: audio_codecs_formats_supported__g_726 +- id: 6220 + name: G.729 + friendly_id: audio_codecs_formats_supported__g_729 +- id: 6221 + name: HAAC + friendly_id: audio_codecs_formats_supported__haac +- id: 6222 + name: HE-A + friendly_id: audio_codecs_formats_supported__he_a +- id: 6223 + name: HE-AAC + friendly_id: audio_codecs_formats_supported__he_aac +- id: 6224 + name: HE-AAC v2 + friendly_id: audio_codecs_formats_supported__he_aac_v2 +- id: 6225 + name: HWA-LD + friendly_id: audio_codecs_formats_supported__hwa_ld +- id: 6226 + name: IMA-ADPCM + friendly_id: audio_codecs_formats_supported__ima_adpcm +- id: 6227 + name: IMY + friendly_id: audio_codecs_formats_supported__imy +- id: 6228 + name: LBR + friendly_id: audio_codecs_formats_supported__lbr +- id: 6229 + name: LC-AAC + friendly_id: audio_codecs_formats_supported__lc_aac +- id: 6230 + name: LPCM + friendly_id: audio_codecs_formats_supported__lpcm +- id: 6231 + name: M4A + friendly_id: audio_codecs_formats_supported__m4a +- id: 6232 + name: M4B + friendly_id: audio_codecs_formats_supported__m4b +- id: 6233 + name: MID + friendly_id: audio_codecs_formats_supported__mid +- id: 6234 + name: MIDI + friendly_id: audio_codecs_formats_supported__midi +- id: 6235 + name: MKA + friendly_id: audio_codecs_formats_supported__mka +- id: 6236 + name: MMF + friendly_id: audio_codecs_formats_supported__mmf +- id: 6237 + name: MP1 + friendly_id: audio_codecs_formats_supported__mp1 +- id: 6238 + name: MP2 + friendly_id: audio_codecs_formats_supported__mp2 +- id: 6239 + name: MP2L2 + friendly_id: audio_codecs_formats_supported__mp2l2 +- id: 6240 + name: MP3 + friendly_id: audio_codecs_formats_supported__mp3 +- id: 6241 + name: MP3 VBR + friendly_id: audio_codecs_formats_supported__mp3_vbr +- id: 6242 + name: MP4 + friendly_id: audio_codecs_formats_supported__mp4 +- id: 6243 + name: MPA + friendly_id: audio_codecs_formats_supported__mpa +- id: 6244 + name: MQA + friendly_id: audio_codecs_formats_supported__mqa +- id: 6245 + name: MS-ADPCM + friendly_id: audio_codecs_formats_supported__ms_adpcm +- id: 6246 + name: MXMF + friendly_id: audio_codecs_formats_supported__mxmf +- id: 6247 + name: Not supported + friendly_id: audio_codecs_formats_supported__not_supported +- id: 6248 + name: NRT + friendly_id: audio_codecs_formats_supported__nrt +- id: 6249 + name: OGA + friendly_id: audio_codecs_formats_supported__oga +- id: 6250 + name: OGG + friendly_id: audio_codecs_formats_supported__ogg +- id: 6251 + name: OPUS + friendly_id: audio_codecs_formats_supported__opus +- id: 6252 + name: OTA + friendly_id: audio_codecs_formats_supported__ota +- id: 6253 + name: PCM + friendly_id: audio_codecs_formats_supported__pcm +- id: 6254 + name: PMD + friendly_id: audio_codecs_formats_supported__pmd +- id: 6255 + name: QCP + friendly_id: audio_codecs_formats_supported__qcp +- id: 6256 + name: QTFF + friendly_id: audio_codecs_formats_supported__qtff +- id: 6257 + name: RA-lossless + friendly_id: audio_codecs_formats_supported__ra_lossless +- id: 6258 + name: Real audio + friendly_id: audio_codecs_formats_supported__real_audio +- id: 6259 + name: RMI + friendly_id: audio_codecs_formats_supported__rmi +- id: 6260 + name: RTSP + friendly_id: audio_codecs_formats_supported__rtsp +- id: 6261 + name: RTTTL + friendly_id: audio_codecs_formats_supported__rtttl +- id: 6262 + name: RTX + friendly_id: audio_codecs_formats_supported__rtx +- id: 6263 + name: SBC + friendly_id: audio_codecs_formats_supported__sbc +- id: 6264 + name: SMF + friendly_id: audio_codecs_formats_supported__smf +- id: 6265 + name: Vorbis + friendly_id: audio_codecs_formats_supported__vorbis +- id: 6266 + name: WAV + friendly_id: audio_codecs_formats_supported__wav +- id: 6267 + name: WAVE + friendly_id: audio_codecs_formats_supported__wave +- id: 6268 + name: WMA + friendly_id: audio_codecs_formats_supported__wma +- id: 6269 + name: WMA-L + friendly_id: audio_codecs_formats_supported__wma_l +- id: 6270 + name: WMA Pro + friendly_id: audio_codecs_formats_supported__wma_pro +- id: 6271 + name: WMV + friendly_id: audio_codecs_formats_supported__wmv +- id: 6272 + name: WVE + friendly_id: audio_codecs_formats_supported__wve +- id: 6273 + name: XMF + friendly_id: audio_codecs_formats_supported__xmf +- id: 6274 + name: μ-law + friendly_id: audio_codecs_formats_supported___law +- id: 6275 + name: Other + friendly_id: audio_codecs_formats_supported__other +- id: 6276 + name: Cassette + friendly_id: media_format__cassette +- id: 6277 + name: CD + friendly_id: media_format__cd +- id: 6278 + name: Minidisc + friendly_id: media_format__minidisc +- id: 6279 + name: MP3 + friendly_id: media_format__mp3 +- id: 6280 + name: Other + friendly_id: media_format__other +- id: 6281 + name: Digital + friendly_id: media_format__digital +- id: 6282 + name: Vinyl + friendly_id: media_format__vinyl +- id: 6283 + name: Duet + friendly_id: karaoke_modes__duet +- id: 6284 + name: Group + friendly_id: karaoke_modes__group +- id: 6285 + name: Single + friendly_id: karaoke_modes__single +- id: 6286 + name: Ceramic + friendly_id: cartridge_type__ceramic +- id: 6287 + name: Magnetic + friendly_id: cartridge_type__magnetic +- id: 6288 + name: Moving coil + friendly_id: cartridge_type__moving_coil +- id: 6289 + name: Moving magnet + friendly_id: cartridge_type__moving_magnet +- id: 6290 + name: Piezoelectric + friendly_id: cartridge_type__piezoelectric +- id: 6291 + name: Strain gauge + friendly_id: cartridge_type__strain_gauge +- id: 6292 + name: Belt + friendly_id: player_drive_type__belt +- id: 6293 + name: Direct + friendly_id: player_drive_type__direct +- id: 6294 + name: Idler + friendly_id: player_drive_type__idler +- id: 6295 + name: Analog + friendly_id: mixer_type__analog +- id: 6296 + name: Battle + friendly_id: mixer_type__battle +- id: 6297 + name: Club + friendly_id: mixer_type__club +- id: 6298 + name: Digital + friendly_id: mixer_type__digital +- id: 6299 + name: DJ controller + friendly_id: mixer_type__dj_controller +- id: 6300 + name: Non-powered + friendly_id: mixer_type__non_powered +- id: 6301 + name: Powered + friendly_id: mixer_type__powered +- id: 6302 + name: Rotary + friendly_id: mixer_type__rotary +- id: 6303 + name: Scratch + friendly_id: mixer_type__scratch +- id: 6304 + name: Collinear + friendly_id: antenna_type__collinear +- id: 6305 + name: Dipole + friendly_id: antenna_type__dipole +- id: 6306 + name: Directional + friendly_id: antenna_type__directional +- id: 6307 + name: Grid + friendly_id: antenna_type__grid +- id: 6308 + name: Helical + friendly_id: antenna_type__helical +- id: 6309 + name: Log-periodic + friendly_id: antenna_type__log_periodic +- id: 6310 + name: Omnidirectional + friendly_id: antenna_type__omnidirectional +- id: 6311 + name: Panel + friendly_id: antenna_type__panel +- id: 6312 + name: Parabolic + friendly_id: antenna_type__parabolic +- id: 6313 + name: Patch + friendly_id: antenna_type__patch +- id: 6314 + name: Sector + friendly_id: antenna_type__sector +- id: 6315 + name: Whip + friendly_id: antenna_type__whip +- id: 6316 + name: Yagi + friendly_id: antenna_type__yagi +- id: 6317 + name: BGA + friendly_id: component_package_type__bga +- id: 6318 + name: DFN + friendly_id: component_package_type__dfn +- id: 6319 + name: DIP + friendly_id: component_package_type__dip +- id: 6320 + name: LCC + friendly_id: component_package_type__lcc +- id: 6321 + name: LGA + friendly_id: component_package_type__lga +- id: 6322 + name: PGA + friendly_id: component_package_type__pga +- id: 6323 + name: PLCC + friendly_id: component_package_type__plcc +- id: 6324 + name: PLDIP + friendly_id: component_package_type__pldip +- id: 6325 + name: QFN + friendly_id: component_package_type__qfn +- id: 6326 + name: QFP + friendly_id: component_package_type__qfp +- id: 6327 + name: SMD + friendly_id: component_package_type__smd +- id: 6328 + name: SOIC + friendly_id: component_package_type__soic +- id: 6329 + name: SOP + friendly_id: component_package_type__sop +- id: 6330 + name: SOPJ + friendly_id: component_package_type__sopj +- id: 6331 + name: SOT + friendly_id: component_package_type__sot +- id: 6332 + name: SOT-143 + friendly_id: component_package_type__sot_143 +- id: 6333 + name: SOT-223 + friendly_id: component_package_type__sot_223 +- id: 6334 + name: SOT-23 + friendly_id: component_package_type__sot_23 +- id: 6335 + name: SOT-363 + friendly_id: component_package_type__sot_363 +- id: 6336 + name: SOT-523 + friendly_id: component_package_type__sot_523 +- id: 6337 + name: SOT-723 + friendly_id: component_package_type__sot_723 +- id: 6338 + name: SOT-89 + friendly_id: component_package_type__sot_89 +- id: 6339 + name: SSOP + friendly_id: component_package_type__ssop +- id: 6340 + name: TO + friendly_id: component_package_type__to +- id: 6341 + name: TO-126 + friendly_id: component_package_type__to_126 +- id: 6342 + name: TO-18 + friendly_id: component_package_type__to_18 +- id: 6343 + name: TO-220 + friendly_id: component_package_type__to_220 +- id: 6344 + name: TO-247 + friendly_id: component_package_type__to_247 +- id: 6345 + name: TO-252 + friendly_id: component_package_type__to_252 +- id: 6346 + name: TO-263 + friendly_id: component_package_type__to_263 +- id: 6347 + name: TO-3 + friendly_id: component_package_type__to_3 +- id: 6348 + name: TO-39 + friendly_id: component_package_type__to_39 +- id: 6349 + name: TO-5 + friendly_id: component_package_type__to_5 +- id: 6350 + name: TO-92 + friendly_id: component_package_type__to_92 +- id: 6351 + name: TQFP + friendly_id: component_package_type__tqfp +- id: 6352 + name: TSOP + friendly_id: component_package_type__tsop +- id: 6353 + name: TSSOP + friendly_id: component_package_type__tssop +- id: 6354 + name: Other + friendly_id: component_package_type__other +- id: 6355 + name: Female to female + friendly_id: connector_gender__female_to_female +- id: 6356 + name: Female to male + friendly_id: connector_gender__female_to_male +- id: 6357 + name: Male to female + friendly_id: connector_gender__male_to_female +- id: 6358 + name: Male to male + friendly_id: connector_gender__male_to_male +- id: 6359 + name: Analog + friendly_id: component_output_type__analog +- id: 6360 + name: Digital + friendly_id: component_output_type__digital +- id: 6361 + name: I2C + friendly_id: component_output_type__i2c +- id: 6362 + name: PWM + friendly_id: component_output_type__pwm +- id: 6363 + name: RS232 + friendly_id: component_output_type__rs232 +- id: 6364 + name: RS485 + friendly_id: component_output_type__rs485 +- id: 6365 + name: SPI + friendly_id: component_output_type__spi +- id: 6366 + name: UART + friendly_id: component_output_type__uart +- id: 6367 + name: All-pass + friendly_id: passband__all_pass +- id: 6368 + name: Band-pass + friendly_id: passband__band_pass +- id: 6369 + name: Band-stop + friendly_id: passband__band_stop +- id: 6370 + name: High-pass + friendly_id: passband__high_pass +- id: 6371 + name: Low-pass + friendly_id: passband__low_pass +- id: 6372 + name: Low frequency + friendly_id: stopband__low_frequency +- id: 6373 + name: Medium frequency + friendly_id: stopband__medium_frequency +- id: 6374 + name: High frequency + friendly_id: stopband__high_frequency +- id: 6375 + name: Very high frequency + friendly_id: stopband__very_high_frequency +- id: 6376 + name: Ultra high frequency + friendly_id: stopband__ultra_high_frequency +- id: 6377 + name: Super high frequency + friendly_id: stopband__super_high_frequency +- id: 6378 + name: Extremely high frequency + friendly_id: stopband__extremely_high_frequency +- id: 6379 + name: Air capacitor + friendly_id: dielectric_type__air_capacitor +- id: 6380 + name: Aluminum electrolytic + friendly_id: dielectric_type__aluminum_electrolytic +- id: 6381 + name: Ceramic + friendly_id: dielectric_type__ceramic +- id: 6382 + name: Electrolytic + friendly_id: dielectric_type__electrolytic +- id: 6383 + name: Film + friendly_id: dielectric_type__film +- id: 6384 + name: Glass + friendly_id: dielectric_type__glass +- id: 6385 + name: Glass capacitor + friendly_id: dielectric_type__glass_capacitor +- id: 6386 + name: Mica + friendly_id: dielectric_type__mica +- id: 6387 + name: Niobium oxide + friendly_id: dielectric_type__niobium_oxide +- id: 6388 + name: Paper + friendly_id: dielectric_type__paper +- id: 6389 + name: Polycarbonate (PC) + friendly_id: dielectric_type__polycarbonate_pc +- id: 6390 + name: Polyester + friendly_id: dielectric_type__polyester +- id: 6391 + name: Polypropylene (PP) + friendly_id: dielectric_type__polypropylene_pp +- id: 6392 + name: Silicon capacitor + friendly_id: dielectric_type__silicon_capacitor +- id: 6393 + name: Solid polymer + friendly_id: dielectric_type__solid_polymer +- id: 6394 + name: Supercapacitor + friendly_id: dielectric_type__supercapacitor +- id: 6395 + name: Tantalum + friendly_id: dielectric_type__tantalum +- id: 6396 + name: Vacuum capacitor + friendly_id: dielectric_type__vacuum_capacitor +- id: 6397 + name: Complex + friendly_id: output_waveform__complex +- id: 6398 + name: Pulse + friendly_id: output_waveform__pulse +- id: 6399 + name: Sawtooth + friendly_id: output_waveform__sawtooth +- id: 6400 + name: Sine + friendly_id: output_waveform__sine +- id: 6401 + name: Square + friendly_id: output_waveform__square +- id: 6402 + name: Triangle + friendly_id: output_waveform__triangle +- id: 6403 + name: AMI + friendly_id: bios_type__ami +- id: 6404 + name: Aptio + friendly_id: bios_type__aptio +- id: 6405 + name: Award + friendly_id: bios_type__award +- id: 6406 + name: Coreboot + friendly_id: bios_type__coreboot +- id: 6407 + name: Custom + friendly_id: bios_type__custom +- id: 6408 + name: Hybrid + friendly_id: bios_type__hybrid +- id: 6409 + name: Insyde + friendly_id: bios_type__insyde +- id: 6410 + name: Legacy + friendly_id: bios_type__legacy +- id: 6411 + name: Phoenix + friendly_id: bios_type__phoenix +- id: 6412 + name: UEFI + friendly_id: bios_type__uefi +- id: 6413 + name: AMD A + friendly_id: compatible_processor_series__amd_a +- id: 6414 + name: AMD Athlon + friendly_id: compatible_processor_series__amd_athlon +- id: 6415 + name: AMD Athlon FX + friendly_id: compatible_processor_series__amd_athlon_fx +- id: 6416 + name: AMD Athlon II + friendly_id: compatible_processor_series__amd_athlon_ii +- id: 6417 + name: AMD Athlon II dual-core + friendly_id: compatible_processor_series__amd_athlon_ii_dual_core +- id: 6418 + name: AMD Athlon II X2 + friendly_id: compatible_processor_series__amd_athlon_ii_x2 +- id: 6419 + name: AMD Athlon II X3 + friendly_id: compatible_processor_series__amd_athlon_ii_x3 +- id: 6420 + name: AMD Athlon II X4 + friendly_id: compatible_processor_series__amd_athlon_ii_x4 +- id: 6421 + name: AMD Athlon MP + friendly_id: compatible_processor_series__amd_athlon_mp +- id: 6422 + name: AMD Athlon neo X2 + friendly_id: compatible_processor_series__amd_athlon_neo_x2 +- id: 6423 + name: AMD Athlon X2 + friendly_id: compatible_processor_series__amd_athlon_x2 +- id: 6424 + name: AMD Athlon X2 dual-core + friendly_id: compatible_processor_series__amd_athlon_x2_dual_core +- id: 6425 + name: AMD Athlon X4 + friendly_id: compatible_processor_series__amd_athlon_x4 +- id: 6426 + name: AMD Athlon XP + friendly_id: compatible_processor_series__amd_athlon_xp +- id: 6427 + name: AMD C + friendly_id: compatible_processor_series__amd_c +- id: 6428 + name: AMD Duron + friendly_id: compatible_processor_series__amd_duron +- id: 6429 + name: AMD E + friendly_id: compatible_processor_series__amd_e +- id: 6430 + name: AMD E2 + friendly_id: compatible_processor_series__amd_e2 +- id: 6431 + name: AMD EPYC + friendly_id: compatible_processor_series__amd_epyc +- id: 6432 + name: AMD EPYC 7000 + friendly_id: compatible_processor_series__amd_epyc_7000 +- id: 6433 + name: AMD EPYC 7002 + friendly_id: compatible_processor_series__amd_epyc_7002 +- id: 6434 + name: AMD FreeSync + friendly_id: compatible_processor_series__amd_freesync +- id: 6435 + name: AMD FX + friendly_id: compatible_processor_series__amd_fx +- id: 6436 + name: AMD Geode + friendly_id: compatible_processor_series__amd_geode +- id: 6437 + name: AMD Opteron + friendly_id: compatible_processor_series__amd_opteron +- id: 6438 + name: AMD Phenom + friendly_id: compatible_processor_series__amd_phenom +- id: 6439 + name: AMD Phenom FX + friendly_id: compatible_processor_series__amd_phenom_fx +- id: 6440 + name: AMD Phenom II dual-core mobile + friendly_id: compatible_processor_series__amd_phenom_ii_dual_core_mobile +- id: 6441 + name: AMD Phenom II quad-core mobile + friendly_id: compatible_processor_series__amd_phenom_ii_quad_core_mobile +- id: 6442 + name: AMD Phenom II triple-core mobile + friendly_id: compatible_processor_series__amd_phenom_ii_triple_core_mobile +- id: 6443 + name: AMD Phenom II X2 + friendly_id: compatible_processor_series__amd_phenom_ii_x2 +- id: 6444 + name: AMD Phenom II X3 + friendly_id: compatible_processor_series__amd_phenom_ii_x3 +- id: 6445 + name: AMD Phenom II X4 + friendly_id: compatible_processor_series__amd_phenom_ii_x4 +- id: 6446 + name: AMD Phenom II X6 + friendly_id: compatible_processor_series__amd_phenom_ii_x6 +- id: 6447 + name: AMD Phenom II X8 + friendly_id: compatible_processor_series__amd_phenom_ii_x8 +- id: 6448 + name: AMD Phenom X3 + friendly_id: compatible_processor_series__amd_phenom_x3 +- id: 6449 + name: AMD Phenom X4 + friendly_id: compatible_processor_series__amd_phenom_x4 +- id: 6450 + name: AMD Ryzen 3 2nd gen + friendly_id: compatible_processor_series__amd_ryzen_3_2nd_gen +- id: 6451 + name: AMD Ryzen 3 3rd gen + friendly_id: compatible_processor_series__amd_ryzen_3_3rd_gen +- id: 6452 + name: AMD Ryzen 5 + friendly_id: compatible_processor_series__amd_ryzen_5 +- id: 6453 + name: AMD Ryzen 5 2nd gen + friendly_id: compatible_processor_series__amd_ryzen_5_2nd_gen +- id: 6454 + name: AMD Ryzen 5 3rd gen + friendly_id: compatible_processor_series__amd_ryzen_5_3rd_gen +- id: 6455 + name: AMD Ryzen 5 5th gen + friendly_id: compatible_processor_series__amd_ryzen_5_5th_gen +- id: 6456 + name: AMD Ryzen 7 + friendly_id: compatible_processor_series__amd_ryzen_7 +- id: 6457 + name: AMD Ryzen 7 2nd gen + friendly_id: compatible_processor_series__amd_ryzen_7_2nd_gen +- id: 6458 + name: AMD Ryzen 7 3rd gen + friendly_id: compatible_processor_series__amd_ryzen_7_3rd_gen +- id: 6459 + name: AMD Ryzen 7 5th gen + friendly_id: compatible_processor_series__amd_ryzen_7_5th_gen +- id: 6460 + name: AMD Ryzen 7 7th gen + friendly_id: compatible_processor_series__amd_ryzen_7_7th_gen +- id: 6461 + name: AMD Ryzen 9 3rd gen + friendly_id: compatible_processor_series__amd_ryzen_9_3rd_gen +- id: 6462 + name: AMD Ryzen 9 5th gen + friendly_id: compatible_processor_series__amd_ryzen_9_5th_gen +- id: 6463 + name: AMD Ryzen 9 7th gen + friendly_id: compatible_processor_series__amd_ryzen_9_7th_gen +- id: 6464 + name: AMD Ryzen Threadripper + friendly_id: compatible_processor_series__amd_ryzen_threadripper +- id: 6465 + name: AMD Ryzen Threadripper 2nd gen + friendly_id: compatible_processor_series__amd_ryzen_threadripper_2nd_gen +- id: 6466 + name: AMD Ryzen Threadripper 3rd gen + friendly_id: compatible_processor_series__amd_ryzen_threadripper_3rd_gen +- id: 6467 + name: AMD Ryzen Threadripper Pro 3rd gen + friendly_id: compatible_processor_series__amd_ryzen_threadripper_pro_3rd_gen +- id: 6468 + name: AMD Sempron + friendly_id: compatible_processor_series__amd_sempron +- id: 6469 + name: AMD Turion 64 X2 dual-core + friendly_id: compatible_processor_series__amd_turion_64_x2_dual_core +- id: 6470 + name: AMD Turion II neo + friendly_id: compatible_processor_series__amd_turion_ii_neo +- id: 6471 + name: AMD Turion X2 ultra dual-core + friendly_id: compatible_processor_series__amd_turion_x2_ultra_dual_core +- id: 6472 + name: Intel atom + friendly_id: compatible_processor_series__intel_atom +- id: 6473 + name: Intel celeron + friendly_id: compatible_processor_series__intel_celeron +- id: 6474 + name: Intel celeron D + friendly_id: compatible_processor_series__intel_celeron_d +- id: 6475 + name: Intel Celeron dual-core + friendly_id: compatible_processor_series__intel_celeron_dual_core +- id: 6476 + name: Intel celeron E + friendly_id: compatible_processor_series__intel_celeron_e +- id: 6477 + name: Intel celeron G + friendly_id: compatible_processor_series__intel_celeron_g +- id: 6478 + name: Intel celeron M + friendly_id: compatible_processor_series__intel_celeron_m +- id: 6479 + name: Intel celeron N + friendly_id: compatible_processor_series__intel_celeron_n +- id: 6480 + name: Intel core 2 duo + friendly_id: compatible_processor_series__intel_core_2_duo +- id: 6481 + name: Intel core 2 extreme + friendly_id: compatible_processor_series__intel_core_2_extreme +- id: 6482 + name: Intel core 2 quad + friendly_id: compatible_processor_series__intel_core_2_quad +- id: 6483 + name: Intel core duo + friendly_id: compatible_processor_series__intel_core_duo +- id: 6484 + name: Intel core i3 + friendly_id: compatible_processor_series__intel_core_i3 +- id: 6485 + name: Intel core i5 + friendly_id: compatible_processor_series__intel_core_i5 +- id: 6486 + name: Intel core i7 + friendly_id: compatible_processor_series__intel_core_i7 +- id: 6487 + name: Intel core i7 extreme edition + friendly_id: compatible_processor_series__intel_core_i7_extreme_edition +- id: 6488 + name: Intel core i9 + friendly_id: compatible_processor_series__intel_core_i9 +- id: 6489 + name: Intel core i9 extreme edition + friendly_id: compatible_processor_series__intel_core_i9_extreme_edition +- id: 6490 + name: Intel core solo + friendly_id: compatible_processor_series__intel_core_solo +- id: 6491 + name: Intel core X-series + friendly_id: compatible_processor_series__intel_core_x_series +- id: 6492 + name: Intel itanium + friendly_id: compatible_processor_series__intel_itanium +- id: 6493 + name: Intel pentium + friendly_id: compatible_processor_series__intel_pentium +- id: 6494 + name: Intel pentium 4 + friendly_id: compatible_processor_series__intel_pentium_4 +- id: 6495 + name: Intel pentium 4 extreme edition + friendly_id: compatible_processor_series__intel_pentium_4_extreme_edition +- id: 6496 + name: Intel pentium D + friendly_id: compatible_processor_series__intel_pentium_d +- id: 6497 + name: Intel pentium dual-core + friendly_id: compatible_processor_series__intel_pentium_dual_core +- id: 6498 + name: Intel pentium extreme edition + friendly_id: compatible_processor_series__intel_pentium_extreme_edition +- id: 6499 + name: Intel pentium G + friendly_id: compatible_processor_series__intel_pentium_g +- id: 6500 + name: Intel pentium gold + friendly_id: compatible_processor_series__intel_pentium_gold +- id: 6501 + name: Intel pentium III + friendly_id: compatible_processor_series__intel_pentium_iii +- id: 6502 + name: Intel pentium M + friendly_id: compatible_processor_series__intel_pentium_m +- id: 6503 + name: Intel x99 + friendly_id: compatible_processor_series__intel_x99 +- id: 6504 + name: Intel xeon + friendly_id: compatible_processor_series__intel_xeon +- id: 6505 + name: Intel xeon E + friendly_id: compatible_processor_series__intel_xeon_e +- id: 6506 + name: Intel xeon E3 + friendly_id: compatible_processor_series__intel_xeon_e3 +- id: 6507 + name: Intel xeon E5 + friendly_id: compatible_processor_series__intel_xeon_e5 +- id: 6508 + name: Intel xeon Phi + friendly_id: compatible_processor_series__intel_xeon_phi +- id: 6509 + name: Intel xeon W + friendly_id: compatible_processor_series__intel_xeon_w +- id: 6510 + name: Not supported + friendly_id: compatible_processor_series__not_supported +- id: 6511 + name: VIA C3 + friendly_id: compatible_processor_series__via_c3 +- id: 6512 + name: VIA C7 + friendly_id: compatible_processor_series__via_c7 +- id: 6513 + name: VIA luke + friendly_id: compatible_processor_series__via_luke +- id: 6514 + name: VIA nano + friendly_id: compatible_processor_series__via_nano +- id: 6515 + name: VIA V4 + friendly_id: compatible_processor_series__via_v4 +- id: 6516 + name: Other + friendly_id: compatible_processor_series__other +- id: 6517 + name: AGP + friendly_id: expansion_slots__agp +- id: 6518 + name: AMR + friendly_id: expansion_slots__amr +- id: 6519 + name: CNR + friendly_id: expansion_slots__cnr +- id: 6520 + name: ISA + friendly_id: expansion_slots__isa +- id: 6521 + name: M.2 + friendly_id: expansion_slots__m_2 +- id: 6522 + name: Mini PCIe + friendly_id: expansion_slots__mini_pcie +- id: 6523 + name: PCI + friendly_id: expansion_slots__pci +- id: 6524 + name: PCIe + friendly_id: expansion_slots__pcie +- id: 6525 + name: DIMM + friendly_id: expansion_slots__dimm +- id: 6526 + name: SATA + friendly_id: expansion_slots__sata +- id: 6527 + name: Other + friendly_id: expansion_slots__other +- id: 6528 + name: ECC + friendly_id: memory_features__ecc +- id: 6529 + name: Non-ECC + friendly_id: memory_features__non_ecc +- id: 6530 + name: Registered/Buffered + friendly_id: memory_features__registered_buffered +- id: 6531 + name: Unbuffered + friendly_id: memory_features__unbuffered +- id: 6532 + name: Asynchronous SRAM + friendly_id: memory_technology__asynchronous_sram +- id: 6533 + name: DDR + friendly_id: memory_technology__ddr +- id: 6534 + name: DDR2 + friendly_id: memory_technology__ddr2 +- id: 6535 + name: DDR3 + friendly_id: memory_technology__ddr3 +- id: 6536 + name: DDR4 + friendly_id: memory_technology__ddr4 +- id: 6537 + name: DDR5 + friendly_id: memory_technology__ddr5 +- id: 6538 + name: DRAM + friendly_id: memory_technology__dram +- id: 6539 + name: EDO DRAM + friendly_id: memory_technology__edo_dram +- id: 6540 + name: Flash + friendly_id: memory_technology__flash +- id: 6541 + name: FPM DRAM + friendly_id: memory_technology__fpm_dram +- id: 6542 + name: GDDR + friendly_id: memory_technology__gddr +- id: 6543 + name: GDDR2 + friendly_id: memory_technology__gddr2 +- id: 6544 + name: GDDR3 + friendly_id: memory_technology__gddr3 +- id: 6545 + name: GDDR4 + friendly_id: memory_technology__gddr4 +- id: 6546 + name: GDDR5 + friendly_id: memory_technology__gddr5 +- id: 6547 + name: GDDR6 + friendly_id: memory_technology__gddr6 +- id: 6548 + name: GDDR6X + friendly_id: memory_technology__gddr6x +- id: 6549 + name: HBM + friendly_id: memory_technology__hbm +- id: 6550 + name: HBM2 + friendly_id: memory_technology__hbm2 +- id: 6551 + name: HBM2E + friendly_id: memory_technology__hbm2e +- id: 6552 + name: HBM3 + friendly_id: memory_technology__hbm3 +- id: 6553 + name: NAND flash + friendly_id: memory_technology__nand_flash +- id: 6554 + name: NOR flash + friendly_id: memory_technology__nor_flash +- id: 6555 + name: NVRAM + friendly_id: memory_technology__nvram +- id: 6556 + name: PLC + friendly_id: memory_technology__plc +- id: 6557 + name: Pseudo SRAM + friendly_id: memory_technology__pseudo_sram +- id: 6558 + name: QLC + friendly_id: memory_technology__qlc +- id: 6559 + name: RDRAM + friendly_id: memory_technology__rdram +- id: 6560 + name: SDR SDRAM + friendly_id: memory_technology__sdr_sdram +- id: 6561 + name: SDRAM + friendly_id: memory_technology__sdram +- id: 6562 + name: Serial NOR + friendly_id: memory_technology__serial_nor +- id: 6563 + name: SLC + friendly_id: memory_technology__slc +- id: 6564 + name: SRAM + friendly_id: memory_technology__sram +- id: 6565 + name: Synchronous SRAM + friendly_id: memory_technology__synchronous_sram +- id: 6566 + name: TLC + friendly_id: memory_technology__tlc +- id: 6567 + name: XIP NOR + friendly_id: memory_technology__xip_nor +- id: 6568 + name: Other + friendly_id: memory_technology__other +- id: 6569 + name: AMD + friendly_id: motherboard_chipset_family__amd +- id: 6570 + name: Intel + friendly_id: motherboard_chipset_family__intel +- id: 6571 + name: Nvidia + friendly_id: motherboard_chipset_family__nvidia +- id: 6572 + name: SiS + friendly_id: motherboard_chipset_family__sis +- id: 6573 + name: VIA + friendly_id: motherboard_chipset_family__via +- id: 6574 + name: ATX + friendly_id: motherboard_form_factor__atx +- id: 6575 + name: Extended ATX + friendly_id: motherboard_form_factor__extended_atx +- id: 6576 + name: FlexATX + friendly_id: motherboard_form_factor__flexatx +- id: 6577 + name: Micro-ATX + friendly_id: motherboard_form_factor__micro_atx +- id: 6578 + name: Mini-DTX + friendly_id: motherboard_form_factor__mini_dtx +- id: 6579 + name: Mini-ITX + friendly_id: motherboard_form_factor__mini_itx +- id: 6580 + name: Nano-ITX + friendly_id: motherboard_form_factor__nano_itx +- id: 6581 + name: 2-way CrossFireX + friendly_id: multi_gpu_technology__2_way_crossfirex +- id: 6582 + name: 2-way NVLink + friendly_id: multi_gpu_technology__2_way_nvlink +- id: 6583 + name: 2-way SLI + friendly_id: multi_gpu_technology__2_way_sli +- id: 6584 + name: 3-way CrossFireX + friendly_id: multi_gpu_technology__3_way_crossfirex +- id: 6585 + name: 3-way SLI + friendly_id: multi_gpu_technology__3_way_sli +- id: 6586 + name: 4-way CrossFireX + friendly_id: multi_gpu_technology__4_way_crossfirex +- id: 6587 + name: 4-way SLI + friendly_id: multi_gpu_technology__4_way_sli +- id: 6588 + name: APP + friendly_id: multi_gpu_technology__app +- id: 6589 + name: Crossfire + friendly_id: multi_gpu_technology__crossfire +- id: 6590 + name: Crossfire pro + friendly_id: multi_gpu_technology__crossfire_pro +- id: 6591 + name: Crossfirex + friendly_id: multi_gpu_technology__crossfirex +- id: 6592 + name: Dual graphics + friendly_id: multi_gpu_technology__dual_graphics +- id: 6593 + name: Hybrid crossfirex + friendly_id: multi_gpu_technology__hybrid_crossfirex +- id: 6594 + name: LucidLogix virtu + friendly_id: multi_gpu_technology__lucidlogix_virtu +- id: 6595 + name: Not supported + friendly_id: multi_gpu_technology__not_supported +- id: 6596 + name: Nvidia turing + friendly_id: multi_gpu_technology__nvidia_turing +- id: 6597 + name: NVLink + friendly_id: multi_gpu_technology__nvlink +- id: 6598 + name: Quad-GPU crossFireX + friendly_id: multi_gpu_technology__quad_gpu_crossfirex +- id: 6599 + name: Quad-GPU SLI + friendly_id: multi_gpu_technology__quad_gpu_sli +- id: 6600 + name: SLI + friendly_id: multi_gpu_technology__sli +- id: 6601 + name: Other + friendly_id: multi_gpu_technology__other +- id: 6602 + name: AVX + friendly_id: parallel_processing_technology_support__avx +- id: 6603 + name: CUDA + friendly_id: parallel_processing_technology_support__cuda +- id: 6604 + name: FMA + friendly_id: parallel_processing_technology_support__fma +- id: 6605 + name: GPGPU + friendly_id: parallel_processing_technology_support__gpgpu +- id: 6606 + name: HSA + friendly_id: parallel_processing_technology_support__hsa +- id: 6607 + name: Hyper-threading + friendly_id: parallel_processing_technology_support__hyper_threading +- id: 6608 + name: Multi-core + friendly_id: parallel_processing_technology_support__multi_core +- id: 6609 + name: Multi-GPU + friendly_id: parallel_processing_technology_support__multi_gpu +- id: 6610 + name: OpenCL + friendly_id: parallel_processing_technology_support__opencl +- id: 6611 + name: SIMD + friendly_id: parallel_processing_technology_support__simd +- id: 6612 + name: LGA 1150 (socket H3) + friendly_id: processor_socket__lga_1150_socket_h3 +- id: 6613 + name: LGA 1151 (socket H4) + friendly_id: processor_socket__lga_1151_socket_h4 +- id: 6614 + name: LGA 1151 v2 + friendly_id: processor_socket__lga_1151_v2 +- id: 6615 + name: LGA 1155 (socket H2) + friendly_id: processor_socket__lga_1155_socket_h2 +- id: 6616 + name: LGA 1156 (socket H) + friendly_id: processor_socket__lga_1156_socket_h +- id: 6617 + name: LGA 1200 + friendly_id: processor_socket__lga_1200 +- id: 6618 + name: LGA 1366 (socket B) + friendly_id: processor_socket__lga_1366_socket_b +- id: 6619 + name: LGA 2011 (socket R) + friendly_id: processor_socket__lga_2011_socket_r +- id: 6620 + name: LGA 2011-v3 + friendly_id: processor_socket__lga_2011_v3 +- id: 6621 + name: LGA 2066 (Socket R4) + friendly_id: processor_socket__lga_2066_socket_r4 +- id: 6622 + name: LGA 3647 (socket P) + friendly_id: processor_socket__lga_3647_socket_p +- id: 6623 + name: LGA 775 (socket T) + friendly_id: processor_socket__lga_775_socket_t +- id: 6624 + name: Socket 370 + friendly_id: processor_socket__socket_370 +- id: 6625 + name: Socket 423 + friendly_id: processor_socket__socket_423 +- id: 6626 + name: Socket 478 + friendly_id: processor_socket__socket_478 +- id: 6627 + name: Socket 479 + friendly_id: processor_socket__socket_479 +- id: 6628 + name: Socket 603 + friendly_id: processor_socket__socket_603 +- id: 6629 + name: Socket 604 (mPGA604) + friendly_id: processor_socket__socket_604_mpga604 +- id: 6630 + name: Socket 754 + friendly_id: processor_socket__socket_754 +- id: 6631 + name: Socket 771 (socket J) + friendly_id: processor_socket__socket_771_socket_j +- id: 6632 + name: Socket 939 + friendly_id: processor_socket__socket_939 +- id: 6633 + name: Socket 940 + friendly_id: processor_socket__socket_940 +- id: 6634 + name: Socket 988 + friendly_id: processor_socket__socket_988 +- id: 6635 + name: Socket A (462) + friendly_id: processor_socket__socket_a_462 +- id: 6636 + name: Socket AM1 + friendly_id: processor_socket__socket_am1 +- id: 6637 + name: Socket AM2 + friendly_id: processor_socket__socket_am2 +- id: 6638 + name: Socket AM2+ + friendly_id: processor_socket__socket_am2+ +- id: 6639 + name: Socket AM3 + friendly_id: processor_socket__socket_am3 +- id: 6640 + name: Socket AM3+ + friendly_id: processor_socket__socket_am3+ +- id: 6641 + name: Socket AM4 + friendly_id: processor_socket__socket_am4 +- id: 6642 + name: Socket C32 + friendly_id: processor_socket__socket_c32 +- id: 6643 + name: Socket F (1207) + friendly_id: processor_socket__socket_f_1207 +- id: 6644 + name: Socket FM1 + friendly_id: processor_socket__socket_fm1 +- id: 6645 + name: Socket FM2 + friendly_id: processor_socket__socket_fm2 +- id: 6646 + name: Socket FM2+ + friendly_id: processor_socket__socket_fm2+ +- id: 6647 + name: Socket FP2 + friendly_id: processor_socket__socket_fp2 +- id: 6648 + name: Socket FP3 + friendly_id: processor_socket__socket_fp3 +- id: 6649 + name: Socket FP4 + friendly_id: processor_socket__socket_fp4 +- id: 6650 + name: Socket FP5 + friendly_id: processor_socket__socket_fp5 +- id: 6651 + name: Socket G2 + friendly_id: processor_socket__socket_g2 +- id: 6652 + name: Socket G3 + friendly_id: processor_socket__socket_g3 +- id: 6653 + name: Socket G34 + friendly_id: processor_socket__socket_g34 +- id: 6654 + name: Socket M (mPGA478MT) + friendly_id: processor_socket__socket_m_mpga478mt +- id: 6655 + name: Socket P + friendly_id: processor_socket__socket_p +- id: 6656 + name: Socket S1 + friendly_id: processor_socket__socket_s1 +- id: 6657 + name: Socket SP3 + friendly_id: processor_socket__socket_sp3 +- id: 6658 + name: Socket sTRX4 + friendly_id: processor_socket__socket_strx4 +- id: 6659 + name: Socket sWRX8 + friendly_id: processor_socket__socket_swrx8 +- id: 6660 + name: Socket TR4 + friendly_id: processor_socket__socket_tr4 +- id: 6661 + name: Socket TRX4 + friendly_id: processor_socket__socket_trx4 +- id: 6662 + name: Other + friendly_id: processor_socket__other +- id: 6663 + name: eSATA + friendly_id: storage_drive_interfaces_supported__esata +- id: 6664 + name: FCAL + friendly_id: storage_drive_interfaces_supported__fcal +- id: 6665 + name: HSDL + friendly_id: storage_drive_interfaces_supported__hsdl +- id: 6666 + name: IDE + friendly_id: storage_drive_interfaces_supported__ide +- id: 6667 + name: M.2 + friendly_id: storage_drive_interfaces_supported__m_2 +- id: 6668 + name: Micro SATA + friendly_id: storage_drive_interfaces_supported__micro_sata +- id: 6669 + name: Micro SATA II + friendly_id: storage_drive_interfaces_supported__micro_sata_ii +- id: 6670 + name: Micro SATA III + friendly_id: storage_drive_interfaces_supported__micro_sata_iii +- id: 6671 + name: Micro serial ATA + friendly_id: storage_drive_interfaces_supported__micro_serial_ata +- id: 6672 + name: Micro serial ATA II + friendly_id: storage_drive_interfaces_supported__micro_serial_ata_ii +- id: 6673 + name: Micro serial ATA III + friendly_id: storage_drive_interfaces_supported__micro_serial_ata_iii +- id: 6674 + name: Mini PCI express + friendly_id: storage_drive_interfaces_supported__mini_pci_express +- id: 6675 + name: Mini ZIF + friendly_id: storage_drive_interfaces_supported__mini_zif +- id: 6676 + name: mSATA + friendly_id: storage_drive_interfaces_supported__msata +- id: 6677 + name: NVMe + friendly_id: storage_drive_interfaces_supported__nvme +- id: 6678 + name: NVMe 3.0 + friendly_id: storage_drive_interfaces_supported__nvme_3_0 +- id: 6679 + name: Parallel ATA + friendly_id: storage_drive_interfaces_supported__parallel_ata +- id: 6680 + name: PCI express + friendly_id: storage_drive_interfaces_supported__pci_express +- id: 6681 + name: PCI express 2.0 + friendly_id: storage_drive_interfaces_supported__pci_express_2_0 +- id: 6682 + name: PCI express 3.0 + friendly_id: storage_drive_interfaces_supported__pci_express_3_0 +- id: 6683 + name: PCI express 3.1 + friendly_id: storage_drive_interfaces_supported__pci_express_3_1 +- id: 6684 + name: PCI express 4.0 + friendly_id: storage_drive_interfaces_supported__pci_express_4_0 +- id: 6685 + name: PCI express 5.0 + friendly_id: storage_drive_interfaces_supported__pci_express_5_0 +- id: 6686 + name: SAS + friendly_id: storage_drive_interfaces_supported__sas +- id: 6687 + name: SAS-2 + friendly_id: storage_drive_interfaces_supported__sas_2 +- id: 6688 + name: SAS-3 + friendly_id: storage_drive_interfaces_supported__sas_3 +- id: 6689 + name: SAS-4 + friendly_id: storage_drive_interfaces_supported__sas_4 +- id: 6690 + name: SATA + friendly_id: storage_drive_interfaces_supported__sata +- id: 6691 + name: SATA II + friendly_id: storage_drive_interfaces_supported__sata_ii +- id: 6692 + name: SATA III + friendly_id: storage_drive_interfaces_supported__sata_iii +- id: 6693 + name: Serial ATA + friendly_id: storage_drive_interfaces_supported__serial_ata +- id: 6694 + name: Serial ATA II + friendly_id: storage_drive_interfaces_supported__serial_ata_ii +- id: 6695 + name: Serial ATA III + friendly_id: storage_drive_interfaces_supported__serial_ata_iii +- id: 6696 + name: Serial attached SCSI + friendly_id: storage_drive_interfaces_supported__serial_attached_scsi +- id: 6697 + name: Ultra M.2 + friendly_id: storage_drive_interfaces_supported__ultra_m_2 +- id: 6698 + name: ZIF + friendly_id: storage_drive_interfaces_supported__zif +- id: 6699 + name: Other + friendly_id: storage_drive_interfaces_supported__other +- id: 6700 + name: 802.11a + friendly_id: wi_fi_standard__802_11a +- id: 6701 + name: 802.11ac + friendly_id: wi_fi_standard__802_11ac +- id: 6702 + name: 802.11ax + friendly_id: wi_fi_standard__802_11ax +- id: 6703 + name: 802.11b + friendly_id: wi_fi_standard__802_11b +- id: 6704 + name: 802.11g + friendly_id: wi_fi_standard__802_11g +- id: 6705 + name: 802.11n + friendly_id: wi_fi_standard__802_11n +- id: 6706 + name: Fixed + friendly_id: radio_case_design__fixed +- id: 6707 + name: Swivel + friendly_id: radio_case_design__swivel +- id: 6708 + name: Other + friendly_id: radio_case_design__other +- id: 6709 + name: Corded + friendly_id: handset_type__corded +- id: 6710 + name: Cordless + friendly_id: handset_type__cordless +- id: 6711 + name: Business + friendly_id: telephone_style__business +- id: 6712 + name: Candlestick + friendly_id: telephone_style__candlestick +- id: 6713 + name: Novelty + friendly_id: telephone_style__novelty +- id: 6714 + name: Standard + friendly_id: telephone_style__standard +- id: 6715 + name: Trimline + friendly_id: telephone_style__trimline +- id: 6716 + name: Vintage + friendly_id: telephone_style__vintage +- id: 6717 + name: Wall-mountable + friendly_id: telephone_style__wall_mountable +- id: 6718 + name: Finger grip + friendly_id: case_type__finger_grip +- id: 6719 + name: Interchangeable loop + friendly_id: case_type__interchangeable_loop +- id: 6720 + name: BPA-free + friendly_id: certifications_standards__bpa_free +- id: 6721 + name: CE certified + friendly_id: certifications_standards__ce_certified +- id: 6722 + name: Other + friendly_id: certifications_standards__other +- id: 6723 + name: Both sides + friendly_id: hand_side__both_sides +- id: 6724 + name: Left + friendly_id: hand_side__left +- id: 6725 + name: Right + friendly_id: hand_side__right +- id: 6726 + name: eSIM + friendly_id: sim_card_type__esim +- id: 6727 + name: Micro SIM + friendly_id: sim_card_type__micro_sim +- id: 6728 + name: Nano SIM + friendly_id: sim_card_type__nano_sim +- id: 6729 + name: Standard SIM + friendly_id: sim_card_type__standard_sim +- id: 6730 + name: Alkaline + friendly_id: battery_technology__alkaline +- id: 6731 + name: Gel cell + friendly_id: battery_technology__gel_cell +- id: 6732 + name: Lead-calcium (Pb-Ca) + friendly_id: battery_technology__lead_calcium_pb_ca +- id: 6733 + name: Lithium + friendly_id: battery_technology__lithium +- id: 6734 + name: Lithium cobalt oxide (LiCoO2) + friendly_id: battery_technology__lithium_cobalt_oxide_licoo2 +- id: 6735 + name: Lithium imide (Li2NH) + friendly_id: battery_technology__lithium_imide_li2nh +- id: 6736 + name: Lithium iron phosphate (LiFePO4) + friendly_id: battery_technology__lithium_iron_phosphate_lifepo4 +- id: 6737 + name: Lithium nickel cobalt aluminum oxide (LiNCA) + friendly_id: battery_technology__lithium_nickel_cobalt_aluminum_oxide_linca +- id: 6738 + name: Lithium nickel manganese cobalt oxide (LiNMC) + friendly_id: battery_technology__lithium_nickel_manganese_cobalt_oxide_linmc +- id: 6739 + name: Lithium polymer (LiPo) + friendly_id: battery_technology__lithium_polymer_lipo +- id: 6740 + name: Lithium thionyl chloride (LiSOCl2) + friendly_id: battery_technology__lithium_thionyl_chloride_lisocl2 +- id: 6741 + name: Lithium-ion (Li-ion) + friendly_id: battery_technology__lithium_ion_li_ion +- id: 6742 + name: Lithium-ion high density (LiHD) + friendly_id: battery_technology__lithium_ion_high_density_lihd +- id: 6743 + name: Lithium-manganese dioxide (LiMnO2) + friendly_id: battery_technology__lithium_manganese_dioxide_limno2 +- id: 6744 + name: Nickel-cadmium (NiCd) + friendly_id: battery_technology__nickel_cadmium_nicd +- id: 6745 + name: Nickel-metal hydride (NiMH) + friendly_id: battery_technology__nickel_metal_hydride_nimh +- id: 6746 + name: Nickel-oxyhydroxide (NiOx) + friendly_id: battery_technology__nickel_oxyhydroxide_niox +- id: 6747 + name: Nickel-zinc (NiZn) + friendly_id: battery_technology__nickel_zinc_nizn +- id: 6748 + name: Polymer + friendly_id: battery_technology__polymer +- id: 6749 + name: Sealed lead acid + friendly_id: battery_technology__sealed_lead_acid +- id: 6750 + name: Silver-oxide (Ag2O) + friendly_id: battery_technology__silver_oxide_ag2o +- id: 6751 + name: VRLA + friendly_id: battery_technology__vrla +- id: 6752 + name: Zinc chloride + friendly_id: battery_technology__zinc_chloride +- id: 6753 + name: Zinc-air + friendly_id: battery_technology__zinc_air +- id: 6754 + name: Zinc-carbon + friendly_id: battery_technology__zinc_carbon +- id: 6755 + name: Zinc-manganese dioxide (Zn/MnO2) + friendly_id: battery_technology__zinc_manganese_dioxide_zn_mno2 +- id: 6756 + name: Other + friendly_id: battery_technology__other +- id: 6757 + name: New + friendly_id: cosmetic_condition__new +- id: 6758 + name: Opened-never used + friendly_id: cosmetic_condition__opened_never_used +- id: 6759 + name: Refurbished-certified + friendly_id: cosmetic_condition__refurbished_certified +- id: 6760 + name: Refurbished-excellent + friendly_id: cosmetic_condition__refurbished_excellent +- id: 6761 + name: Refurbished-fair + friendly_id: cosmetic_condition__refurbished_fair +- id: 6762 + name: Refurbished-good + friendly_id: cosmetic_condition__refurbished_good +- id: 6763 + name: Refurbished-very good + friendly_id: cosmetic_condition__refurbished_very_good +- id: 6764 + name: 3G + friendly_id: data_network__3g +- id: 6765 + name: 4G + friendly_id: data_network__4g +- id: 6766 + name: 5G + friendly_id: data_network__5g +- id: 6767 + name: LTE + friendly_id: data_network__lte +- id: 6768 + name: Fire OS + friendly_id: operating_system__fire_os +- id: 6769 + name: FreeBSD + friendly_id: operating_system__freebsd +- id: 6770 + name: iOS + friendly_id: operating_system__ios +- id: 6771 + name: tvOS + friendly_id: operating_system__tvos +- id: 6772 + name: Unix + friendly_id: operating_system__unix +- id: 6773 + name: watchOS + friendly_id: operating_system__watchos +- id: 6774 + name: CF + friendly_id: removable_storage_formats_supported__cf +- id: 6775 + name: CF Type II + friendly_id: removable_storage_formats_supported__cf_type_ii +- id: 6776 + name: CF+ + friendly_id: removable_storage_formats_supported__cf+ +- id: 6777 + name: CFast + friendly_id: removable_storage_formats_supported__cfast +- id: 6778 + name: CFast 2.0 + friendly_id: removable_storage_formats_supported__cfast_2_0 +- id: 6779 + name: CFexpress + friendly_id: removable_storage_formats_supported__cfexpress +- id: 6780 + name: DV RS-MMC + friendly_id: removable_storage_formats_supported__dv_rs_mmc +- id: 6781 + name: EXD + friendly_id: removable_storage_formats_supported__exd +- id: 6782 + name: expressP2 + friendly_id: removable_storage_formats_supported__expressp2 +- id: 6783 + name: Eye-Fi + friendly_id: removable_storage_formats_supported__eye_fi +- id: 6784 + name: FLU + friendly_id: removable_storage_formats_supported__flu +- id: 6785 + name: HC MMC+ + friendly_id: removable_storage_formats_supported__hc_mmc+ +- id: 6786 + name: Microdrive + friendly_id: removable_storage_formats_supported__microdrive +- id: 6787 + name: MicroP2 + friendly_id: removable_storage_formats_supported__microp2 +- id: 6788 + name: microSD + friendly_id: removable_storage_formats_supported__microsd +- id: 6789 + name: microSDHC + friendly_id: removable_storage_formats_supported__microsdhc +- id: 6790 + name: microSDXC + friendly_id: removable_storage_formats_supported__microsdxc +- id: 6791 + name: MiniMMC + friendly_id: removable_storage_formats_supported__minimmc +- id: 6792 + name: MiniSD + friendly_id: removable_storage_formats_supported__minisd +- id: 6793 + name: MiniSDHC + friendly_id: removable_storage_formats_supported__minisdhc +- id: 6794 + name: MiniSDXC + friendly_id: removable_storage_formats_supported__minisdxc +- id: 6795 + name: MMC + friendly_id: removable_storage_formats_supported__mmc +- id: 6796 + name: MMC micro + friendly_id: removable_storage_formats_supported__mmc_micro +- id: 6797 + name: MMC mobile + friendly_id: removable_storage_formats_supported__mmc_mobile +- id: 6798 + name: MMC plus + friendly_id: removable_storage_formats_supported__mmc_plus +- id: 6799 + name: MMC+ + friendly_id: removable_storage_formats_supported__mmc+ +- id: 6800 + name: MS + friendly_id: removable_storage_formats_supported__ms +- id: 6801 + name: MS duo + friendly_id: removable_storage_formats_supported__ms_duo +- id: 6802 + name: MS micro (M2) + friendly_id: removable_storage_formats_supported__ms_micro_m2 +- id: 6803 + name: MS PRO + friendly_id: removable_storage_formats_supported__ms_pro +- id: 6804 + name: MS PRO duo + friendly_id: removable_storage_formats_supported__ms_pro_duo +- id: 6805 + name: MS PRO duo HS + friendly_id: removable_storage_formats_supported__ms_pro_duo_hs +- id: 6806 + name: MS PRO duo mark 2 + friendly_id: removable_storage_formats_supported__ms_pro_duo_mark_2 +- id: 6807 + name: MS Pro-HG + friendly_id: removable_storage_formats_supported__ms_pro_hg +- id: 6808 + name: MS Pro-HG duo + friendly_id: removable_storage_formats_supported__ms_pro_hg_duo +- id: 6809 + name: MS Pro-HG duo HX + friendly_id: removable_storage_formats_supported__ms_pro_hg_duo_hx +- id: 6810 + name: MS XC-HG duo + friendly_id: removable_storage_formats_supported__ms_xc_hg_duo +- id: 6811 + name: MSXC + friendly_id: removable_storage_formats_supported__msxc +- id: 6812 + name: Nano memory (NM) + friendly_id: removable_storage_formats_supported__nano_memory_nm +- id: 6813 + name: P2 + friendly_id: removable_storage_formats_supported__p2 +- id: 6814 + name: PSVita + friendly_id: removable_storage_formats_supported__psvita +- id: 6815 + name: RS-MMC + friendly_id: removable_storage_formats_supported__rs_mmc +- id: 6816 + name: SD + friendly_id: removable_storage_formats_supported__sd +- id: 6817 + name: SDHC + friendly_id: removable_storage_formats_supported__sdhc +- id: 6818 + name: SDIO + friendly_id: removable_storage_formats_supported__sdio +- id: 6819 + name: SDXC + friendly_id: removable_storage_formats_supported__sdxc +- id: 6820 + name: Smart media xD + friendly_id: removable_storage_formats_supported__smart_media_xd +- id: 6821 + name: Smartmedia + friendly_id: removable_storage_formats_supported__smartmedia +- id: 6822 + name: SRMemory + friendly_id: removable_storage_formats_supported__srmemory +- id: 6823 + name: SxS + friendly_id: removable_storage_formats_supported__sxs +- id: 6824 + name: SxS Pro + friendly_id: removable_storage_formats_supported__sxs_pro +- id: 6825 + name: SxS-1 + friendly_id: removable_storage_formats_supported__sxs_1 +- id: 6826 + name: USB flash drive + friendly_id: removable_storage_formats_supported__usb_flash_drive +- id: 6827 + name: xD + friendly_id: removable_storage_formats_supported__xd +- id: 6828 + name: xD-picture card + friendly_id: removable_storage_formats_supported__xd_picture_card +- id: 6829 + name: XQD + friendly_id: removable_storage_formats_supported__xqd +- id: 6830 + name: Other + friendly_id: removable_storage_formats_supported__other +- id: 6831 + name: Single + friendly_id: sim_card_capability__single +- id: 6832 + name: Dual + friendly_id: sim_card_capability__dual +- id: 6833 + name: Hybrid dual + friendly_id: sim_card_capability__hybrid_dual +- id: 6834 + name: Triple + friendly_id: sim_card_capability__triple +- id: 6835 + name: Embedded + friendly_id: sim_card_capability__embedded +- id: 6836 + name: Contract + friendly_id: subscription_type__contract +- id: 6837 + name: Pay as you go + friendly_id: subscription_type__pay_as_you_go +- id: 6838 + name: Post-paid + friendly_id: subscription_type__post_paid +- id: 6839 + name: Pre-paid + friendly_id: subscription_type__pre_paid +- id: 6840 + name: Satellite + friendly_id: subscription_type__satellite +- id: 6841 + name: Unlocked + friendly_id: subscription_type__unlocked +- id: 6842 + name: Africa + friendly_id: satellite_coverage_area__africa +- id: 6843 + name: Asia + friendly_id: satellite_coverage_area__asia +- id: 6844 + name: Australia + friendly_id: satellite_coverage_area__australia +- id: 6845 + name: Central Europe + friendly_id: satellite_coverage_area__central_europe +- id: 6846 + name: East Africa + friendly_id: satellite_coverage_area__east_africa +- id: 6847 + name: Eastern Europe + friendly_id: satellite_coverage_area__eastern_europe +- id: 6848 + name: Europe + friendly_id: satellite_coverage_area__europe +- id: 6849 + name: Middle Africa + friendly_id: satellite_coverage_area__middle_africa +- id: 6850 + name: North Africa + friendly_id: satellite_coverage_area__north_africa +- id: 6851 + name: North America + friendly_id: satellite_coverage_area__north_america +- id: 6852 + name: South America + friendly_id: satellite_coverage_area__south_america +- id: 6853 + name: South East Asia + friendly_id: satellite_coverage_area__south_east_asia +- id: 6854 + name: Southern Africa + friendly_id: satellite_coverage_area__southern_africa +- id: 6855 + name: Western Africa + friendly_id: satellite_coverage_area__western_africa +- id: 6856 + name: Western Europe + friendly_id: satellite_coverage_area__western_europe +- id: 6857 + name: Globalstar + friendly_id: satellite_network_type__globalstar +- id: 6858 + name: Inmarsat + friendly_id: satellite_network_type__inmarsat +- id: 6859 + name: Iridium + friendly_id: satellite_network_type__iridium +- id: 6860 + name: Thuraya + friendly_id: satellite_network_type__thuraya +- id: 6861 + name: Female + friendly_id: connector_gender__female +- id: 6862 + name: Male + friendly_id: connector_gender__male +- id: 6863 + name: AM + friendly_id: modulation_method__am +- id: 6864 + name: FM + friendly_id: modulation_method__fm +- id: 6865 + name: GFSK + friendly_id: modulation_method__gfsk +- id: 6866 + name: OFDM + friendly_id: modulation_method__ofdm +- id: 6867 + name: PAM + friendly_id: modulation_method__pam +- id: 6868 + name: PCM + friendly_id: modulation_method__pcm +- id: 6869 + name: PM + friendly_id: modulation_method__pm +- id: 6870 + name: PPM + friendly_id: modulation_method__ppm +- id: 6871 + name: PWM + friendly_id: modulation_method__pwm +- id: 6872 + name: QAM + friendly_id: modulation_method__qam +- id: 6873 + name: Audio + friendly_id: splitter_use__audio +- id: 6874 + name: Coaxial + friendly_id: splitter_use__coaxial +- id: 6875 + name: DVI + friendly_id: splitter_use__dvi +- id: 6876 + name: Ethernet + friendly_id: splitter_use__ethernet +- id: 6877 + name: HDMI + friendly_id: splitter_use__hdmi +- id: 6878 + name: Power + friendly_id: splitter_use__power +- id: 6879 + name: USB + friendly_id: splitter_use__usb +- id: 6880 + name: VGA + friendly_id: splitter_use__vga +- id: 6881 + name: Video + friendly_id: splitter_use__video +- id: 6882 + name: A+++ + friendly_id: energy_efficiency_class__a+++ +- id: 6883 + name: A++ + friendly_id: energy_efficiency_class__a++ +- id: 6884 + name: A+ + friendly_id: energy_efficiency_class__a+ +- id: 6885 + name: A + friendly_id: energy_efficiency_class__a +- id: 6886 + name: B + friendly_id: energy_efficiency_class__b +- id: 6887 + name: C + friendly_id: energy_efficiency_class__c +- id: 6888 + name: D + friendly_id: energy_efficiency_class__d +- id: 6889 + name: E + friendly_id: energy_efficiency_class__e +- id: 6890 + name: F + friendly_id: energy_efficiency_class__f +- id: 6891 + name: G + friendly_id: energy_efficiency_class__g +- id: 6892 + name: AMD Ryzen + friendly_id: processor_family__amd_ryzen +- id: 6893 + name: Apple M1 + friendly_id: processor_family__apple_m1 +- id: 6894 + name: ARM Cortex + friendly_id: processor_family__arm_cortex +- id: 6895 + name: IBM power + friendly_id: processor_family__ibm_power +- id: 6896 + name: Intel celeron + friendly_id: processor_family__intel_celeron +- id: 6897 + name: Intel core i3 + friendly_id: processor_family__intel_core_i3 +- id: 6898 + name: Intel core i5 + friendly_id: processor_family__intel_core_i5 +- id: 6899 + name: Intel core i7 + friendly_id: processor_family__intel_core_i7 +- id: 6900 + name: Intel core i9 + friendly_id: processor_family__intel_core_i9 +- id: 6901 + name: Intel pentium + friendly_id: processor_family__intel_pentium +- id: 6902 + name: Intel xeon + friendly_id: processor_family__intel_xeon +- id: 6903 + name: MediaTek helio + friendly_id: processor_family__mediatek_helio +- id: 6904 + name: Nvidia tegra + friendly_id: processor_family__nvidia_tegra +- id: 6905 + name: Qualcomm snapdragon + friendly_id: processor_family__qualcomm_snapdragon +- id: 6906 + name: Samsung exynos + friendly_id: processor_family__samsung_exynos +- id: 6907 + name: Other + friendly_id: processor_family__other +- id: 6908 + name: All-in-one + friendly_id: chassis_type__all_in_one +- id: 6909 + name: Blade server + friendly_id: chassis_type__blade_server +- id: 6910 + name: Compact + friendly_id: chassis_type__compact +- id: 6911 + name: Cube + friendly_id: chassis_type__cube +- id: 6912 + name: Desktop + friendly_id: chassis_type__desktop +- id: 6913 + name: Full tower + friendly_id: chassis_type__full_tower +- id: 6914 + name: JBOD + friendly_id: chassis_type__jbod +- id: 6915 + name: Micro ATX + friendly_id: chassis_type__micro_atx +- id: 6916 + name: Mid tower + friendly_id: chassis_type__mid_tower +- id: 6917 + name: Mini tower + friendly_id: chassis_type__mini_tower +- id: 6918 + name: Modular + friendly_id: chassis_type__modular +- id: 6919 + name: NAS + friendly_id: chassis_type__nas +- id: 6920 + name: Open frame + friendly_id: chassis_type__open_frame +- id: 6921 + name: Pedestal + friendly_id: chassis_type__pedestal +- id: 6922 + name: Rack mount + friendly_id: chassis_type__rack_mount +- id: 6923 + name: SAN + friendly_id: chassis_type__san +- id: 6924 + name: SFF + friendly_id: chassis_type__sff +- id: 6925 + name: Storage enclosure + friendly_id: chassis_type__storage_enclosure +- id: 6926 + name: Tower + friendly_id: chassis_type__tower +- id: 6927 + name: Wall-mounted + friendly_id: chassis_type__wall_mounted +- id: 6928 + name: All-in-one + friendly_id: computer_form__all_in_one +- id: 6929 + name: Blade server + friendly_id: computer_form__blade_server +- id: 6930 + name: Chromebook + friendly_id: computer_form__chromebook +- id: 6931 + name: Cloud client + friendly_id: computer_form__cloud_client +- id: 6932 + name: Compact + friendly_id: computer_form__compact +- id: 6933 + name: Convertible + friendly_id: computer_form__convertible +- id: 6934 + name: JBOD + friendly_id: computer_form__jbod +- id: 6935 + name: NAS + friendly_id: computer_form__nas +- id: 6936 + name: Netbook + friendly_id: computer_form__netbook +- id: 6937 + name: Notebook + friendly_id: computer_form__notebook +- id: 6938 + name: Remote desktop client + friendly_id: computer_form__remote_desktop_client +- id: 6939 + name: SAN + friendly_id: computer_form__san +- id: 6940 + name: Storage enclosure + friendly_id: computer_form__storage_enclosure +- id: 6941 + name: Ultrabook + friendly_id: computer_form__ultrabook +- id: 6942 + name: USF + friendly_id: computer_form__usf +- id: 6943 + name: VDI client + friendly_id: computer_form__vdi_client +- id: 6944 + name: Workstation + friendly_id: computer_form__workstation +- id: 6945 + name: Zero client + friendly_id: computer_form__zero_client +- id: 6946 + name: Active + friendly_id: cooling_technology__active +- id: 6947 + name: Air + friendly_id: cooling_technology__air +- id: 6948 + name: Blower + friendly_id: cooling_technology__blower +- id: 6949 + name: Closed-loop + friendly_id: cooling_technology__closed_loop +- id: 6950 + name: Direct-to-die + friendly_id: cooling_technology__direct_to_die +- id: 6951 + name: Dual-fan + friendly_id: cooling_technology__dual_fan +- id: 6952 + name: Fan + friendly_id: cooling_technology__fan +- id: 6953 + name: Heat pipe + friendly_id: cooling_technology__heat_pipe +- id: 6954 + name: Heat sink + friendly_id: cooling_technology__heat_sink +- id: 6955 + name: Hybrid + friendly_id: cooling_technology__hybrid +- id: 6956 + name: Liquid + friendly_id: cooling_technology__liquid +- id: 6957 + name: Micro-fin + friendly_id: cooling_technology__micro_fin +- id: 6958 + name: Open-loop + friendly_id: cooling_technology__open_loop +- id: 6959 + name: Passive + friendly_id: cooling_technology__passive +- id: 6960 + name: Peltier + friendly_id: cooling_technology__peltier +- id: 6961 + name: Phase-change + friendly_id: cooling_technology__phase_change +- id: 6962 + name: Radiator + friendly_id: cooling_technology__radiator +- id: 6963 + name: Tower + friendly_id: cooling_technology__tower +- id: 6964 + name: Vapor chamber + friendly_id: cooling_technology__vapor_chamber +- id: 6965 + name: Water + friendly_id: cooling_technology__water +- id: 6966 + name: Dedicated + friendly_id: graphics_card_type__dedicated +- id: 6967 + name: Integrated + friendly_id: graphics_card_type__integrated +- id: 6968 + name: Professional + friendly_id: graphics_card_type__professional +- id: 6969 + name: None + friendly_id: graphics_card_type__none +- id: 6970 + name: 2.5-inch + friendly_id: internal_drive_form_factor_supported__2_5_inch +- id: 6971 + name: 3.5-inch + friendly_id: internal_drive_form_factor_supported__3_5_inch +- id: 6972 + name: 5.25-inch + friendly_id: internal_drive_form_factor_supported__5_25_inch +- id: 6973 + name: DIMM + friendly_id: memory_form_factor__dimm +- id: 6974 + name: Micro-DIMM + friendly_id: memory_form_factor__micro_dimm +- id: 6975 + name: RIMM + friendly_id: memory_form_factor__rimm +- id: 6976 + name: SIMM + friendly_id: memory_form_factor__simm +- id: 6977 + name: SO-DIMM + friendly_id: memory_form_factor__so_dimm +- id: 6978 + name: Cloud storage + friendly_id: storage_types_supported__cloud_storage +- id: 6979 + name: eMMC + friendly_id: storage_types_supported__emmc +- id: 6980 + name: Hard disk drive (HDD) + friendly_id: storage_types_supported__hard_disk_drive_hdd +- id: 6981 + name: Hybrid drive (HDD/SSD) + friendly_id: storage_types_supported__hybrid_drive_hdd_ssd +- id: 6982 + name: M.2 SSD + friendly_id: storage_types_supported__m_2_ssd +- id: 6983 + name: NAS + friendly_id: storage_types_supported__nas +- id: 6984 + name: Optical drive + friendly_id: storage_types_supported__optical_drive +- id: 6985 + name: PCIe/NVMe SSD + friendly_id: storage_types_supported__pcie_nvme_ssd +- id: 6986 + name: RAID + friendly_id: storage_types_supported__raid +- id: 6987 + name: SATA SSD + friendly_id: storage_types_supported__sata_ssd +- id: 6988 + name: Solid-state drive (SSD) + friendly_id: storage_types_supported__solid_state_drive_ssd +- id: 6989 + name: Blu-ray disc + friendly_id: optical_drive_type__blu_ray_disc +- id: 6990 + name: Blu-ray disc RE + friendly_id: optical_drive_type__blu_ray_disc_re +- id: 6991 + name: CD-ROM + friendly_id: optical_drive_type__cd_rom +- id: 6992 + name: CD-RW + friendly_id: optical_drive_type__cd_rw +- id: 6993 + name: Combo + friendly_id: optical_drive_type__combo +- id: 6994 + name: DVD-ROM + friendly_id: optical_drive_type__dvd_rom +- id: 6995 + name: DVD-RW + friendly_id: optical_drive_type__dvd_rw +- id: 6996 + name: DVD+RW + friendly_id: optical_drive_type__dvd+rw +- id: 6997 + name: Super multi + friendly_id: optical_drive_type__super_multi +- id: 6998 + name: E-ink + friendly_id: e_reader_display_technology__e_ink +- id: 6999 + name: E-ink Carta + friendly_id: e_reader_display_technology__e_ink_carta +- id: 7000 + name: E-ink Pearl + friendly_id: e_reader_display_technology__e_ink_pearl +- id: 7001 + name: E-ink Triton + friendly_id: e_reader_display_technology__e_ink_triton +- id: 7002 + name: LCD + friendly_id: e_reader_display_technology__lcd +- id: 7003 + name: OLED + friendly_id: e_reader_display_technology__oled +- id: 7004 + name: Other + friendly_id: e_reader_display_technology__other +- id: 7005 + name: AZW + friendly_id: e_book_formats_supported__azw +- id: 7006 + name: AZW3 + friendly_id: e_book_formats_supported__azw3 +- id: 7007 + name: CBZ/CBR + friendly_id: e_book_formats_supported__cbz_cbr +- id: 7008 + name: DJVU + friendly_id: e_book_formats_supported__djvu +- id: 7009 + name: DOC/DOCX + friendly_id: e_book_formats_supported__doc_docx +- id: 7010 + name: EPUB + friendly_id: e_book_formats_supported__epub +- id: 7011 + name: HTML + friendly_id: e_book_formats_supported__html +- id: 7012 + name: MOBI + friendly_id: e_book_formats_supported__mobi +- id: 7013 + name: PDF + friendly_id: e_book_formats_supported__pdf +- id: 7014 + name: RTF + friendly_id: e_book_formats_supported__rtf +- id: 7015 + name: TXT + friendly_id: e_book_formats_supported__txt +- id: 7016 + name: Backlit + friendly_id: keyboard_type__backlit +- id: 7017 + name: Butterfly + friendly_id: keyboard_type__butterfly +- id: 7018 + name: Compact + friendly_id: keyboard_type__compact +- id: 7019 + name: Detachable + friendly_id: keyboard_type__detachable +- id: 7020 + name: Island-style + friendly_id: keyboard_type__island_style +- id: 7021 + name: Mechanical + friendly_id: keyboard_type__mechanical +- id: 7022 + name: Scissor switch + friendly_id: keyboard_type__scissor_switch +- id: 7023 + name: Standard + friendly_id: keyboard_type__standard +- id: 7024 + name: Touchscreen + friendly_id: keyboard_type__touchscreen +- id: 7025 + name: Blast extreme + friendly_id: vdi_protocol_support__blast_extreme +- id: 7026 + name: ICA/HDX + friendly_id: vdi_protocol_support__ica_hdx +- id: 7027 + name: PCoIP + friendly_id: vdi_protocol_support__pcoip +- id: 7028 + name: RDP + friendly_id: vdi_protocol_support__rdp +- id: 7029 + name: VDI + friendly_id: vdi_protocol_support__vdi +- id: 7030 + name: Dual + friendly_id: touch_capabilities__dual +- id: 7031 + name: Multi + friendly_id: touch_capabilities__multi +- id: 7032 + name: Single + friendly_id: touch_capabilities__single +- id: 7033 + name: Capacitive + friendly_id: touchscreen_technology__capacitive +- id: 7034 + name: In-cell + friendly_id: touchscreen_technology__in_cell +- id: 7035 + name: Infrared + friendly_id: touchscreen_technology__infrared +- id: 7036 + name: On-cell + friendly_id: touchscreen_technology__on_cell +- id: 7037 + name: Optical + friendly_id: touchscreen_technology__optical +- id: 7038 + name: Optical imaging + friendly_id: touchscreen_technology__optical_imaging +- id: 7039 + name: Other + friendly_id: touchscreen_technology__other +- id: 7040 + name: PCAP + friendly_id: touchscreen_technology__pcap +- id: 7041 + name: Resistive + friendly_id: touchscreen_technology__resistive +- id: 7042 + name: SAW + friendly_id: touchscreen_technology__saw +- id: 7043 + name: 0° to 180° + friendly_id: angles_supported__0_to_180 +- id: 7044 + name: 180° + friendly_id: angles_supported__180 +- id: 7045 + name: 270° + friendly_id: angles_supported__270 +- id: 7046 + name: 30° to 75° + friendly_id: angles_supported__30_to_75 +- id: 7047 + name: 360° + friendly_id: angles_supported__360 +- id: 7048 + name: 45° to 90° + friendly_id: angles_supported__45_to_90 +- id: 7049 + name: 90° + friendly_id: angles_supported__90 +- id: 7050 + name: Adjustable + friendly_id: angles_supported__adjustable +- id: 7051 + name: Automatic + friendly_id: rotator_control_technology__automatic +- id: 7052 + name: Computer + friendly_id: rotator_control_technology__computer +- id: 7053 + name: Digital + friendly_id: rotator_control_technology__digital +- id: 7054 + name: Manual + friendly_id: rotator_control_technology__manual +- id: 7055 + name: Motorized + friendly_id: rotator_control_technology__motorized +- id: 7056 + name: Programmable + friendly_id: rotator_control_technology__programmable +- id: 7057 + name: Remote + friendly_id: rotator_control_technology__remote +- id: 7058 + name: Smartphone app + friendly_id: rotator_control_technology__smartphone_app +- id: 7059 + name: Wi-Fi + friendly_id: rotator_control_technology__wi_fi +- id: 7060 + name: Wired + friendly_id: rotator_control_technology__wired +- id: 7061 + name: Dual + friendly_id: lnb_output__dual +- id: 7062 + name: Multi-switch + friendly_id: lnb_output__multi_switch +- id: 7063 + name: Octo + friendly_id: lnb_output__octo +- id: 7064 + name: Quad + friendly_id: lnb_output__quad +- id: 7065 + name: Single + friendly_id: lnb_output__single +- id: 7066 + name: 4K + friendly_id: lnb_technology__4k +- id: 7067 + name: C-band + friendly_id: lnb_technology__c_band +- id: 7068 + name: Circular polarization + friendly_id: lnb_technology__circular_polarization +- id: 7069 + name: DiSEqC + friendly_id: lnb_technology__diseqc +- id: 7070 + name: Dual polarization + friendly_id: lnb_technology__dual_polarization +- id: 7071 + name: HD + friendly_id: lnb_technology__hd +- id: 7072 + name: High gain + friendly_id: lnb_technology__high_gain +- id: 7073 + name: Hybrid + friendly_id: lnb_technology__hybrid +- id: 7074 + name: Ka-band + friendly_id: lnb_technology__ka_band +- id: 7075 + name: Ku-band + friendly_id: lnb_technology__ku_band +- id: 7076 + name: Low noise + friendly_id: lnb_technology__low_noise +- id: 7077 + name: Monoblock + friendly_id: lnb_technology__monoblock +- id: 7078 + name: SCR + friendly_id: lnb_technology__scr +- id: 7079 + name: Standard + friendly_id: lnb_technology__standard +- id: 7080 + name: Unicable + friendly_id: lnb_technology__unicable +- id: 7081 + name: Universal + friendly_id: lnb_technology__universal +- id: 7082 + name: Wideband + friendly_id: lnb_technology__wideband +- id: 7083 + name: Circular + friendly_id: polarization__circular +- id: 7084 + name: Elliptical + friendly_id: polarization__elliptical +- id: 7085 + name: Horizontal + friendly_id: polarization__horizontal +- id: 7086 + name: Left-hand circular + friendly_id: polarization__left_hand_circular +- id: 7087 + name: Linear + friendly_id: polarization__linear +- id: 7088 + name: Right hand circular + friendly_id: polarization__right_hand_circular +- id: 7089 + name: Vertical + friendly_id: polarization__vertical +- id: 7090 + name: HDCP 1.4 + friendly_id: compatible_hdcp__hdcp_1_4 +- id: 7091 + name: HDCP 2.2 + friendly_id: compatible_hdcp__hdcp_2_2 +- id: 7092 + name: HDCP 2.3 + friendly_id: compatible_hdcp__hdcp_2_3 +- id: 7093 + name: Not compatible + friendly_id: compatible_hdcp__not_compatible +- id: 7094 + name: Automatic + friendly_id: switching_method__automatic +- id: 7095 + name: HDMI CEC + friendly_id: switching_method__hdmi_cec +- id: 7096 + name: Keyboard hotkey + friendly_id: switching_method__keyboard_hotkey +- id: 7097 + name: Manual + friendly_id: switching_method__manual +- id: 7098 + name: Priority + friendly_id: switching_method__priority +- id: 7099 + name: Push-button + friendly_id: switching_method__push_button +- id: 7100 + name: Remote control + friendly_id: switching_method__remote_control +- id: 7101 + name: Rotary + friendly_id: switching_method__rotary +- id: 7102 + name: Software-controlled + friendly_id: switching_method__software_controlled +- id: 7103 + name: BD-R + friendly_id: media_format__bd_r +- id: 7104 + name: BD-RE + friendly_id: media_format__bd_re +- id: 7105 + name: BD-XL + friendly_id: media_format__bd_xl +- id: 7106 + name: Betamax + friendly_id: media_format__betamax +- id: 7107 + name: CD-R + friendly_id: media_format__cd_r +- id: 7108 + name: CD-RW + friendly_id: media_format__cd_rw +- id: 7109 + name: DAT + friendly_id: media_format__dat +- id: 7110 + name: DCC + friendly_id: media_format__dcc +- id: 7111 + name: DVD-R + friendly_id: media_format__dvd_r +- id: 7112 + name: DVD-RAM + friendly_id: media_format__dvd_ram +- id: 7113 + name: DVD-RW + friendly_id: media_format__dvd_rw +- id: 7114 + name: DVD+R + friendly_id: media_format__dvd+r +- id: 7115 + name: DVD+RW + friendly_id: media_format__dvd+rw +- id: 7116 + name: Floppy disk + friendly_id: media_format__floppy_disk +- id: 7117 + name: Jaz disk + friendly_id: media_format__jaz_disk +- id: 7118 + name: VHS + friendly_id: media_format__vhs +- id: 7119 + name: Zip disk + friendly_id: media_format__zip_disk +- id: 7120 + name: Blank + friendly_id: panel_specification__blank +- id: 7121 + name: Cat5e + friendly_id: panel_specification__cat5e +- id: 7122 + name: Cat6 + friendly_id: panel_specification__cat6 +- id: 7123 + name: Cat6a + friendly_id: panel_specification__cat6a +- id: 7124 + name: Cat7 + friendly_id: panel_specification__cat7 +- id: 7125 + name: Fiber optic + friendly_id: panel_specification__fiber_optic +- id: 7126 + name: Modular + friendly_id: panel_specification__modular +- id: 7127 + name: Rack-mounted + friendly_id: panel_specification__rack_mounted +- id: 7128 + name: Wall-mounted + friendly_id: panel_specification__wall_mounted +- id: 7129 + name: 110 punch down + friendly_id: panel_termination__110_punch_down +- id: 7130 + name: Krone punch down + friendly_id: panel_termination__krone_punch_down +- id: 7131 + name: LC connector + friendly_id: panel_termination__lc_connector +- id: 7132 + name: RJ-11 + friendly_id: panel_termination__rj_11 +- id: 7133 + name: RJ-45 + friendly_id: panel_termination__rj_45 +- id: 7134 + name: SC connector + friendly_id: panel_termination__sc_connector +- id: 7135 + name: Solder + friendly_id: panel_termination__solder +- id: 7136 + name: ST connector + friendly_id: panel_termination__st_connector +- id: 7137 + name: Toolless + friendly_id: panel_termination__toolless +- id: 7138 + name: Braided (STP) + friendly_id: cable_shielding__braided_stp +- id: 7139 + name: Foil (FTP) + friendly_id: cable_shielding__foil_ftp +- id: 7140 + name: Foil & braided (SFTP) + friendly_id: cable_shielding__foil_braided_sftp +- id: 7141 + name: Overall foil (S/FTP) + friendly_id: cable_shielding__overall_foil_s_ftp +- id: 7142 + name: Unshielded (UTP) + friendly_id: cable_shielding__unshielded_utp +- id: 7143 + name: BNC + friendly_id: network_cable_interface__bnc +- id: 7144 + name: LC + friendly_id: network_cable_interface__lc +- id: 7145 + name: MPO/MTP + friendly_id: network_cable_interface__mpo_mtp +- id: 7146 + name: MT-RJ + friendly_id: network_cable_interface__mt_rj +- id: 7147 + name: RJ-11 + friendly_id: network_cable_interface__rj_11 +- id: 7148 + name: RJ-45 + friendly_id: network_cable_interface__rj_45 +- id: 7149 + name: SC + friendly_id: network_cable_interface__sc +- id: 7150 + name: ST + friendly_id: network_cable_interface__st +- id: 7151 + name: RJ-10 + friendly_id: telephone_cable_interface__rj_10 +- id: 7152 + name: RJ-11 + friendly_id: telephone_cable_interface__rj_11 +- id: 7153 + name: RJ-12 + friendly_id: telephone_cable_interface__rj_12 +- id: 7154 + name: RJ-14 + friendly_id: telephone_cable_interface__rj_14 +- id: 7155 + name: RJ-22 + friendly_id: telephone_cable_interface__rj_22 +- id: 7156 + name: RJ-25 + friendly_id: telephone_cable_interface__rj_25 +- id: 7157 + name: RJ-45 + friendly_id: telephone_cable_interface__rj_45 +- id: 7158 + name: RJ-45S + friendly_id: telephone_cable_interface__rj_45s +- id: 7159 + name: RJ-9 + friendly_id: telephone_cable_interface__rj_9 +- id: 7160 + name: Headset + friendly_id: computer_accessories_included__headset +- id: 7161 + name: Keyboard + friendly_id: computer_accessories_included__keyboard +- id: 7162 + name: Laptop bag + friendly_id: computer_accessories_included__laptop_bag +- id: 7163 + name: Monitor stand + friendly_id: computer_accessories_included__monitor_stand +- id: 7164 + name: Mouse + friendly_id: computer_accessories_included__mouse +- id: 7165 + name: Mouse pad + friendly_id: computer_accessories_included__mouse_pad +- id: 7166 + name: USB hub + friendly_id: computer_accessories_included__usb_hub +- id: 7167 + name: ATX + friendly_id: compatible_motherboard_form_factor__atx +- id: 7168 + name: Extended ATX + friendly_id: compatible_motherboard_form_factor__extended_atx +- id: 7169 + name: FlexATX + friendly_id: compatible_motherboard_form_factor__flexatx +- id: 7170 + name: Micro-ATX + friendly_id: compatible_motherboard_form_factor__micro_atx +- id: 7171 + name: Mini-DTX + friendly_id: compatible_motherboard_form_factor__mini_dtx +- id: 7172 + name: Mini-ITX + friendly_id: compatible_motherboard_form_factor__mini_itx +- id: 7173 + name: Nano-ITX + friendly_id: compatible_motherboard_form_factor__nano_itx +- id: 7174 + name: Other + friendly_id: compatible_motherboard_form_factor__other +- id: 7175 + name: 32-bit + friendly_id: instruction_set_architecture__32_bit +- id: 7176 + name: 64-bit + friendly_id: instruction_set_architecture__64_bit +- id: 7177 + name: Dodeca + friendly_id: memory_channels__dodeca +- id: 7178 + name: Dual + friendly_id: memory_channels__dual +- id: 7179 + name: Hepta + friendly_id: memory_channels__hepta +- id: 7180 + name: Hexa + friendly_id: memory_channels__hexa +- id: 7181 + name: Hexadeca + friendly_id: memory_channels__hexadeca +- id: 7182 + name: Octa + friendly_id: memory_channels__octa +- id: 7183 + name: Penta + friendly_id: memory_channels__penta +- id: 7184 + name: Quad + friendly_id: memory_channels__quad +- id: 7185 + name: Single + friendly_id: memory_channels__single +- id: 7186 + name: Tetracosa + friendly_id: memory_channels__tetracosa +- id: 7187 + name: Triple + friendly_id: memory_channels__triple +- id: 7188 + name: Deca + friendly_id: processor_cores__deca +- id: 7189 + name: Dodeca + friendly_id: processor_cores__dodeca +- id: 7190 + name: Dual + friendly_id: processor_cores__dual +- id: 7191 + name: Hexa + friendly_id: processor_cores__hexa +- id: 7192 + name: Hexadeca + friendly_id: processor_cores__hexadeca +- id: 7193 + name: Multi + friendly_id: processor_cores__multi +- id: 7194 + name: Octa + friendly_id: processor_cores__octa +- id: 7195 + name: Quad + friendly_id: processor_cores__quad +- id: 7196 + name: Single + friendly_id: processor_cores__single +- id: 7197 + name: No lock + friendly_id: lock_type__no_lock +- id: 7198 + name: Other + friendly_id: lock_type__other +- id: 7199 + name: AirPlay + friendly_id: connection_type__airplay +- id: 7200 + name: ANT + friendly_id: connection_type__ant +- id: 7201 + name: ANT+ + friendly_id: connection_type__ant+ +- id: 7202 + name: Cellular + friendly_id: connection_type__cellular +- id: 7203 + name: DECT + friendly_id: connection_type__dect +- id: 7204 + name: Infrared + friendly_id: connection_type__infrared +- id: 7205 + name: LTE + friendly_id: connection_type__lte +- id: 7206 + name: Miracast + friendly_id: connection_type__miracast +- id: 7207 + name: NFC + friendly_id: connection_type__nfc +- id: 7208 + name: Radio + friendly_id: connection_type__radio +- id: 7209 + name: Wired + friendly_id: connection_type__wired +- id: 7210 + name: Wireless + friendly_id: connection_type__wireless +- id: 7211 + name: Wireless dongle + friendly_id: connection_type__wireless_dongle +- id: 7212 + name: Bluetooth + friendly_id: barcode_scanner_interface__bluetooth +- id: 7213 + name: Ethernet + friendly_id: barcode_scanner_interface__ethernet +- id: 7214 + name: Keyboard wedge + friendly_id: barcode_scanner_interface__keyboard_wedge +- id: 7215 + name: Lightning + friendly_id: barcode_scanner_interface__lightning +- id: 7216 + name: Proprietary connector + friendly_id: barcode_scanner_interface__proprietary_connector +- id: 7217 + name: PS/2 + friendly_id: barcode_scanner_interface__ps_2 +- id: 7218 + name: RS-232 + friendly_id: barcode_scanner_interface__rs_232 +- id: 7219 + name: Serial + friendly_id: barcode_scanner_interface__serial +- id: 7220 + name: USB + friendly_id: barcode_scanner_interface__usb +- id: 7221 + name: USB type-C + friendly_id: barcode_scanner_interface__usb_type_c +- id: 7222 + name: Wireless (RF) + friendly_id: barcode_scanner_interface__wireless_rf +- id: 7223 + name: 1D + friendly_id: barcode_supported__1d +- id: 7224 + name: 2D + friendly_id: barcode_supported__2d +- id: 7225 + name: 2D imager + friendly_id: scanner_sensor_type__2d_imager +- id: 7226 + name: CCD + friendly_id: scanner_sensor_type__ccd +- id: 7227 + name: CIS + friendly_id: scanner_sensor_type__cis +- id: 7228 + name: Laser + friendly_id: scanner_sensor_type__laser +- id: 7229 + name: Linear imager + friendly_id: scanner_sensor_type__linear_imager +- id: 7230 + name: Other + friendly_id: scanner_sensor_type__other +- id: 7231 + name: Access control + friendly_id: compatible_electronic_card_type__access_control +- id: 7232 + name: Biometric + friendly_id: compatible_electronic_card_type__biometric +- id: 7233 + name: Contactless + friendly_id: compatible_electronic_card_type__contactless +- id: 7234 + name: Credit & debit + friendly_id: compatible_electronic_card_type__credit_debit +- id: 7235 + name: EMV + friendly_id: compatible_electronic_card_type__emv +- id: 7236 + name: Gift + friendly_id: compatible_electronic_card_type__gift +- id: 7237 + name: Health insurance + friendly_id: compatible_electronic_card_type__health_insurance +- id: 7238 + name: HID + friendly_id: compatible_electronic_card_type__hid +- id: 7239 + name: Library + friendly_id: compatible_electronic_card_type__library +- id: 7240 + name: Loyalty + friendly_id: compatible_electronic_card_type__loyalty +- id: 7241 + name: Magnetic stripe + friendly_id: compatible_electronic_card_type__magnetic_stripe +- id: 7242 + name: Membership + friendly_id: compatible_electronic_card_type__membership +- id: 7243 + name: Mifare + friendly_id: compatible_electronic_card_type__mifare +- id: 7244 + name: Proximity + friendly_id: compatible_electronic_card_type__proximity +- id: 7245 + name: RFID + friendly_id: compatible_electronic_card_type__rfid +- id: 7246 + name: SIM + friendly_id: compatible_electronic_card_type__sim +- id: 7247 + name: Smart + friendly_id: compatible_electronic_card_type__smart +- id: 7248 + name: Student ID + friendly_id: compatible_electronic_card_type__student_id +- id: 7249 + name: Transportation + friendly_id: compatible_electronic_card_type__transportation +- id: 7250 + name: Capacitive + friendly_id: fingerprint_capture_method__capacitive +- id: 7251 + name: Multispectral + friendly_id: fingerprint_capture_method__multispectral +- id: 7252 + name: Optical + friendly_id: fingerprint_capture_method__optical +- id: 7253 + name: Thermal + friendly_id: fingerprint_capture_method__thermal +- id: 7254 + name: Ultrasonic + friendly_id: fingerprint_capture_method__ultrasonic +- id: 7255 + name: Atari 2600 + friendly_id: console_system__atari_2600 +- id: 7256 + name: Atari 7800 + friendly_id: console_system__atari_7800 +- id: 7257 + name: Game Boy + friendly_id: console_system__game_boy +- id: 7258 + name: Neo Geo + friendly_id: console_system__neo_geo +- id: 7259 + name: Nintendo 2DS + friendly_id: console_system__nintendo_2ds +- id: 7260 + name: Nintendo 3DS + friendly_id: console_system__nintendo_3ds +- id: 7261 + name: Nintendo 64 + friendly_id: console_system__nintendo_64 +- id: 7262 + name: Nintendo DS + friendly_id: console_system__nintendo_ds +- id: 7263 + name: Nintendo Entertainment System (NES) + friendly_id: console_system__nintendo_entertainment_system_nes +- id: 7264 + name: Nintendo GameCube + friendly_id: console_system__nintendo_gamecube +- id: 7265 + name: Nintendo Switch + friendly_id: console_system__nintendo_switch +- id: 7266 + name: Nintendo Wii + friendly_id: console_system__nintendo_wii +- id: 7267 + name: Nintendo Wii U + friendly_id: console_system__nintendo_wii_u +- id: 7268 + name: PlayStation 1 + friendly_id: console_system__playstation_1 +- id: 7269 + name: PlayStation 2 + friendly_id: console_system__playstation_2 +- id: 7270 + name: PlayStation 3 + friendly_id: console_system__playstation_3 +- id: 7271 + name: PlayStation 4 + friendly_id: console_system__playstation_4 +- id: 7272 + name: PlayStation 5 + friendly_id: console_system__playstation_5 +- id: 7273 + name: PlayStation Portable (PSP) + friendly_id: console_system__playstation_portable_psp +- id: 7274 + name: PlayStation Vita + friendly_id: console_system__playstation_vita +- id: 7275 + name: Sega Dreamcast + friendly_id: console_system__sega_dreamcast +- id: 7276 + name: Sega Genesis + friendly_id: console_system__sega_genesis +- id: 7277 + name: Sega Saturn + friendly_id: console_system__sega_saturn +- id: 7278 + name: Super Nintendo Entertainment System (SNES) + friendly_id: console_system__super_nintendo_entertainment_system_snes +- id: 7279 + name: Xbox + friendly_id: console_system__xbox +- id: 7280 + name: Xbox 360 + friendly_id: console_system__xbox_360 +- id: 7281 + name: Xbox One + friendly_id: console_system__xbox_one +- id: 7282 + name: Xbox Series XS + friendly_id: console_system__xbox_series_xs +- id: 7283 + name: Other + friendly_id: console_system__other +- id: 7284 + name: Bass guitar + friendly_id: instrument_controller_type__bass_guitar +- id: 7285 + name: DJ turntable + friendly_id: instrument_controller_type__dj_turntable +- id: 7286 + name: Drum set + friendly_id: instrument_controller_type__drum_set +- id: 7287 + name: Guitar + friendly_id: instrument_controller_type__guitar +- id: 7288 + name: Keyboard + friendly_id: instrument_controller_type__keyboard +- id: 7289 + name: Microphone + friendly_id: instrument_controller_type__microphone +- id: 7290 + name: Violin + friendly_id: instrument_controller_type__violin +- id: 7291 + name: Wind instrument + friendly_id: instrument_controller_type__wind_instrument +- id: 7292 + name: '0.4' + friendly_id: keyboard_format__0_4 +- id: 7293 + name: '0.6' + friendly_id: keyboard_format__0_6 +- id: 7294 + name: '0.65' + friendly_id: keyboard_format__0_65 +- id: 7295 + name: '0.75' + friendly_id: keyboard_format__0_75 +- id: 7296 + name: Compact + friendly_id: keyboard_format__compact +- id: 7297 + name: Ergonomic + friendly_id: keyboard_format__ergonomic +- id: 7298 + name: Full-size + friendly_id: keyboard_format__full_size +- id: 7299 + name: Mini + friendly_id: keyboard_format__mini +- id: 7300 + name: Split + friendly_id: keyboard_format__split +- id: 7301 + name: Tenkeyless (TKL) + friendly_id: keyboard_format__tenkeyless_tkl +- id: 7302 + name: AFR- Afrikaans + friendly_id: language_version__afr_afrikaans +- id: 7303 + name: ALB- Albanian + friendly_id: language_version__alb_albanian +- id: 7304 + name: ARA- Arabic + friendly_id: language_version__ara_arabic +- id: 7305 + name: ARM- Armenian + friendly_id: language_version__arm_armenian +- id: 7306 + name: BAQ- Basque + friendly_id: language_version__baq_basque +- id: 7307 + name: BRA- Brazilian Portuguese + friendly_id: language_version__bra_brazilian_portuguese +- id: 7308 + name: BUL- Bulgarian + friendly_id: language_version__bul_bulgarian +- id: 7309 + name: CAT- Catalan + friendly_id: language_version__cat_catalan +- id: 7310 + name: CHI (simpl)- Chinese (simplified) + friendly_id: language_version__chi_simpl_chinese_simplified +- id: 7311 + name: CHI (tr)- Chinese (traditional) + friendly_id: language_version__chi_tr_chinese_traditional +- id: 7312 + name: CRO- Croatian + friendly_id: language_version__cro_croatian +- id: 7313 + name: CZE- Czech + friendly_id: language_version__cze_czech +- id: 7314 + name: DAN- Danish + friendly_id: language_version__dan_danish +- id: 7315 + name: DEU- German + friendly_id: language_version__deu_german +- id: 7316 + name: DEU-BE- German (Belgium) + friendly_id: language_version__deu_be_german_belgium +- id: 7317 + name: DEU-CH- German (Switzerland) + friendly_id: language_version__deu_ch_german_switzerland +- id: 7318 + name: DUT- Dutch + friendly_id: language_version__dut_dutch +- id: 7319 + name: DUT-BE- Dutch (Belgium) + friendly_id: language_version__dut_be_dutch_belgium +- id: 7320 + name: ENG- English + friendly_id: language_version__eng_english +- id: 7321 + name: ENG-IN- English (India) + friendly_id: language_version__eng_in_english_india +- id: 7322 + name: ENG-SG- English (Singapore) + friendly_id: language_version__eng_sg_english_singapore +- id: 7323 + name: ENG-US- English (United States) + friendly_id: language_version__eng_us_english_united_states +- id: 7324 + name: EPO- Esperanto + friendly_id: language_version__epo_esperanto +- id: 7325 + name: ESP- Spanish + friendly_id: language_version__esp_spanish +- id: 7326 + name: ESP-MX- Spanish (Mexico) + friendly_id: language_version__esp_mx_spanish_mexico +- id: 7327 + name: EST- Estonian + friendly_id: language_version__est_estonian +- id: 7328 + name: FAS- Farsi + friendly_id: language_version__fas_farsi +- id: 7329 + name: FIN- Finnish + friendly_id: language_version__fin_finnish +- id: 7330 + name: FRE- French + friendly_id: language_version__fre_french +- id: 7331 + name: FRE-BE- French (Belgium) + friendly_id: language_version__fre_be_french_belgium +- id: 7332 + name: FRE-CH- French (Switzerland) + friendly_id: language_version__fre_ch_french_switzerland +- id: 7333 + name: GEO- Georgian + friendly_id: language_version__geo_georgian +- id: 7334 + name: GLG- Galician + friendly_id: language_version__glg_galician +- id: 7335 + name: GRE- Greek + friendly_id: language_version__gre_greek +- id: 7336 + name: GSW- Swiss German + friendly_id: language_version__gsw_swiss_german +- id: 7337 + name: HEB- Hebrew + friendly_id: language_version__heb_hebrew +- id: 7338 + name: HIN- Hindi + friendly_id: language_version__hin_hindi +- id: 7339 + name: HRV- Croatian + friendly_id: language_version__hrv_croatian +- id: 7340 + name: HUN- Hungarian + friendly_id: language_version__hun_hungarian +- id: 7341 + name: ICE- Icelandic + friendly_id: language_version__ice_icelandic +- id: 7342 + name: INC- Indonesian + friendly_id: language_version__inc_indonesian +- id: 7343 + name: IND- Indonesian + friendly_id: language_version__ind_indonesian +- id: 7344 + name: IRA- Iranian + friendly_id: language_version__ira_iranian +- id: 7345 + name: ITA- Italian + friendly_id: language_version__ita_italian +- id: 7346 + name: JPN- Japanese + friendly_id: language_version__jpn_japanese +- id: 7347 + name: KAZ- Kazakh + friendly_id: language_version__kaz_kazakh +- id: 7348 + name: KIR- Kirghiz + friendly_id: language_version__kir_kirghiz +- id: 7349 + name: KOR- Korean + friendly_id: language_version__kor_korean +- id: 7350 + name: KUR- Kurdish + friendly_id: language_version__kur_kurdish +- id: 7351 + name: LAT- Latin + friendly_id: language_version__lat_latin +- id: 7352 + name: LAV- Latvian + friendly_id: language_version__lav_latvian +- id: 7353 + name: LIT- Lithuanian + friendly_id: language_version__lit_lithuanian +- id: 7354 + name: MAL- Malay + friendly_id: language_version__mal_malay +- id: 7355 + name: MDR- Mandar + friendly_id: language_version__mdr_mandar +- id: 7356 + name: MON- Mongolian + friendly_id: language_version__mon_mongolian +- id: 7357 + name: Multilingual- multilingual (not specific to one language) + friendly_id: language_version__multilingual_multilingual_not_specific_to_one_language +- id: 7358 + name: NEP- Nepali + friendly_id: language_version__nep_nepali +- id: 7359 + name: NOR- Norwegian + friendly_id: language_version__nor_norwegian +- id: 7360 + name: PER- Persian + friendly_id: language_version__per_persian +- id: 7361 + name: PHI- Filipino + friendly_id: language_version__phi_filipino +- id: 7362 + name: POL- Polish + friendly_id: language_version__pol_polish +- id: 7363 + name: POR- Portuguese + friendly_id: language_version__por_portuguese +- id: 7364 + name: POR-BRA- Portuguese (Brazil) + friendly_id: language_version__por_bra_portuguese_brazil +- id: 7365 + name: ROH- Romansh + friendly_id: language_version__roh_romansh +- id: 7366 + name: RUM- Romanian + friendly_id: language_version__rum_romanian +- id: 7367 + name: RUS- Russian + friendly_id: language_version__rus_russian +- id: 7368 + name: SCR- Croatian + friendly_id: language_version__scr_croatian +- id: 7369 + name: SLK- Slovak + friendly_id: language_version__slk_slovak +- id: 7370 + name: SLV- Slovenian + friendly_id: language_version__slv_slovenian +- id: 7371 + name: SRP- Serbian + friendly_id: language_version__srp_serbian +- id: 7372 + name: SWE- Swedish + friendly_id: language_version__swe_swedish +- id: 7373 + name: TGL- Tagalog + friendly_id: language_version__tgl_tagalog +- id: 7374 + name: THA- Thai + friendly_id: language_version__tha_thai +- id: 7375 + name: TIB- Tibetan + friendly_id: language_version__tib_tibetan +- id: 7376 + name: TUR- Turkish + friendly_id: language_version__tur_turkish +- id: 7377 + name: UKR- Ukrainian + friendly_id: language_version__ukr_ukrainian +- id: 7378 + name: VIE- Vietnamese + friendly_id: language_version__vie_vietnamese +- id: 7379 + name: ĄŽERTY + friendly_id: keyboard_layout__erty +- id: 7380 + name: BÉPO + friendly_id: keyboard_layout__bpo +- id: 7381 + name: Colemak + friendly_id: keyboard_layout__colemak +- id: 7382 + name: DVORAK + friendly_id: keyboard_layout__dvorak +- id: 7383 + name: Hangul + friendly_id: keyboard_layout__hangul +- id: 7384 + name: JIS + friendly_id: keyboard_layout__jis +- id: 7385 + name: QWERTY + friendly_id: keyboard_layout__qwerty +- id: 7386 + name: QWERTZ + friendly_id: keyboard_layout__qwertz +- id: 7387 + name: QZERTY + friendly_id: keyboard_layout__qzerty +- id: 7388 + name: Workman + friendly_id: keyboard_layout__workman +- id: 7389 + name: Clicky + friendly_id: keyboard_switch_type__clicky +- id: 7390 + name: Linear + friendly_id: keyboard_switch_type__linear +- id: 7391 + name: Tactile + friendly_id: keyboard_switch_type__tactile +- id: 7392 + name: D-pad + friendly_id: pointing_device__d_pad +- id: 7393 + name: Mouse buttons + friendly_id: pointing_device__mouse_buttons +- id: 7394 + name: Pointing stick + friendly_id: pointing_device__pointing_stick +- id: 7395 + name: Scroll wheel + friendly_id: pointing_device__scroll_wheel +- id: 7396 + name: Touchpad + friendly_id: pointing_device__touchpad +- id: 7397 + name: Trackball + friendly_id: pointing_device__trackball +- id: 7398 + name: PS/2 + friendly_id: keyboard_port_type__ps_2 +- id: 7399 + name: USB type-A + friendly_id: keyboard_port_type__usb_type_a +- id: 7400 + name: USB type-B + friendly_id: keyboard_port_type__usb_type_b +- id: 7401 + name: USB type-C + friendly_id: keyboard_port_type__usb_type_c +- id: 7402 + name: Bluetooth + friendly_id: mouse_port_type__bluetooth +- id: 7403 + name: PS/2 + friendly_id: mouse_port_type__ps_2 +- id: 7404 + name: USB + friendly_id: mouse_port_type__usb +- id: 7405 + name: Wireless USB + friendly_id: mouse_port_type__wireless_usb +- id: 7406 + name: Display port + friendly_id: video_port_type__display_port +- id: 7407 + name: DVI + friendly_id: video_port_type__dvi +- id: 7408 + name: HDMI + friendly_id: video_port_type__hdmi +- id: 7409 + name: USB-C + friendly_id: video_port_type__usb_c +- id: 7410 + name: VGA + friendly_id: video_port_type__vga +- id: 7411 + name: 3D + friendly_id: mouse_technology__3d +- id: 7412 + name: Bluetooth + friendly_id: mouse_technology__bluetooth +- id: 7413 + name: Gaming + friendly_id: mouse_technology__gaming +- id: 7414 + name: Laser + friendly_id: mouse_technology__laser +- id: 7415 + name: Mechanical + friendly_id: mouse_technology__mechanical +- id: 7416 + name: Optical + friendly_id: mouse_technology__optical +- id: 7417 + name: Stylus + friendly_id: mouse_technology__stylus +- id: 7418 + name: Trackball + friendly_id: mouse_technology__trackball +- id: 7419 + name: Vertical + friendly_id: mouse_technology__vertical +- id: 7420 + name: Wireless + friendly_id: mouse_technology__wireless +- id: 7421 + name: 1x + friendly_id: read_write_speed__1x +- id: 7422 + name: 4x + friendly_id: read_write_speed__4x +- id: 7423 + name: 8x + friendly_id: read_write_speed__8x +- id: 7424 + name: 16x + friendly_id: read_write_speed__16x +- id: 7425 + name: 24x + friendly_id: read_write_speed__24x +- id: 7426 + name: 48x + friendly_id: read_write_speed__48x +- id: 7427 + name: 52x + friendly_id: read_write_speed__52x +- id: 7428 + name: eSATA + friendly_id: host_interface__esata +- id: 7429 + name: Firewire (IEEE 1394) + friendly_id: host_interface__firewire_ieee_1394 +- id: 7430 + name: SATA + friendly_id: host_interface__sata +- id: 7431 + name: Thunderbolt 2 + friendly_id: host_interface__thunderbolt_2 +- id: 7432 + name: Thunderbolt 3 + friendly_id: host_interface__thunderbolt_3 +- id: 7433 + name: USB 2.0 + friendly_id: host_interface__usb_2_0 +- id: 7434 + name: USB 3.1 gen 1 + friendly_id: host_interface__usb_3_1_gen_1 +- id: 7435 + name: USB 3.2 gen 2 + friendly_id: host_interface__usb_3_2_gen_2 +- id: 7436 + name: USB type-C + friendly_id: host_interface__usb_type_c +- id: 7437 + name: eSATA + friendly_id: storage_drive_interface_type__esata +- id: 7438 + name: FCAL + friendly_id: storage_drive_interface_type__fcal +- id: 7439 + name: HSDL + friendly_id: storage_drive_interface_type__hsdl +- id: 7440 + name: IDE + friendly_id: storage_drive_interface_type__ide +- id: 7441 + name: M.2 + friendly_id: storage_drive_interface_type__m_2 +- id: 7442 + name: Micro SATA + friendly_id: storage_drive_interface_type__micro_sata +- id: 7443 + name: Micro SATA II + friendly_id: storage_drive_interface_type__micro_sata_ii +- id: 7444 + name: Micro SATA III + friendly_id: storage_drive_interface_type__micro_sata_iii +- id: 7445 + name: Micro serial ATA + friendly_id: storage_drive_interface_type__micro_serial_ata +- id: 7446 + name: Micro serial ATA II + friendly_id: storage_drive_interface_type__micro_serial_ata_ii +- id: 7447 + name: Micro serial ATA III + friendly_id: storage_drive_interface_type__micro_serial_ata_iii +- id: 7448 + name: Mini PCI express + friendly_id: storage_drive_interface_type__mini_pci_express +- id: 7449 + name: Mini ZIF + friendly_id: storage_drive_interface_type__mini_zif +- id: 7450 + name: mSATA + friendly_id: storage_drive_interface_type__msata +- id: 7451 + name: NVMe + friendly_id: storage_drive_interface_type__nvme +- id: 7452 + name: NVMe 3.0 + friendly_id: storage_drive_interface_type__nvme_3_0 +- id: 7453 + name: Parallel ATA + friendly_id: storage_drive_interface_type__parallel_ata +- id: 7454 + name: PCI express + friendly_id: storage_drive_interface_type__pci_express +- id: 7455 + name: PCI express 2.0 + friendly_id: storage_drive_interface_type__pci_express_2_0 +- id: 7456 + name: PCI express 3.0 + friendly_id: storage_drive_interface_type__pci_express_3_0 +- id: 7457 + name: PCI express 3.1 + friendly_id: storage_drive_interface_type__pci_express_3_1 +- id: 7458 + name: PCI express 4.0 + friendly_id: storage_drive_interface_type__pci_express_4_0 +- id: 7459 + name: PCI express 5.0 + friendly_id: storage_drive_interface_type__pci_express_5_0 +- id: 7460 + name: SAS + friendly_id: storage_drive_interface_type__sas +- id: 7461 + name: SAS-2 + friendly_id: storage_drive_interface_type__sas_2 +- id: 7462 + name: SAS-3 + friendly_id: storage_drive_interface_type__sas_3 +- id: 7463 + name: SAS-4 + friendly_id: storage_drive_interface_type__sas_4 +- id: 7464 + name: SATA + friendly_id: storage_drive_interface_type__sata +- id: 7465 + name: SATA II + friendly_id: storage_drive_interface_type__sata_ii +- id: 7466 + name: SATA III + friendly_id: storage_drive_interface_type__sata_iii +- id: 7467 + name: Serial ATA + friendly_id: storage_drive_interface_type__serial_ata +- id: 7468 + name: Serial ATA II + friendly_id: storage_drive_interface_type__serial_ata_ii +- id: 7469 + name: Serial ATA III + friendly_id: storage_drive_interface_type__serial_ata_iii +- id: 7470 + name: Serial attached SCSI + friendly_id: storage_drive_interface_type__serial_attached_scsi +- id: 7471 + name: Ultra M.2 + friendly_id: storage_drive_interface_type__ultra_m_2 +- id: 7472 + name: ZIF + friendly_id: storage_drive_interface_type__zif +- id: 7473 + name: Other + friendly_id: storage_drive_interface_type__other +- id: 7474 + name: HDD + friendly_id: storage_media_type__hdd +- id: 7475 + name: IDE + friendly_id: storage_media_type__ide +- id: 7476 + name: NVMe + friendly_id: storage_media_type__nvme +- id: 7477 + name: SATA + friendly_id: storage_media_type__sata +- id: 7478 + name: SSD + friendly_id: storage_media_type__ssd +- id: 7479 + name: Cloud storage + friendly_id: storage_drive_type_installed__cloud_storage +- id: 7480 + name: eMMC + friendly_id: storage_drive_type_installed__emmc +- id: 7481 + name: Hard disk drive (HDD) + friendly_id: storage_drive_type_installed__hard_disk_drive_hdd +- id: 7482 + name: Hybrid drive (HDD/SSD) + friendly_id: storage_drive_type_installed__hybrid_drive_hdd_ssd +- id: 7483 + name: M.2 SSD + friendly_id: storage_drive_type_installed__m_2_ssd +- id: 7484 + name: NAS + friendly_id: storage_drive_type_installed__nas +- id: 7485 + name: Optical drive + friendly_id: storage_drive_type_installed__optical_drive +- id: 7486 + name: PCIe/NVMe SSD + friendly_id: storage_drive_type_installed__pcie_nvme_ssd +- id: 7487 + name: RAID + friendly_id: storage_drive_type_installed__raid +- id: 7488 + name: SATA SSD + friendly_id: storage_drive_type_installed__sata_ssd +- id: 7489 + name: Solid-state drive (SSD) + friendly_id: storage_drive_type_installed__solid_state_drive_ssd +- id: 7490 + name: '10' + friendly_id: battery_size__10 +- id: 7491 + name: '13' + friendly_id: battery_size__13 +- id: 7492 + name: '312' + friendly_id: battery_size__312 +- id: 7493 + name: '395' + friendly_id: battery_size__395 +- id: 7494 + name: '675' + friendly_id: battery_size__675 +- id: 7495 + name: '14500' + friendly_id: battery_size__14500 +- id: 7496 + name: '16340' + friendly_id: battery_size__16340 +- id: 7497 + name: '18490' + friendly_id: battery_size__18490 +- id: 7498 + name: '18650' + friendly_id: battery_size__18650 +- id: 7499 + name: '21700' + friendly_id: battery_size__21700 +- id: 7500 + name: 1/2AA + friendly_id: battery_size__1_2aa +- id: 7501 + name: 1/3AAA + friendly_id: battery_size__1_3aaa +- id: 7502 + name: 1/3N + friendly_id: battery_size__1_3n +- id: 7503 + name: 12V + friendly_id: battery_size__12v +- id: 7504 + name: 2/3AA + friendly_id: battery_size__2_3aa +- id: 7505 + name: 2/3AAA + friendly_id: battery_size__2_3aaa +- id: 7506 + name: 3LR12 + friendly_id: battery_size__3lr12 +- id: 7507 + name: 4.5V + friendly_id: battery_size__4_5v +- id: 7508 + name: 4LR44 + friendly_id: battery_size__4lr44 +- id: 7509 + name: 4SR44 + friendly_id: battery_size__4sr44 +- id: 7510 + name: 6LR61 + friendly_id: battery_size__6lr61 +- id: 7511 + name: 6V + friendly_id: battery_size__6v +- id: 7512 + name: 9V + friendly_id: battery_size__9v +- id: 7513 + name: A + friendly_id: battery_size__a +- id: 7514 + name: A23 + friendly_id: battery_size__a23 +- id: 7515 + name: A27 + friendly_id: battery_size__a27 +- id: 7516 + name: AA + friendly_id: battery_size__aa +- id: 7517 + name: AAA + friendly_id: battery_size__aaa +- id: 7518 + name: AAAA + friendly_id: battery_size__aaaa +- id: 7519 + name: B + friendly_id: battery_size__b +- id: 7520 + name: BR1225 + friendly_id: battery_size__br1225 +- id: 7521 + name: C + friendly_id: battery_size__c +- id: 7522 + name: CR1025 + friendly_id: battery_size__cr1025 +- id: 7523 + name: CR1216 + friendly_id: battery_size__cr1216 +- id: 7524 + name: CR1220 + friendly_id: battery_size__cr1220 +- id: 7525 + name: CR1225 + friendly_id: battery_size__cr1225 +- id: 7526 + name: CR123 + friendly_id: battery_size__cr123 +- id: 7527 + name: CR123A + friendly_id: battery_size__cr123a +- id: 7528 + name: CR1616 + friendly_id: battery_size__cr1616 +- id: 7529 + name: CR1620 + friendly_id: battery_size__cr1620 +- id: 7530 + name: CR1632 + friendly_id: battery_size__cr1632 +- id: 7531 + name: CR2 + friendly_id: battery_size__cr2 +- id: 7532 + name: CR2012 + friendly_id: battery_size__cr2012 +- id: 7533 + name: CR2016 + friendly_id: battery_size__cr2016 +- id: 7534 + name: CR2025 + friendly_id: battery_size__cr2025 +- id: 7535 + name: CR2032 + friendly_id: battery_size__cr2032 +- id: 7536 + name: CR2320 + friendly_id: battery_size__cr2320 +- id: 7537 + name: CR2325 + friendly_id: battery_size__cr2325 +- id: 7538 + name: CR2330 + friendly_id: battery_size__cr2330 +- id: 7539 + name: CR2354 + friendly_id: battery_size__cr2354 +- id: 7540 + name: CR2430 + friendly_id: battery_size__cr2430 +- id: 7541 + name: CR2450 + friendly_id: battery_size__cr2450 +- id: 7542 + name: CR2477 + friendly_id: battery_size__cr2477 +- id: 7543 + name: CR3032 + friendly_id: battery_size__cr3032 +- id: 7544 + name: D + friendly_id: battery_size__d +- id: 7545 + name: F + friendly_id: battery_size__f +- id: 7546 + name: LR06 + friendly_id: battery_size__lr06 +- id: 7547 + name: LR1130 + friendly_id: battery_size__lr1130 +- id: 7548 + name: LR14 + friendly_id: battery_size__lr14 +- id: 7549 + name: LR27A + friendly_id: battery_size__lr27a +- id: 7550 + name: LR32A + friendly_id: battery_size__lr32a +- id: 7551 + name: LR41 + friendly_id: battery_size__lr41 +- id: 7552 + name: LR43 + friendly_id: battery_size__lr43 +- id: 7553 + name: LR44 + friendly_id: battery_size__lr44 +- id: 7554 + name: LR54 + friendly_id: battery_size__lr54 +- id: 7555 + name: LR60 + friendly_id: battery_size__lr60 +- id: 7556 + name: LR66 + friendly_id: battery_size__lr66 +- id: 7557 + name: MN11 + friendly_id: battery_size__mn11 +- id: 7558 + name: MN21 + friendly_id: battery_size__mn21 +- id: 7559 + name: MN27 + friendly_id: battery_size__mn27 +- id: 7560 + name: N + friendly_id: battery_size__n +- id: 7561 + name: PR41 + friendly_id: battery_size__pr41 +- id: 7562 + name: PR44 + friendly_id: battery_size__pr44 +- id: 7563 + name: PR70 + friendly_id: battery_size__pr70 +- id: 7564 + name: SC + friendly_id: battery_size__sc +- id: 7565 + name: SR41 + friendly_id: battery_size__sr41 +- id: 7566 + name: SR42 + friendly_id: battery_size__sr42 +- id: 7567 + name: SR43 + friendly_id: battery_size__sr43 +- id: 7568 + name: SR43W + friendly_id: battery_size__sr43w +- id: 7569 + name: SR44 + friendly_id: battery_size__sr44 +- id: 7570 + name: SR45 + friendly_id: battery_size__sr45 +- id: 7571 + name: SR48 + friendly_id: battery_size__sr48 +- id: 7572 + name: SR54 + friendly_id: battery_size__sr54 +- id: 7573 + name: SR55 + friendly_id: battery_size__sr55 +- id: 7574 + name: SR57 + friendly_id: battery_size__sr57 +- id: 7575 + name: SR58 + friendly_id: battery_size__sr58 +- id: 7576 + name: SR59 + friendly_id: battery_size__sr59 +- id: 7577 + name: SR60 + friendly_id: battery_size__sr60 +- id: 7578 + name: SR616SW + friendly_id: battery_size__sr616sw +- id: 7579 + name: SR63 + friendly_id: battery_size__sr63 +- id: 7580 + name: SR66 + friendly_id: battery_size__sr66 +- id: 7581 + name: SR69 + friendly_id: battery_size__sr69 +- id: 7582 + name: SR731SW + friendly_id: battery_size__sr731sw +- id: 7583 + name: SR920SW + friendly_id: battery_size__sr920sw +- id: 7584 + name: SR936SW + friendly_id: battery_size__sr936sw +- id: 7585 + name: Other + friendly_id: battery_size__other +- id: 7586 + name: Alkaline + friendly_id: compatible_battery_technology__alkaline +- id: 7587 + name: Gel cell + friendly_id: compatible_battery_technology__gel_cell +- id: 7588 + name: Lead-calcium (Pb-Ca) + friendly_id: compatible_battery_technology__lead_calcium_pb_ca +- id: 7589 + name: Lithium + friendly_id: compatible_battery_technology__lithium +- id: 7590 + name: Lithium cobalt oxide (LiCoO2) + friendly_id: compatible_battery_technology__lithium_cobalt_oxide_licoo2 +- id: 7591 + name: Lithium imide (Li2NH) + friendly_id: compatible_battery_technology__lithium_imide_li2nh +- id: 7592 + name: Lithium iron phosphate (LiFePO4) + friendly_id: compatible_battery_technology__lithium_iron_phosphate_lifepo4 +- id: 7593 + name: Lithium nickel cobalt aluminum oxide (LiNCA) + friendly_id: compatible_battery_technology__lithium_nickel_cobalt_aluminum_oxide_linca +- id: 7594 + name: Lithium nickel manganese cobalt oxide (LiNMC) + friendly_id: compatible_battery_technology__lithium_nickel_manganese_cobalt_oxide_linmc +- id: 7595 + name: Lithium polymer (LiPo) + friendly_id: compatible_battery_technology__lithium_polymer_lipo +- id: 7596 + name: Lithium thionyl chloride (LiSOCl2) + friendly_id: compatible_battery_technology__lithium_thionyl_chloride_lisocl2 +- id: 7597 + name: Lithium-ion (Li-ion) + friendly_id: compatible_battery_technology__lithium_ion_li_ion +- id: 7598 + name: Lithium-ion high density (LiHD) + friendly_id: compatible_battery_technology__lithium_ion_high_density_lihd +- id: 7599 + name: Lithium-manganese dioxide (LiMnO2) + friendly_id: compatible_battery_technology__lithium_manganese_dioxide_limno2 +- id: 7600 + name: Nickel-cadmium (NiCd) + friendly_id: compatible_battery_technology__nickel_cadmium_nicd +- id: 7601 + name: Nickel-metal hydride (NiMH) + friendly_id: compatible_battery_technology__nickel_metal_hydride_nimh +- id: 7602 + name: Nickel-oxyhydroxide (NiOx) + friendly_id: compatible_battery_technology__nickel_oxyhydroxide_niox +- id: 7603 + name: Nickel-zinc (NiZn) + friendly_id: compatible_battery_technology__nickel_zinc_nizn +- id: 7604 + name: Polymer + friendly_id: compatible_battery_technology__polymer +- id: 7605 + name: Silver-oxide (Ag2O) + friendly_id: compatible_battery_technology__silver_oxide_ag2o +- id: 7606 + name: Valve-regulated lead-acid (VLRA) + friendly_id: compatible_battery_technology__valve_regulated_lead_acid_vlra +- id: 7607 + name: Zinc chloride + friendly_id: compatible_battery_technology__zinc_chloride +- id: 7608 + name: Zinc-air + friendly_id: compatible_battery_technology__zinc_air +- id: 7609 + name: Zinc-carbon + friendly_id: compatible_battery_technology__zinc_carbon +- id: 7610 + name: Zinc-manganese dioxide (Zn/MnO2) + friendly_id: compatible_battery_technology__zinc_manganese_dioxide_zn_mno2 +- id: 7611 + name: Other + friendly_id: compatible_battery_technology__other +- id: 7612 + name: AU + friendly_id: plug_type__au +- id: 7613 + name: BR + friendly_id: plug_type__br +- id: 7614 + name: CH + friendly_id: plug_type__ch +- id: 7615 + name: CN + friendly_id: plug_type__cn +- id: 7616 + name: DK + friendly_id: plug_type__dk +- id: 7617 + name: EU + friendly_id: plug_type__eu +- id: 7618 + name: FR + friendly_id: plug_type__fr +- id: 7619 + name: IL + friendly_id: plug_type__il +- id: 7620 + name: IN + friendly_id: plug_type__in +- id: 7621 + name: IT + friendly_id: plug_type__it +- id: 7622 + name: JP + friendly_id: plug_type__jp +- id: 7623 + name: KR + friendly_id: plug_type__kr +- id: 7624 + name: RU + friendly_id: plug_type__ru +- id: 7625 + name: UK + friendly_id: plug_type__uk +- id: 7626 + name: US + friendly_id: plug_type__us +- id: 7627 + name: ZA + friendly_id: plug_type__za +- id: 7628 + name: Other + friendly_id: plug_type__other +- id: 7629 + name: Alkaline + friendly_id: battery_cell_type__alkaline +- id: 7630 + name: Ammonia + friendly_id: battery_cell_type__ammonia +- id: 7631 + name: Direct ethanol + friendly_id: battery_cell_type__direct_ethanol +- id: 7632 + name: Direct methanol + friendly_id: battery_cell_type__direct_methanol +- id: 7633 + name: Lithium-air + friendly_id: battery_cell_type__lithium_air +- id: 7634 + name: Microbial + friendly_id: battery_cell_type__microbial +- id: 7635 + name: Molten carbonate + friendly_id: battery_cell_type__molten_carbonate +- id: 7636 + name: Phosphoric acid + friendly_id: battery_cell_type__phosphoric_acid +- id: 7637 + name: Polymer electrolyte + friendly_id: battery_cell_type__polymer_electrolyte +- id: 7638 + name: Proton exchange membrane + friendly_id: battery_cell_type__proton_exchange_membrane +- id: 7639 + name: Protonic ceramic + friendly_id: battery_cell_type__protonic_ceramic +- id: 7640 + name: Regenerative + friendly_id: battery_cell_type__regenerative +- id: 7641 + name: Sodium-ion + friendly_id: battery_cell_type__sodium_ion +- id: 7642 + name: Solid oxide + friendly_id: battery_cell_type__solid_oxide +- id: 7643 + name: Zinc-air + friendly_id: battery_cell_type__zinc_air +- id: 7644 + name: Ammonia + friendly_id: fuel_source__ammonia +- id: 7645 + name: Direct methanol + friendly_id: fuel_source__direct_methanol +- id: 7646 + name: Ethanol + friendly_id: fuel_source__ethanol +- id: 7647 + name: Hydrogen + friendly_id: fuel_source__hydrogen +- id: 7648 + name: Methanol + friendly_id: fuel_source__methanol +- id: 7649 + name: Natural gas + friendly_id: fuel_source__natural_gas +- id: 7650 + name: Propane + friendly_id: fuel_source__propane +- id: 7651 + name: Other + friendly_id: fuel_source__other +- id: 7652 + name: Full stack + friendly_id: stack_configuration__full_stack +- id: 7653 + name: Parallel + friendly_id: stack_configuration__parallel +- id: 7654 + name: Serial + friendly_id: stack_configuration__serial +- id: 7655 + name: Short stack + friendly_id: stack_configuration__short_stack +- id: 7656 + name: Single cell + friendly_id: stack_configuration__single_cell +- id: 7657 + name: Digital camera + friendly_id: compatible_device__digital_camera +- id: 7658 + name: Keyboard + friendly_id: compatible_device__keyboard +- id: 7659 + name: Mouse + friendly_id: compatible_device__mouse +- id: 7660 + name: Power bank + friendly_id: compatible_device__power_bank +- id: 7661 + name: Smartphone + friendly_id: compatible_device__smartphone +- id: 7662 + name: Smartwatch + friendly_id: compatible_device__smartwatch +- id: 7663 + name: Tablet + friendly_id: compatible_device__tablet +- id: 7664 + name: Wireless earbud + friendly_id: compatible_device__wireless_earbud +- id: 7665 + name: Type A + friendly_id: outlet_type__type_a +- id: 7666 + name: Type B + friendly_id: outlet_type__type_b +- id: 7667 + name: Type C + friendly_id: outlet_type__type_c +- id: 7668 + name: Type E + friendly_id: outlet_type__type_e +- id: 7669 + name: Type F + friendly_id: outlet_type__type_f +- id: 7670 + name: Type G + friendly_id: outlet_type__type_g +- id: 7671 + name: Type I + friendly_id: outlet_type__type_i +- id: 7672 + name: Type J + friendly_id: outlet_type__type_j +- id: 7673 + name: Type K + friendly_id: outlet_type__type_k +- id: 7674 + name: Type L + friendly_id: outlet_type__type_l +- id: 7675 + name: Aviation + friendly_id: best_uses__aviation +- id: 7676 + name: Cycling + friendly_id: best_uses__cycling +- id: 7677 + name: Hiking + friendly_id: best_uses__hiking +- id: 7678 + name: Maritime activities + friendly_id: best_uses__maritime_activities +- id: 7679 + name: Motorcycling + friendly_id: best_uses__motorcycling +- id: 7680 + name: Asset tracking + friendly_id: tracking_purpose__asset_tracking +- id: 7681 + name: Fleet management + friendly_id: tracking_purpose__fleet_management +- id: 7682 + name: Personal tracking + friendly_id: tracking_purpose__personal_tracking +- id: 7683 + name: Pet tracking + friendly_id: tracking_purpose__pet_tracking +- id: 7684 + name: Vehicle tracking + friendly_id: tracking_purpose__vehicle_tracking +- id: 7685 + name: Cruising + friendly_id: best_uses__cruising +- id: 7686 + name: Diving + friendly_id: best_uses__diving +- id: 7687 + name: Fishing + friendly_id: best_uses__fishing +- id: 7688 + name: Navigation + friendly_id: best_uses__navigation +- id: 7689 + name: Racing + friendly_id: best_uses__racing +- id: 7690 + name: Safety + friendly_id: best_uses__safety +- id: 7691 + name: Sailing + friendly_id: best_uses__sailing +- id: 7692 + name: Water sports + friendly_id: best_uses__water_sports +- id: 7693 + name: Deep sea + friendly_id: suitable_for_angling_type__deep_sea +- id: 7694 + name: Fly + friendly_id: suitable_for_angling_type__fly +- id: 7695 + name: Freshwater + friendly_id: suitable_for_angling_type__freshwater +- id: 7696 + name: Ice + friendly_id: suitable_for_angling_type__ice +- id: 7697 + name: Kayak + friendly_id: suitable_for_angling_type__kayak +- id: 7698 + name: Saltwater + friendly_id: suitable_for_angling_type__saltwater +- id: 7699 + name: Shore + friendly_id: suitable_for_angling_type__shore +- id: 7700 + name: 10 gigabit + friendly_id: ethernet_lan_interface_type__10_gigabit +- id: 7701 + name: Ethernet + friendly_id: ethernet_lan_interface_type__ethernet +- id: 7702 + name: Ethernet over cellular + friendly_id: ethernet_lan_interface_type__ethernet_over_cellular +- id: 7703 + name: Ethernet over coax + friendly_id: ethernet_lan_interface_type__ethernet_over_coax +- id: 7704 + name: Ethernet over fiber + friendly_id: ethernet_lan_interface_type__ethernet_over_fiber +- id: 7705 + name: Ethernet over HDMI + friendly_id: ethernet_lan_interface_type__ethernet_over_hdmi +- id: 7706 + name: Ethernet over powerline + friendly_id: ethernet_lan_interface_type__ethernet_over_powerline +- id: 7707 + name: Ethernet over USB + friendly_id: ethernet_lan_interface_type__ethernet_over_usb +- id: 7708 + name: Ethernet over Wi-Fi + friendly_id: ethernet_lan_interface_type__ethernet_over_wi_fi +- id: 7709 + name: Fast + friendly_id: ethernet_lan_interface_type__fast +- id: 7710 + name: Gigabit + friendly_id: ethernet_lan_interface_type__gigabit +- id: 7711 + name: Multi-gigabit + friendly_id: ethernet_lan_interface_type__multi_gigabit +- id: 7712 + name: BGP + friendly_id: network_protocols_supported__bgp +- id: 7713 + name: DHCP + friendly_id: network_protocols_supported__dhcp +- id: 7714 + name: DNS + friendly_id: network_protocols_supported__dns +- id: 7715 + name: Ethernet (IEEE 802.3) + friendly_id: network_protocols_supported__ethernet_ieee_802_3 +- id: 7716 + name: IGMP + friendly_id: network_protocols_supported__igmp +- id: 7717 + name: OSPF + friendly_id: network_protocols_supported__ospf +- id: 7718 + name: PPP + friendly_id: network_protocols_supported__ppp +- id: 7719 + name: SNMP + friendly_id: network_protocols_supported__snmp +- id: 7720 + name: STP + friendly_id: network_protocols_supported__stp +- id: 7721 + name: TCP/IP + friendly_id: network_protocols_supported__tcp_ip +- id: 7722 + name: VLAN + friendly_id: network_protocols_supported__vlan +- id: 7723 + name: Wi-Fi (IEEE 802.11) + friendly_id: network_protocols_supported__wi_fi_ieee_802_11 +- id: 7724 + name: IEEE 1588 + friendly_id: networking_standards__ieee_1588 +- id: 7725 + name: IEEE 1588v2 + friendly_id: networking_standards__ieee_1588v2 +- id: 7726 + name: IEEE 1901 + friendly_id: networking_standards__ieee_1901 +- id: 7727 + name: IEEE 1911.1 + friendly_id: networking_standards__ieee_1911_1 +- id: 7728 + name: IEEE 1911.2 + friendly_id: networking_standards__ieee_1911_2 +- id: 7729 + name: IEEE 1911.3 + friendly_id: networking_standards__ieee_1911_3 +- id: 7730 + name: IEEE 802.11a + friendly_id: networking_standards__ieee_802_11a +- id: 7731 + name: IEEE 802.11ac + friendly_id: networking_standards__ieee_802_11ac +- id: 7732 + name: IEEE 802.11ad + friendly_id: networking_standards__ieee_802_11ad +- id: 7733 + name: IEEE 802.11ax + friendly_id: networking_standards__ieee_802_11ax +- id: 7734 + name: IEEE 802.11az + friendly_id: networking_standards__ieee_802_11az +- id: 7735 + name: IEEE 802.11b + friendly_id: networking_standards__ieee_802_11b +- id: 7736 + name: IEEE 802.11d + friendly_id: networking_standards__ieee_802_11d +- id: 7737 + name: IEEE 802.11e + friendly_id: networking_standards__ieee_802_11e +- id: 7738 + name: IEEE 802.11g + friendly_id: networking_standards__ieee_802_11g +- id: 7739 + name: IEEE 802.11h + friendly_id: networking_standards__ieee_802_11h +- id: 7740 + name: IEEE 802.11i + friendly_id: networking_standards__ieee_802_11i +- id: 7741 + name: IEEE 802.11j + friendly_id: networking_standards__ieee_802_11j +- id: 7742 + name: IEEE 802.11k + friendly_id: networking_standards__ieee_802_11k +- id: 7743 + name: IEEE 802.11mc + friendly_id: networking_standards__ieee_802_11mc +- id: 7744 + name: IEEE 802.11n + friendly_id: networking_standards__ieee_802_11n +- id: 7745 + name: IEEE 802.11r + friendly_id: networking_standards__ieee_802_11r +- id: 7746 + name: IEEE 802.11s + friendly_id: networking_standards__ieee_802_11s +- id: 7747 + name: IEEE 802.11u + friendly_id: networking_standards__ieee_802_11u +- id: 7748 + name: IEEE 802.11v + friendly_id: networking_standards__ieee_802_11v +- id: 7749 + name: IEEE 802.11w + friendly_id: networking_standards__ieee_802_11w +- id: 7750 + name: IEEE 802.12 + friendly_id: networking_standards__ieee_802_12 +- id: 7751 + name: IEEE 802.15.1 + friendly_id: networking_standards__ieee_802_15_1 +- id: 7752 + name: IEEE 802.15.4 + friendly_id: networking_standards__ieee_802_15_4 +- id: 7753 + name: IEEE 802.1ab + friendly_id: networking_standards__ieee_802_1ab +- id: 7754 + name: IEEE 802.1ad + friendly_id: networking_standards__ieee_802_1ad +- id: 7755 + name: IEEE 802.1AE + friendly_id: networking_standards__ieee_802_1ae +- id: 7756 + name: IEEE 802.1af + friendly_id: networking_standards__ieee_802_1af +- id: 7757 + name: IEEE 802.1ag + friendly_id: networking_standards__ieee_802_1ag +- id: 7758 + name: IEEE 802.1ak + friendly_id: networking_standards__ieee_802_1ak +- id: 7759 + name: IEEE 802.1as + friendly_id: networking_standards__ieee_802_1as +- id: 7760 + name: IEEE 802.1AX + friendly_id: networking_standards__ieee_802_1ax +- id: 7761 + name: IEEE 802.1D + friendly_id: networking_standards__ieee_802_1d +- id: 7762 + name: IEEE 802.1p + friendly_id: networking_standards__ieee_802_1p +- id: 7763 + name: IEEE 802.1Q + friendly_id: networking_standards__ieee_802_1q +- id: 7764 + name: IEEE 802.1Qau + friendly_id: networking_standards__ieee_802_1qau +- id: 7765 + name: IEEE 802.1Qav + friendly_id: networking_standards__ieee_802_1qav +- id: 7766 + name: IEEE 802.1Qaz + friendly_id: networking_standards__ieee_802_1qaz +- id: 7767 + name: IEEE 802.1Qbb + friendly_id: networking_standards__ieee_802_1qbb +- id: 7768 + name: IEEE 802.1Qbg + friendly_id: networking_standards__ieee_802_1qbg +- id: 7769 + name: IEEE 802.1Qbv + friendly_id: networking_standards__ieee_802_1qbv +- id: 7770 + name: IEEE 802.1s + friendly_id: networking_standards__ieee_802_1s +- id: 7771 + name: IEEE 802.1t + friendly_id: networking_standards__ieee_802_1t +- id: 7772 + name: IEEE 802.1v + friendly_id: networking_standards__ieee_802_1v +- id: 7773 + name: IEEE 802.1w + friendly_id: networking_standards__ieee_802_1w +- id: 7774 + name: IEEE 802.1x + friendly_id: networking_standards__ieee_802_1x +- id: 7775 + name: IEEE 802.2 + friendly_id: networking_standards__ieee_802_2 +- id: 7776 + name: IEEE 802.2x + friendly_id: networking_standards__ieee_802_2x +- id: 7777 + name: IEEE 802.3 + friendly_id: networking_standards__ieee_802_3 +- id: 7778 + name: IEEE 802.3ab + friendly_id: networking_standards__ieee_802_3ab +- id: 7779 + name: IEEE 802.3ac + friendly_id: networking_standards__ieee_802_3ac +- id: 7780 + name: IEEE 802.3ad + friendly_id: networking_standards__ieee_802_3ad +- id: 7781 + name: IEEE 802.3ae + friendly_id: networking_standards__ieee_802_3ae +- id: 7782 + name: IEEE 802.3af + friendly_id: networking_standards__ieee_802_3af +- id: 7783 + name: IEEE 802.3ah + friendly_id: networking_standards__ieee_802_3ah +- id: 7784 + name: IEEE 802.3ak + friendly_id: networking_standards__ieee_802_3ak +- id: 7785 + name: IEEE 802.3an + friendly_id: networking_standards__ieee_802_3an +- id: 7786 + name: IEEE 802.3ap + friendly_id: networking_standards__ieee_802_3ap +- id: 7787 + name: IEEE 802.3aq + friendly_id: networking_standards__ieee_802_3aq +- id: 7788 + name: IEEE 802.3at + friendly_id: networking_standards__ieee_802_3at +- id: 7789 + name: IEEE 802.3au + friendly_id: networking_standards__ieee_802_3au +- id: 7790 + name: IEEE 802.3az + friendly_id: networking_standards__ieee_802_3az +- id: 7791 + name: IEEE 802.3ba + friendly_id: networking_standards__ieee_802_3ba +- id: 7792 + name: IEEE 802.3bj + friendly_id: networking_standards__ieee_802_3bj +- id: 7793 + name: IEEE 802.3bm + friendly_id: networking_standards__ieee_802_3bm +- id: 7794 + name: IEEE 802.3bq + friendly_id: networking_standards__ieee_802_3bq +- id: 7795 + name: IEEE 802.3bs + friendly_id: networking_standards__ieee_802_3bs +- id: 7796 + name: IEEE 802.3bt + friendly_id: networking_standards__ieee_802_3bt +- id: 7797 + name: IEEE 802.3by + friendly_id: networking_standards__ieee_802_3by +- id: 7798 + name: IEEE 802.3bz + friendly_id: networking_standards__ieee_802_3bz +- id: 7799 + name: IEEE 802.3cc + friendly_id: networking_standards__ieee_802_3cc +- id: 7800 + name: IEEE 802.3cd + friendly_id: networking_standards__ieee_802_3cd +- id: 7801 + name: IEEE 802.3i + friendly_id: networking_standards__ieee_802_3i +- id: 7802 + name: IEEE 802.3p + friendly_id: networking_standards__ieee_802_3p +- id: 7803 + name: IEEE 802.3q + friendly_id: networking_standards__ieee_802_3q +- id: 7804 + name: IEEE 802.3u + friendly_id: networking_standards__ieee_802_3u +- id: 7805 + name: IEEE 802.3x + friendly_id: networking_standards__ieee_802_3x +- id: 7806 + name: IEEE 802.3z + friendly_id: networking_standards__ieee_802_3z +- id: 7807 + name: IEEE 802.5 + friendly_id: networking_standards__ieee_802_5 +- id: 7808 + name: Other + friendly_id: networking_standards__other +- id: 7809 + name: 1024-bit RSA + friendly_id: security_algorithms__1024_bit_rsa +- id: 7810 + name: 104-bit WEP + friendly_id: security_algorithms__104_bit_wep +- id: 7811 + name: 128-bit AES + friendly_id: security_algorithms__128_bit_aes +- id: 7812 + name: 128-bit RC4 + friendly_id: security_algorithms__128_bit_rc4 +- id: 7813 + name: 128-bit SSL + friendly_id: security_algorithms__128_bit_ssl +- id: 7814 + name: 128-bit WEP + friendly_id: security_algorithms__128_bit_wep +- id: 7815 + name: 152-bit WEP + friendly_id: security_algorithms__152_bit_wep +- id: 7816 + name: 192-bit AES + friendly_id: security_algorithms__192_bit_aes +- id: 7817 + name: 2048-bit RSA + friendly_id: security_algorithms__2048_bit_rsa +- id: 7818 + name: 256-bit AES + friendly_id: security_algorithms__256_bit_aes +- id: 7819 + name: 256-bit AES-XTS + friendly_id: security_algorithms__256_bit_aes_xts +- id: 7820 + name: 256-bit TwoFish + friendly_id: security_algorithms__256_bit_twofish +- id: 7821 + name: 256-bit WEP + friendly_id: security_algorithms__256_bit_wep +- id: 7822 + name: 384-bit AES + friendly_id: security_algorithms__384_bit_aes +- id: 7823 + name: 3DES + friendly_id: security_algorithms__3des +- id: 7824 + name: 40-bit WEP + friendly_id: security_algorithms__40_bit_wep +- id: 7825 + name: 4096-bit RSA + friendly_id: security_algorithms__4096_bit_rsa +- id: 7826 + name: 512-bit AES + friendly_id: security_algorithms__512_bit_aes +- id: 7827 + name: 56-bit AES + friendly_id: security_algorithms__56_bit_aes +- id: 7828 + name: 64-bit AES + friendly_id: security_algorithms__64_bit_aes +- id: 7829 + name: 64-bit WEP + friendly_id: security_algorithms__64_bit_wep +- id: 7830 + name: 802.1x radius + friendly_id: security_algorithms__802_1x_radius +- id: 7831 + name: AES + friendly_id: security_algorithms__aes +- id: 7832 + name: AES-CCMP + friendly_id: security_algorithms__aes_ccmp +- id: 7833 + name: AES-GCMP + friendly_id: security_algorithms__aes_gcmp +- id: 7834 + name: APOP + friendly_id: security_algorithms__apop +- id: 7835 + name: CAST + friendly_id: security_algorithms__cast +- id: 7836 + name: CCX v4 + friendly_id: security_algorithms__ccx_v4 +- id: 7837 + name: DES + friendly_id: security_algorithms__des +- id: 7838 + name: EAP + friendly_id: security_algorithms__eap +- id: 7839 + name: EAP-AKA + friendly_id: security_algorithms__eap_aka +- id: 7840 + name: EAP-FAST + friendly_id: security_algorithms__eap_fast +- id: 7841 + name: EAP-GTC + friendly_id: security_algorithms__eap_gtc +- id: 7842 + name: EAP-LEAP + friendly_id: security_algorithms__eap_leap +- id: 7843 + name: EAP-MD5 + friendly_id: security_algorithms__eap_md5 +- id: 7844 + name: EAP-PEAP + friendly_id: security_algorithms__eap_peap +- id: 7845 + name: EAP-PWD + friendly_id: security_algorithms__eap_pwd +- id: 7846 + name: EAP-SIM + friendly_id: security_algorithms__eap_sim +- id: 7847 + name: EAP-TLS + friendly_id: security_algorithms__eap_tls +- id: 7848 + name: EAP-TTLS + friendly_id: security_algorithms__eap_ttls +- id: 7849 + name: FIPS 140 + friendly_id: security_algorithms__fips_140 +- id: 7850 + name: FIPS 140-2 + friendly_id: security_algorithms__fips_140_2 +- id: 7851 + name: FIPS 140-3 + friendly_id: security_algorithms__fips_140_3 +- id: 7852 + name: FIPS 197 + friendly_id: security_algorithms__fips_197 +- id: 7853 + name: FTPES + friendly_id: security_algorithms__ftpes +- id: 7854 + name: HTTPS + friendly_id: security_algorithms__https +- id: 7855 + name: IPPS + friendly_id: security_algorithms__ipps +- id: 7856 + name: IPSec + friendly_id: security_algorithms__ipsec +- id: 7857 + name: LEAP + friendly_id: security_algorithms__leap +- id: 7858 + name: MD5 + friendly_id: security_algorithms__md5 +- id: 7859 + name: MSCHAPv2 + friendly_id: security_algorithms__mschapv2 +- id: 7860 + name: Not supported + friendly_id: security_algorithms__not_supported +- id: 7861 + name: PEAP + friendly_id: security_algorithms__peap +- id: 7862 + name: RipeMD160 + friendly_id: security_algorithms__ripemd160 +- id: 7863 + name: RSA + friendly_id: security_algorithms__rsa +- id: 7864 + name: SHA-1 + friendly_id: security_algorithms__sha_1 +- id: 7865 + name: SHA-2 + friendly_id: security_algorithms__sha_2 +- id: 7866 + name: SHA-256 + friendly_id: security_algorithms__sha_256 +- id: 7867 + name: SHA-384 + friendly_id: security_algorithms__sha_384 +- id: 7868 + name: SHA-512 + friendly_id: security_algorithms__sha_512 +- id: 7869 + name: SIPS + friendly_id: security_algorithms__sips +- id: 7870 + name: SMTP-AUTH + friendly_id: security_algorithms__smtp_auth +- id: 7871 + name: SNMP + friendly_id: security_algorithms__snmp +- id: 7872 + name: SNMPv2 + friendly_id: security_algorithms__snmpv2 +- id: 7873 + name: SNMPv3 + friendly_id: security_algorithms__snmpv3 +- id: 7874 + name: SRTP + friendly_id: security_algorithms__srtp +- id: 7875 + name: SSH + friendly_id: security_algorithms__ssh +- id: 7876 + name: SSH-1.5 + friendly_id: security_algorithms__ssh_1_5 +- id: 7877 + name: SSH-2 + friendly_id: security_algorithms__ssh_2 +- id: 7878 + name: SSID + friendly_id: security_algorithms__ssid +- id: 7879 + name: SSL/TLS + friendly_id: security_algorithms__ssl_tls +- id: 7880 + name: TKIP + friendly_id: security_algorithms__tkip +- id: 7881 + name: TLS + friendly_id: security_algorithms__tls +- id: 7882 + name: TTLS + friendly_id: security_algorithms__ttls +- id: 7883 + name: WAPI + friendly_id: security_algorithms__wapi +- id: 7884 + name: WDS + friendly_id: security_algorithms__wds +- id: 7885 + name: WEP + friendly_id: security_algorithms__wep +- id: 7886 + name: WHQL + friendly_id: security_algorithms__whql +- id: 7887 + name: WMM + friendly_id: security_algorithms__wmm +- id: 7888 + name: WPA + friendly_id: security_algorithms__wpa +- id: 7889 + name: WPA-AES + friendly_id: security_algorithms__wpa_aes +- id: 7890 + name: WPA-EAP + friendly_id: security_algorithms__wpa_eap +- id: 7891 + name: WPA-enterprise + friendly_id: security_algorithms__wpa_enterprise +- id: 7892 + name: WPA-PSK + friendly_id: security_algorithms__wpa_psk +- id: 7893 + name: WPA-RADIUS + friendly_id: security_algorithms__wpa_radius +- id: 7894 + name: WPA-SDK + friendly_id: security_algorithms__wpa_sdk +- id: 7895 + name: WPA-TKIP + friendly_id: security_algorithms__wpa_tkip +- id: 7896 + name: WPA2 + friendly_id: security_algorithms__wpa2 +- id: 7897 + name: WPA2-AES + friendly_id: security_algorithms__wpa2_aes +- id: 7898 + name: WPA2-CCMP + friendly_id: security_algorithms__wpa2_ccmp +- id: 7899 + name: WPA2-EAP + friendly_id: security_algorithms__wpa2_eap +- id: 7900 + name: WPA2-enterprise + friendly_id: security_algorithms__wpa2_enterprise +- id: 7901 + name: WPA2-enterprise-PEAP + friendly_id: security_algorithms__wpa2_enterprise_peap +- id: 7902 + name: WPA2-PSK + friendly_id: security_algorithms__wpa2_psk +- id: 7903 + name: WPA2-RADIUS + friendly_id: security_algorithms__wpa2_radius +- id: 7904 + name: WPA2-TKIP + friendly_id: security_algorithms__wpa2_tkip +- id: 7905 + name: WPA3 + friendly_id: security_algorithms__wpa3 +- id: 7906 + name: WPA3-EAP + friendly_id: security_algorithms__wpa3_eap +- id: 7907 + name: WPA3-enterprise + friendly_id: security_algorithms__wpa3_enterprise +- id: 7908 + name: WPA3-PSK + friendly_id: security_algorithms__wpa3_psk +- id: 7909 + name: WPA3-SAE + friendly_id: security_algorithms__wpa3_sae +- id: 7910 + name: WPS + friendly_id: security_algorithms__wps +- id: 7911 + name: WPS-NFC + friendly_id: security_algorithms__wps_nfc +- id: 7912 + name: WPS-PBC + friendly_id: security_algorithms__wps_pbc +- id: 7913 + name: WPS-PIN + friendly_id: security_algorithms__wps_pin +- id: 7914 + name: WPS-USB + friendly_id: security_algorithms__wps_usb +- id: 7915 + name: Other + friendly_id: security_algorithms__other +- id: 7916 + name: 2.4 GHz + friendly_id: wi_fi_band__2_4_ghz +- id: 7917 + name: 5 GHz + friendly_id: wi_fi_band__5_ghz +- id: 7918 + name: 6 GHz + friendly_id: wi_fi_band__6_ghz +- id: 7919 + name: 60 GHz + friendly_id: wi_fi_band__60_ghz +- id: 7920 + name: Dual-band (2.4 GHz / 5 GHz) + friendly_id: wi_fi_band__dual_band_2_4_ghz_5_ghz +- id: 7921 + name: Single-band (2.4 GHz) + friendly_id: wi_fi_band__single_band_2_4_ghz +- id: 7922 + name: Single-band (60 GHz) + friendly_id: wi_fi_band__single_band_60_ghz +- id: 7923 + name: Tri-band (2.4 GHz / 5 GHz / 5 GHz) + friendly_id: wi_fi_band__tri_band_2_4_ghz_5_ghz_5_ghz +- id: 7924 + name: Tri-band (2.4 GHz / 5 GHz / 6 GHz) + friendly_id: wi_fi_band__tri_band_2_4_ghz_5_ghz_6_ghz +- id: 7925 + name: Tri-band (2.4 GHz / 5 GHz / 60 GHz) + friendly_id: wi_fi_band__tri_band_2_4_ghz_5_ghz_60_ghz +- id: 7926 + name: E1/T1 + friendly_id: pstn_connectivity_options__e1_t1 +- id: 7927 + name: FXO + friendly_id: pstn_connectivity_options__fxo +- id: 7928 + name: FXS + friendly_id: pstn_connectivity_options__fxs +- id: 7929 + name: ISDN BRI + friendly_id: pstn_connectivity_options__isdn_bri +- id: 7930 + name: ISDN PRI + friendly_id: pstn_connectivity_options__isdn_pri +- id: 7931 + name: POTS + friendly_id: pstn_connectivity_options__pots +- id: 7932 + name: H.323 + friendly_id: voip_protocol_support__h_323 +- id: 7933 + name: IAX + friendly_id: voip_protocol_support__iax +- id: 7934 + name: MGCP + friendly_id: voip_protocol_support__mgcp +- id: 7935 + name: RTP + friendly_id: voip_protocol_support__rtp +- id: 7936 + name: SCCP + friendly_id: voip_protocol_support__sccp +- id: 7937 + name: SIP + friendly_id: voip_protocol_support__sip +- id: 7938 + name: IEEE 802.3af + friendly_id: poe_standard__ieee_802_3af +- id: 7939 + name: IEEE 802.3at + friendly_id: poe_standard__ieee_802_3at +- id: 7940 + name: IEEE 802.3bt + friendly_id: poe_standard__ieee_802_3bt +- id: 7941 + name: Passive + friendly_id: poe_standard__passive +- id: 7942 + name: Acrylonitrile butadiene styrene (ABS) + friendly_id: compatible_filament__acrylonitrile_butadiene_styrene_abs +- id: 7943 + name: Carbon fiber + friendly_id: compatible_filament__carbon_fiber +- id: 7944 + name: Ceramic + friendly_id: compatible_filament__ceramic +- id: 7945 + name: Conductive + friendly_id: compatible_filament__conductive +- id: 7946 + name: Flexible + friendly_id: compatible_filament__flexible +- id: 7947 + name: Food-safe + friendly_id: compatible_filament__food_safe +- id: 7948 + name: Glitter + friendly_id: compatible_filament__glitter +- id: 7949 + name: Glow-in-the-dark + friendly_id: compatible_filament__glow_in_the_dark +- id: 7950 + name: High impact polystyrene (HIPS) + friendly_id: compatible_filament__high_impact_polystyrene_hips +- id: 7951 + name: Magnetic + friendly_id: compatible_filament__magnetic +- id: 7952 + name: Marble + friendly_id: compatible_filament__marble +- id: 7953 + name: Metal + friendly_id: compatible_filament__metal +- id: 7954 + name: Nylon + friendly_id: compatible_filament__nylon +- id: 7955 + name: Polychromatic + friendly_id: compatible_filament__polychromatic +- id: 7956 + name: Polyethylene terephthalate glycol (PETG) + friendly_id: compatible_filament__polyethylene_terephthalate_glycol_petg +- id: 7957 + name: Polylactic acid (PLA) + friendly_id: compatible_filament__polylactic_acid_pla +- id: 7958 + name: Polyvinyl alcohol (PVA) + friendly_id: compatible_filament__polyvinyl_alcohol_pva +- id: 7959 + name: Recycled filament + friendly_id: compatible_filament__recycled_filament +- id: 7960 + name: Resin + friendly_id: compatible_filament__resin +- id: 7961 + name: Silk + friendly_id: compatible_filament__silk +- id: 7962 + name: Thermoplastic polyurethane (TPU) + friendly_id: compatible_filament__thermoplastic_polyurethane_tpu +- id: 7963 + name: Transparent/Clear + friendly_id: compatible_filament__transparent_clear +- id: 7964 + name: UV-sensitive + friendly_id: compatible_filament__uv_sensitive +- id: 7965 + name: Water-soluble support material + friendly_id: compatible_filament__water_soluble_support_material +- id: 7966 + name: Wood + friendly_id: compatible_filament__wood +- id: 7967 + name: Other + friendly_id: compatible_filament__other +- id: 7968 + name: DIY enclosure + friendly_id: enclosure_type__diy_enclosure +- id: 7969 + name: Fully enclosed + friendly_id: enclosure_type__fully_enclosed +- id: 7970 + name: No enclosure + friendly_id: enclosure_type__no_enclosure +- id: 7971 + name: Open frame + friendly_id: enclosure_type__open_frame +- id: 7972 + name: Partially enclosed + friendly_id: enclosure_type__partially_enclosed +- id: 7973 + name: Upgradable enclosure + friendly_id: enclosure_type__upgradable_enclosure +- id: 7974 + name: 3D printing + friendly_id: print_technology__3d_printing +- id: 7975 + name: Additive manufacturing + friendly_id: print_technology__additive_manufacturing +- id: 7976 + name: Dye sublimation + friendly_id: print_technology__dye_sublimation +- id: 7977 + name: FDM + friendly_id: print_technology__fdm +- id: 7978 + name: FFF + friendly_id: print_technology__fff +- id: 7979 + name: Impact + friendly_id: print_technology__impact +- id: 7980 + name: Inkjet + friendly_id: print_technology__inkjet +- id: 7981 + name: Laser + friendly_id: print_technology__laser +- id: 7982 + name: LED + friendly_id: print_technology__led +- id: 7983 + name: Line matrix + friendly_id: print_technology__line_matrix +- id: 7984 + name: MEM inkjet + friendly_id: print_technology__mem_inkjet +- id: 7985 + name: PJP + friendly_id: print_technology__pjp +- id: 7986 + name: Solid ink + friendly_id: print_technology__solid_ink +- id: 7987 + name: Stereolithography + friendly_id: print_technology__stereolithography +- id: 7988 + name: Thermal transfer + friendly_id: print_technology__thermal_transfer +- id: 7989 + name: Cleaning kit + friendly_id: printer_accessories_included__cleaning_kit +- id: 7990 + name: Fuser + friendly_id: printer_accessories_included__fuser +- id: 7991 + name: Ink cartridge + friendly_id: printer_accessories_included__ink_cartridge +- id: 7992 + name: Paper tray + friendly_id: printer_accessories_included__paper_tray +- id: 7993 + name: Toner cartridge + friendly_id: printer_accessories_included__toner_cartridge +- id: 7994 + name: Transfer roller + friendly_id: printer_accessories_included__transfer_roller +- id: 7995 + name: Barcode printer + friendly_id: suitable_for_printer_type__barcode_printer +- id: 7996 + name: Calculator + friendly_id: suitable_for_printer_type__calculator +- id: 7997 + name: Dot matrix printer + friendly_id: suitable_for_printer_type__dot_matrix_printer +- id: 7998 + name: Fax machine + friendly_id: suitable_for_printer_type__fax_machine +- id: 7999 + name: ID card printer + friendly_id: suitable_for_printer_type__id_card_printer +- id: 8000 + name: Label printer + friendly_id: suitable_for_printer_type__label_printer +- id: 8001 + name: Photo printer + friendly_id: suitable_for_printer_type__photo_printer +- id: 8002 + name: PoS + friendly_id: suitable_for_printer_type__pos +- id: 8003 + name: Time clock + friendly_id: suitable_for_printer_type__time_clock +- id: 8004 + name: Typewriter + friendly_id: suitable_for_printer_type__typewriter +- id: 8005 + name: Other + friendly_id: suitable_for_printer_type__other +- id: 8006 + name: Black + friendly_id: printing_color__black +- id: 8007 + name: Cyan + friendly_id: printing_color__cyan +- id: 8008 + name: Magenta + friendly_id: printing_color__magenta +- id: 8009 + name: Yellow + friendly_id: printing_color__yellow +- id: 8010 + name: Automatic duplexing + friendly_id: duplexing_technology__automatic_duplexing +- id: 8011 + name: Duplexing unit included + friendly_id: duplexing_technology__duplexing_unit_included +- id: 8012 + name: Duplexing unit optional + friendly_id: duplexing_technology__duplexing_unit_optional +- id: 8013 + name: Manual duplexing + friendly_id: duplexing_technology__manual_duplexing +- id: 8014 + name: Not supported + friendly_id: duplexing_technology__not_supported +- id: 8015 + name: "#10" + friendly_id: paper_size__#10 +- id: 8016 + name: 148 mm x 210 mm + friendly_id: paper_size__148_mm_x_210_mm +- id: 8017 + name: 176 mm x 250 mm + friendly_id: paper_size__176_mm_x_250_mm +- id: 8018 + name: 210 mm x 297 mm + friendly_id: paper_size__210_mm_x_297_mm +- id: 8019 + name: 297 mm x 420 mm + friendly_id: paper_size__297_mm_x_420_mm +- id: 8020 + name: 4" x 6" + friendly_id: paper_size__4_x_6 +- id: 8021 + name: 5" x 7" + friendly_id: paper_size__5_x_7 +- id: 8022 + name: 7.25" x 10.5" + friendly_id: paper_size__7_25_x_10_5 +- id: 8023 + name: 8.5" x 14" + friendly_id: paper_size__8_5_x_14 +- id: 8024 + name: 8" x 10" + friendly_id: paper_size__8_x_10 +- id: 8025 + name: B5 + friendly_id: paper_size__b5 +- id: 8026 + name: C5 + friendly_id: paper_size__c5 +- id: 8027 + name: Custom size + friendly_id: paper_size__custom_size +- id: 8028 + name: Envelope + friendly_id: paper_size__envelope +- id: 8029 + name: Executive + friendly_id: paper_size__executive +- id: 8030 + name: Photo + friendly_id: paper_size__photo +- id: 8031 + name: Postcard + friendly_id: paper_size__postcard +- id: 8032 + name: Other + friendly_id: paper_size__other +- id: 8033 + name: CD/DVD print + friendly_id: printer_functions__cd_dvd_print +- id: 8034 + name: Cloud print + friendly_id: printer_functions__cloud_print +- id: 8035 + name: Copy + friendly_id: printer_functions__copy +- id: 8036 + name: Duplex (double-sided) print + friendly_id: printer_functions__duplex_double_sided_print +- id: 8037 + name: Email + friendly_id: printer_functions__email +- id: 8038 + name: Fax + friendly_id: printer_functions__fax +- id: 8039 + name: Network print + friendly_id: printer_functions__network_print +- id: 8040 + name: Photo print + friendly_id: printer_functions__photo_print +- id: 8041 + name: Print + friendly_id: printer_functions__print +- id: 8042 + name: Scan + friendly_id: printer_functions__scan +- id: 8043 + name: Wireless print + friendly_id: printer_functions__wireless_print +- id: 8044 + name: Auto mode + friendly_id: filtering_modes__auto_mode +- id: 8045 + name: City mode + friendly_id: filtering_modes__city_mode +- id: 8046 + name: Filter mode + friendly_id: filtering_modes__filter_mode +- id: 8047 + name: GPS lockouts + friendly_id: filtering_modes__gps_lockouts +- id: 8048 + name: Highway mode + friendly_id: filtering_modes__highway_mode +- id: 8049 + name: Ka-band segmentation + friendly_id: filtering_modes__ka_band_segmentation +- id: 8050 + name: TSR + friendly_id: filtering_modes__tsr +- id: 8051 + name: C + friendly_id: radar_bands__c +- id: 8052 + name: K + friendly_id: radar_bands__k +- id: 8053 + name: Ka + friendly_id: radar_bands__ka +- id: 8054 + name: Ku + friendly_id: radar_bands__ku +- id: 8055 + name: L + friendly_id: radar_bands__l +- id: 8056 + name: S + friendly_id: radar_bands__s +- id: 8057 + name: X + friendly_id: radar_bands__x +- id: 8058 + name: '100:1' + friendly_id: contrast_ratio_typical__1001 +- id: 8059 + name: '120:1' + friendly_id: contrast_ratio_typical__1201 +- id: 8060 + name: '150:1' + friendly_id: contrast_ratio_typical__1501 +- id: 8061 + name: '200:1' + friendly_id: contrast_ratio_typical__2001 +- id: 8062 + name: '250:1' + friendly_id: contrast_ratio_typical__2501 +- id: 8063 + name: '300:1' + friendly_id: contrast_ratio_typical__3001 +- id: 8064 + name: '350:1' + friendly_id: contrast_ratio_typical__3501 +- id: 8065 + name: '400:1' + friendly_id: contrast_ratio_typical__4001 +- id: 8066 + name: '450:1' + friendly_id: contrast_ratio_typical__4501 +- id: 8067 + name: '500:1' + friendly_id: contrast_ratio_typical__5001 +- id: 8068 + name: '550:1' + friendly_id: contrast_ratio_typical__5501 +- id: 8069 + name: '580:1' + friendly_id: contrast_ratio_typical__5801 +- id: 8070 + name: '600:1' + friendly_id: contrast_ratio_typical__6001 +- id: 8071 + name: '650:1' + friendly_id: contrast_ratio_typical__6501 +- id: 8072 + name: '700:1' + friendly_id: contrast_ratio_typical__7001 +- id: 8073 + name: '750:1' + friendly_id: contrast_ratio_typical__7501 +- id: 8074 + name: '800:1' + friendly_id: contrast_ratio_typical__8001 +- id: 8075 + name: '850:1' + friendly_id: contrast_ratio_typical__8501 +- id: 8076 + name: '900:1' + friendly_id: contrast_ratio_typical__9001 +- id: 8077 + name: '1000:1' + friendly_id: contrast_ratio_typical__10001 +- id: 8078 + name: '1100:1' + friendly_id: contrast_ratio_typical__11001 +- id: 8079 + name: '1200:1' + friendly_id: contrast_ratio_typical__12001 +- id: 8080 + name: '1300:1' + friendly_id: contrast_ratio_typical__13001 +- id: 8081 + name: '1400:1' + friendly_id: contrast_ratio_typical__14001 +- id: 8082 + name: '1450:1' + friendly_id: contrast_ratio_typical__14501 +- id: 8083 + name: '1500:1' + friendly_id: contrast_ratio_typical__15001 +- id: 8084 + name: '1600:1' + friendly_id: contrast_ratio_typical__16001 +- id: 8085 + name: '1650:1' + friendly_id: contrast_ratio_typical__16501 +- id: 8086 + name: '1700:1' + friendly_id: contrast_ratio_typical__17001 +- id: 8087 + name: '1800:1' + friendly_id: contrast_ratio_typical__18001 +- id: 8088 + name: '2000:1' + friendly_id: contrast_ratio_typical__20001 +- id: 8089 + name: '2100:1' + friendly_id: contrast_ratio_typical__21001 +- id: 8090 + name: '2200:1' + friendly_id: contrast_ratio_typical__22001 +- id: 8091 + name: '2300:1' + friendly_id: contrast_ratio_typical__23001 +- id: 8092 + name: '2400:1' + friendly_id: contrast_ratio_typical__24001 +- id: 8093 + name: '2600:1' + friendly_id: contrast_ratio_typical__26001 +- id: 8094 + name: '2700:1' + friendly_id: contrast_ratio_typical__27001 +- id: 8095 + name: '2800:1' + friendly_id: contrast_ratio_typical__28001 +- id: 8096 + name: '2900:1' + friendly_id: contrast_ratio_typical__29001 +- id: 8097 + name: '3000:1' + friendly_id: contrast_ratio_typical__30001 +- id: 8098 + name: '3100:1' + friendly_id: contrast_ratio_typical__31001 +- id: 8099 + name: '3200:1' + friendly_id: contrast_ratio_typical__32001 +- id: 8100 + name: '3300:1' + friendly_id: contrast_ratio_typical__33001 +- id: 8101 + name: '3500:1' + friendly_id: contrast_ratio_typical__35001 +- id: 8102 + name: '3700:1' + friendly_id: contrast_ratio_typical__37001 +- id: 8103 + name: '3750:1' + friendly_id: contrast_ratio_typical__37501 +- id: 8104 + name: '3800:1' + friendly_id: contrast_ratio_typical__38001 +- id: 8105 + name: '4000:1' + friendly_id: contrast_ratio_typical__40001 +- id: 8106 + name: '4150:1' + friendly_id: contrast_ratio_typical__41501 +- id: 8107 + name: '430:1' + friendly_id: contrast_ratio_typical__4301 +- id: 8108 + name: '4500:1' + friendly_id: contrast_ratio_typical__45001 +- id: 8109 + name: '4600:1' + friendly_id: contrast_ratio_typical__46001 +- id: 8110 + name: '4800:1' + friendly_id: contrast_ratio_typical__48001 +- id: 8111 + name: '5000:1' + friendly_id: contrast_ratio_typical__50001 +- id: 8112 + name: '5300:1' + friendly_id: contrast_ratio_typical__53001 +- id: 8113 + name: '5500:1' + friendly_id: contrast_ratio_typical__55001 +- id: 8114 + name: '6000:1' + friendly_id: contrast_ratio_typical__60001 +- id: 8115 + name: '6500:1' + friendly_id: contrast_ratio_typical__65001 +- id: 8116 + name: '7000:1' + friendly_id: contrast_ratio_typical__70001 +- id: 8117 + name: '7500:1' + friendly_id: contrast_ratio_typical__75001 +- id: 8118 + name: '8000:1' + friendly_id: contrast_ratio_typical__80001 +- id: 8119 + name: '8300:1' + friendly_id: contrast_ratio_typical__83001 +- id: 8120 + name: '10000:1' + friendly_id: contrast_ratio_typical__100001 +- id: 8121 + name: '11000:1' + friendly_id: contrast_ratio_typical__110001 +- id: 8122 + name: '12000:1' + friendly_id: contrast_ratio_typical__120001 +- id: 8123 + name: '15000:1' + friendly_id: contrast_ratio_typical__150001 +- id: 8124 + name: '20000:1' + friendly_id: contrast_ratio_typical__200001 +- id: 8125 + name: '30000:1' + friendly_id: contrast_ratio_typical__300001 +- id: 8126 + name: '40000:1' + friendly_id: contrast_ratio_typical__400001 +- id: 8127 + name: '50000:1' + friendly_id: contrast_ratio_typical__500001 +- id: 8128 + name: '150000:1' + friendly_id: contrast_ratio_typical__1500001 +- id: 8129 + name: '200000:1' + friendly_id: contrast_ratio_typical__2000001 +- id: 8130 + name: '300000:1' + friendly_id: contrast_ratio_typical__3000001 +- id: 8131 + name: '500000:1' + friendly_id: contrast_ratio_typical__5000001 +- id: 8132 + name: '1000000:1' + friendly_id: contrast_ratio_typical__10000001 +- id: 8133 + name: '2000000:1' + friendly_id: contrast_ratio_typical__20000001 +- id: 8134 + name: '3000000:1' + friendly_id: contrast_ratio_typical__30000001 +- id: 8135 + name: '10000000:1' + friendly_id: contrast_ratio_typical__100000001 +- id: 8136 + name: '30000000:1' + friendly_id: contrast_ratio_typical__300000001 +- id: 8137 + name: '100000000:1' + friendly_id: contrast_ratio_typical__1000000001 +- id: 8138 + name: Other + friendly_id: contrast_ratio_typical__other +- id: 8139 + name: AHVA + friendly_id: display_technology__ahva +- id: 8140 + name: PLS + friendly_id: display_technology__pls +- id: 8141 + name: A+++ + friendly_id: energy_efficiency_class_hdr__a+++ +- id: 8142 + name: A++ + friendly_id: energy_efficiency_class_hdr__a++ +- id: 8143 + name: A+ + friendly_id: energy_efficiency_class_hdr__a+ +- id: 8144 + name: A + friendly_id: energy_efficiency_class_hdr__a +- id: 8145 + name: B + friendly_id: energy_efficiency_class_hdr__b +- id: 8146 + name: C + friendly_id: energy_efficiency_class_hdr__c +- id: 8147 + name: D + friendly_id: energy_efficiency_class_hdr__d +- id: 8148 + name: E + friendly_id: energy_efficiency_class_hdr__e +- id: 8149 + name: F + friendly_id: energy_efficiency_class_hdr__f +- id: 8150 + name: G + friendly_id: energy_efficiency_class_hdr__g +- id: 8151 + name: A+++ + friendly_id: energy_efficiency_class_sdr__a+++ +- id: 8152 + name: A++ + friendly_id: energy_efficiency_class_sdr__a++ +- id: 8153 + name: A+ + friendly_id: energy_efficiency_class_sdr__a+ +- id: 8154 + name: A + friendly_id: energy_efficiency_class_sdr__a +- id: 8155 + name: B + friendly_id: energy_efficiency_class_sdr__b +- id: 8156 + name: C + friendly_id: energy_efficiency_class_sdr__c +- id: 8157 + name: D + friendly_id: energy_efficiency_class_sdr__d +- id: 8158 + name: E + friendly_id: energy_efficiency_class_sdr__e +- id: 8159 + name: F + friendly_id: energy_efficiency_class_sdr__f +- id: 8160 + name: G + friendly_id: energy_efficiency_class_sdr__g +- id: 8161 + name: '1:1' + friendly_id: native_aspect_ratio__11 +- id: 8162 + name: '15:9' + friendly_id: native_aspect_ratio__159 +- id: 8163 + name: '16:10' + friendly_id: native_aspect_ratio__1610 +- id: 8164 + name: '16:18' + friendly_id: native_aspect_ratio__1618 +- id: 8165 + name: '16:9' + friendly_id: native_aspect_ratio__169 +- id: 8166 + name: '17:10' + friendly_id: native_aspect_ratio__1710 +- id: 8167 + name: '17:9' + friendly_id: native_aspect_ratio__179 +- id: 8168 + name: '21:9' + friendly_id: native_aspect_ratio__219 +- id: 8169 + name: '24:10:00' + friendly_id: native_aspect_ratio__241000 +- id: 8170 + name: '3:2' + friendly_id: native_aspect_ratio__32 +- id: 8171 + name: '3:4' + friendly_id: native_aspect_ratio__34 +- id: 8172 + name: '32:10:00' + friendly_id: native_aspect_ratio__321000 +- id: 8173 + name: '32:9' + friendly_id: native_aspect_ratio__329 +- id: 8174 + name: '4:3' + friendly_id: native_aspect_ratio__43 +- id: 8175 + name: '4:5' + friendly_id: native_aspect_ratio__45 +- id: 8176 + name: '5:4' + friendly_id: native_aspect_ratio__54 +- id: 8177 + name: '8:5' + friendly_id: native_aspect_ratio__85 +- id: 8178 + name: '9:16' + friendly_id: native_aspect_ratio__916 +- id: 8179 + name: Curved + friendly_id: monitor_shape__curved +- id: 8180 + name: Flat + friendly_id: monitor_shape__flat +- id: 8181 + name: Advanced HDR + friendly_id: hdr_format__advanced_hdr +- id: 8182 + name: Dolby vision + friendly_id: hdr_format__dolby_vision +- id: 8183 + name: HDR10 + friendly_id: hdr_format__hdr10 +- id: 8184 + name: HDR10+ + friendly_id: hdr_format__hdr10+ +- id: 8185 + name: HLG + friendly_id: hdr_format__hlg +- id: 8186 + name: No HDR + friendly_id: hdr_format__no_hdr +- id: 8187 + name: Android TV + friendly_id: smart_tv_platform__android_tv +- id: 8188 + name: Apple tvOS + friendly_id: smart_tv_platform__apple_tvos +- id: 8189 + name: Fire TV + friendly_id: smart_tv_platform__fire_tv +- id: 8190 + name: Panasonic My Home Screen + friendly_id: smart_tv_platform__panasonic_my_home_screen +- id: 8191 + name: Roku TV + friendly_id: smart_tv_platform__roku_tv +- id: 8192 + name: Tizen + friendly_id: smart_tv_platform__tizen +- id: 8193 + name: Vizio SmartCast + friendly_id: smart_tv_platform__vizio_smartcast +- id: 8194 + name: webOS + friendly_id: smart_tv_platform__webos +- id: 8195 + name: Adobe RGB + friendly_id: color_accuracy_standards__adobe_rgb +- id: 8196 + name: CIE lab + friendly_id: color_accuracy_standards__cie_lab +- id: 8197 + name: CIE LCh + friendly_id: color_accuracy_standards__cie_lch +- id: 8198 + name: CIE RGB + friendly_id: color_accuracy_standards__cie_rgb +- id: 8199 + name: CIE XYZ + friendly_id: color_accuracy_standards__cie_xyz +- id: 8200 + name: DCI-P3 + friendly_id: color_accuracy_standards__dci_p3 +- id: 8201 + name: DICOM + friendly_id: color_accuracy_standards__dicom +- id: 8202 + name: EBU + friendly_id: color_accuracy_standards__ebu +- id: 8203 + name: NTSC + friendly_id: color_accuracy_standards__ntsc +- id: 8204 + name: PAL + friendly_id: color_accuracy_standards__pal +- id: 8205 + name: Pantone + friendly_id: color_accuracy_standards__pantone +- id: 8206 + name: Rec. 2020 + friendly_id: color_accuracy_standards__rec_2020 +- id: 8207 + name: Rec. 709 + friendly_id: color_accuracy_standards__rec_709 +- id: 8208 + name: SMPTE-C + friendly_id: color_accuracy_standards__smpte_c +- id: 8209 + name: sRGB + friendly_id: color_accuracy_standards__srgb +- id: 8210 + name: Laser + friendly_id: projector_light_source__laser +- id: 8211 + name: LED + friendly_id: projector_light_source__led +- id: 8212 + name: Metal halide + friendly_id: projector_light_source__metal_halide +- id: 8213 + name: NSH + friendly_id: projector_light_source__nsh +- id: 8214 + name: P-VIP + friendly_id: projector_light_source__p_vip +- id: 8215 + name: SHP + friendly_id: projector_light_source__shp +- id: 8216 + name: UHP + friendly_id: projector_light_source__uhp +- id: 8217 + name: Other + friendly_id: projector_light_source__other +- id: 8218 + name: 3G2 + friendly_id: video_codecs_formats_supported__3g2 +- id: 8219 + name: 3GP + friendly_id: video_codecs_formats_supported__3gp +- id: 8220 + name: 3GPP + friendly_id: video_codecs_formats_supported__3gpp +- id: 8221 + name: AMV + friendly_id: video_codecs_formats_supported__amv +- id: 8222 + name: ASF + friendly_id: video_codecs_formats_supported__asf +- id: 8223 + name: ASP + friendly_id: video_codecs_formats_supported__asp +- id: 8224 + name: AVC + friendly_id: video_codecs_formats_supported__avc +- id: 8225 + name: AVCHD + friendly_id: video_codecs_formats_supported__avchd +- id: 8226 + name: AVI + friendly_id: video_codecs_formats_supported__avi +- id: 8227 + name: AVS + friendly_id: video_codecs_formats_supported__avs +- id: 8228 + name: AVS+ + friendly_id: video_codecs_formats_supported__avs+ +- id: 8229 + name: BDMV + friendly_id: video_codecs_formats_supported__bdmv +- id: 8230 + name: DAT + friendly_id: video_codecs_formats_supported__dat +- id: 8231 + name: DIV X3 + friendly_id: video_codecs_formats_supported__div_x3 +- id: 8232 + name: DivX + friendly_id: video_codecs_formats_supported__divx +- id: 8233 + name: DivX HD + friendly_id: video_codecs_formats_supported__divx_hd +- id: 8234 + name: DivX WEBM + friendly_id: video_codecs_formats_supported__divx_webm +- id: 8235 + name: DV + friendly_id: video_codecs_formats_supported__dv +- id: 8236 + name: DVR-MS + friendly_id: video_codecs_formats_supported__dvr_ms +- id: 8237 + name: FLV + friendly_id: video_codecs_formats_supported__flv +- id: 8238 + name: H.239 + friendly_id: video_codecs_formats_supported__h_239 +- id: 8239 + name: H.261 + friendly_id: video_codecs_formats_supported__h_261 +- id: 8240 + name: H.262 + friendly_id: video_codecs_formats_supported__h_262 +- id: 8241 + name: H.263 + friendly_id: video_codecs_formats_supported__h_263 +- id: 8242 + name: H.263+ + friendly_id: video_codecs_formats_supported__h_263+ +- id: 8243 + name: H.264 + friendly_id: video_codecs_formats_supported__h_264 +- id: 8244 + name: H.264 BP + friendly_id: video_codecs_formats_supported__h_264_bp +- id: 8245 + name: H.264+ + friendly_id: video_codecs_formats_supported__h_264+ +- id: 8246 + name: H.264B + friendly_id: video_codecs_formats_supported__h_264b +- id: 8247 + name: H.265 + friendly_id: video_codecs_formats_supported__h_265 +- id: 8248 + name: H.265+ + friendly_id: video_codecs_formats_supported__h_265+ +- id: 8249 + name: HEVC + friendly_id: video_codecs_formats_supported__hevc +- id: 8250 + name: HEVC/H.265 + friendly_id: video_codecs_formats_supported__hevc_h_265 +- id: 8251 + name: IFO + friendly_id: video_codecs_formats_supported__ifo +- id: 8252 + name: INSV + friendly_id: video_codecs_formats_supported__insv +- id: 8253 + name: ISO + friendly_id: video_codecs_formats_supported__iso +- id: 8254 + name: ISO (Blu-ray) + friendly_id: video_codecs_formats_supported__iso_blu_ray +- id: 8255 + name: M-JPEG + friendly_id: video_codecs_formats_supported__m_jpeg +- id: 8256 + name: M2P + friendly_id: video_codecs_formats_supported__m2p +- id: 8257 + name: M2T + friendly_id: video_codecs_formats_supported__m2t +- id: 8258 + name: M2TS + friendly_id: video_codecs_formats_supported__m2ts +- id: 8259 + name: M4V + friendly_id: video_codecs_formats_supported__m4v +- id: 8260 + name: MJPG + friendly_id: video_codecs_formats_supported__mjpg +- id: 8261 + name: MKV + friendly_id: video_codecs_formats_supported__mkv +- id: 8262 + name: MOD + friendly_id: video_codecs_formats_supported__mod +- id: 8263 + name: MOV + friendly_id: video_codecs_formats_supported__mov +- id: 8264 + name: MP4 + friendly_id: video_codecs_formats_supported__mp4 +- id: 8265 + name: MP43 + friendly_id: video_codecs_formats_supported__mp43 +- id: 8266 + name: MPEG + friendly_id: video_codecs_formats_supported__mpeg +- id: 8267 + name: MPEG‑4 Part 2 + friendly_id: video_codecs_formats_supported__mpeg4_part_2 +- id: 8268 + name: MPEG1 + friendly_id: video_codecs_formats_supported__mpeg1 +- id: 8269 + name: MPEG2 + friendly_id: video_codecs_formats_supported__mpeg2 +- id: 8270 + name: MPEG2-PS + friendly_id: video_codecs_formats_supported__mpeg2_ps +- id: 8271 + name: MPEG2-TS + friendly_id: video_codecs_formats_supported__mpeg2_ts +- id: 8272 + name: MPEG21 + friendly_id: video_codecs_formats_supported__mpeg21 +- id: 8273 + name: MPEG4 + friendly_id: video_codecs_formats_supported__mpeg4 +- id: 8274 + name: MPEG4-ASP + friendly_id: video_codecs_formats_supported__mpeg4_asp +- id: 8275 + name: MPEG4-SP + friendly_id: video_codecs_formats_supported__mpeg4_sp +- id: 8276 + name: MPEG7 + friendly_id: video_codecs_formats_supported__mpeg7 +- id: 8277 + name: MPG + friendly_id: video_codecs_formats_supported__mpg +- id: 8278 + name: MPO + friendly_id: video_codecs_formats_supported__mpo +- id: 8279 + name: MTS + friendly_id: video_codecs_formats_supported__mts +- id: 8280 + name: MTV + friendly_id: video_codecs_formats_supported__mtv +- id: 8281 + name: MVC + friendly_id: video_codecs_formats_supported__mvc +- id: 8282 + name: MXF + friendly_id: video_codecs_formats_supported__mxf +- id: 8283 + name: MxPEG + friendly_id: video_codecs_formats_supported__mxpeg +- id: 8284 + name: MXV + friendly_id: video_codecs_formats_supported__mxv +- id: 8285 + name: NV12 + friendly_id: video_codecs_formats_supported__nv12 +- id: 8286 + name: OGM + friendly_id: video_codecs_formats_supported__ogm +- id: 8287 + name: PMP + friendly_id: video_codecs_formats_supported__pmp +- id: 8288 + name: PRKL + friendly_id: video_codecs_formats_supported__prkl +- id: 8289 + name: ProRes + friendly_id: video_codecs_formats_supported__prores +- id: 8290 + name: PS + friendly_id: video_codecs_formats_supported__ps +- id: 8291 + name: QTFF + friendly_id: video_codecs_formats_supported__qtff +- id: 8292 + name: Quicktime + friendly_id: video_codecs_formats_supported__quicktime +- id: 8293 + name: RAW + friendly_id: video_codecs_formats_supported__raw +- id: 8294 + name: RM + friendly_id: video_codecs_formats_supported__rm +- id: 8295 + name: RMVB + friendly_id: video_codecs_formats_supported__rmvb +- id: 8296 + name: RV + friendly_id: video_codecs_formats_supported__rv +- id: 8297 + name: RV30 + friendly_id: video_codecs_formats_supported__rv30 +- id: 8298 + name: RV40 + friendly_id: video_codecs_formats_supported__rv40 +- id: 8299 + name: SHVC + friendly_id: video_codecs_formats_supported__shvc +- id: 8300 + name: SMV + friendly_id: video_codecs_formats_supported__smv +- id: 8301 + name: Sorenson H.263 + friendly_id: video_codecs_formats_supported__sorenson_h_263 +- id: 8302 + name: SVAF + friendly_id: video_codecs_formats_supported__svaf +- id: 8303 + name: SVI + friendly_id: video_codecs_formats_supported__svi +- id: 8304 + name: SWF + friendly_id: video_codecs_formats_supported__swf +- id: 8305 + name: TP + friendly_id: video_codecs_formats_supported__tp +- id: 8306 + name: TRP + friendly_id: video_codecs_formats_supported__trp +- id: 8307 + name: TS + friendly_id: video_codecs_formats_supported__ts +- id: 8308 + name: TS4 + friendly_id: video_codecs_formats_supported__ts4 +- id: 8309 + name: VC-1 + friendly_id: video_codecs_formats_supported__vc_1 +- id: 8310 + name: VMW7 + friendly_id: video_codecs_formats_supported__vmw7 +- id: 8311 + name: VOB + friendly_id: video_codecs_formats_supported__vob +- id: 8312 + name: VP6 + friendly_id: video_codecs_formats_supported__vp6 +- id: 8313 + name: VP8 + friendly_id: video_codecs_formats_supported__vp8 +- id: 8314 + name: VP9 + friendly_id: video_codecs_formats_supported__vp9 +- id: 8315 + name: VRO + friendly_id: video_codecs_formats_supported__vro +- id: 8316 + name: WebM + friendly_id: video_codecs_formats_supported__webm +- id: 8317 + name: WM-DRM + friendly_id: video_codecs_formats_supported__wm_drm +- id: 8318 + name: WMA + friendly_id: video_codecs_formats_supported__wma +- id: 8319 + name: WMA Pro + friendly_id: video_codecs_formats_supported__wma_pro +- id: 8320 + name: WMV + friendly_id: video_codecs_formats_supported__wmv +- id: 8321 + name: WMV10 + friendly_id: video_codecs_formats_supported__wmv10 +- id: 8322 + name: WMV3 + friendly_id: video_codecs_formats_supported__wmv3 +- id: 8323 + name: WMV7 + friendly_id: video_codecs_formats_supported__wmv7 +- id: 8324 + name: WMV8 + friendly_id: video_codecs_formats_supported__wmv8 +- id: 8325 + name: WMV9 + friendly_id: video_codecs_formats_supported__wmv9 +- id: 8326 + name: WMV9 HD + friendly_id: video_codecs_formats_supported__wmv9_hd +- id: 8327 + name: XAVC + friendly_id: video_codecs_formats_supported__xavc +- id: 8328 + name: XAVC HS + friendly_id: video_codecs_formats_supported__xavc_hs +- id: 8329 + name: XAVC S + friendly_id: video_codecs_formats_supported__xavc_s +- id: 8330 + name: XAVC-I + friendly_id: video_codecs_formats_supported__xavc_i +- id: 8331 + name: XF-AVC + friendly_id: video_codecs_formats_supported__xf_avc +- id: 8332 + name: Xvid + friendly_id: video_codecs_formats_supported__xvid +- id: 8333 + name: YUV + friendly_id: video_codecs_formats_supported__yuv +- id: 8334 + name: YUY2 + friendly_id: video_codecs_formats_supported__yuy2 +- id: 8335 + name: Other + friendly_id: video_codecs_formats_supported__other +- id: 8336 + name: AAC + friendly_id: playback_disc_formats__aac +- id: 8337 + name: AVI + friendly_id: playback_disc_formats__avi +- id: 8338 + name: Blu-ray + friendly_id: playback_disc_formats__blu_ray +- id: 8339 + name: CD audio + friendly_id: playback_disc_formats__cd_audio +- id: 8340 + name: CD video + friendly_id: playback_disc_formats__cd_video +- id: 8341 + name: CD-R + friendly_id: playback_disc_formats__cd_r +- id: 8342 + name: CD-RW + friendly_id: playback_disc_formats__cd_rw +- id: 8343 + name: CD+G + friendly_id: playback_disc_formats__cd+g +- id: 8344 + name: DivX + friendly_id: playback_disc_formats__divx +- id: 8345 + name: Dolby digital + friendly_id: playback_disc_formats__dolby_digital +- id: 8346 + name: Dolby trueHD + friendly_id: playback_disc_formats__dolby_truehd +- id: 8347 + name: DSD + friendly_id: playback_disc_formats__dsd +- id: 8348 + name: DTS + friendly_id: playback_disc_formats__dts +- id: 8349 + name: DVD-audio + friendly_id: playback_disc_formats__dvd_audio +- id: 8350 + name: DVD-R + friendly_id: playback_disc_formats__dvd_r +- id: 8351 + name: DVD-RAM + friendly_id: playback_disc_formats__dvd_ram +- id: 8352 + name: DVD-RW + friendly_id: playback_disc_formats__dvd_rw +- id: 8353 + name: DVD-video + friendly_id: playback_disc_formats__dvd_video +- id: 8354 + name: DVD-VR + friendly_id: playback_disc_formats__dvd_vr +- id: 8355 + name: DVD+R + friendly_id: playback_disc_formats__dvd+r +- id: 8356 + name: DVD+RW + friendly_id: playback_disc_formats__dvd+rw +- id: 8357 + name: FLAC + friendly_id: playback_disc_formats__flac +- id: 8358 + name: JPEG + friendly_id: playback_disc_formats__jpeg +- id: 8359 + name: KVCD + friendly_id: playback_disc_formats__kvcd +- id: 8360 + name: MKV + friendly_id: playback_disc_formats__mkv +- id: 8361 + name: MP3 + friendly_id: playback_disc_formats__mp3 +- id: 8362 + name: MPEG-4 + friendly_id: playback_disc_formats__mpeg_4 +- id: 8363 + name: Picture CD + friendly_id: playback_disc_formats__picture_cd +- id: 8364 + name: SACD + friendly_id: playback_disc_formats__sacd +- id: 8365 + name: SVCD + friendly_id: playback_disc_formats__svcd +- id: 8366 + name: VCD + friendly_id: playback_disc_formats__vcd +- id: 8367 + name: WAV + friendly_id: playback_disc_formats__wav +- id: 8368 + name: WMA + friendly_id: playback_disc_formats__wma +- id: 8369 + name: WMV + friendly_id: playback_disc_formats__wmv +- id: 8370 + name: Other + friendly_id: playback_disc_formats__other +- id: 8371 + name: Region-free + friendly_id: video_region_code__region_free +- id: 8372 + name: Region 1 + friendly_id: video_region_code__region_1 +- id: 8373 + name: Region 2 + friendly_id: video_region_code__region_2 +- id: 8374 + name: Region 3 + friendly_id: video_region_code__region_3 +- id: 8375 + name: Region 4 + friendly_id: video_region_code__region_4 +- id: 8376 + name: Region 5 + friendly_id: video_region_code__region_5 +- id: 8377 + name: Region 6 + friendly_id: video_region_code__region_6 +- id: 8378 + name: Region A + friendly_id: video_region_code__region_a +- id: 8379 + name: Region B + friendly_id: video_region_code__region_b +- id: 8380 + name: Region C + friendly_id: video_region_code__region_c +- id: 8381 + name: AVCHD + friendly_id: compression_format__avchd +- id: 8382 + name: AVI + friendly_id: compression_format__avi +- id: 8383 + name: DivX + friendly_id: compression_format__divx +- id: 8384 + name: DV + friendly_id: compression_format__dv +- id: 8385 + name: FLV + friendly_id: compression_format__flv +- id: 8386 + name: H.264 + friendly_id: compression_format__h_264 +- id: 8387 + name: H.265 + friendly_id: compression_format__h_265 +- id: 8388 + name: MKV + friendly_id: compression_format__mkv +- id: 8389 + name: MOV + friendly_id: compression_format__mov +- id: 8390 + name: MP4 + friendly_id: compression_format__mp4 +- id: 8391 + name: MPEG-2 + friendly_id: compression_format__mpeg_2 +- id: 8392 + name: MPEG-4 + friendly_id: compression_format__mpeg_4 +- id: 8393 + name: ProRes + friendly_id: compression_format__prores +- id: 8394 + name: VC-1 + friendly_id: compression_format__vc_1 +- id: 8395 + name: VP9 + friendly_id: compression_format__vp9 +- id: 8396 + name: WebM + friendly_id: compression_format__webm +- id: 8397 + name: WMV + friendly_id: compression_format__wmv +- id: 8398 + name: XAVC + friendly_id: compression_format__xavc +- id: 8399 + name: Xvid + friendly_id: compression_format__xvid +- id: 8400 + name: Other + friendly_id: compression_format__other +- id: 8401 + name: Backward compatibility + friendly_id: compatible_game_format__backward_compatibility +- id: 8402 + name: Digital download only + friendly_id: compatible_game_format__digital_download_only +- id: 8403 + name: Physical disc + friendly_id: compatible_game_format__physical_disc +- id: 8404 + name: Virtual console + friendly_id: compatible_game_format__virtual_console +- id: 8405 + name: 1080p + friendly_id: compatible_resolution__1080p +- id: 8406 + name: 1440p + friendly_id: compatible_resolution__1440p +- id: 8407 + name: 144p + friendly_id: compatible_resolution__144p +- id: 8408 + name: 2160p + friendly_id: compatible_resolution__2160p +- id: 8409 + name: 240p + friendly_id: compatible_resolution__240p +- id: 8410 + name: 360p + friendly_id: compatible_resolution__360p +- id: 8411 + name: 4320p + friendly_id: compatible_resolution__4320p +- id: 8412 + name: 480p + friendly_id: compatible_resolution__480p +- id: 8413 + name: 4K ultra HD + friendly_id: compatible_resolution__4k_ultra_hd +- id: 8414 + name: 720p + friendly_id: compatible_resolution__720p +- id: 8415 + name: 8K ultra HD + friendly_id: compatible_resolution__8k_ultra_hd +- id: 8416 + name: Full HD + friendly_id: compatible_resolution__full_hd +- id: 8417 + name: HD + friendly_id: compatible_resolution__hd +- id: 8418 + name: Quad HD + friendly_id: compatible_resolution__quad_hd +- id: 8419 + name: SD + friendly_id: compatible_resolution__sd +- id: 8420 + name: Celery + friendly_id: allergen_information__celery +- id: 8421 + name: Crustaceans + friendly_id: allergen_information__crustaceans +- id: 8422 + name: Eggs + friendly_id: allergen_information__eggs +- id: 8423 + name: Fish + friendly_id: allergen_information__fish +- id: 8424 + name: Lupin + friendly_id: allergen_information__lupin +- id: 8425 + name: Milk + friendly_id: allergen_information__milk +- id: 8426 + name: Molluscs + friendly_id: allergen_information__molluscs +- id: 8427 + name: Mustard + friendly_id: allergen_information__mustard +- id: 8428 + name: Nuts + friendly_id: allergen_information__nuts +- id: 8429 + name: Peanuts + friendly_id: allergen_information__peanuts +- id: 8430 + name: Sesame + friendly_id: allergen_information__sesame +- id: 8431 + name: Soybeans + friendly_id: allergen_information__soybeans +- id: 8432 + name: Sulphites + friendly_id: allergen_information__sulphites +- id: 8433 + name: Sulphur dioxide + friendly_id: allergen_information__sulphur_dioxide +- id: 8434 + name: Wheat + friendly_id: allergen_information__wheat +- id: 8435 + name: Halal + friendly_id: dietary_preferences__halal +- id: 8436 + name: Keto + friendly_id: dietary_preferences__keto +- id: 8437 + name: Kosher + friendly_id: dietary_preferences__kosher +- id: 8438 + name: Lactose-free + friendly_id: dietary_preferences__lactose_free +- id: 8439 + name: Low fat + friendly_id: dietary_preferences__low_fat +- id: 8440 + name: Low sodium + friendly_id: dietary_preferences__low_sodium +- id: 8441 + name: No artificial colors + friendly_id: dietary_preferences__no_artificial_colors +- id: 8442 + name: No artificial flavors + friendly_id: dietary_preferences__no_artificial_flavors +- id: 8443 + name: No artificial sweeteners + friendly_id: dietary_preferences__no_artificial_sweeteners +- id: 8444 + name: No preservatives + friendly_id: dietary_preferences__no_preservatives +- id: 8445 + name: Non-GMO + friendly_id: dietary_preferences__non_gmo +- id: 8446 + name: Organic + friendly_id: dietary_preferences__organic +- id: 8447 + name: Paleo + friendly_id: dietary_preferences__paleo +- id: 8448 + name: Sugar-free + friendly_id: dietary_preferences__sugar_free +- id: 8449 + name: Vegan + friendly_id: dietary_preferences__vegan +- id: 8450 + name: Vegetarian + friendly_id: dietary_preferences__vegetarian +- id: 8451 + name: Wholegrain + friendly_id: dietary_preferences__wholegrain +- id: 8452 + name: Alcohol-free + friendly_id: dietary_preferences__alcohol_free +- id: 8453 + name: Other + friendly_id: beer_style__other +- id: 8454 + name: Altbier + friendly_id: beer_variety__altbier +- id: 8455 + name: Amber/Red ale + friendly_id: beer_variety__amber_red_ale +- id: 8456 + name: American pale ale (APA) + friendly_id: beer_variety__american_pale_ale_apa +- id: 8457 + name: Barleywine + friendly_id: beer_variety__barleywine +- id: 8458 + name: Belgian ale + friendly_id: beer_variety__belgian_ale +- id: 8459 + name: Bitter + friendly_id: beer_variety__bitter +- id: 8460 + name: Brown ale + friendly_id: beer_variety__brown_ale +- id: 8461 + name: Dark lager + friendly_id: beer_variety__dark_lager +- id: 8462 + name: Dark wheat beer/Dunkelweizen + friendly_id: beer_variety__dark_wheat_beer_dunkelweizen +- id: 8463 + name: English pale ale (EPA) + friendly_id: beer_variety__english_pale_ale_epa +- id: 8464 + name: Fruit lambic + friendly_id: beer_variety__fruit_lambic +- id: 8465 + name: German lager + friendly_id: beer_variety__german_lager +- id: 8466 + name: Golden ale + friendly_id: beer_variety__golden_ale +- id: 8467 + name: Gose + friendly_id: beer_variety__gose +- id: 8468 + name: Gueuze + friendly_id: beer_variety__gueuze +- id: 8469 + name: India pale ale (IPA) + friendly_id: beer_variety__india_pale_ale_ipa +- id: 8470 + name: Kölsch + friendly_id: beer_variety__klsch +- id: 8471 + name: Kriek + friendly_id: beer_variety__kriek +- id: 8472 + name: Lager + friendly_id: beer_variety__lager +- id: 8473 + name: Lambic + friendly_id: beer_variety__lambic +- id: 8474 + name: Pale lager + friendly_id: beer_variety__pale_lager +- id: 8475 + name: Pilsner + friendly_id: beer_variety__pilsner +- id: 8476 + name: Porter + friendly_id: beer_variety__porter +- id: 8477 + name: Saison ale + friendly_id: beer_variety__saison_ale +- id: 8478 + name: Smoked beer/Rauchbier + friendly_id: beer_variety__smoked_beer_rauchbier +- id: 8479 + name: Sour ale + friendly_id: beer_variety__sour_ale +- id: 8480 + name: Stout + friendly_id: beer_variety__stout +- id: 8481 + name: Strong ale + friendly_id: beer_variety__strong_ale +- id: 8482 + name: Strong bitter + friendly_id: beer_variety__strong_bitter +- id: 8483 + name: Wheat beer/Weizenbier + friendly_id: beer_variety__wheat_beer_weizenbier +- id: 8484 + name: White beer/Witbier + friendly_id: beer_variety__white_beer_witbier +- id: 8485 + name: Other + friendly_id: beer_variety__other +- id: 8486 + name: Glass bottle + friendly_id: package_type__glass_bottle +- id: 8487 + name: Keg + friendly_id: package_type__keg +- id: 8488 + name: Aromatic + friendly_id: bitter_variery__aromatic +- id: 8489 + name: Floral + friendly_id: bitter_variery__floral +- id: 8490 + name: Fruit + friendly_id: bitter_variery__fruit +- id: 8491 + name: Herbal + friendly_id: bitter_variery__herbal +- id: 8492 + name: Spicy + friendly_id: bitter_variery__spicy +- id: 8493 + name: Almond + friendly_id: flavor__almond +- id: 8494 + name: Apple + friendly_id: flavor__apple +- id: 8495 + name: Banana + friendly_id: flavor__banana +- id: 8496 + name: Blueberry + friendly_id: flavor__blueberry +- id: 8497 + name: Caramel + friendly_id: flavor__caramel +- id: 8498 + name: Cherry + friendly_id: flavor__cherry +- id: 8499 + name: Chocolate + friendly_id: flavor__chocolate +- id: 8500 + name: Cinnamon + friendly_id: flavor__cinnamon +- id: 8501 + name: Coconut + friendly_id: flavor__coconut +- id: 8502 + name: Coffee + friendly_id: flavor__coffee +- id: 8503 + name: Dulce de leche + friendly_id: flavor__dulce_de_leche +- id: 8504 + name: Elderflower + friendly_id: flavor__elderflower +- id: 8505 + name: Ginger + friendly_id: flavor__ginger +- id: 8506 + name: Lemon + friendly_id: flavor__lemon +- id: 8507 + name: Lime + friendly_id: flavor__lime +- id: 8508 + name: Lychee + friendly_id: flavor__lychee +- id: 8509 + name: Mango + friendly_id: flavor__mango +- id: 8510 + name: Matcha + friendly_id: flavor__matcha +- id: 8511 + name: Mint + friendly_id: flavor__mint +- id: 8512 + name: Mojito + friendly_id: flavor__mojito +- id: 8513 + name: Orange + friendly_id: flavor__orange +- id: 8514 + name: Peach + friendly_id: flavor__peach +- id: 8515 + name: Raspberry + friendly_id: flavor__raspberry +- id: 8516 + name: Rose + friendly_id: flavor__rose +- id: 8517 + name: Salted caramel + friendly_id: flavor__salted_caramel +- id: 8518 + name: Strawberry + friendly_id: flavor__strawberry +- id: 8519 + name: Tropical + friendly_id: flavor__tropical +- id: 8520 + name: Unflavored + friendly_id: flavor__unflavored +- id: 8521 + name: Vanilla + friendly_id: flavor__vanilla +- id: 8522 + name: Other + friendly_id: flavor__other +- id: 8523 + name: Bittersharp + friendly_id: hard_cider_variety__bittersharp +- id: 8524 + name: Bittersweet + friendly_id: hard_cider_variety__bittersweet +- id: 8525 + name: Brut + friendly_id: hard_cider_variety__brut +- id: 8526 + name: Demi-sec + friendly_id: hard_cider_variety__demi_sec +- id: 8527 + name: Doux + friendly_id: hard_cider_variety__doux +- id: 8528 + name: Sharp + friendly_id: hard_cider_variety__sharp +- id: 8529 + name: Sweet + friendly_id: hard_cider_variety__sweet +- id: 8530 + name: Distilled + friendly_id: absinthe_style__distilled +- id: 8531 + name: Mixed + friendly_id: absinthe_style__mixed +- id: 8532 + name: Amber + friendly_id: absinthe_variety__amber +- id: 8533 + name: Blanche + friendly_id: absinthe_variety__blanche +- id: 8534 + name: Bohemian + friendly_id: absinthe_variety__bohemian +- id: 8535 + name: Flavored + friendly_id: absinthe_variety__flavored +- id: 8536 + name: Hausgemacht + friendly_id: absinthe_variety__hausgemacht +- id: 8537 + name: Macerated + friendly_id: absinthe_variety__macerated +- id: 8538 + name: Rouge + friendly_id: absinthe_variety__rouge +- id: 8539 + name: Verte + friendly_id: absinthe_variety__verte +- id: 8540 + name: Armagnac + friendly_id: brandy_variety__armagnac +- id: 8541 + name: Brandy + friendly_id: brandy_variety__brandy +- id: 8542 + name: Brandy de Jerez + friendly_id: brandy_variety__brandy_de_jerez +- id: 8543 + name: Calvados + friendly_id: brandy_variety__calvados +- id: 8544 + name: Cognac + friendly_id: brandy_variety__cognac +- id: 8545 + name: Grappa + friendly_id: brandy_variety__grappa +- id: 8546 + name: Macieira + friendly_id: brandy_variety__macieira +- id: 8547 + name: Metaxa + friendly_id: brandy_variety__metaxa +- id: 8548 + name: Flavored gin + friendly_id: gin_variety__flavored_gin +- id: 8549 + name: Genever gin + friendly_id: gin_variety__genever_gin +- id: 8550 + name: London dry gin + friendly_id: gin_variety__london_dry_gin +- id: 8551 + name: Old Tom gin + friendly_id: gin_variety__old_tom_gin +- id: 8552 + name: Plymouth gin + friendly_id: gin_variety__plymouth_gin +- id: 8553 + name: Coffee liqueur + friendly_id: liqueur_variety__coffee_liqueur +- id: 8554 + name: Chocolate liqueur + friendly_id: liqueur_variety__chocolate_liqueur +- id: 8555 + name: Berry liqueur + friendly_id: liqueur_variety__berry_liqueur +- id: 8556 + name: Cream liqueur + friendly_id: liqueur_variety__cream_liqueur +- id: 8557 + name: Fruit liqueur + friendly_id: liqueur_variety__fruit_liqueur +- id: 8558 + name: Nut liqueur + friendly_id: liqueur_variety__nut_liqueur +- id: 8559 + name: Herbal liqueur + friendly_id: liqueur_variety__herbal_liqueur +- id: 8560 + name: Floral liqueur + friendly_id: liqueur_variety__floral_liqueur +- id: 8561 + name: Rice liqueur + friendly_id: liqueur_variety__rice_liqueur +- id: 8562 + name: Agricultural + friendly_id: rum_grade__agricultural +- id: 8563 + name: Dark + friendly_id: rum_grade__dark +- id: 8564 + name: Flavored + friendly_id: rum_grade__flavored +- id: 8565 + name: Gold + friendly_id: rum_grade__gold +- id: 8566 + name: Light + friendly_id: rum_grade__light +- id: 8567 + name: Overproof + friendly_id: rum_grade__overproof +- id: 8568 + name: Premium + friendly_id: rum_grade__premium +- id: 8569 + name: Spiced + friendly_id: rum_grade__spiced +- id: 8570 + name: Diluted + friendly_id: spirit_dilution__diluted +- id: 8571 + name: Undiluted + friendly_id: spirit_dilution__undiluted +- id: 8572 + name: Guanajuato + friendly_id: region__guanajuato +- id: 8573 + name: Jalisco + friendly_id: region__jalisco +- id: 8574 + name: Kentucky + friendly_id: region__kentucky +- id: 8575 + name: Los Altos + friendly_id: region__los_altos +- id: 8576 + name: Michoacán + friendly_id: region__michoacn +- id: 8577 + name: Nayarit + friendly_id: region__nayarit +- id: 8578 + name: Tamaulipas + friendly_id: region__tamaulipas +- id: 8579 + name: Other + friendly_id: region__other +- id: 8580 + name: Aged + friendly_id: tequila_variety__aged +- id: 8581 + name: Gold + friendly_id: tequila_variety__gold +- id: 8582 + name: Rested + friendly_id: tequila_variety__rested +- id: 8583 + name: Silver + friendly_id: tequila_variety__silver +- id: 8584 + name: Bangalore + friendly_id: region__bangalore +- id: 8585 + name: Campbeltown + friendly_id: region__campbeltown +- id: 8586 + name: County + friendly_id: region__county +- id: 8587 + name: Highlands + friendly_id: region__highlands +- id: 8588 + name: Hokkaido + friendly_id: region__hokkaido +- id: 8589 + name: Indiana + friendly_id: region__indiana +- id: 8590 + name: Irish + friendly_id: region__irish +- id: 8591 + name: Islay + friendly_id: region__islay +- id: 8592 + name: Lowlands + friendly_id: region__lowlands +- id: 8593 + name: Miyagikyo + friendly_id: region__miyagikyo +- id: 8594 + name: Nagahama + friendly_id: region__nagahama +- id: 8595 + name: Pennsylvania + friendly_id: region__pennsylvania +- id: 8596 + name: Speyside + friendly_id: region__speyside +- id: 8597 + name: Tasmania + friendly_id: region__tasmania +- id: 8598 + name: Tennessee + friendly_id: region__tennessee +- id: 8599 + name: Texas + friendly_id: region__texas +- id: 8600 + name: Victoria + friendly_id: region__victoria +- id: 8601 + name: Yamazaki + friendly_id: region__yamazaki +- id: 8602 + name: Blended malt + friendly_id: whiskey_style__blended_malt +- id: 8603 + name: Cask strength + friendly_id: whiskey_style__cask_strength +- id: 8604 + name: Single cask + friendly_id: whiskey_style__single_cask +- id: 8605 + name: Single malt + friendly_id: whiskey_style__single_malt +- id: 8606 + name: Bourbon + friendly_id: whiskey_variety__bourbon +- id: 8607 + name: Corn + friendly_id: whiskey_variety__corn +- id: 8608 + name: Malt + friendly_id: whiskey_variety__malt +- id: 8609 + name: Rye + friendly_id: whiskey_variety__rye +- id: 8610 + name: Scotch + friendly_id: whiskey_variety__scotch +- id: 8611 + name: Wheat + friendly_id: whiskey_variety__wheat +- id: 8612 + name: Capsules + friendly_id: beverage_product_form__capsules +- id: 8613 + name: Frozen + friendly_id: beverage_product_form__frozen +- id: 8614 + name: Ready-to-drink + friendly_id: beverage_product_form__ready_to_drink +- id: 8615 + name: Shelf-stable + friendly_id: beverage_product_form__shelf_stable +- id: 8616 + name: Other + friendly_id: beverage_product_form__other +- id: 8617 + name: Brandy + friendly_id: base_spirit__brandy +- id: 8618 + name: Gin + friendly_id: base_spirit__gin +- id: 8619 + name: Liquor + friendly_id: base_spirit__liquor +- id: 8620 + name: Rum + friendly_id: base_spirit__rum +- id: 8621 + name: Tequila + friendly_id: base_spirit__tequila +- id: 8622 + name: Vodka + friendly_id: base_spirit__vodka +- id: 8623 + name: Whiskey + friendly_id: base_spirit__whiskey +- id: 8624 + name: Abruzzo + friendly_id: region__abruzzo +- id: 8625 + name: Aconcagua Valley + friendly_id: region__aconcagua_valley +- id: 8626 + name: Adelaide Hills + friendly_id: region__adelaide_hills +- id: 8627 + name: Adelaide Plains + friendly_id: region__adelaide_plains +- id: 8628 + name: Agrelo + friendly_id: region__agrelo +- id: 8629 + name: Ahr + friendly_id: region__ahr +- id: 8630 + name: Alentejo + friendly_id: region__alentejo +- id: 8631 + name: Almansa + friendly_id: region__almansa +- id: 8632 + name: Alsace + friendly_id: region__alsace +- id: 8633 + name: Alt Penedès + friendly_id: region__alt_peneds +- id: 8634 + name: Alto Adige + friendly_id: region__alto_adige +- id: 8635 + name: Alto Cachapoal + friendly_id: region__alto_cachapoal +- id: 8636 + name: Alto Maipo + friendly_id: region__alto_maipo +- id: 8637 + name: Alto Valle del Río Colorado + friendly_id: region__alto_valle_del_ro_colorado +- id: 8638 + name: Alto Valle del Río Negro + friendly_id: region__alto_valle_del_ro_negro +- id: 8639 + name: Alto Valle del Río Neuquén + friendly_id: region__alto_valle_del_ro_neuqun +- id: 8640 + name: Apulia + friendly_id: region__apulia +- id: 8641 + name: Baden + friendly_id: region__baden +- id: 8642 + name: Bairrada + friendly_id: region__bairrada +- id: 8643 + name: Barolo + friendly_id: region__barolo +- id: 8644 + name: Barossa Valley + friendly_id: region__barossa_valley +- id: 8645 + name: Beaujolais + friendly_id: region__beaujolais +- id: 8646 + name: Bekaa Valley + friendly_id: region__bekaa_valley +- id: 8647 + name: Bolgheri + friendly_id: region__bolgheri +- id: 8648 + name: Burgundy + friendly_id: region__burgundy +- id: 8649 + name: California + friendly_id: region__california +- id: 8650 + name: Central Otago + friendly_id: region__central_otago +- id: 8651 + name: Champagne + friendly_id: region__champagne +- id: 8652 + name: Chianti + friendly_id: region__chianti +- id: 8653 + name: Colchagua Valley + friendly_id: region__colchagua_valley +- id: 8654 + name: Constantia + friendly_id: region__constantia +- id: 8655 + name: Coonawarra + friendly_id: region__coonawarra +- id: 8656 + name: Corsica + friendly_id: region__corsica +- id: 8657 + name: Côtes de Beaune + friendly_id: region__ctes_de_beaune +- id: 8658 + name: Côtes de Bordeaux + friendly_id: region__ctes_de_bordeaux +- id: 8659 + name: Côtes de Nuits + friendly_id: region__ctes_de_nuits +- id: 8660 + name: Côtes de Provence + friendly_id: region__ctes_de_provence +- id: 8661 + name: Côtes du Rhône + friendly_id: region__ctes_du_rhne +- id: 8662 + name: Crete + friendly_id: region__crete +- id: 8663 + name: Curicó Valley + friendly_id: region__curic_valley +- id: 8664 + name: Danube + friendly_id: region__danube +- id: 8665 + name: Darling + friendly_id: region__darling +- id: 8666 + name: Douro Valley + friendly_id: region__douro_valley +- id: 8667 + name: Elqui Valley + friendly_id: region__elqui_valley +- id: 8668 + name: Emilia-Romagna + friendly_id: region__emilia_romagna +- id: 8669 + name: Finger Lakes + friendly_id: region__finger_lakes +- id: 8670 + name: Franschhoek + friendly_id: region__franschhoek +- id: 8671 + name: Galicia + friendly_id: region__galicia +- id: 8672 + name: Gisborne + friendly_id: region__gisborne +- id: 8673 + name: Great southern + friendly_id: region__great_southern +- id: 8674 + name: Hawke's Bay + friendly_id: region__hawkes_bay +- id: 8675 + name: Hemel-en-Aarde Valley + friendly_id: region__hemel_en_aarde_valley +- id: 8676 + name: Hunter Valley + friendly_id: region__hunter_valley +- id: 8677 + name: Jerez + friendly_id: region__jerez +- id: 8678 + name: Kamptal + friendly_id: region__kamptal +- id: 8679 + name: Langhe + friendly_id: region__langhe +- id: 8680 + name: Languedoc-Roussillon + friendly_id: region__languedoc_roussillon +- id: 8681 + name: Lodi + friendly_id: region__lodi +- id: 8682 + name: Loire Valley + friendly_id: region__loire_valley +- id: 8683 + name: Macedon Ranges + friendly_id: region__macedon_ranges +- id: 8684 + name: Margaret River + friendly_id: region__margaret_river +- id: 8685 + name: Marlborough + friendly_id: region__marlborough +- id: 8686 + name: McLaren Vale + friendly_id: region__mclaren_vale +- id: 8687 + name: Mendocino + friendly_id: region__mendocino +- id: 8688 + name: Mendoza + friendly_id: region__mendoza +- id: 8689 + name: Montalcino + friendly_id: region__montalcino +- id: 8690 + name: Montepulciano + friendly_id: region__montepulciano +- id: 8691 + name: Mornington Peninsula + friendly_id: region__mornington_peninsula +- id: 8692 + name: Mosel + friendly_id: region__mosel +- id: 8693 + name: Nahe + friendly_id: region__nahe +- id: 8694 + name: Niagara Peninsula + friendly_id: region__niagara_peninsula +- id: 8695 + name: Okanagan Valley + friendly_id: region__okanagan_valley +- id: 8696 + name: Oregon + friendly_id: region__oregon +- id: 8697 + name: Penedès + friendly_id: region__peneds +- id: 8698 + name: Pfalz + friendly_id: region__pfalz +- id: 8699 + name: Piedmont + friendly_id: region__piedmont +- id: 8700 + name: Piemonte + friendly_id: region__piemonte +- id: 8701 + name: Priorat + friendly_id: region__priorat +- id: 8702 + name: Puglia + friendly_id: region__puglia +- id: 8703 + name: Rheingau + friendly_id: region__rheingau +- id: 8704 + name: Rheinhessen + friendly_id: region__rheinhessen +- id: 8705 + name: Rhône Valley + friendly_id: region__rhne_valley +- id: 8706 + name: Rías Baixas + friendly_id: region__ras_baixas +- id: 8707 + name: Ribera del Duero + friendly_id: region__ribera_del_duero +- id: 8708 + name: Robertson + friendly_id: region__robertson +- id: 8709 + name: Rueda + friendly_id: region__rueda +- id: 8710 + name: Sancerre + friendly_id: region__sancerre +- id: 8711 + name: Santa Barbara County + friendly_id: region__santa_barbara_county +- id: 8712 + name: Santa Cruz Mountains + friendly_id: region__santa_cruz_mountains +- id: 8713 + name: Sicily + friendly_id: region__sicily +- id: 8714 + name: Sonoma County + friendly_id: region__sonoma_county +- id: 8715 + name: Stellenbosch + friendly_id: region__stellenbosch +- id: 8716 + name: Swartland + friendly_id: region__swartland +- id: 8717 + name: Tokaj + friendly_id: region__tokaj +- id: 8718 + name: Toro + friendly_id: region__toro +- id: 8719 + name: Umbria + friendly_id: region__umbria +- id: 8720 + name: Valle de Guadalupe + friendly_id: region__valle_de_guadalupe +- id: 8721 + name: Valle de Uco + friendly_id: region__valle_de_uco +- id: 8722 + name: Veneto + friendly_id: region__veneto +- id: 8723 + name: Vinho Verde + friendly_id: region__vinho_verde +- id: 8724 + name: Wachau + friendly_id: region__wachau +- id: 8725 + name: Walker Bay + friendly_id: region__walker_bay +- id: 8726 + name: Western Cape + friendly_id: region__western_cape +- id: 8727 + name: Willamette Valley + friendly_id: region__willamette_valley +- id: 8728 + name: Yarra Valley + friendly_id: region__yarra_valley +- id: 8729 + name: Yucatán Peninsula + friendly_id: region__yucatn_peninsula +- id: 8730 + name: Zagorje-Medimurje + friendly_id: region__zagorje_medimurje +- id: 8731 + name: Medium + friendly_id: wine_sweetness__medium +- id: 8732 + name: Medium dry + friendly_id: wine_sweetness__medium_dry +- id: 8733 + name: Blue + friendly_id: wine_variety__blue +- id: 8734 + name: Champagne + friendly_id: wine_variety__champagne +- id: 8735 + name: Orange + friendly_id: wine_variety__orange +- id: 8736 + name: Red + friendly_id: wine_variety__red +- id: 8737 + name: Rosé + friendly_id: wine_variety__ros +- id: 8738 + name: White + friendly_id: wine_variety__white +- id: 8739 + name: Light + friendly_id: coffee_roast__light +- id: 8740 + name: Medium-light + friendly_id: coffee_roast__medium_light +- id: 8741 + name: Medium + friendly_id: coffee_roast__medium +- id: 8742 + name: Medium-dark + friendly_id: coffee_roast__medium_dark +- id: 8743 + name: Dark + friendly_id: coffee_roast__dark +- id: 8744 + name: Decaffeinated + friendly_id: dietary_preferences__decaffeinated +- id: 8745 + name: Mountain shade grown + friendly_id: dietary_preferences__mountain_shade_grown +- id: 8746 + name: Single origin + friendly_id: dietary_preferences__single_origin +- id: 8747 + name: Coffee beans + friendly_id: coffee_product_form__coffee_beans +- id: 8748 + name: Ground + friendly_id: coffee_product_form__ground +- id: 8749 + name: Other + friendly_id: coffee_product_form__other +- id: 8750 + name: No added MSG + friendly_id: dietary_preferences__no_added_msg +- id: 8751 + name: Plastic bottle + friendly_id: package_type__plastic_bottle +- id: 8752 + name: Not from concentrate + friendly_id: fruit_source__not_from_concentrate +- id: 8753 + name: Concentrate + friendly_id: fruit_source__concentrate +- id: 8754 + name: Skimmed + friendly_id: fat_content__skimmed +- id: 8755 + name: Semi-skimmed + friendly_id: fat_content__semi_skimmed +- id: 8756 + name: Whole + friendly_id: fat_content__whole +- id: 8757 + name: Cola + friendly_id: soda_variety__cola +- id: 8758 + name: Ginger ale + friendly_id: soda_variety__ginger_ale +- id: 8759 + name: Ginger beer + friendly_id: soda_variety__ginger_beer +- id: 8760 + name: Lemon-lime + friendly_id: soda_variety__lemon_lime +- id: 8761 + name: Orange + friendly_id: soda_variety__orange +- id: 8762 + name: Soda cream + friendly_id: soda_variety__soda_cream +- id: 8763 + name: Tonic water + friendly_id: soda_variety__tonic_water +- id: 8764 + name: Concentrate + friendly_id: beverage_product_form__concentrate +- id: 8765 + name: Instant drink + friendly_id: beverage_product_form__instant_drink +- id: 8766 + name: Bags + friendly_id: tea_input_type__bags +- id: 8767 + name: Blossoms + friendly_id: tea_input_type__blossoms +- id: 8768 + name: Capsules + friendly_id: tea_input_type__capsules +- id: 8769 + name: Compressed + friendly_id: tea_input_type__compressed +- id: 8770 + name: Instant + friendly_id: tea_input_type__instant +- id: 8771 + name: K-cups + friendly_id: tea_input_type__k_cups +- id: 8772 + name: Loose + friendly_id: tea_input_type__loose +- id: 8773 + name: Pods + friendly_id: tea_input_type__pods +- id: 8774 + name: T-disks + friendly_id: tea_input_type__t_disks +- id: 8775 + name: Kombucha + friendly_id: vinegar_drink_variety__kombucha +- id: 8776 + name: Oxymel + friendly_id: vinegar_drink_variety__oxymel +- id: 8777 + name: Posca + friendly_id: vinegar_drink_variety__posca +- id: 8778 + name: Shrubs + friendly_id: vinegar_drink_variety__shrubs +- id: 8779 + name: Switchel + friendly_id: vinegar_drink_variety__switchel +- id: 8780 + name: Vinegar tonic + friendly_id: vinegar_drink_variety__vinegar_tonic +- id: 8781 + name: High protein + friendly_id: dietary_preferences__high_protein +- id: 8782 + name: Buckwheat + friendly_id: flour_grain_type__buckwheat +- id: 8783 + name: Corn + friendly_id: flour_grain_type__corn +- id: 8784 + name: Nuts + friendly_id: flour_grain_type__nuts +- id: 8785 + name: Quinoa + friendly_id: flour_grain_type__quinoa +- id: 8786 + name: Rye + friendly_id: flour_grain_type__rye +- id: 8787 + name: Sorghum + friendly_id: flour_grain_type__sorghum +- id: 8788 + name: Spelt + friendly_id: flour_grain_type__spelt +- id: 8789 + name: Triticale + friendly_id: flour_grain_type__triticale +- id: 8790 + name: Wheat + friendly_id: flour_grain_type__wheat +- id: 8791 + name: Mild + friendly_id: heat_level__mild +- id: 8792 + name: Medium + friendly_id: heat_level__medium +- id: 8793 + name: Hot + friendly_id: heat_level__hot +- id: 8794 + name: Very hot + friendly_id: heat_level__very_hot +- id: 8795 + name: Extremely hot + friendly_id: heat_level__extremely_hot +- id: 8796 + name: Jar + friendly_id: package_type__jar +- id: 8797 + name: Plastic container + friendly_id: package_type__plastic_container +- id: 8798 + name: Glass container + friendly_id: package_type__glass_container +- id: 8799 + name: Biscuits + friendly_id: baking_purpose__biscuits +- id: 8800 + name: Bread + friendly_id: baking_purpose__bread +- id: 8801 + name: Brownies + friendly_id: baking_purpose__brownies +- id: 8802 + name: Carrot cake + friendly_id: baking_purpose__carrot_cake +- id: 8803 + name: Cheesecake + friendly_id: baking_purpose__cheesecake +- id: 8804 + name: Chocolate cake + friendly_id: baking_purpose__chocolate_cake +- id: 8805 + name: Cookies + friendly_id: baking_purpose__cookies +- id: 8806 + name: Crème brûlée + friendly_id: baking_purpose__crme_brle +- id: 8807 + name: Crumble + friendly_id: baking_purpose__crumble +- id: 8808 + name: Gingerbread + friendly_id: baking_purpose__gingerbread +- id: 8809 + name: Macaroons + friendly_id: baking_purpose__macaroons +- id: 8810 + name: Meringue + friendly_id: baking_purpose__meringue +- id: 8811 + name: Muesli bars + friendly_id: baking_purpose__muesli_bars +- id: 8812 + name: Muffins + friendly_id: baking_purpose__muffins +- id: 8813 + name: Pancakes + friendly_id: baking_purpose__pancakes +- id: 8814 + name: Pie crust + friendly_id: baking_purpose__pie_crust +- id: 8815 + name: Pizza dough + friendly_id: baking_purpose__pizza_dough +- id: 8816 + name: Rustic bread + friendly_id: baking_purpose__rustic_bread +- id: 8817 + name: Shortbread + friendly_id: baking_purpose__shortbread +- id: 8818 + name: Waffles + friendly_id: baking_purpose__waffles +- id: 8819 + name: Other + friendly_id: baking_purpose__other +- id: 8820 + name: Marsala + friendly_id: cooking_wine_variety__marsala +- id: 8821 + name: Red + friendly_id: cooking_wine_variety__red +- id: 8822 + name: Rice + friendly_id: cooking_wine_variety__rice +- id: 8823 + name: Sherry + friendly_id: cooking_wine_variety__sherry +- id: 8824 + name: White + friendly_id: cooking_wine_variety__white +- id: 8825 + name: High bloom + friendly_id: gel_strength__high_bloom +- id: 8826 + name: Low bloom + friendly_id: gel_strength__low_bloom +- id: 8827 + name: Medium bloom + friendly_id: gel_strength__medium_bloom +- id: 8828 + name: Powder + friendly_id: food_product_form__powder +- id: 8829 + name: Sheets + friendly_id: food_product_form__sheets +- id: 8830 + name: Granules + friendly_id: food_product_form__granules +- id: 8831 + name: Other + friendly_id: food_product_form__other +- id: 8832 + name: Balsamic + friendly_id: vinegar_variety__balsamic +- id: 8833 + name: Cane + friendly_id: vinegar_variety__cane +- id: 8834 + name: Fruit + friendly_id: vinegar_variety__fruit +- id: 8835 + name: Grains + friendly_id: vinegar_variety__grains +- id: 8836 + name: Kombucha + friendly_id: vinegar_variety__kombucha +- id: 8837 + name: Spirits + friendly_id: vinegar_variety__spirits +- id: 8838 + name: Dried + friendly_id: food_product_form__dried +- id: 8839 + name: Fresh + friendly_id: food_product_form__fresh +- id: 8840 + name: Liquid + friendly_id: coffee_creamer_variety__liquid +- id: 8841 + name: Non-dairy + friendly_id: coffee_creamer_variety__non_dairy +- id: 8842 + name: Powdered + friendly_id: coffee_creamer_variety__powdered +- id: 8843 + name: Full fat + friendly_id: fat_content__full_fat +- id: 8844 + name: Fat-free + friendly_id: fat_content__fat_free +- id: 8845 + name: Low fat + friendly_id: fat_content__low_fat +- id: 8846 + name: Reduced fat + friendly_id: fat_content__reduced_fat +- id: 8847 + name: Almond + friendly_id: nut_butter_variety__almond +- id: 8848 + name: Brazil nut + friendly_id: nut_butter_variety__brazil_nut +- id: 8849 + name: Cashew + friendly_id: nut_butter_variety__cashew +- id: 8850 + name: Hazelnut + friendly_id: nut_butter_variety__hazelnut +- id: 8851 + name: Macadamia nut + friendly_id: nut_butter_variety__macadamia_nut +- id: 8852 + name: Peanut + friendly_id: nut_butter_variety__peanut +- id: 8853 + name: Pecan + friendly_id: nut_butter_variety__pecan +- id: 8854 + name: Pistachio + friendly_id: nut_butter_variety__pistachio +- id: 8855 + name: Walnut + friendly_id: nut_butter_variety__walnut +- id: 8856 + name: Black beans + friendly_id: dry_bean_variety__black_beans +- id: 8857 + name: Brown lentils + friendly_id: dry_bean_variety__brown_lentils +- id: 8858 + name: Butter beans + friendly_id: dry_bean_variety__butter_beans +- id: 8859 + name: Cannellini beans + friendly_id: dry_bean_variety__cannellini_beans +- id: 8860 + name: Chickpeas + friendly_id: dry_bean_variety__chickpeas +- id: 8861 + name: Green lentils + friendly_id: dry_bean_variety__green_lentils +- id: 8862 + name: Green split peas + friendly_id: dry_bean_variety__green_split_peas +- id: 8863 + name: Kidney beans + friendly_id: dry_bean_variety__kidney_beans +- id: 8864 + name: Pinto beans + friendly_id: dry_bean_variety__pinto_beans +- id: 8865 + name: Red lentils + friendly_id: dry_bean_variety__red_lentils +- id: 8866 + name: Soybeans + friendly_id: dry_bean_variety__soybeans +- id: 8867 + name: Yellow lentils + friendly_id: dry_bean_variety__yellow_lentils +- id: 8868 + name: Yellow split peas + friendly_id: dry_bean_variety__yellow_split_peas +- id: 8869 + name: Frozen + friendly_id: food_product_form__frozen +- id: 8870 + name: Baking + friendly_id: cooking_method__baking +- id: 8871 + name: Barbecuing + friendly_id: cooking_method__barbecuing +- id: 8872 + name: Boiling + friendly_id: cooking_method__boiling +- id: 8873 + name: Braising + friendly_id: cooking_method__braising +- id: 8874 + name: Broiling + friendly_id: cooking_method__broiling +- id: 8875 + name: Deep frying + friendly_id: cooking_method__deep_frying +- id: 8876 + name: Frying + friendly_id: cooking_method__frying +- id: 8877 + name: Grilling + friendly_id: cooking_method__grilling +- id: 8878 + name: Microwaving + friendly_id: cooking_method__microwaving +- id: 8879 + name: Pan frying + friendly_id: cooking_method__pan_frying +- id: 8880 + name: Poaching + friendly_id: cooking_method__poaching +- id: 8881 + name: Roasting + friendly_id: cooking_method__roasting +- id: 8882 + name: Sautéing + friendly_id: cooking_method__sauting +- id: 8883 + name: Steaming + friendly_id: cooking_method__steaming +- id: 8884 + name: Stewing + friendly_id: cooking_method__stewing +- id: 8885 + name: Stir frying + friendly_id: cooking_method__stir_frying +- id: 8886 + name: Canned beef + friendly_id: canned_meat_variety__canned_beef +- id: 8887 + name: Canned chicken + friendly_id: canned_meat_variety__canned_chicken +- id: 8888 + name: Canned ham + friendly_id: canned_meat_variety__canned_ham +- id: 8889 + name: Canned meatballs + friendly_id: canned_meat_variety__canned_meatballs +- id: 8890 + name: Canned meatloaf + friendly_id: canned_meat_variety__canned_meatloaf +- id: 8891 + name: Canned pork + friendly_id: canned_meat_variety__canned_pork +- id: 8892 + name: Canned turkey + friendly_id: canned_meat_variety__canned_turkey +- id: 8893 + name: Balkan + friendly_id: cuisine__balkan +- id: 8894 + name: British + friendly_id: cuisine__british +- id: 8895 + name: Cajun + friendly_id: cuisine__cajun +- id: 8896 + name: Caribbean + friendly_id: cuisine__caribbean +- id: 8897 + name: Central European + friendly_id: cuisine__central_european +- id: 8898 + name: Chinese + friendly_id: cuisine__chinese +- id: 8899 + name: Creole + friendly_id: cuisine__creole +- id: 8900 + name: East African + friendly_id: cuisine__east_african +- id: 8901 + name: Eastern European + friendly_id: cuisine__eastern_european +- id: 8902 + name: French + friendly_id: cuisine__french +- id: 8903 + name: Hawaiian + friendly_id: cuisine__hawaiian +- id: 8904 + name: Indian + friendly_id: cuisine__indian +- id: 8905 + name: Italian + friendly_id: cuisine__italian +- id: 8906 + name: Japanese + friendly_id: cuisine__japanese +- id: 8907 + name: Korean + friendly_id: cuisine__korean +- id: 8908 + name: Latin American + friendly_id: cuisine__latin_american +- id: 8909 + name: Mediterranean + friendly_id: cuisine__mediterranean +- id: 8910 + name: Mexican + friendly_id: cuisine__mexican +- id: 8911 + name: Middle Eastern + friendly_id: cuisine__middle_eastern +- id: 8912 + name: North African + friendly_id: cuisine__north_african +- id: 8913 + name: Oceanian + friendly_id: cuisine__oceanian +- id: 8914 + name: Scandinavian + friendly_id: cuisine__scandinavian +- id: 8915 + name: South African + friendly_id: cuisine__south_african +- id: 8916 + name: Southeast Asian + friendly_id: cuisine__southeast_asian +- id: 8917 + name: Southern United States + friendly_id: cuisine__southern_united_states +- id: 8918 + name: Southwestern United States + friendly_id: cuisine__southwestern_united_states +- id: 8919 + name: Spanish + friendly_id: cuisine__spanish +- id: 8920 + name: Thai + friendly_id: cuisine__thai +- id: 8921 + name: Vietnamese + friendly_id: cuisine__vietnamese +- id: 8922 + name: West African + friendly_id: cuisine__west_african +- id: 8923 + name: Other + friendly_id: cuisine__other +- id: 8924 + name: Brisket + friendly_id: meat_cut__brisket +- id: 8925 + name: Burgers + friendly_id: meat_cut__burgers +- id: 8926 + name: Cheek + friendly_id: meat_cut__cheek +- id: 8927 + name: Chuck + friendly_id: meat_cut__chuck +- id: 8928 + name: Flank + friendly_id: meat_cut__flank +- id: 8929 + name: Forequarter + friendly_id: meat_cut__forequarter +- id: 8930 + name: Ground + friendly_id: meat_cut__ground +- id: 8931 + name: Heart + friendly_id: meat_cut__heart +- id: 8932 + name: Kidney + friendly_id: meat_cut__kidney +- id: 8933 + name: Liver + friendly_id: meat_cut__liver +- id: 8934 + name: Oxtail + friendly_id: meat_cut__oxtail +- id: 8935 + name: Ribs + friendly_id: meat_cut__ribs +- id: 8936 + name: Rump + friendly_id: meat_cut__rump +- id: 8937 + name: Shank + friendly_id: meat_cut__shank +- id: 8938 + name: Short loin + friendly_id: meat_cut__short_loin +- id: 8939 + name: Short ribs + friendly_id: meat_cut__short_ribs +- id: 8940 + name: Sirloin + friendly_id: meat_cut__sirloin +- id: 8941 + name: Tenderloin + friendly_id: meat_cut__tenderloin +- id: 8942 + name: Tongue + friendly_id: meat_cut__tongue +- id: 8943 + name: Tripe + friendly_id: meat_cut__tripe +- id: 8944 + name: Other + friendly_id: meat_cut__other +- id: 8945 + name: Backstrap + friendly_id: meat_cut__backstrap +- id: 8946 + name: Front shoulder + friendly_id: meat_cut__front_shoulder +- id: 8947 + name: Haunch + friendly_id: meat_cut__haunch +- id: 8948 + name: Hindquarter + friendly_id: meat_cut__hindquarter +- id: 8949 + name: Jerky + friendly_id: meat_cut__jerky +- id: 8950 + name: Meatballs + friendly_id: meat_cut__meatballs +- id: 8951 + name: Neck + friendly_id: meat_cut__neck +- id: 8952 + name: Saddle + friendly_id: meat_cut__saddle +- id: 8953 + name: Sausages + friendly_id: meat_cut__sausages +- id: 8954 + name: Stew meat + friendly_id: meat_cut__stew_meat +- id: 8955 + name: Chops + friendly_id: meat_cut__chops +- id: 8956 + name: Legs + friendly_id: meat_cut__legs +- id: 8957 + name: Loin + friendly_id: meat_cut__loin +- id: 8958 + name: Rack + friendly_id: meat_cut__rack +- id: 8959 + name: Shoulder + friendly_id: meat_cut__shoulder +- id: 8960 + name: Sweetbreads + friendly_id: meat_cut__sweetbreads +- id: 8961 + name: Belly + friendly_id: meat_cut__belly +- id: 8962 + name: Blade + friendly_id: meat_cut__blade +- id: 8963 + name: Ham + friendly_id: meat_cut__ham +- id: 8964 + name: Hock + friendly_id: meat_cut__hock +- id: 8965 + name: Jowl + friendly_id: meat_cut__jowl +- id: 8966 + name: Spareribs + friendly_id: meat_cut__spareribs +- id: 8967 + name: Breasts + friendly_id: meat_cut__breasts +- id: 8968 + name: Drumsticks + friendly_id: meat_cut__drumsticks +- id: 8969 + name: Thighs + friendly_id: meat_cut__thighs +- id: 8970 + name: Whole + friendly_id: meat_cut__whole +- id: 8971 + name: Wings + friendly_id: meat_cut__wings +- id: 8972 + name: Anchovy + friendly_id: seafood_type__anchovy +- id: 8973 + name: Barramundi + friendly_id: seafood_type__barramundi +- id: 8974 + name: Bass + friendly_id: seafood_type__bass +- id: 8975 + name: Calamari + friendly_id: seafood_type__calamari +- id: 8976 + name: Carp + friendly_id: seafood_type__carp +- id: 8977 + name: Catfish + friendly_id: seafood_type__catfish +- id: 8978 + name: Clam + friendly_id: seafood_type__clam +- id: 8979 + name: Cod + friendly_id: seafood_type__cod +- id: 8980 + name: Crab + friendly_id: seafood_type__crab +- id: 8981 + name: Crawfish + friendly_id: seafood_type__crawfish +- id: 8982 + name: Cuttlefish + friendly_id: seafood_type__cuttlefish +- id: 8983 + name: Eel + friendly_id: seafood_type__eel +- id: 8984 + name: Flounder + friendly_id: seafood_type__flounder +- id: 8985 + name: Grouper + friendly_id: seafood_type__grouper +- id: 8986 + name: Haddock + friendly_id: seafood_type__haddock +- id: 8987 + name: Halibut + friendly_id: seafood_type__halibut +- id: 8988 + name: Herring + friendly_id: seafood_type__herring +- id: 8989 + name: Lobster + friendly_id: seafood_type__lobster +- id: 8990 + name: Mackerel + friendly_id: seafood_type__mackerel +- id: 8991 + name: Mahi-mahi + friendly_id: seafood_type__mahi_mahi +- id: 8992 + name: Mussel + friendly_id: seafood_type__mussel +- id: 8993 + name: Octopus + friendly_id: seafood_type__octopus +- id: 8994 + name: Oyster + friendly_id: seafood_type__oyster +- id: 8995 + name: Perch + friendly_id: seafood_type__perch +- id: 8996 + name: Pike + friendly_id: seafood_type__pike +- id: 8997 + name: Pollock + friendly_id: seafood_type__pollock +- id: 8998 + name: Salmon + friendly_id: seafood_type__salmon +- id: 8999 + name: Sardine + friendly_id: seafood_type__sardine +- id: 9000 + name: Scallop + friendly_id: seafood_type__scallop +- id: 9001 + name: Shrimp + friendly_id: seafood_type__shrimp +- id: 9002 + name: Snapper + friendly_id: seafood_type__snapper +- id: 9003 + name: Sole + friendly_id: seafood_type__sole +- id: 9004 + name: Squid + friendly_id: seafood_type__squid +- id: 9005 + name: Swordfish + friendly_id: seafood_type__swordfish +- id: 9006 + name: Tilapia + friendly_id: seafood_type__tilapia +- id: 9007 + name: Trout + friendly_id: seafood_type__trout +- id: 9008 + name: Tuna + friendly_id: seafood_type__tuna +- id: 9009 + name: Other + friendly_id: seafood_type__other +- id: 9010 + name: Candied + friendly_id: nut_processing_method__candied +- id: 9011 + name: Raw + friendly_id: nut_processing_method__raw +- id: 9012 + name: Roasted + friendly_id: nut_processing_method__roasted +- id: 9013 + name: Salted + friendly_id: nut_processing_method__salted +- id: 9014 + name: Angel hair + friendly_id: pasta_type__angel_hair +- id: 9015 + name: Bucatini + friendly_id: pasta_type__bucatini +- id: 9016 + name: Campanelle + friendly_id: pasta_type__campanelle +- id: 9017 + name: Cannelloni + friendly_id: pasta_type__cannelloni +- id: 9018 + name: Capellini + friendly_id: pasta_type__capellini +- id: 9019 + name: Casarecce + friendly_id: pasta_type__casarecce +- id: 9020 + name: Cavatappi + friendly_id: pasta_type__cavatappi +- id: 9021 + name: Cazzetti + friendly_id: pasta_type__cazzetti +- id: 9022 + name: Conchiglie + friendly_id: pasta_type__conchiglie +- id: 9023 + name: Ditalini + friendly_id: pasta_type__ditalini +- id: 9024 + name: Dumplings + friendly_id: pasta_type__dumplings +- id: 9025 + name: Elbow macaroni + friendly_id: pasta_type__elbow_macaroni +- id: 9026 + name: Farfalle + friendly_id: pasta_type__farfalle +- id: 9027 + name: Fettuccine + friendly_id: pasta_type__fettuccine +- id: 9028 + name: Fusilli + friendly_id: pasta_type__fusilli +- id: 9029 + name: Gemelli + friendly_id: pasta_type__gemelli +- id: 9030 + name: Gnocchi + friendly_id: pasta_type__gnocchi +- id: 9031 + name: Lasagna + friendly_id: pasta_type__lasagna +- id: 9032 + name: Linguine + friendly_id: pasta_type__linguine +- id: 9033 + name: Macaroni + friendly_id: pasta_type__macaroni +- id: 9034 + name: Manicotti + friendly_id: pasta_type__manicotti +- id: 9035 + name: Mostaccioli + friendly_id: pasta_type__mostaccioli +- id: 9036 + name: Orecchiette + friendly_id: pasta_type__orecchiette +- id: 9037 + name: Orzo + friendly_id: pasta_type__orzo +- id: 9038 + name: Paccheri + friendly_id: pasta_type__paccheri +- id: 9039 + name: Pappardelle + friendly_id: pasta_type__pappardelle +- id: 9040 + name: Penne + friendly_id: pasta_type__penne +- id: 9041 + name: Radiatori + friendly_id: pasta_type__radiatori +- id: 9042 + name: Rigatoni + friendly_id: pasta_type__rigatoni +- id: 9043 + name: Rotelle + friendly_id: pasta_type__rotelle +- id: 9044 + name: Rotini + friendly_id: pasta_type__rotini +- id: 9045 + name: Spaghetti + friendly_id: pasta_type__spaghetti +- id: 9046 + name: Tagliatelle + friendly_id: pasta_type__tagliatelle +- id: 9047 + name: Tortellini + friendly_id: pasta_type__tortellini +- id: 9048 + name: Vermicelli + friendly_id: pasta_type__vermicelli +- id: 9049 + name: Ziti + friendly_id: pasta_type__ziti +- id: 9050 + name: Other + friendly_id: pasta_type__other +- id: 9051 + name: Bain-marie + friendly_id: heating_instructions__bain_marie +- id: 9052 + name: Microwave + friendly_id: heating_instructions__microwave +- id: 9053 + name: Oven + friendly_id: heating_instructions__oven +- id: 9054 + name: Hob + friendly_id: heating_instructions__hob +- id: 9055 + name: Stovetop + friendly_id: heating_instructions__stovetop +- id: 9056 + name: Ground + friendly_id: food_product_form__ground +- id: 9057 + name: Whole + friendly_id: food_product_form__whole +- id: 9058 + name: Beef + friendly_id: meat_type__beef +- id: 9059 + name: Bison + friendly_id: meat_type__bison +- id: 9060 + name: Chicken + friendly_id: meat_type__chicken +- id: 9061 + name: Duck + friendly_id: meat_type__duck +- id: 9062 + name: Goat + friendly_id: meat_type__goat +- id: 9063 + name: Lamb + friendly_id: meat_type__lamb +- id: 9064 + name: Ostrich + friendly_id: meat_type__ostrich +- id: 9065 + name: Pheasant + friendly_id: meat_type__pheasant +- id: 9066 + name: Plant-based + friendly_id: meat_type__plant_based +- id: 9067 + name: Pork + friendly_id: meat_type__pork +- id: 9068 + name: Quail + friendly_id: meat_type__quail +- id: 9069 + name: Rabbit + friendly_id: meat_type__rabbit +- id: 9070 + name: Turkey + friendly_id: meat_type__turkey +- id: 9071 + name: Venison + friendly_id: meat_type__venison +- id: 9072 + name: Wild boar + friendly_id: meat_type__wild_boar +- id: 9073 + name: Burley + friendly_id: tobacco_type__burley +- id: 9074 + name: Cavendish + friendly_id: tobacco_type__cavendish +- id: 9075 + name: Latakia + friendly_id: tobacco_type__latakia +- id: 9076 + name: Maryland + friendly_id: tobacco_type__maryland +- id: 9077 + name: Oriental + friendly_id: tobacco_type__oriental +- id: 9078 + name: Perique + friendly_id: tobacco_type__perique +- id: 9079 + name: Turkish + friendly_id: tobacco_type__turkish +- id: 9080 + name: Virginia + friendly_id: tobacco_type__virginia +- id: 9081 + name: Full + friendly_id: cigar_body__full +- id: 9082 + name: Medium + friendly_id: cigar_body__medium +- id: 9083 + name: Medium to full + friendly_id: cigar_body__medium_to_full +- id: 9084 + name: Mild + friendly_id: cigar_body__mild +- id: 9085 + name: Mild to medium + friendly_id: cigar_body__mild_to_medium +- id: 9086 + name: Apple + friendly_id: pipe_shape__apple +- id: 9087 + name: Billiard + friendly_id: pipe_shape__billiard +- id: 9088 + name: Blowfish + friendly_id: pipe_shape__blowfish +- id: 9089 + name: Bulldog + friendly_id: pipe_shape__bulldog +- id: 9090 + name: Calabash + friendly_id: pipe_shape__calabash +- id: 9091 + name: Canadian + friendly_id: pipe_shape__canadian +- id: 9092 + name: Cavalier + friendly_id: pipe_shape__cavalier +- id: 9093 + name: Chimneys + friendly_id: pipe_shape__chimneys +- id: 9094 + name: Churchwarden + friendly_id: pipe_shape__churchwarden +- id: 9095 + name: Cutty + friendly_id: pipe_shape__cutty +- id: 9096 + name: Dublin + friendly_id: pipe_shape__dublin +- id: 9097 + name: Egg + friendly_id: pipe_shape__egg +- id: 9098 + name: Freehand + friendly_id: pipe_shape__freehand +- id: 9099 + name: Gourd calabash + friendly_id: pipe_shape__gourd_calabash +- id: 9100 + name: Lovat + friendly_id: pipe_shape__lovat +- id: 9101 + name: Panel + friendly_id: pipe_shape__panel +- id: 9102 + name: Pear + friendly_id: pipe_shape__pear +- id: 9103 + name: Poker + friendly_id: pipe_shape__poker +- id: 9104 + name: Prince + friendly_id: pipe_shape__prince +- id: 9105 + name: Tomato + friendly_id: pipe_shape__tomato +- id: 9106 + name: Volcano + friendly_id: pipe_shape__volcano +- id: 9107 + name: Other + friendly_id: pipe_shape__other +- id: 9108 + name: Changeable + friendly_id: coil_connection__changeable +- id: 9109 + name: Fixed + friendly_id: coil_connection__fixed +- id: 9110 + name: Cigalike + friendly_id: e_cigarette_vaporizer_style__cigalike +- id: 9111 + name: Box mod + friendly_id: e_cigarette_vaporizer_style__box_mod +- id: 9112 + name: Disposable + friendly_id: e_cigarette_vaporizer_style__disposable +- id: 9113 + name: Mod + friendly_id: e_cigarette_vaporizer_style__mod +- id: 9114 + name: Pen + friendly_id: e_cigarette_vaporizer_style__pen +- id: 9115 + name: Pod + friendly_id: e_cigarette_vaporizer_style__pod +- id: 9116 + name: Pod mod + friendly_id: e_cigarette_vaporizer_style__pod_mod +- id: 9117 + name: Stick + friendly_id: e_cigarette_vaporizer_style__stick +- id: 9118 + name: Apple + friendly_id: e_liquid_flavor__apple +- id: 9119 + name: Blueberry + friendly_id: e_liquid_flavor__blueberry +- id: 9120 + name: Bubblegum + friendly_id: e_liquid_flavor__bubblegum +- id: 9121 + name: Caramel + friendly_id: e_liquid_flavor__caramel +- id: 9122 + name: Cereal + friendly_id: e_liquid_flavor__cereal +- id: 9123 + name: Chocolate + friendly_id: e_liquid_flavor__chocolate +- id: 9124 + name: Cinnamon + friendly_id: e_liquid_flavor__cinnamon +- id: 9125 + name: Coconut + friendly_id: e_liquid_flavor__coconut +- id: 9126 + name: Coffee + friendly_id: e_liquid_flavor__coffee +- id: 9127 + name: Cola + friendly_id: e_liquid_flavor__cola +- id: 9128 + name: Cotton candy + friendly_id: e_liquid_flavor__cotton_candy +- id: 9129 + name: Mango + friendly_id: e_liquid_flavor__mango +- id: 9130 + name: Menthol + friendly_id: e_liquid_flavor__menthol +- id: 9131 + name: Mint + friendly_id: e_liquid_flavor__mint +- id: 9132 + name: Orange + friendly_id: e_liquid_flavor__orange +- id: 9133 + name: Pineapple + friendly_id: e_liquid_flavor__pineapple +- id: 9134 + name: Raspberry + friendly_id: e_liquid_flavor__raspberry +- id: 9135 + name: Strawberry + friendly_id: e_liquid_flavor__strawberry +- id: 9136 + name: Tobacco + friendly_id: e_liquid_flavor__tobacco +- id: 9137 + name: Vanilla + friendly_id: e_liquid_flavor__vanilla +- id: 9138 + name: Watermelon + friendly_id: e_liquid_flavor__watermelon +- id: 9139 + name: Other + friendly_id: e_liquid_flavor__other +- id: 9140 + name: Direct-to-lung (DTL) + friendly_id: vaping_style__direct_to_lung_dtl +- id: 9141 + name: Mouth-to-lung (MTL) + friendly_id: vaping_style__mouth_to_lung_mtl +- id: 9142 + name: Restricted direct-to-lung (RDTL) + friendly_id: vaping_style__restricted_direct_to_lung_rdtl +- id: 9143 + name: Freebase nicotine + friendly_id: e_liquid_variety__freebase_nicotine +- id: 9144 + name: Nicotine salt + friendly_id: e_liquid_variety__nicotine_salt +- id: 9145 + name: Nicotine shot + friendly_id: e_liquid_variety__nicotine_shot +- id: 9146 + name: Regular + friendly_id: e_liquid_variety__regular +- id: 9147 + name: Short fill + friendly_id: e_liquid_variety__short_fill +- id: 9148 + name: Zero nicotine + friendly_id: e_liquid_variety__zero_nicotine +- id: 9149 + name: 30:70 + friendly_id: vg_pg_ratio__3070 +- id: 9150 + name: 40:60 + friendly_id: vg_pg_ratio__4060 +- id: 9151 + name: '45:55' + friendly_id: vg_pg_ratio__4555 +- id: 9152 + name: '50:50' + friendly_id: vg_pg_ratio__5050 +- id: 9153 + name: '60:40' + friendly_id: vg_pg_ratio__6040 +- id: 9154 + name: '65:35' + friendly_id: vg_pg_ratio__6535 +- id: 9155 + name: '70:30' + friendly_id: vg_pg_ratio__7030 +- id: 9156 + name: '75:25' + friendly_id: vg_pg_ratio__7525 +- id: 9157 + name: '80:20' + friendly_id: vg_pg_ratio__8020 +- id: 9158 + name: '90:10' + friendly_id: vg_pg_ratio__9010 +- id: 9159 + name: '100:00' + friendly_id: vg_pg_ratio__10000 +- id: 9160 + name: 0-6 months + friendly_id: age_group__0_6_months +- id: 9161 + name: 6-12 months + friendly_id: age_group__6_12_months +- id: 9162 + name: 1-2 years + friendly_id: age_group__1_2_years +- id: 9163 + name: Toddlers + friendly_id: age_group__toddlers +- id: 9164 + name: Single + friendly_id: bedding_size__single +- id: 9165 + name: Double + friendly_id: bedding_size__double +- id: 9166 + name: Bunk + friendly_id: bedding_size__bunk +- id: 9167 + name: California king + friendly_id: bedding_size__california_king +- id: 9168 + name: Standard + friendly_id: bedding_size__standard +- id: 9169 + name: Fabric + friendly_id: foundation_material__fabric +- id: 9170 + name: Metal + friendly_id: foundation_material__metal +- id: 9171 + name: Pine wood + friendly_id: foundation_material__pine_wood +- id: 9172 + name: Plywood + friendly_id: foundation_material__plywood +- id: 9173 + name: Polyester + friendly_id: foundation_material__polyester +- id: 9174 + name: Spruce wood + friendly_id: foundation_material__spruce_wood +- id: 9175 + name: Steel + friendly_id: foundation_material__steel +- id: 9176 + name: Wood + friendly_id: foundation_material__wood +- id: 9177 + name: Extra firm + friendly_id: firmness__extra_firm +- id: 9178 + name: Extra soft + friendly_id: firmness__extra_soft +- id: 9179 + name: Medium firm + friendly_id: firmness__medium_firm +- id: 9180 + name: Medium soft + friendly_id: firmness__medium_soft +- id: 9181 + name: Beech wood + friendly_id: slat_material__beech_wood +- id: 9182 + name: Medium density fiberboard (MDF) + friendly_id: slat_material__medium_density_fiberboard_mdf +- id: 9183 + name: Metal + friendly_id: slat_material__metal +- id: 9184 + name: Oak wood + friendly_id: slat_material__oak_wood +- id: 9185 + name: Pine wood + friendly_id: slat_material__pine_wood +- id: 9186 + name: Plywood + friendly_id: slat_material__plywood +- id: 9187 + name: Spruce wood + friendly_id: slat_material__spruce_wood +- id: 9188 + name: Wood + friendly_id: slat_material__wood +- id: 9189 + name: Padded + friendly_id: seat_type__padded +- id: 9190 + name: Hard + friendly_id: seat_type__hard +- id: 9191 + name: Upholstered strap + friendly_id: seat_type__upholstered_strap +- id: 9192 + name: Upholstered padded + friendly_id: seat_type__upholstered_padded +- id: 9193 + name: Strap + friendly_id: seat_type__strap +- id: 9194 + name: Mesh + friendly_id: seat_type__mesh +- id: 9195 + name: Upholstered + friendly_id: seat_type__upholstered +- id: 9196 + name: Air filled + friendly_id: seat_type__air_filled +- id: 9197 + name: Nest + friendly_id: seat_type__nest +- id: 9198 + name: Swing bag + friendly_id: seat_type__swing_bag +- id: 9199 + name: Bucket (cradle) + friendly_id: seat_type__bucket_cradle +- id: 9200 + name: Flat + friendly_id: seat_type__flat +- id: 9201 + name: Hinged + friendly_id: door_type__hinged +- id: 9202 + name: Sliding + friendly_id: door_type__sliding +- id: 9203 + name: Modern + friendly_id: wine_rack_design__modern +- id: 9204 + name: Decorative + friendly_id: wine_rack_design__decorative +- id: 9205 + name: Traditional + friendly_id: wine_rack_design__traditional +- id: 9206 + name: Utility + friendly_id: wine_rack_design__utility +- id: 9207 + name: Padded + friendly_id: backrest_type__padded +- id: 9208 + name: Hard + friendly_id: backrest_type__hard +- id: 9209 + name: Upholstered strap + friendly_id: backrest_type__upholstered_strap +- id: 9210 + name: Strap + friendly_id: backrest_type__strap +- id: 9211 + name: Mesh + friendly_id: backrest_type__mesh +- id: 9212 + name: Upholstered + friendly_id: backrest_type__upholstered +- id: 9213 + name: Upholstered padded + friendly_id: backrest_type__upholstered_padded +- id: 9214 + name: Buckwheat hulls + friendly_id: filler_material__buckwheat_hulls +- id: 9215 + name: Cotton + friendly_id: filler_material__cotton +- id: 9216 + name: Down feather + friendly_id: filler_material__down_feather +- id: 9217 + name: Feathers + friendly_id: filler_material__feathers +- id: 9218 + name: Felt + friendly_id: filler_material__felt +- id: 9219 + name: Fleece + friendly_id: filler_material__fleece +- id: 9220 + name: Memory foam + friendly_id: filler_material__memory_foam +- id: 9221 + name: Microbeads + friendly_id: filler_material__microbeads +- id: 9222 + name: Plush + friendly_id: filler_material__plush +- id: 9223 + name: Polyester + friendly_id: filler_material__polyester +- id: 9224 + name: Polystyrene (PS) + friendly_id: filler_material__polystyrene_ps +- id: 9225 + name: Polyurethane (PU) + friendly_id: filler_material__polyurethane_pu +- id: 9226 + name: Synthetic + friendly_id: filler_material__synthetic +- id: 9227 + name: Wool + friendly_id: filler_material__wool +- id: 9228 + name: Clapping + friendly_id: massage_technique__clapping +- id: 9229 + name: Foot reflex zone + friendly_id: massage_technique__foot_reflex_zone +- id: 9230 + name: Kneading + friendly_id: massage_technique__kneading +- id: 9231 + name: Rolling + friendly_id: massage_technique__rolling +- id: 9232 + name: Shiatsu + friendly_id: massage_technique__shiatsu +- id: 9233 + name: Swedish + friendly_id: massage_technique__swedish +- id: 9234 + name: Tapping + friendly_id: massage_technique__tapping +- id: 9235 + name: Combo + friendly_id: massage_technique__combo +- id: 9236 + name: Wavelet + friendly_id: massage_technique__wavelet +- id: 9237 + name: Pummeling + friendly_id: massage_technique__pummeling +- id: 9238 + name: Beat + friendly_id: massage_technique__beat +- id: 9239 + name: Compression + friendly_id: massage_technique__compression +- id: 9240 + name: Percussive + friendly_id: massage_technique__percussive +- id: 9241 + name: Arms + friendly_id: body_area__arms +- id: 9242 + name: Back + friendly_id: body_area__back +- id: 9243 + name: Buttocks + friendly_id: body_area__buttocks +- id: 9244 + name: Calves + friendly_id: body_area__calves +- id: 9245 + name: Feet + friendly_id: body_area__feet +- id: 9246 + name: Lumbar region + friendly_id: body_area__lumbar_region +- id: 9247 + name: Neck + friendly_id: body_area__neck +- id: 9248 + name: Shoulders + friendly_id: body_area__shoulders +- id: 9249 + name: Thighs + friendly_id: body_area__thighs +- id: 9250 + name: Waist + friendly_id: body_area__waist +- id: 9251 + name: With stand + friendly_id: hanging_chair_design__with_stand +- id: 9252 + name: Without stand + friendly_id: hanging_chair_design__without_stand +- id: 9253 + name: Backless + friendly_id: back_type__backless +- id: 9254 + name: Full back + friendly_id: back_type__full_back +- id: 9255 + name: Low back + friendly_id: back_type__low_back +- id: 9256 + name: Free-form + friendly_id: shape__free_form +- id: 9257 + name: Semicircular + friendly_id: shape__semicircular +- id: 9258 + name: Trapezoidal + friendly_id: shape__trapezoidal +- id: 9259 + name: Wicker + friendly_id: seat_structure__wicker +- id: 9260 + name: Solid + friendly_id: seat_structure__solid +- id: 9261 + name: Grid + friendly_id: seat_structure__grid +- id: 9262 + name: Bicycle + friendly_id: suitable_for_storage_type__bicycle +- id: 9263 + name: Cushions + friendly_id: suitable_for_storage_type__cushions +- id: 9264 + name: Garbage + friendly_id: suitable_for_storage_type__garbage +- id: 9265 + name: Garden tools + friendly_id: suitable_for_storage_type__garden_tools +- id: 9266 + name: Acrylic + friendly_id: cover_material__acrylic +- id: 9267 + name: Bamboo + friendly_id: cover_material__bamboo +- id: 9268 + name: Canvas + friendly_id: cover_material__canvas +- id: 9269 + name: Cork + friendly_id: cover_material__cork +- id: 9270 + name: Cotton + friendly_id: cover_material__cotton +- id: 9271 + name: Denim + friendly_id: cover_material__denim +- id: 9272 + name: Faux fur + friendly_id: cover_material__faux_fur +- id: 9273 + name: Faux leather + friendly_id: cover_material__faux_leather +- id: 9274 + name: Felt + friendly_id: cover_material__felt +- id: 9275 + name: Flannel + friendly_id: cover_material__flannel +- id: 9276 + name: Fleece + friendly_id: cover_material__fleece +- id: 9277 + name: Fur + friendly_id: cover_material__fur +- id: 9278 + name: Hemp + friendly_id: cover_material__hemp +- id: 9279 + name: Jute + friendly_id: cover_material__jute +- id: 9280 + name: Latex + friendly_id: cover_material__latex +- id: 9281 + name: Leather + friendly_id: cover_material__leather +- id: 9282 + name: Linen + friendly_id: cover_material__linen +- id: 9283 + name: Lycra + friendly_id: cover_material__lycra +- id: 9284 + name: Mesh + friendly_id: cover_material__mesh +- id: 9285 + name: Modal + friendly_id: cover_material__modal +- id: 9286 + name: Mohair + friendly_id: cover_material__mohair +- id: 9287 + name: Neoprene + friendly_id: cover_material__neoprene +- id: 9288 + name: Nylon + friendly_id: cover_material__nylon +- id: 9289 + name: Plastic + friendly_id: cover_material__plastic +- id: 9290 + name: Polyester + friendly_id: cover_material__polyester +- id: 9291 + name: Rattan + friendly_id: cover_material__rattan +- id: 9292 + name: Rubber + friendly_id: cover_material__rubber +- id: 9293 + name: Synthetic + friendly_id: cover_material__synthetic +- id: 9294 + name: Tarpaulin + friendly_id: cover_material__tarpaulin +- id: 9295 + name: Twill + friendly_id: cover_material__twill +- id: 9296 + name: Vinyl + friendly_id: cover_material__vinyl +- id: 9297 + name: Viscose + friendly_id: cover_material__viscose +- id: 9298 + name: Wool + friendly_id: cover_material__wool +- id: 9299 + name: Other + friendly_id: cover_material__other +- id: 9300 + name: Contemporary + friendly_id: style__contemporary +- id: 9301 + name: Traditional + friendly_id: style__traditional +- id: 9302 + name: Industrial + friendly_id: style__industrial +- id: 9303 + name: Retro/Vintage + friendly_id: style__retro_vintage +- id: 9304 + name: Balcony + friendly_id: suitable_location__balcony +- id: 9305 + name: Bathroom + friendly_id: suitable_location__bathroom +- id: 9306 + name: Bedroom + friendly_id: suitable_location__bedroom +- id: 9307 + name: Children's room + friendly_id: suitable_location__childrens_room +- id: 9308 + name: Corridor + friendly_id: suitable_location__corridor +- id: 9309 + name: Courtyard + friendly_id: suitable_location__courtyard +- id: 9310 + name: Dining room + friendly_id: suitable_location__dining_room +- id: 9311 + name: Entrance + friendly_id: suitable_location__entrance +- id: 9312 + name: Garage + friendly_id: suitable_location__garage +- id: 9313 + name: Garden + friendly_id: suitable_location__garden +- id: 9314 + name: Hallway + friendly_id: suitable_location__hallway +- id: 9315 + name: Kitchen + friendly_id: suitable_location__kitchen +- id: 9316 + name: Laundry room + friendly_id: suitable_location__laundry_room +- id: 9317 + name: Living room + friendly_id: suitable_location__living_room +- id: 9318 + name: Patio + friendly_id: suitable_location__patio +- id: 9319 + name: Porch + friendly_id: suitable_location__porch +- id: 9320 + name: Storage room + friendly_id: suitable_location__storage_room +- id: 9321 + name: Toilet + friendly_id: suitable_location__toilet +- id: 9322 + name: Other + friendly_id: suitable_location__other +- id: 9323 + name: Bonding + friendly_id: chemical_application__bonding +- id: 9324 + name: Cleaning + friendly_id: chemical_application__cleaning +- id: 9325 + name: Waterproofing + friendly_id: chemical_application__waterproofing +- id: 9326 + name: Low VOC + friendly_id: chemical_safety_features__low_voc +- id: 9327 + name: Non-toxic + friendly_id: chemical_safety_features__non_toxic +- id: 9328 + name: Flakes + friendly_id: chemical_product_form__flakes +- id: 9329 + name: Granules + friendly_id: chemical_product_form__granules +- id: 9330 + name: Liquid + friendly_id: chemical_product_form__liquid +- id: 9331 + name: Pellets + friendly_id: chemical_product_form__pellets +- id: 9332 + name: Blister + friendly_id: chemical_container_type__blister +- id: 9333 + name: Bottles + friendly_id: chemical_container_type__bottles +- id: 9334 + name: Jerrican + friendly_id: chemical_container_type__jerrican +- id: 9335 + name: Portion pack + friendly_id: chemical_container_type__portion_pack +- id: 9336 + name: Gel + friendly_id: chemical_product_form__gel +- id: 9337 + name: Powder + friendly_id: chemical_product_form__powder +- id: 9338 + name: Stick + friendly_id: chemical_product_form__stick +- id: 9339 + name: Tablets + friendly_id: chemical_product_form__tablets +- id: 9340 + name: Acrylic + friendly_id: suitable_for_material_type__acrylic +- id: 9341 + name: Aluminum + friendly_id: suitable_for_material_type__aluminum +- id: 9342 + name: Brass + friendly_id: suitable_for_material_type__brass +- id: 9343 + name: Brick + friendly_id: suitable_for_material_type__brick +- id: 9344 + name: Bronze + friendly_id: suitable_for_material_type__bronze +- id: 9345 + name: Cardboard + friendly_id: suitable_for_material_type__cardboard +- id: 9346 + name: Cement + friendly_id: suitable_for_material_type__cement +- id: 9347 + name: Ceramic + friendly_id: suitable_for_material_type__ceramic +- id: 9348 + name: Concrete + friendly_id: suitable_for_material_type__concrete +- id: 9349 + name: Copper + friendly_id: suitable_for_material_type__copper +- id: 9350 + name: Enamel + friendly_id: suitable_for_material_type__enamel +- id: 9351 + name: Epoxy + friendly_id: suitable_for_material_type__epoxy +- id: 9352 + name: Fiberboard + friendly_id: suitable_for_material_type__fiberboard +- id: 9353 + name: Fiberglass + friendly_id: suitable_for_material_type__fiberglass +- id: 9354 + name: Flint + friendly_id: suitable_for_material_type__flint +- id: 9355 + name: Glass + friendly_id: suitable_for_material_type__glass +- id: 9356 + name: Granite + friendly_id: suitable_for_material_type__granite +- id: 9357 + name: Grout + friendly_id: suitable_for_material_type__grout +- id: 9358 + name: Hardboard + friendly_id: suitable_for_material_type__hardboard +- id: 9359 + name: Iron + friendly_id: suitable_for_material_type__iron +- id: 9360 + name: Leather + friendly_id: suitable_for_material_type__leather +- id: 9361 + name: Limestone + friendly_id: suitable_for_material_type__limestone +- id: 9362 + name: Linen + friendly_id: suitable_for_material_type__linen +- id: 9363 + name: Marble + friendly_id: suitable_for_material_type__marble +- id: 9364 + name: Metal + friendly_id: suitable_for_material_type__metal +- id: 9365 + name: Mortar + friendly_id: suitable_for_material_type__mortar +- id: 9366 + name: Nylon + friendly_id: suitable_for_material_type__nylon +- id: 9367 + name: Paper + friendly_id: suitable_for_material_type__paper +- id: 9368 + name: Plaster + friendly_id: suitable_for_material_type__plaster +- id: 9369 + name: Plastic + friendly_id: suitable_for_material_type__plastic +- id: 9370 + name: Plywood + friendly_id: suitable_for_material_type__plywood +- id: 9371 + name: Porcelain + friendly_id: suitable_for_material_type__porcelain +- id: 9372 + name: Rubber + friendly_id: suitable_for_material_type__rubber +- id: 9373 + name: Sandstone + friendly_id: suitable_for_material_type__sandstone +- id: 9374 + name: Steel + friendly_id: suitable_for_material_type__steel +- id: 9375 + name: Stone + friendly_id: suitable_for_material_type__stone +- id: 9376 + name: Stucco + friendly_id: suitable_for_material_type__stucco +- id: 9377 + name: Wood + friendly_id: suitable_for_material_type__wood +- id: 9378 + name: Other + friendly_id: suitable_for_material_type__other +- id: 9379 + name: Aerosol spray + friendly_id: lubricant_dispenser_type__aerosol_spray +- id: 9380 + name: Bottle + friendly_id: lubricant_dispenser_type__bottle +- id: 9381 + name: Bucket + friendly_id: lubricant_dispenser_type__bucket +- id: 9382 + name: Can + friendly_id: lubricant_dispenser_type__can +- id: 9383 + name: Canister + friendly_id: lubricant_dispenser_type__canister +- id: 9384 + name: Cartridge + friendly_id: lubricant_dispenser_type__cartridge +- id: 9385 + name: Drum + friendly_id: lubricant_dispenser_type__drum +- id: 9386 + name: Pail + friendly_id: lubricant_dispenser_type__pail +- id: 9387 + name: Pouch + friendly_id: lubricant_dispenser_type__pouch +- id: 9388 + name: Tube + friendly_id: lubricant_dispenser_type__tube +- id: 9389 + name: Brick + friendly_id: masonry_material__brick +- id: 9390 + name: Calcium silicate + friendly_id: masonry_material__calcium_silicate +- id: 9391 + name: Cement + friendly_id: masonry_material__cement +- id: 9392 + name: Clay + friendly_id: masonry_material__clay +- id: 9393 + name: Concrete + friendly_id: masonry_material__concrete +- id: 9394 + name: Dolomite + friendly_id: masonry_material__dolomite +- id: 9395 + name: Fly ash + friendly_id: masonry_material__fly_ash +- id: 9396 + name: Granite + friendly_id: masonry_material__granite +- id: 9397 + name: Grout + friendly_id: masonry_material__grout +- id: 9398 + name: Limestone + friendly_id: masonry_material__limestone +- id: 9399 + name: Marble + friendly_id: masonry_material__marble +- id: 9400 + name: Mortar + friendly_id: masonry_material__mortar +- id: 9401 + name: Plaster + friendly_id: masonry_material__plaster +- id: 9402 + name: Sandstone + friendly_id: masonry_material__sandstone +- id: 9403 + name: Slate + friendly_id: masonry_material__slate +- id: 9404 + name: Stone + friendly_id: masonry_material__stone +- id: 9405 + name: Liquid + friendly_id: masonry_product_form__liquid +- id: 9406 + name: Paste + friendly_id: masonry_product_form__paste +- id: 9407 + name: Powder + friendly_id: masonry_product_form__powder +- id: 9408 + name: Cabinets + friendly_id: intended_application__cabinets +- id: 9409 + name: Ceilings + friendly_id: intended_application__ceilings +- id: 9410 + name: Concrete + friendly_id: intended_application__concrete +- id: 9411 + name: Decks/Fences + friendly_id: intended_application__decks_fences +- id: 9412 + name: Doors + friendly_id: intended_application__doors +- id: 9413 + name: Drywall + friendly_id: intended_application__drywall +- id: 9414 + name: Exterior walls + friendly_id: intended_application__exterior_walls +- id: 9415 + name: Floors + friendly_id: intended_application__floors +- id: 9416 + name: Furniture + friendly_id: intended_application__furniture +- id: 9417 + name: Interior walls + friendly_id: intended_application__interior_walls +- id: 9418 + name: Marine transport + friendly_id: intended_application__marine_transport +- id: 9419 + name: Metal + friendly_id: intended_application__metal +- id: 9420 + name: Plastic + friendly_id: intended_application__plastic +- id: 9421 + name: Radiators + friendly_id: intended_application__radiators +- id: 9422 + name: Trim/Molding + friendly_id: intended_application__trim_molding +- id: 9423 + name: Windows + friendly_id: intended_application__windows +- id: 9424 + name: Wood + friendly_id: intended_application__wood +- id: 9425 + name: Other + friendly_id: intended_application__other +- id: 9426 + name: 1K + friendly_id: primer_use__1k +- id: 9427 + name: 2 in 1 + friendly_id: primer_use__2_in_1 +- id: 9428 + name: 2K + friendly_id: primer_use__2k +- id: 9429 + name: 3K + friendly_id: primer_use__3k +- id: 9430 + name: Base paint + friendly_id: primer_use__base_paint +- id: 9431 + name: Coloring + friendly_id: primer_use__coloring +- id: 9432 + name: Filler + friendly_id: primer_use__filler +- id: 9433 + name: Finish + friendly_id: primer_use__finish +- id: 9434 + name: Impregnating + friendly_id: primer_use__impregnating +- id: 9435 + name: Insulating + friendly_id: primer_use__insulating +- id: 9436 + name: Protective coating + friendly_id: primer_use__protective_coating +- id: 9437 + name: Sealer + friendly_id: primer_use__sealer +- id: 9438 + name: Base substance + friendly_id: product_formulation__base_substance +- id: 9439 + name: Ready mixed + friendly_id: product_formulation__ready_mixed +- id: 9440 + name: Dead-matte + friendly_id: sheen_gloss_level__dead_matte +- id: 9441 + name: Deep-matte + friendly_id: sheen_gloss_level__deep_matte +- id: 9442 + name: Dull-matte + friendly_id: sheen_gloss_level__dull_matte +- id: 9443 + name: Eggshell + friendly_id: sheen_gloss_level__eggshell +- id: 9444 + name: Extra-matte + friendly_id: sheen_gloss_level__extra_matte +- id: 9445 + name: Flat-matte + friendly_id: sheen_gloss_level__flat_matte +- id: 9446 + name: Gloss + friendly_id: sheen_gloss_level__gloss +- id: 9447 + name: Hammer + friendly_id: sheen_gloss_level__hammer +- id: 9448 + name: High-gloss + friendly_id: sheen_gloss_level__high_gloss +- id: 9449 + name: Matte + friendly_id: sheen_gloss_level__matte +- id: 9450 + name: Metallic gloss + friendly_id: sheen_gloss_level__metallic_gloss +- id: 9451 + name: Mirror + friendly_id: sheen_gloss_level__mirror +- id: 9452 + name: Satin + friendly_id: sheen_gloss_level__satin +- id: 9453 + name: Satin-gloss + friendly_id: sheen_gloss_level__satin_gloss +- id: 9454 + name: Semi-gloss + friendly_id: sheen_gloss_level__semi_gloss +- id: 9455 + name: Semi-matte + friendly_id: sheen_gloss_level__semi_matte +- id: 9456 + name: Semi-satin + friendly_id: sheen_gloss_level__semi_satin +- id: 9457 + name: Silk + friendly_id: sheen_gloss_level__silk +- id: 9458 + name: Silk-gloss + friendly_id: sheen_gloss_level__silk_gloss +- id: 9459 + name: Silk-matte + friendly_id: sheen_gloss_level__silk_matte +- id: 9460 + name: Smooth + friendly_id: sheen_gloss_level__smooth +- id: 9461 + name: Soft gloss + friendly_id: sheen_gloss_level__soft_gloss +- id: 9462 + name: Soft sheen + friendly_id: sheen_gloss_level__soft_sheen +- id: 9463 + name: Baseboard + friendly_id: varnish_finish_application__baseboard +- id: 9464 + name: Bathtubs + friendly_id: varnish_finish_application__bathtubs +- id: 9465 + name: Ceiling + friendly_id: varnish_finish_application__ceiling +- id: 9466 + name: Cooker hoods + friendly_id: varnish_finish_application__cooker_hoods +- id: 9467 + name: Doors + friendly_id: varnish_finish_application__doors +- id: 9468 + name: Facades + friendly_id: varnish_finish_application__facades +- id: 9469 + name: Fences + friendly_id: varnish_finish_application__fences +- id: 9470 + name: Frames + friendly_id: varnish_finish_application__frames +- id: 9471 + name: Furniture + friendly_id: varnish_finish_application__furniture +- id: 9472 + name: Garden furniture + friendly_id: varnish_finish_application__garden_furniture +- id: 9473 + name: Gates + friendly_id: varnish_finish_application__gates +- id: 9474 + name: Grills + friendly_id: varnish_finish_application__grills +- id: 9475 + name: Pipes + friendly_id: varnish_finish_application__pipes +- id: 9476 + name: Radiators + friendly_id: varnish_finish_application__radiators +- id: 9477 + name: Roofs + friendly_id: varnish_finish_application__roofs +- id: 9478 + name: Stairs + friendly_id: varnish_finish_application__stairs +- id: 9479 + name: Trims + friendly_id: varnish_finish_application__trims +- id: 9480 + name: Universal + friendly_id: varnish_finish_application__universal +- id: 9481 + name: Walls + friendly_id: varnish_finish_application__walls +- id: 9482 + name: Window shutters + friendly_id: varnish_finish_application__window_shutters +- id: 9483 + name: Windows + friendly_id: varnish_finish_application__windows +- id: 9484 + name: Other + friendly_id: varnish_finish_application__other +- id: 9485 + name: Fittings + friendly_id: plumbing_primer_application__fittings +- id: 9486 + name: Pipes + friendly_id: plumbing_primer_application__pipes +- id: 9487 + name: Heat control + friendly_id: coating_sealant_application__heat_control +- id: 9488 + name: Leak proofing + friendly_id: coating_sealant_application__leak_proofing +- id: 9489 + name: Weatherproofing + friendly_id: coating_sealant_application__weatherproofing +- id: 9490 + name: Electronics + friendly_id: solder_flux_application__electronics +- id: 9491 + name: Plumbing + friendly_id: solder_flux_application__plumbing +- id: 9492 + name: Adhesive remover + friendly_id: solvent_thinner_application__adhesive_remover +- id: 9493 + name: Epoxy + friendly_id: solvent_thinner_application__epoxy +- id: 9494 + name: Lacquer + friendly_id: solvent_thinner_application__lacquer +- id: 9495 + name: Paint + friendly_id: solvent_thinner_application__paint +- id: 9496 + name: Polyurethane + friendly_id: solvent_thinner_application__polyurethane +- id: 9497 + name: Shellac + friendly_id: solvent_thinner_application__shellac +- id: 9498 + name: Stain + friendly_id: solvent_thinner_application__stain +- id: 9499 + name: Varnish + friendly_id: solvent_thinner_application__varnish +- id: 9500 + name: Liquid + friendly_id: building_consumable_form__liquid +- id: 9501 + name: Paste + friendly_id: building_consumable_form__paste +- id: 9502 + name: Powder + friendly_id: building_consumable_form__powder +- id: 9503 + name: Ceiling + friendly_id: wall_patching_application__ceiling +- id: 9504 + name: Drywall + friendly_id: wall_patching_application__drywall +- id: 9505 + name: Masonry + friendly_id: wall_patching_application__masonry +- id: 9506 + name: Plaster + friendly_id: wall_patching_application__plaster +- id: 9507 + name: Stucco + friendly_id: wall_patching_application__stucco +- id: 9508 + name: Wood + friendly_id: wall_patching_application__wood +- id: 9509 + name: Beveled + friendly_id: edge_style__beveled +- id: 9510 + name: Bullnose + friendly_id: edge_style__bullnose +- id: 9511 + name: Eased + friendly_id: edge_style__eased +- id: 9512 + name: Ogee + friendly_id: edge_style__ogee +- id: 9513 + name: Square + friendly_id: edge_style__square +- id: 9514 + name: Transitional + friendly_id: style__transitional +- id: 9515 + name: Internal + friendly_id: door_frame_application__internal +- id: 9516 + name: External + friendly_id: door_frame_application__external +- id: 9517 + name: Floor + friendly_id: door_closer_design__floor +- id: 9518 + name: Overhead concealed + friendly_id: door_closer_design__overhead_concealed +- id: 9519 + name: Parallel arm + friendly_id: door_closer_design__parallel_arm +- id: 9520 + name: Regular arm + friendly_id: door_closer_design__regular_arm +- id: 9521 + name: Slide-track arm + friendly_id: door_closer_design__slide_track_arm +- id: 9522 + name: Top jamb + friendly_id: door_closer_design__top_jamb +- id: 9523 + name: Aluminum + friendly_id: hardware_finish__aluminum +- id: 9524 + name: Antique + friendly_id: hardware_finish__antique +- id: 9525 + name: Brass + friendly_id: hardware_finish__brass +- id: 9526 + name: Bronze + friendly_id: hardware_finish__bronze +- id: 9527 + name: Brushed + friendly_id: hardware_finish__brushed +- id: 9528 + name: Chrome + friendly_id: hardware_finish__chrome +- id: 9529 + name: Gloss + friendly_id: hardware_finish__gloss +- id: 9530 + name: Gold + friendly_id: hardware_finish__gold +- id: 9531 + name: Lacquered + friendly_id: hardware_finish__lacquered +- id: 9532 + name: Matte + friendly_id: hardware_finish__matte +- id: 9533 + name: Nickel + friendly_id: hardware_finish__nickel +- id: 9534 + name: Polished + friendly_id: hardware_finish__polished +- id: 9535 + name: Satin + friendly_id: hardware_finish__satin +- id: 9536 + name: Silver + friendly_id: hardware_finish__silver +- id: 9537 + name: Mechanical + friendly_id: power_source__mechanical +- id: 9538 + name: Commercial + friendly_id: recommended_use__commercial +- id: 9539 + name: Residential + friendly_id: recommended_use__residential +- id: 9540 + name: Universal + friendly_id: recommended_use__universal +- id: 9541 + name: Double-leaf + friendly_id: suitable_for_door_type__double_leaf +- id: 9542 + name: Single-leaf + friendly_id: suitable_for_door_type__single_leaf +- id: 9543 + name: Pre-finished + friendly_id: door_frame_finish__pre_finished +- id: 9544 + name: Ready to finish + friendly_id: door_frame_finish__ready_to_finish +- id: 9545 + name: Dummy + friendly_id: door_knob_function__dummy +- id: 9546 + name: Entry + friendly_id: door_knob_function__entry +- id: 9547 + name: Passage + friendly_id: door_knob_function__passage +- id: 9548 + name: Privacy + friendly_id: door_knob_function__privacy +- id: 9549 + name: Baseboard + friendly_id: door_stop_placement__baseboard +- id: 9550 + name: Door + friendly_id: door_stop_placement__door +- id: 9551 + name: Floor + friendly_id: door_stop_placement__floor +- id: 9552 + name: Hinge pin + friendly_id: door_stop_placement__hinge_pin +- id: 9553 + name: Wall + friendly_id: door_stop_placement__wall +- id: 9554 + name: Clear + friendly_id: door_glass_finish__clear +- id: 9555 + name: Frost + friendly_id: door_glass_finish__frost +- id: 9556 + name: Lead + friendly_id: door_glass_finish__lead +- id: 9557 + name: Opaque + friendly_id: door_glass_finish__opaque +- id: 9558 + name: Pattern + friendly_id: door_glass_finish__pattern +- id: 9559 + name: No glass + friendly_id: door_glass_finish__no_glass +- id: 9560 + name: Back + friendly_id: door_suitable_location__back +- id: 9561 + name: Front + friendly_id: door_suitable_location__front +- id: 9562 + name: Patio + friendly_id: door_suitable_location__patio +- id: 9563 + name: Glazed + friendly_id: door_surface_finish__glazed +- id: 9564 + name: Unglazed + friendly_id: door_surface_finish__unglazed +- id: 9565 + name: Cement + friendly_id: building_board_material__cement +- id: 9566 + name: Gypsum + friendly_id: building_board_material__gypsum +- id: 9567 + name: Hardboard + friendly_id: building_board_material__hardboard +- id: 9568 + name: Medium density fiberboard (MDF) + friendly_id: building_board_material__medium_density_fiberboard_mdf +- id: 9569 + name: Particle board + friendly_id: building_board_material__particle_board +- id: 9570 + name: Plywood + friendly_id: building_board_material__plywood +- id: 9571 + name: Polyvinyl chloride (PVC) + friendly_id: building_board_material__polyvinyl_chloride_pvc +- id: 9572 + name: Vinyl + friendly_id: building_board_material__vinyl +- id: 9573 + name: Wood + friendly_id: building_board_material__wood +- id: 9574 + name: Ceiling + friendly_id: hatch_suitable_location__ceiling +- id: 9575 + name: Floor + friendly_id: hatch_suitable_location__floor +- id: 9576 + name: Roof + friendly_id: hatch_suitable_location__roof +- id: 9577 + name: Wall + friendly_id: hatch_suitable_location__wall +- id: 9578 + name: Cellulose + friendly_id: insulation_material__cellulose +- id: 9579 + name: Cotton + friendly_id: insulation_material__cotton +- id: 9580 + name: Fiberglass + friendly_id: insulation_material__fiberglass +- id: 9581 + name: Mineral wool + friendly_id: insulation_material__mineral_wool +- id: 9582 + name: Phenolic foam + friendly_id: insulation_material__phenolic_foam +- id: 9583 + name: Polyisocyanurate (PIR) + friendly_id: insulation_material__polyisocyanurate_pir +- id: 9584 + name: Polystyrene (PS) + friendly_id: insulation_material__polystyrene_ps +- id: 9585 + name: Polyurethane (PU) + friendly_id: insulation_material__polyurethane_pu +- id: 9586 + name: Straw + friendly_id: insulation_material__straw +- id: 9587 + name: Wool + friendly_id: insulation_material__wool +- id: 9588 + name: Firsts and seconds (FAS) + friendly_id: hardwood_lumber_grade__firsts_and_seconds_fas +- id: 9589 + name: No. 1 common + friendly_id: hardwood_lumber_grade__no_1_common +- id: 9590 + name: No. 2 common + friendly_id: hardwood_lumber_grade__no_2_common +- id: 9591 + name: No. 2A common + friendly_id: hardwood_lumber_grade__no_2a_common +- id: 9592 + name: No. 2B common + friendly_id: hardwood_lumber_grade__no_2b_common +- id: 9593 + name: No. 3A common + friendly_id: hardwood_lumber_grade__no_3a_common +- id: 9594 + name: No. 3B common + friendly_id: hardwood_lumber_grade__no_3b_common +- id: 9595 + name: Select + friendly_id: hardwood_lumber_grade__select +- id: 9596 + name: A + friendly_id: plywood_grade__a +- id: 9597 + name: B + friendly_id: plywood_grade__b +- id: 9598 + name: C + friendly_id: plywood_grade__c +- id: 9599 + name: D + friendly_id: plywood_grade__d +- id: 9600 + name: C select + friendly_id: softwood_lumber_grade__c_select +- id: 9601 + name: D select + friendly_id: softwood_lumber_grade__d_select +- id: 9602 + name: No. 1 + friendly_id: softwood_lumber_grade__no_1 +- id: 9603 + name: No. 2 + friendly_id: softwood_lumber_grade__no_2 +- id: 9604 + name: No. 3 + friendly_id: softwood_lumber_grade__no_3 +- id: 9605 + name: Construction grade + friendly_id: softwood_lumber_grade__construction_grade +- id: 9606 + name: Astragal + friendly_id: molding_application__astragal +- id: 9607 + name: Baseboard + friendly_id: molding_application__baseboard +- id: 9608 + name: Bead/Reel + friendly_id: molding_application__bead_reel +- id: 9609 + name: Casing + friendly_id: molding_application__casing +- id: 9610 + name: Chair rail + friendly_id: molding_application__chair_rail +- id: 9611 + name: Cove + friendly_id: molding_application__cove +- id: 9612 + name: Crown + friendly_id: molding_application__crown +- id: 9613 + name: Dentil + friendly_id: molding_application__dentil +- id: 9614 + name: Picture rail + friendly_id: molding_application__picture_rail +- id: 9615 + name: Quarter round + friendly_id: molding_application__quarter_round +- id: 9616 + name: Shoe molding + friendly_id: molding_application__shoe_molding +- id: 9617 + name: Colonial + friendly_id: style__colonial +- id: 9618 + name: Modern + friendly_id: style__modern +- id: 9619 + name: Victorian + friendly_id: style__victorian +- id: 9620 + name: Downspout connector + friendly_id: gutter_fitting_type__downspout_connector +- id: 9621 + name: End cap + friendly_id: gutter_fitting_type__end_cap +- id: 9622 + name: Gutter connector + friendly_id: gutter_fitting_type__gutter_connector +- id: 9623 + name: Gutter elbow + friendly_id: gutter_fitting_type__gutter_elbow +- id: 9624 + name: Gutter inside corner + friendly_id: gutter_fitting_type__gutter_inside_corner +- id: 9625 + name: Gutter outside corner + friendly_id: gutter_fitting_type__gutter_outside_corner +- id: 9626 + name: Gutter P-trap + friendly_id: gutter_fitting_type__gutter_p_trap +- id: 9627 + name: Gutter pipe bend + friendly_id: gutter_fitting_type__gutter_pipe_bend +- id: 9628 + name: Gutter pipe reducer + friendly_id: gutter_fitting_type__gutter_pipe_reducer +- id: 9629 + name: Gutter pipe tee + friendly_id: gutter_fitting_type__gutter_pipe_tee +- id: 9630 + name: Gutter pit trap + friendly_id: gutter_fitting_type__gutter_pit_trap +- id: 9631 + name: Gutter running outlet + friendly_id: gutter_fitting_type__gutter_running_outlet +- id: 9632 + name: Gutter S-trap + friendly_id: gutter_fitting_type__gutter_s_trap +- id: 9633 + name: Gutter U-trap + friendly_id: gutter_fitting_type__gutter_u_trap +- id: 9634 + name: Stop end running outlet + friendly_id: gutter_fitting_type__stop_end_running_outlet +- id: 9635 + name: Aluminum + friendly_id: flashing_material__aluminum +- id: 9636 + name: Copper + friendly_id: flashing_material__copper +- id: 9637 + name: Galvanized steel + friendly_id: flashing_material__galvanized_steel +- id: 9638 + name: Plastic + friendly_id: flashing_material__plastic +- id: 9639 + name: Rubber + friendly_id: flashing_material__rubber +- id: 9640 + name: Asphalt + friendly_id: shingle_tile_material__asphalt +- id: 9641 + name: Cedar wood + friendly_id: shingle_tile_material__cedar_wood +- id: 9642 + name: Clay + friendly_id: shingle_tile_material__clay +- id: 9643 + name: Composite + friendly_id: shingle_tile_material__composite +- id: 9644 + name: Concrete + friendly_id: shingle_tile_material__concrete +- id: 9645 + name: Metal + friendly_id: shingle_tile_material__metal +- id: 9646 + name: Rubber + friendly_id: shingle_tile_material__rubber +- id: 9647 + name: Slate + friendly_id: shingle_tile_material__slate +- id: 9648 + name: Painted + friendly_id: shutter_finish__painted +- id: 9649 + name: Primed + friendly_id: shutter_finish__primed +- id: 9650 + name: Stained + friendly_id: shutter_finish__stained +- id: 9651 + name: Unfinished + friendly_id: shutter_finish__unfinished +- id: 9652 + name: Aluminum + friendly_id: siding_material__aluminum +- id: 9653 + name: Brick + friendly_id: siding_material__brick +- id: 9654 + name: Cement + friendly_id: siding_material__cement +- id: 9655 + name: Fiber cement + friendly_id: siding_material__fiber_cement +- id: 9656 + name: Metal + friendly_id: siding_material__metal +- id: 9657 + name: Stone + friendly_id: siding_material__stone +- id: 9658 + name: Stucco + friendly_id: siding_material__stucco +- id: 9659 + name: Vinyl + friendly_id: siding_material__vinyl +- id: 9660 + name: Wood + friendly_id: siding_material__wood +- id: 9661 + name: Lay-in installation + friendly_id: installation_method__lay_in_installation +- id: 9662 + name: Surface mount + friendly_id: installation_method__surface_mount +- id: 9663 + name: Acoustic materials + friendly_id: tile_material__acoustic_materials +- id: 9664 + name: Ceramic + friendly_id: tile_material__ceramic +- id: 9665 + name: Glass + friendly_id: tile_material__glass +- id: 9666 + name: Gypsum + friendly_id: tile_material__gypsum +- id: 9667 + name: Metal + friendly_id: tile_material__metal +- id: 9668 + name: Plastic + friendly_id: tile_material__plastic +- id: 9669 + name: Stone + friendly_id: tile_material__stone +- id: 9670 + name: Vinyl + friendly_id: tile_material__vinyl +- id: 9671 + name: Wood + friendly_id: tile_material__wood +- id: 9672 + name: Acoustic + friendly_id: tile_design__acoustic +- id: 9673 + name: Arabesque + friendly_id: tile_design__arabesque +- id: 9674 + name: Basketweave + friendly_id: tile_design__basketweave +- id: 9675 + name: Chevron + friendly_id: tile_design__chevron +- id: 9676 + name: Fish scale + friendly_id: tile_design__fish_scale +- id: 9677 + name: Geometric + friendly_id: tile_design__geometric +- id: 9678 + name: Herringbone + friendly_id: tile_design__herringbone +- id: 9679 + name: Hexagonal + friendly_id: tile_design__hexagonal +- id: 9680 + name: Mosaic + friendly_id: tile_design__mosaic +- id: 9681 + name: Spanish + friendly_id: tile_design__spanish +- id: 9682 + name: Subway + friendly_id: tile_design__subway +- id: 9683 + name: Other + friendly_id: tile_design__other +- id: 9684 + name: 3D + friendly_id: tile_look__3d +- id: 9685 + name: Cement + friendly_id: tile_look__cement +- id: 9686 + name: Glass + friendly_id: tile_look__glass +- id: 9687 + name: Marble + friendly_id: tile_look__marble +- id: 9688 + name: Metal + friendly_id: tile_look__metal +- id: 9689 + name: Stone + friendly_id: tile_look__stone +- id: 9690 + name: Wood + friendly_id: tile_look__wood +- id: 9691 + name: Acoustic + friendly_id: tile_texture__acoustic +- id: 9692 + name: Coffered + friendly_id: tile_texture__coffered +- id: 9693 + name: Fissured + friendly_id: tile_texture__fissured +- id: 9694 + name: Glue-up + friendly_id: tile_texture__glue_up +- id: 9695 + name: Sand + friendly_id: tile_texture__sand +- id: 9696 + name: Smooth + friendly_id: tile_texture__smooth +- id: 9697 + name: Textured + friendly_id: tile_texture__textured +- id: 9698 + name: Doors + friendly_id: weatherization_application__doors +- id: 9699 + name: Windows + friendly_id: weatherization_application__windows +- id: 9700 + name: Flat + friendly_id: weather_strip_design__flat +- id: 9701 + name: Round + friendly_id: weather_strip_design__round +- id: 9702 + name: Double-pane + friendly_id: glazing_type__double_pane +- id: 9703 + name: Single-pane + friendly_id: glazing_type__single_pane +- id: 9704 + name: Triple-pane + friendly_id: glazing_type__triple_pane +- id: 9705 + name: Barbed wire + friendly_id: fencing_components__barbed_wire +- id: 9706 + name: Fabric + friendly_id: fencing_components__fabric +- id: 9707 + name: Fence topper + friendly_id: fencing_components__fence_topper +- id: 9708 + name: Gate + friendly_id: fencing_components__gate +- id: 9709 + name: Panel + friendly_id: fencing_components__panel +- id: 9710 + name: Picket + friendly_id: fencing_components__picket +- id: 9711 + name: Post + friendly_id: fencing_components__post +- id: 9712 + name: Rail + friendly_id: fencing_components__rail +- id: 9713 + name: Slat + friendly_id: fencing_components__slat +- id: 9714 + name: Diamond + friendly_id: trellis_design__diamond +- id: 9715 + name: Square + friendly_id: trellis_design__square +- id: 9716 + name: Anti-gel + friendly_id: fuel_additives__anti_gel +- id: 9717 + name: Corrosion inhibitor + friendly_id: fuel_additives__corrosion_inhibitor +- id: 9718 + name: Dye + friendly_id: fuel_additives__dye +- id: 9719 + name: Stabilizer + friendly_id: fuel_additives__stabilizer +- id: 9720 + name: Bioheat + friendly_id: fuel_grade__bioheat +- id: 9721 + name: Premium + friendly_id: fuel_grade__premium +- id: 9722 + name: Standard + friendly_id: fuel_grade__standard +- id: 9723 + name: High + friendly_id: sulfur_content__high +- id: 9724 + name: Low + friendly_id: sulfur_content__low +- id: 9725 + name: Ultra-low + friendly_id: sulfur_content__ultra_low +- id: 9726 + name: 1-K + friendly_id: fuel_grade__1_k +- id: 9727 + name: 2-K + friendly_id: fuel_grade__2_k +- id: 9728 + name: Heater + friendly_id: kerosene_application__heater +- id: 9729 + name: Jet fuel + friendly_id: kerosene_application__jet_fuel +- id: 9730 + name: Lamp + friendly_id: kerosene_application__lamp +- id: 9731 + name: Commercial + friendly_id: fuel_purity__commercial +- id: 9732 + name: HD-10 + friendly_id: fuel_purity__hd_10 +- id: 9733 + name: HD-5 + friendly_id: fuel_purity__hd_5 +- id: 9734 + name: Forklift + friendly_id: propane_application__forklift +- id: 9735 + name: Grill + friendly_id: propane_application__grill +- id: 9736 + name: Heating + friendly_id: propane_application__heating +- id: 9737 + name: Recreational vehicles (RV) + friendly_id: propane_application__recreational_vehicles_rv +- id: 9738 + name: Torch + friendly_id: propane_application__torch +- id: 9739 + name: Angle bracket + friendly_id: bracket_brace_design__angle_bracket +- id: 9740 + name: Corner brace + friendly_id: bracket_brace_design__corner_brace +- id: 9741 + name: Countertop bracket + friendly_id: bracket_brace_design__countertop_bracket +- id: 9742 + name: Decorative bracket + friendly_id: bracket_brace_design__decorative_bracket +- id: 9743 + name: Flat brace + friendly_id: bracket_brace_design__flat_brace +- id: 9744 + name: Floating shelf bracket + friendly_id: bracket_brace_design__floating_shelf_bracket +- id: 9745 + name: Mending plate + friendly_id: bracket_brace_design__mending_plate +- id: 9746 + name: Shelf bracket + friendly_id: bracket_brace_design__shelf_bracket +- id: 9747 + name: Strap brace + friendly_id: bracket_brace_design__strap_brace +- id: 9748 + name: T-plate + friendly_id: bracket_brace_design__t_plate +- id: 9749 + name: Bail pull + friendly_id: knob_handle_design__bail_pull +- id: 9750 + name: Bar pull + friendly_id: knob_handle_design__bar_pull +- id: 9751 + name: Cup pull + friendly_id: knob_handle_design__cup_pull +- id: 9752 + name: Novelty knob + friendly_id: knob_handle_design__novelty_knob +- id: 9753 + name: Pendant pull + friendly_id: knob_handle_design__pendant_pull +- id: 9754 + name: Recessed pull + friendly_id: knob_handle_design__recessed_pull +- id: 9755 + name: Ring pull + friendly_id: knob_handle_design__ring_pull +- id: 9756 + name: Round knob + friendly_id: knob_handle_design__round_knob +- id: 9757 + name: Square knob + friendly_id: knob_handle_design__square_knob +- id: 9758 + name: T-bar + friendly_id: knob_handle_design__t_bar +- id: 9759 + name: Barroco + friendly_id: style__barroco +- id: 9760 + name: Classic + friendly_id: style__classic +- id: 9761 + name: Carabiner + friendly_id: cord_fastening_system__carabiner +- id: 9762 + name: Hook + friendly_id: cord_fastening_system__hook +- id: 9763 + name: Toggle ball + friendly_id: cord_fastening_system__toggle_ball +- id: 9764 + name: Baluster + friendly_id: molding_shape__baluster +- id: 9765 + name: Bench + friendly_id: molding_shape__bench +- id: 9766 + name: Block + friendly_id: molding_shape__block +- id: 9767 + name: Brick + friendly_id: molding_shape__brick +- id: 9768 + name: Column + friendly_id: molding_shape__column +- id: 9769 + name: Figurine + friendly_id: molding_shape__figurine +- id: 9770 + name: Panel + friendly_id: molding_shape__panel +- id: 9771 + name: Paver + friendly_id: molding_shape__paver +- id: 9772 + name: Planter + friendly_id: molding_shape__planter +- id: 9773 + name: Sphere + friendly_id: molding_shape__sphere +- id: 9774 + name: Stepping stone + friendly_id: molding_shape__stepping_stone +- id: 9775 + name: Other + friendly_id: molding_shape__other +- id: 9776 + name: Fabric + friendly_id: tape_material__fabric +- id: 9777 + name: Paper + friendly_id: tape_material__paper +- id: 9778 + name: Plastic + friendly_id: tape_material__plastic +- id: 9779 + name: Polyurethane (PU) + friendly_id: tape_material__polyurethane_pu +- id: 9780 + name: Synthetic + friendly_id: tape_material__synthetic +- id: 9781 + name: Vinyl + friendly_id: tape_material__vinyl +- id: 9782 + name: Aluminum + friendly_id: hose_material__aluminum +- id: 9783 + name: Copper + friendly_id: hose_material__copper +- id: 9784 + name: Metal + friendly_id: hose_material__metal +- id: 9785 + name: Plastic + friendly_id: hose_material__plastic +- id: 9786 + name: Polyvinyl chloride (PVC) + friendly_id: hose_material__polyvinyl_chloride_pvc +- id: 9787 + name: Rubber + friendly_id: hose_material__rubber +- id: 9788 + name: Stainless steel + friendly_id: hose_material__stainless_steel +- id: 9789 + name: Vinyl + friendly_id: hose_material__vinyl +- id: 9790 + name: Fence post + friendly_id: spike_design__fence_post +- id: 9791 + name: Garden hose guide + friendly_id: spike_design__garden_hose_guide +- id: 9792 + name: Ground base + friendly_id: spike_design__ground_base +- id: 9793 + name: Landscape fabric + friendly_id: spike_design__landscape_fabric +- id: 9794 + name: Solar light + friendly_id: spike_design__solar_light +- id: 9795 + name: Spiral ground anchor + friendly_id: spike_design__spiral_ground_anchor +- id: 9796 + name: Tent + friendly_id: spike_design__tent +- id: 9797 + name: Tree + friendly_id: spike_design__tree +- id: 9798 + name: Umbrella + friendly_id: spike_design__umbrella +- id: 9799 + name: Aluminum + friendly_id: fastener_finish__aluminum +- id: 9800 + name: Anodized + friendly_id: fastener_finish__anodized +- id: 9801 + name: Black oxide + friendly_id: fastener_finish__black_oxide +- id: 9802 + name: Brass + friendly_id: fastener_finish__brass +- id: 9803 + name: Bright zinc plated (BZP) steel + friendly_id: fastener_finish__bright_zinc_plated_bzp_steel +- id: 9804 + name: Bronze + friendly_id: fastener_finish__bronze +- id: 9805 + name: Cadmium + friendly_id: fastener_finish__cadmium +- id: 9806 + name: Chrome + friendly_id: fastener_finish__chrome +- id: 9807 + name: Copper + friendly_id: fastener_finish__copper +- id: 9808 + name: Galvanized steel + friendly_id: fastener_finish__galvanized_steel +- id: 9809 + name: Gold + friendly_id: fastener_finish__gold +- id: 9810 + name: Nickel + friendly_id: fastener_finish__nickel +- id: 9811 + name: Nylon + friendly_id: fastener_finish__nylon +- id: 9812 + name: Painted + friendly_id: fastener_finish__painted +- id: 9813 + name: Plated steel + friendly_id: fastener_finish__plated_steel +- id: 9814 + name: Powder coated + friendly_id: fastener_finish__powder_coated +- id: 9815 + name: Stainless steel + friendly_id: fastener_finish__stainless_steel +- id: 9816 + name: Titanium + friendly_id: fastener_finish__titanium +- id: 9817 + name: Zinc + friendly_id: fastener_finish__zinc +- id: 9818 + name: Zinc alloy + friendly_id: fastener_finish__zinc_alloy +- id: 9819 + name: Anchor + friendly_id: bolt_form__anchor +- id: 9820 + name: Carriage + friendly_id: bolt_form__carriage +- id: 9821 + name: Elevator + friendly_id: bolt_form__elevator +- id: 9822 + name: Flange + friendly_id: bolt_form__flange +- id: 9823 + name: Hex + friendly_id: bolt_form__hex +- id: 9824 + name: J-bolt + friendly_id: bolt_form__j_bolt +- id: 9825 + name: Lag + friendly_id: bolt_form__lag +- id: 9826 + name: Machine + friendly_id: bolt_form__machine +- id: 9827 + name: Plow + friendly_id: bolt_form__plow +- id: 9828 + name: Roofing + friendly_id: bolt_form__roofing +- id: 9829 + name: Shackle + friendly_id: bolt_form__shackle +- id: 9830 + name: Shoulder + friendly_id: bolt_form__shoulder +- id: 9831 + name: Socket + friendly_id: bolt_form__socket +- id: 9832 + name: Stove + friendly_id: bolt_form__stove +- id: 9833 + name: Structural + friendly_id: bolt_form__structural +- id: 9834 + name: Tension control + friendly_id: bolt_form__tension_control +- id: 9835 + name: Toggle + friendly_id: bolt_form__toggle +- id: 9836 + name: U-bolt + friendly_id: bolt_form__u_bolt +- id: 9837 + name: Acorn + friendly_id: nut_form__acorn +- id: 9838 + name: Barrel + friendly_id: nut_form__barrel +- id: 9839 + name: Blind + friendly_id: nut_form__blind +- id: 9840 + name: Cage + friendly_id: nut_form__cage +- id: 9841 + name: Castle + friendly_id: nut_form__castle +- id: 9842 + name: Coupling + friendly_id: nut_form__coupling +- id: 9843 + name: Durlok + friendly_id: nut_form__durlok +- id: 9844 + name: Flange + friendly_id: nut_form__flange +- id: 9845 + name: Flat + friendly_id: nut_form__flat +- id: 9846 + name: Full + friendly_id: nut_form__full +- id: 9847 + name: Half moon + friendly_id: nut_form__half_moon +- id: 9848 + name: Hexagon + friendly_id: nut_form__hexagon +- id: 9849 + name: K-nut + friendly_id: nut_form__k_nut +- id: 9850 + name: Lug + friendly_id: nut_form__lug +- id: 9851 + name: Nyloc + friendly_id: nut_form__nyloc +- id: 9852 + name: Rivet + friendly_id: nut_form__rivet +- id: 9853 + name: Self-locking + friendly_id: nut_form__self_locking +- id: 9854 + name: Shear + friendly_id: nut_form__shear +- id: 9855 + name: Slotted + friendly_id: nut_form__slotted +- id: 9856 + name: Spring + friendly_id: nut_form__spring +- id: 9857 + name: Square + friendly_id: nut_form__square +- id: 9858 + name: T-nut + friendly_id: nut_form__t_nut +- id: 9859 + name: Threaded + friendly_id: nut_form__threaded +- id: 9860 + name: U-nut + friendly_id: nut_form__u_nut +- id: 9861 + name: Weld + friendly_id: nut_form__weld +- id: 9862 + name: Wing + friendly_id: nut_form__wing +- id: 9863 + name: Other + friendly_id: nut_form__other +- id: 9864 + name: Blind + friendly_id: rivet_form__blind +- id: 9865 + name: Drive + friendly_id: rivet_form__drive +- id: 9866 + name: Flush + friendly_id: rivet_form__flush +- id: 9867 + name: Friction-lock + friendly_id: rivet_form__friction_lock +- id: 9868 + name: Oscar + friendly_id: rivet_form__oscar +- id: 9869 + name: Self-piercing + friendly_id: rivet_form__self_piercing +- id: 9870 + name: Semi-tubular + friendly_id: rivet_form__semi_tubular +- id: 9871 + name: Shoulder + friendly_id: rivet_form__shoulder +- id: 9872 + name: Solid + friendly_id: rivet_form__solid +- id: 9873 + name: Split + friendly_id: rivet_form__split +- id: 9874 + name: Tubular + friendly_id: rivet_form__tubular +- id: 9875 + name: Left-hand + friendly_id: thread_direction__left_hand +- id: 9876 + name: Right-hand + friendly_id: thread_direction__right_hand +- id: 9877 + name: M1.6 + friendly_id: threaded_rod_size__m1_6 +- id: 9878 + name: M2 + friendly_id: threaded_rod_size__m2 +- id: 9879 + name: M2.5 + friendly_id: threaded_rod_size__m2_5 +- id: 9880 + name: M3 + friendly_id: threaded_rod_size__m3 +- id: 9881 + name: M4 + friendly_id: threaded_rod_size__m4 +- id: 9882 + name: M5 + friendly_id: threaded_rod_size__m5 +- id: 9883 + name: M6 + friendly_id: threaded_rod_size__m6 +- id: 9884 + name: M8 + friendly_id: threaded_rod_size__m8 +- id: 9885 + name: M10 + friendly_id: threaded_rod_size__m10 +- id: 9886 + name: M12 + friendly_id: threaded_rod_size__m12 +- id: 9887 + name: M14 + friendly_id: threaded_rod_size__m14 +- id: 9888 + name: M16 + friendly_id: threaded_rod_size__m16 +- id: 9889 + name: M18 + friendly_id: threaded_rod_size__m18 +- id: 9890 + name: M20 + friendly_id: threaded_rod_size__m20 +- id: 9891 + name: M22 + friendly_id: threaded_rod_size__m22 +- id: 9892 + name: M24 + friendly_id: threaded_rod_size__m24 +- id: 9893 + name: M27 + friendly_id: threaded_rod_size__m27 +- id: 9894 + name: M30 + friendly_id: threaded_rod_size__m30 +- id: 9895 + name: M33 + friendly_id: threaded_rod_size__m33 +- id: 9896 + name: M36 + friendly_id: threaded_rod_size__m36 +- id: 9897 + name: M39 + friendly_id: threaded_rod_size__m39 +- id: 9898 + name: M42 + friendly_id: threaded_rod_size__m42 +- id: 9899 + name: M45 + friendly_id: threaded_rod_size__m45 +- id: 9900 + name: M48 + friendly_id: threaded_rod_size__m48 +- id: 9901 + name: M52 + friendly_id: threaded_rod_size__m52 +- id: 9902 + name: M56 + friendly_id: threaded_rod_size__m56 +- id: 9903 + name: M60 + friendly_id: threaded_rod_size__m60 +- id: 9904 + name: M64 + friendly_id: threaded_rod_size__m64 +- id: 9905 + name: Other + friendly_id: threaded_rod_size__other +- id: 9906 + name: Disc lock + friendly_id: washer_form__disc_lock +- id: 9907 + name: Fender + friendly_id: washer_form__fender +- id: 9908 + name: Flat + friendly_id: washer_form__flat +- id: 9909 + name: Lock washer + friendly_id: washer_form__lock_washer +- id: 9910 + name: Nordlock + friendly_id: washer_form__nordlock +- id: 9911 + name: Red fiber + friendly_id: washer_form__red_fiber +- id: 9912 + name: Safety + friendly_id: washer_form__safety +- id: 9913 + name: Serrated shake proof + friendly_id: washer_form__serrated_shake_proof +- id: 9914 + name: Spring + friendly_id: washer_form__spring +- id: 9915 + name: Square plate + friendly_id: washer_form__square_plate +- id: 9916 + name: Starlock + friendly_id: washer_form__starlock +- id: 9917 + name: Tab + friendly_id: washer_form__tab +- id: 9918 + name: Taper + friendly_id: washer_form__taper +- id: 9919 + name: Closed end + friendly_id: connector_design__closed_end +- id: 9920 + name: Open end + friendly_id: connector_design__open_end +- id: 9921 + name: Snap + friendly_id: connector_design__snap +- id: 9922 + name: Double-ended + friendly_id: hook_design__double_ended +- id: 9923 + name: Fixed + friendly_id: hook_design__fixed +- id: 9924 + name: Screw + friendly_id: hook_design__screw +- id: 9925 + name: Spring + friendly_id: hook_design__spring +- id: 9926 + name: Swing + friendly_id: hook_design__swing +- id: 9927 + name: Swivel + friendly_id: hook_design__swivel +- id: 9928 + name: Dental applicances + friendly_id: metal_molding_application__dental_applicances +- id: 9929 + name: Figurines + friendly_id: metal_molding_application__figurines +- id: 9930 + name: Ingots + friendly_id: metal_molding_application__ingots +- id: 9931 + name: Machinery + friendly_id: metal_molding_application__machinery +- id: 9932 + name: Jewelry + friendly_id: metal_molding_application__jewelry +- id: 9933 + name: Sculpture + friendly_id: metal_molding_application__sculpture +- id: 9934 + name: Tools + friendly_id: metal_molding_application__tools +- id: 9935 + name: Other + friendly_id: metal_molding_application__other +- id: 9936 + name: Free-standing + friendly_id: hardware_mounting_type__free_standing +- id: 9937 + name: Wall-mounted + friendly_id: hardware_mounting_type__wall_mounted +- id: 9938 + name: Drainage + friendly_id: suitable_for_water_feature_type__drainage +- id: 9939 + name: Fountain + friendly_id: suitable_for_water_feature_type__fountain +- id: 9940 + name: Garden + friendly_id: suitable_for_water_feature_type__garden +- id: 9941 + name: Irrigation system + friendly_id: suitable_for_water_feature_type__irrigation_system +- id: 9942 + name: Pond + friendly_id: suitable_for_water_feature_type__pond +- id: 9943 + name: Water purification system + friendly_id: suitable_for_water_feature_type__water_purification_system +- id: 9944 + name: Water supply system + friendly_id: suitable_for_water_feature_type__water_supply_system +- id: 9945 + name: Desiccant + friendly_id: dryer_technology__desiccant +- id: 9946 + name: Refrigerated + friendly_id: dryer_technology__refrigerated +- id: 9947 + name: Pneumatic + friendly_id: power_source__pneumatic +- id: 9948 + name: Flat + friendly_id: duct_shape__flat +- id: 9949 + name: Round + friendly_id: duct_shape__round +- id: 9950 + name: Digital + friendly_id: hvac_control_type__digital +- id: 9951 + name: Manual + friendly_id: hvac_control_type__manual +- id: 9952 + name: Programmable + friendly_id: hvac_control_type__programmable +- id: 9953 + name: Smart + friendly_id: hvac_control_type__smart +- id: 9954 + name: Digital + friendly_id: display_technology__digital +- id: 9955 + name: Car + friendly_id: key_purpose__car +- id: 9956 + name: Door + friendly_id: key_purpose__door +- id: 9957 + name: Padlock + friendly_id: key_purpose__padlock +- id: 9958 + name: Window + friendly_id: key_purpose__window +- id: 9959 + name: High + friendly_id: security_level__high +- id: 9960 + name: Low + friendly_id: security_level__low +- id: 9961 + name: Medium + friendly_id: security_level__medium +- id: 9962 + name: Band hanger + friendly_id: pipe_clamp_design__band_hanger +- id: 9963 + name: Bell hanger + friendly_id: pipe_clamp_design__bell_hanger +- id: 9964 + name: C-clamp + friendly_id: pipe_clamp_design__c_clamp +- id: 9965 + name: Hose + friendly_id: pipe_clamp_design__hose +- id: 9966 + name: Insulated pipe + friendly_id: pipe_clamp_design__insulated_pipe +- id: 9967 + name: Pipe support + friendly_id: pipe_clamp_design__pipe_support +- id: 9968 + name: Repair + friendly_id: pipe_clamp_design__repair +- id: 9969 + name: Riser + friendly_id: pipe_clamp_design__riser +- id: 9970 + name: Saddle + friendly_id: pipe_clamp_design__saddle +- id: 9971 + name: Snap + friendly_id: pipe_clamp_design__snap +- id: 9972 + name: U-bolt + friendly_id: pipe_clamp_design__u_bolt +- id: 9973 + name: Clawfoot + friendly_id: bathtub_base_design__clawfoot +- id: 9974 + name: Free-standing + friendly_id: bathtub_base_design__free_standing +- id: 9975 + name: Platform + friendly_id: bathtub_base_design__platform +- id: 9976 + name: Corner + friendly_id: bathtub_skirt_shape__corner +- id: 9977 + name: Curved + friendly_id: bathtub_skirt_shape__curved +- id: 9978 + name: Straight + friendly_id: bathtub_skirt_shape__straight +- id: 9979 + name: Bell + friendly_id: plumbing_trap_design__bell +- id: 9980 + name: Bottle + friendly_id: plumbing_trap_design__bottle +- id: 9981 + name: Drum + friendly_id: plumbing_trap_design__drum +- id: 9982 + name: Grease interceptor + friendly_id: plumbing_trap_design__grease_interceptor +- id: 9983 + name: HepvO + friendly_id: plumbing_trap_design__hepvo +- id: 9984 + name: P-trap + friendly_id: plumbing_trap_design__p_trap +- id: 9985 + name: Running + friendly_id: plumbing_trap_design__running +- id: 9986 + name: S-trap + friendly_id: plumbing_trap_design__s_trap +- id: 9987 + name: 1 inch NPT + friendly_id: connecting_thread__1_inch_npt +- id: 9988 + name: 1-1/2 inch NPT + friendly_id: connecting_thread__1_1_2_inch_npt +- id: 9989 + name: 1-1/4 inch NPT + friendly_id: connecting_thread__1_1_4_inch_npt +- id: 9990 + name: 1/2 inch IPS + friendly_id: connecting_thread__1_2_inch_ips +- id: 9991 + name: 1/2 inch NPT + friendly_id: connecting_thread__1_2_inch_npt +- id: 9992 + name: 1/4 inch NPT + friendly_id: connecting_thread__1_4_inch_npt +- id: 9993 + name: 1/8 inch NPT + friendly_id: connecting_thread__1_8_inch_npt +- id: 9994 + name: 15/16 inch-27 + friendly_id: connecting_thread__15_16_inch_27 +- id: 9995 + name: 2 inch NPT + friendly_id: connecting_thread__2_inch_npt +- id: 9996 + name: 3/4 inch FHT + friendly_id: connecting_thread__3_4_inch_fht +- id: 9997 + name: 3/4 inch GHT + friendly_id: connecting_thread__3_4_inch_ght +- id: 9998 + name: 3/4 inch IPS + friendly_id: connecting_thread__3_4_inch_ips +- id: 9999 + name: 3/4 inch MHT + friendly_id: connecting_thread__3_4_inch_mht +- id: 10000 + name: 3/4 inch NPT + friendly_id: connecting_thread__3_4_inch_npt +- id: 10001 + name: 3/8 inch IPS + friendly_id: connecting_thread__3_8_inch_ips +- id: 10002 + name: 3/8 inch NPT + friendly_id: connecting_thread__3_8_inch_npt +- id: 10003 + name: 55/64 inch-27 + friendly_id: connecting_thread__55_64_inch_27 +- id: 10004 + name: Dual + friendly_id: faucet_thread__dual +- id: 10005 + name: Female + friendly_id: faucet_thread__female +- id: 10006 + name: Male + friendly_id: faucet_thread__male +- id: 10007 + name: Center + friendly_id: drain_location__center +- id: 10008 + name: Left + friendly_id: drain_location__left +- id: 10009 + name: Right + friendly_id: drain_location__right +- id: 10010 + name: Angular + friendly_id: shower_base_design__angular +- id: 10011 + name: Quadrant + friendly_id: shower_base_design__quadrant +- id: 10012 + name: Rectangular + friendly_id: shower_base_design__rectangular +- id: 10013 + name: Square + friendly_id: shower_base_design__square +- id: 10014 + name: Hard + friendly_id: material_firmness__hard +- id: 10015 + name: Soft + friendly_id: material_firmness__soft +- id: 10016 + name: Elongated + friendly_id: toilet_cover_design__elongated +- id: 10017 + name: Round + friendly_id: toilet_cover_design__round +- id: 10018 + name: Alcove + friendly_id: shower_design__alcove +- id: 10019 + name: Corner + friendly_id: shower_design__corner +- id: 10020 + name: Free-standing + friendly_id: shower_design__free_standing +- id: 10021 + name: Counter + friendly_id: sink_mounting_type__counter +- id: 10022 + name: Wall-hung + friendly_id: sink_mounting_type__wall_hung +- id: 10023 + name: Half bowl + friendly_id: sink_type__half_bowl +- id: 10024 + name: Single bowl + friendly_id: sink_type__single_bowl +- id: 10025 + name: One and half bowls + friendly_id: sink_type__one_and_half_bowls +- id: 10026 + name: Double bowl + friendly_id: sink_type__double_bowl +- id: 10027 + name: Floor-mounted + friendly_id: toilet_bidet_mounting_type__floor_mounted +- id: 10028 + name: Wall-mounted + friendly_id: toilet_bidet_mounting_type__wall_mounted +- id: 10029 + name: Double + friendly_id: flush_system__double +- id: 10030 + name: Single + friendly_id: flush_system__single +- id: 10031 + name: Elongated + friendly_id: toilet_shape__elongated +- id: 10032 + name: Rectangular + friendly_id: toilet_shape__rectangular +- id: 10033 + name: Round + friendly_id: toilet_shape__round +- id: 10034 + name: Countertop + friendly_id: hardware_mounting_type__countertop +- id: 10035 + name: Floor-mounted + friendly_id: hardware_mounting_type__floor_mounted +- id: 10036 + name: Bike + friendly_id: placement_supported__bike +- id: 10037 + name: Ceiling + friendly_id: placement_supported__ceiling +- id: 10038 + name: Floor + friendly_id: placement_supported__floor +- id: 10039 + name: Ground + friendly_id: placement_supported__ground +- id: 10040 + name: Hand + friendly_id: placement_supported__hand +- id: 10041 + name: In-wall + friendly_id: placement_supported__in_wall +- id: 10042 + name: Pole + friendly_id: placement_supported__pole +- id: 10043 + name: Sink + friendly_id: placement_supported__sink +- id: 10044 + name: Table + friendly_id: placement_supported__table +- id: 10045 + name: TV bracket + friendly_id: placement_supported__tv_bracket +- id: 10046 + name: Wall + friendly_id: placement_supported__wall +- id: 10047 + name: Window + friendly_id: placement_supported__window +- id: 10048 + name: Auto-transformer + friendly_id: motor_starting_method__auto_transformer +- id: 10049 + name: DOL + friendly_id: motor_starting_method__dol +- id: 10050 + name: Frequency converter + friendly_id: motor_starting_method__frequency_converter +- id: 10051 + name: SD + friendly_id: motor_starting_method__sd +- id: 10052 + name: Soft + friendly_id: motor_starting_method__soft +- id: 10053 + name: Miniature + friendly_id: circuit_breaker_panel_form__miniature +- id: 10054 + name: Molded case + friendly_id: circuit_breaker_panel_form__molded_case +- id: 10055 + name: Motor protective + friendly_id: circuit_breaker_panel_form__motor_protective +- id: 10056 + name: Residual-current + friendly_id: circuit_breaker_panel_form__residual_current +- id: 10057 + name: String + friendly_id: circuit_breaker_panel_form__string +- id: 10058 + name: Bolt-on + friendly_id: circuit_breaker_design__bolt_on +- id: 10059 + name: Plug-in + friendly_id: circuit_breaker_design__plug_in +- id: 10060 + name: Unit mount + friendly_id: circuit_breaker_design__unit_mount +- id: 10061 + name: Arc-fault circuit interrupter (AFCI) + friendly_id: circuit_breaker_type__arc_fault_circuit_interrupter_afci +- id: 10062 + name: Circuit breaker disconnect + friendly_id: circuit_breaker_type__circuit_breaker_disconnect +- id: 10063 + name: Dual function (AFCI/GFCI) + friendly_id: circuit_breaker_type__dual_function_afci_gfci +- id: 10064 + name: Ground-fault circuit interrupter (GFCI) + friendly_id: circuit_breaker_type__ground_fault_circuit_interrupter_gfci +- id: 10065 + name: Standard + friendly_id: circuit_breaker_type__standard +- id: 10066 + name: Thermal-magnetic circuit breaker + friendly_id: circuit_breaker_type__thermal_magnetic_circuit_breaker +- id: 10067 + name: Industrial + friendly_id: recommended_use__industrial +- id: 10068 + name: Non-interchangeable + friendly_id: trip_type__non_interchangeable +- id: 10069 + name: Interchangeable + friendly_id: trip_type__interchangeable +- id: 10070 + name: '2:1' + friendly_id: shrink_ratio__21 +- id: 10071 + name: '3:1' + friendly_id: shrink_ratio__31 +- id: 10072 + name: '4:1' + friendly_id: shrink_ratio__41 +- id: 10073 + name: Button + friendly_id: switch_control_type__button +- id: 10074 + name: Lever + friendly_id: switch_control_type__lever +- id: 10075 + name: Rotary + friendly_id: switch_control_type__rotary +- id: 10076 + name: Scrollbar + friendly_id: switch_control_type__scrollbar +- id: 10077 + name: Sensor + friendly_id: switch_control_type__sensor +- id: 10078 + name: Slider + friendly_id: switch_control_type__slider +- id: 10079 + name: Tilt + friendly_id: switch_control_type__tilt +- id: 10080 + name: Touch + friendly_id: switch_control_type__touch +- id: 10081 + name: Automatic + friendly_id: ignition_system__automatic +- id: 10082 + name: Electronic + friendly_id: ignition_system__electronic +- id: 10083 + name: Manual + friendly_id: ignition_system__manual +- id: 10084 + name: Propane + friendly_id: power_source__propane +- id: 10085 + name: Ethernet + friendly_id: socket_type__ethernet +- id: 10086 + name: Multimedia + friendly_id: socket_type__multimedia +- id: 10087 + name: Plug + friendly_id: socket_type__plug +- id: 10088 + name: Shaver + friendly_id: socket_type__shaver +- id: 10089 + name: Telephone + friendly_id: socket_type__telephone +- id: 10090 + name: TV + friendly_id: socket_type__tv +- id: 10091 + name: Satellite + friendly_id: socket_type__satellite +- id: 10092 + name: USB + friendly_id: socket_type__usb +- id: 10093 + name: Freestanding + friendly_id: solar_panel_design__freestanding +- id: 10094 + name: Roof-mounted + friendly_id: solar_panel_design__roof_mounted +- id: 10095 + name: Monocrystalline silicon + friendly_id: solar_cell_type__monocrystalline_silicon +- id: 10096 + name: Polycrystalline silicon + friendly_id: solar_cell_type__polycrystalline_silicon +- id: 10097 + name: Thin-film + friendly_id: solar_cell_type__thin_film +- id: 10098 + name: Alligator clips + friendly_id: solar_panel_connections__alligator_clips +- id: 10099 + name: Anderson powerpole + friendly_id: solar_panel_connections__anderson_powerpole +- id: 10100 + name: DC connector + friendly_id: solar_panel_connections__dc_connector +- id: 10101 + name: MC4 + friendly_id: solar_panel_connections__mc4 +- id: 10102 + name: SAE + friendly_id: solar_panel_connections__sae +- id: 10103 + name: USB type-A + friendly_id: solar_panel_connections__usb_type_a +- id: 10104 + name: USB type-C + friendly_id: solar_panel_connections__usb_type_c +- id: 10105 + name: XT60 + friendly_id: solar_panel_connections__xt60 +- id: 10106 + name: Other + friendly_id: solar_panel_connections__other +- id: 10107 + name: Conventional + friendly_id: wall_plate_style__conventional +- id: 10108 + name: Screwless + friendly_id: wall_plate_style__screwless +- id: 10109 + name: 2-stroke + friendly_id: engine_design__2_stroke +- id: 10110 + name: 4-stroke + friendly_id: engine_design__4_stroke +- id: 10111 + name: ATV + friendly_id: engine_purpose__atv +- id: 10112 + name: Chainsaw + friendly_id: engine_purpose__chainsaw +- id: 10113 + name: Generator + friendly_id: engine_purpose__generator +- id: 10114 + name: Lawnmower + friendly_id: engine_purpose__lawnmower +- id: 10115 + name: Leaf blower + friendly_id: engine_purpose__leaf_blower +- id: 10116 + name: Motorcycle + friendly_id: engine_purpose__motorcycle +- id: 10117 + name: Outboard + friendly_id: engine_purpose__outboard +- id: 10118 + name: Pressure washer + friendly_id: engine_purpose__pressure_washer +- id: 10119 + name: Snow blower + friendly_id: engine_purpose__snow_blower +- id: 10120 + name: Weed trimmer + friendly_id: engine_purpose__weed_trimmer +- id: 10121 + name: Other + friendly_id: engine_purpose__other +- id: 10122 + name: Avgas + friendly_id: fuel_supply__avgas +- id: 10123 + name: Biofuel + friendly_id: fuel_supply__biofuel +- id: 10124 + name: Diesel + friendly_id: fuel_supply__diesel +- id: 10125 + name: Electric + friendly_id: fuel_supply__electric +- id: 10126 + name: Gasoline + friendly_id: fuel_supply__gasoline +- id: 10127 + name: Hybrid + friendly_id: fuel_supply__hybrid +- id: 10128 + name: Jet fuel + friendly_id: fuel_supply__jet_fuel +- id: 10129 + name: Mogas + friendly_id: fuel_supply__mogas +- id: 10130 + name: Plug-in hybrid + friendly_id: fuel_supply__plug_in_hybrid +- id: 10131 + name: Horizontal + friendly_id: shaft_orientation__horizontal +- id: 10132 + name: Vertical + friendly_id: shaft_orientation__vertical +- id: 10133 + name: Electric + friendly_id: start_type__electric +- id: 10134 + name: Pull + friendly_id: start_type__pull +- id: 10135 + name: Chemicals + friendly_id: storage_tank_application__chemicals +- id: 10136 + name: Fuel + friendly_id: storage_tank_application__fuel +- id: 10137 + name: Waste + friendly_id: storage_tank_application__waste +- id: 10138 + name: Water + friendly_id: storage_tank_application__water +- id: 10139 + name: Above ground + friendly_id: suitable_space__above_ground +- id: 10140 + name: Below ground + friendly_id: suitable_space__below_ground +- id: 10141 + name: Polishing + friendly_id: sandblaster_application__polishing +- id: 10142 + name: Sanding + friendly_id: sandblaster_application__sanding +- id: 10143 + name: Belt + friendly_id: sander_type__belt +- id: 10144 + name: Detail + friendly_id: sander_type__detail +- id: 10145 + name: Disc + friendly_id: sander_type__disc +- id: 10146 + name: File + friendly_id: sander_type__file +- id: 10147 + name: Random orbital + friendly_id: sander_type__random_orbital +- id: 10148 + name: Sanding roller + friendly_id: sander_type__sanding_roller +- id: 10149 + name: Sheet + friendly_id: sander_type__sheet +- id: 10150 + name: Tube belt + friendly_id: sander_type__tube_belt +- id: 10151 + name: Left-hand + friendly_id: rotating_direction__left_hand +- id: 10152 + name: Right-hand + friendly_id: rotating_direction__right_hand +- id: 10153 + name: Benchtop + friendly_id: hardware_mounting_type__benchtop +- id: 10154 + name: Aluminum + friendly_id: abrasive_material__aluminum +- id: 10155 + name: Ceramic + friendly_id: abrasive_material__ceramic +- id: 10156 + name: Diamond + friendly_id: abrasive_material__diamond +- id: 10157 + name: Emery + friendly_id: abrasive_material__emery +- id: 10158 + name: Flint + friendly_id: abrasive_material__flint +- id: 10159 + name: Garnet + friendly_id: abrasive_material__garnet +- id: 10160 + name: Glass + friendly_id: abrasive_material__glass +- id: 10161 + name: Silicon carbide + friendly_id: abrasive_material__silicon_carbide +- id: 10162 + name: Steel wool + friendly_id: abrasive_material__steel_wool +- id: 10163 + name: Plastic + friendly_id: backing_material__plastic +- id: 10164 + name: Polyester + friendly_id: backing_material__polyester +- id: 10165 + name: Polyurethane (PU) + friendly_id: backing_material__polyurethane_pu +- id: 10166 + name: Polyvinyl chloride (PVC) + friendly_id: backing_material__polyvinyl_chloride_pvc +- id: 10167 + name: Rubber + friendly_id: backing_material__rubber +- id: 10168 + name: Extra coarse + friendly_id: grit_type__extra_coarse +- id: 10169 + name: Extra fine + friendly_id: grit_type__extra_fine +- id: 10170 + name: Super fine + friendly_id: grit_type__super_fine +- id: 10171 + name: Ultra fine + friendly_id: grit_type__ultra_fine +- id: 10172 + name: Very fine + friendly_id: grit_type__very_fine +- id: 10173 + name: Deburring + friendly_id: sanding_application__deburring +- id: 10174 + name: Finishing work + friendly_id: sanding_application__finishing_work +- id: 10175 + name: Removing paint + friendly_id: sanding_application__removing_paint +- id: 10176 + name: Removing rust + friendly_id: sanding_application__removing_rust +- id: 10177 + name: Removing scale + friendly_id: sanding_application__removing_scale +- id: 10178 + name: Fixed + friendly_id: blade_design__fixed +- id: 10179 + name: Folding + friendly_id: blade_design__folding +- id: 10180 + name: Razor + friendly_id: blade_design__razor +- id: 10181 + name: Snap-off + friendly_id: blade_design__snap_off +- id: 10182 + name: Acrylonitrile butadiene styrene (ABS) + friendly_id: suitable_for_pipe_type__acrylonitrile_butadiene_styrene_abs +- id: 10183 + name: Cast iron + friendly_id: suitable_for_pipe_type__cast_iron +- id: 10184 + name: Chlorinated polyvinyl chloride (CPVC) + friendly_id: suitable_for_pipe_type__chlorinated_polyvinyl_chloride_cpvc +- id: 10185 + name: Copper + friendly_id: suitable_for_pipe_type__copper +- id: 10186 + name: Galvanized steel + friendly_id: suitable_for_pipe_type__galvanized_steel +- id: 10187 + name: Multilayer + friendly_id: suitable_for_pipe_type__multilayer +- id: 10188 + name: PEX + friendly_id: suitable_for_pipe_type__pex +- id: 10189 + name: Polyvinyl chloride (PVC) + friendly_id: suitable_for_pipe_type__polyvinyl_chloride_pvc +- id: 10190 + name: Stainless steel + friendly_id: suitable_for_pipe_type__stainless_steel +- id: 10191 + name: Other + friendly_id: suitable_for_pipe_type__other +- id: 10192 + name: Key + friendly_id: chuck_type__key +- id: 10193 + name: Keyless + friendly_id: chuck_type__keyless +- id: 10194 + name: SDS + friendly_id: chuck_type__sds +- id: 10195 + name: SDS max + friendly_id: chuck_type__sds_max +- id: 10196 + name: SDS plus + friendly_id: chuck_type__sds_plus +- id: 10197 + name: SDS top + friendly_id: chuck_type__sds_top +- id: 10198 + name: Xenon + friendly_id: light_source__xenon +- id: 10199 + name: Aluminum + friendly_id: hammer_head_material__aluminum +- id: 10200 + name: Brass + friendly_id: hammer_head_material__brass +- id: 10201 + name: Bronze + friendly_id: hammer_head_material__bronze +- id: 10202 + name: Carbon steel + friendly_id: hammer_head_material__carbon_steel +- id: 10203 + name: Copper + friendly_id: hammer_head_material__copper +- id: 10204 + name: Fiberglass + friendly_id: hammer_head_material__fiberglass +- id: 10205 + name: Graphite + friendly_id: hammer_head_material__graphite +- id: 10206 + name: Iron + friendly_id: hammer_head_material__iron +- id: 10207 + name: Nylon + friendly_id: hammer_head_material__nylon +- id: 10208 + name: Plastic + friendly_id: hammer_head_material__plastic +- id: 10209 + name: Polyurethane (PU) + friendly_id: hammer_head_material__polyurethane_pu +- id: 10210 + name: Rubber + friendly_id: hammer_head_material__rubber +- id: 10211 + name: Stainless steel + friendly_id: hammer_head_material__stainless_steel +- id: 10212 + name: Steel + friendly_id: hammer_head_material__steel +- id: 10213 + name: Wood + friendly_id: hammer_head_material__wood +- id: 10214 + name: Pistol + friendly_id: handle_design__pistol +- id: 10215 + name: Straight + friendly_id: handle_design__straight +- id: 10216 + name: Frame + friendly_id: scaffolding_mounting_type__frame +- id: 10217 + name: Mobile + friendly_id: scaffolding_mounting_type__mobile +- id: 10218 + name: Acrylic spinning + friendly_id: lathe_application__acrylic_spinning +- id: 10219 + name: Glass-working + friendly_id: lathe_application__glass_working +- id: 10220 + name: Metal spinning + friendly_id: lathe_application__metal_spinning +- id: 10221 + name: Metalworking + friendly_id: lathe_application__metalworking +- id: 10222 + name: Pottery + friendly_id: lathe_application__pottery +- id: 10223 + name: Woodworking + friendly_id: lathe_application__woodworking +- id: 10224 + name: Contoured + friendly_id: sponge_shape__contoured +- id: 10225 + name: Flat-edged + friendly_id: sponge_shape__flat_edged +- id: 10226 + name: Rounded + friendly_id: sponge_shape__rounded +- id: 10227 + name: Teardrop + friendly_id: sponge_shape__teardrop +- id: 10228 + name: Other + friendly_id: sponge_shape__other +- id: 10229 + name: Analog + friendly_id: device_technology__analog +- id: 10230 + name: Digital + friendly_id: device_technology__digital +- id: 10231 + name: Industrial + friendly_id: anemometer_application__industrial +- id: 10232 + name: Meteorological + friendly_id: anemometer_application__meteorological +- id: 10233 + name: Board feet (bft) + friendly_id: units_of_measurement__board_feet_bft +- id: 10234 + name: Feet per second (ft/s) + friendly_id: units_of_measurement__feet_per_second_ft_s +- id: 10235 + name: Kilometers per hour (km/h) + friendly_id: units_of_measurement__kilometers_per_hour_km_h +- id: 10236 + name: Knots (kn) + friendly_id: units_of_measurement__knots_kn +- id: 10237 + name: Meters per second (m/s) + friendly_id: units_of_measurement__meters_per_second_m_s +- id: 10238 + name: Miles per hour (mph) + friendly_id: units_of_measurement__miles_per_hour_mph +- id: 10239 + name: Unspecified + friendly_id: units_of_measurement__unspecified +- id: 10240 + name: Imperial + friendly_id: system_of_measurement__imperial +- id: 10241 + name: Metric + friendly_id: system_of_measurement__metric +- id: 10242 + name: Built-in battery + friendly_id: battery_size__built_in_battery +- id: 10243 + name: Centimeters (cm) + friendly_id: units_of_measurement__centimeters_cm +- id: 10244 + name: Feet (ft) + friendly_id: units_of_measurement__feet_ft +- id: 10245 + name: Inches (in) + friendly_id: units_of_measurement__inches_in +- id: 10246 + name: Meters (m) + friendly_id: units_of_measurement__meters_m +- id: 10247 + name: Micrometers (μm) + friendly_id: units_of_measurement__micrometers_m +- id: 10248 + name: Millimeters (mm) + friendly_id: units_of_measurement__millimeters_mm +- id: 10249 + name: Yards (yd) + friendly_id: units_of_measurement__yards_yd +- id: 10250 + name: Butane + friendly_id: gases_detected__butane +- id: 10251 + name: Carbon dioxide (CO2) + friendly_id: gases_detected__carbon_dioxide_co2 +- id: 10252 + name: Carbon monoxide (CO) + friendly_id: gases_detected__carbon_monoxide_co +- id: 10253 + name: Difluoromethane + friendly_id: gases_detected__difluoromethane +- id: 10254 + name: LPG + friendly_id: gases_detected__lpg +- id: 10255 + name: Methane + friendly_id: gases_detected__methane +- id: 10256 + name: Natural gas + friendly_id: gases_detected__natural_gas +- id: 10257 + name: Propane + friendly_id: gases_detected__propane +- id: 10258 + name: Radon + friendly_id: gases_detected__radon +- id: 10259 + name: Trichloromethane + friendly_id: gases_detected__trichloromethane +- id: 10260 + name: Magnetic + friendly_id: device_technology__magnetic +- id: 10261 + name: Radio + friendly_id: device_technology__radio +- id: 10262 + name: A-weighting + friendly_id: frequency_weighting__a_weighting +- id: 10263 + name: C-weighting + friendly_id: frequency_weighting__c_weighting +- id: 10264 + name: Z-weighting + friendly_id: frequency_weighting__z_weighting +- id: 10265 + name: Fast + friendly_id: time_weighting__fast +- id: 10266 + name: Impulse + friendly_id: time_weighting__impulse +- id: 10267 + name: Slow + friendly_id: time_weighting__slow +- id: 10268 + name: Electronic + friendly_id: device_technology__electronic +- id: 10269 + name: Optical + friendly_id: device_technology__optical +- id: 10270 + name: 2560 × 1440 + friendly_id: display_resolution__25601440 +- id: 10271 + name: 4096 x 2160 + friendly_id: display_resolution__4096_x_2160 +- id: 10272 + name: Amorphous silicon (a Si) detector + friendly_id: thermal_detector_type__amorphous_silicon_a_si_detector +- id: 10273 + name: Indium antimonide (InSb) detector + friendly_id: thermal_detector_type__indium_antimonide_insb_detector +- id: 10274 + name: Mercury cadmium telluride (MCT) detector + friendly_id: thermal_detector_type__mercury_cadmium_telluride_mct_detector +- id: 10275 + name: Microbolometer + friendly_id: thermal_detector_type__microbolometer +- id: 10276 + name: QWIP + friendly_id: thermal_detector_type__qwip +- id: 10277 + name: VOx detector + friendly_id: thermal_detector_type__vox_detector +- id: 10278 + name: Type B + friendly_id: thermocouple_type__type_b +- id: 10279 + name: Type E + friendly_id: thermocouple_type__type_e +- id: 10280 + name: Type J + friendly_id: thermocouple_type__type_j +- id: 10281 + name: Type K + friendly_id: thermocouple_type__type_k +- id: 10282 + name: Type N + friendly_id: thermocouple_type__type_n +- id: 10283 + name: Type R + friendly_id: thermocouple_type__type_r +- id: 10284 + name: Type S + friendly_id: thermocouple_type__type_s +- id: 10285 + name: Type T + friendly_id: thermocouple_type__type_t +- id: 10286 + name: Gravity + friendly_id: feed_type__gravity +- id: 10287 + name: Siphon + friendly_id: feed_type__siphon +- id: 10288 + name: Side + friendly_id: feed_type__side +- id: 10289 + name: Angle + friendly_id: paint_brush_design__angle +- id: 10290 + name: Bright + friendly_id: paint_brush_design__bright +- id: 10291 + name: Fan + friendly_id: paint_brush_design__fan +- id: 10292 + name: Filbert + friendly_id: paint_brush_design__filbert +- id: 10293 + name: Flat + friendly_id: paint_brush_design__flat +- id: 10294 + name: Rigger + friendly_id: paint_brush_design__rigger +- id: 10295 + name: Round + friendly_id: paint_brush_design__round +- id: 10296 + name: Triangle + friendly_id: paint_brush_design__triangle +- id: 10297 + name: Accordion + friendly_id: plunger_shape__accordion +- id: 10298 + name: Cup + friendly_id: plunger_shape__cup +- id: 10299 + name: Flexible + friendly_id: material_firmness__flexible +- id: 10300 + name: Rigid + friendly_id: material_firmness__rigid +- id: 10301 + name: Semi-rigid + friendly_id: material_firmness__semi_rigid +- id: 10302 + name: Portable + friendly_id: hardware_mounting_type__portable +- id: 10303 + name: Double + friendly_id: bevel_type__double +- id: 10304 + name: Single + friendly_id: bevel_type__single +- id: 10305 + name: Hex + friendly_id: socket_driver_tip__hex +- id: 10306 + name: Pentalobe + friendly_id: socket_driver_tip__pentalobe +- id: 10307 + name: Phillips + friendly_id: socket_driver_tip__phillips +- id: 10308 + name: Pozidriv + friendly_id: socket_driver_tip__pozidriv +- id: 10309 + name: Slotted + friendly_id: socket_driver_tip__slotted +- id: 10310 + name: Spanner + friendly_id: socket_driver_tip__spanner +- id: 10311 + name: Spline + friendly_id: socket_driver_tip__spline +- id: 10312 + name: Square + friendly_id: socket_driver_tip__square +- id: 10313 + name: Torq-set + friendly_id: socket_driver_tip__torq_set +- id: 10314 + name: Torx + friendly_id: socket_driver_tip__torx +- id: 10315 + name: Tri-wing + friendly_id: socket_driver_tip__tri_wing +- id: 10316 + name: Twelve-point + friendly_id: socket_driver_tip__twelve_point +- id: 10317 + name: Hex + friendly_id: tool_key_tip__hex +- id: 10318 + name: Pentalobe + friendly_id: tool_key_tip__pentalobe +- id: 10319 + name: Phillips + friendly_id: tool_key_tip__phillips +- id: 10320 + name: Pozidriv + friendly_id: tool_key_tip__pozidriv +- id: 10321 + name: Slotted + friendly_id: tool_key_tip__slotted +- id: 10322 + name: Spanner + friendly_id: tool_key_tip__spanner +- id: 10323 + name: Spline + friendly_id: tool_key_tip__spline +- id: 10324 + name: Square + friendly_id: tool_key_tip__square +- id: 10325 + name: Torq-set + friendly_id: tool_key_tip__torq_set +- id: 10326 + name: Torx + friendly_id: tool_key_tip__torx +- id: 10327 + name: Tri-wing + friendly_id: tool_key_tip__tri_wing +- id: 10328 + name: Twelve-point + friendly_id: tool_key_tip__twelve_point +- id: 10329 + name: Neon + friendly_id: light_source__neon +- id: 10330 + name: 1 inch + friendly_id: drive_size__1_inch +- id: 10331 + name: 1-1/2 inch + friendly_id: drive_size__1_1_2_inch +- id: 10332 + name: 1/2 inch + friendly_id: drive_size__1_2_inch +- id: 10333 + name: 1/4 inch + friendly_id: drive_size__1_4_inch +- id: 10334 + name: 2-1/2 inch + friendly_id: drive_size__2_1_2_inch +- id: 10335 + name: 3/4 inch + friendly_id: drive_size__3_4_inch +- id: 10336 + name: 3/8 inch + friendly_id: drive_size__3_8_inch +- id: 10337 + name: Miniature + friendly_id: acupuncture_model_format__miniature +- id: 10338 + name: Life-size + friendly_id: acupuncture_model_format__life_size +- id: 10339 + name: Desktop + friendly_id: acupuncture_model_format__desktop +- id: 10340 + name: Animal + friendly_id: acupuncture_model_type__animal +- id: 10341 + name: Back + friendly_id: acupuncture_model_type__back +- id: 10342 + name: Ear + friendly_id: acupuncture_model_type__ear +- id: 10343 + name: Foot + friendly_id: acupuncture_model_type__foot +- id: 10344 + name: Hand + friendly_id: acupuncture_model_type__hand +- id: 10345 + name: Head + friendly_id: acupuncture_model_type__head +- id: 10346 + name: Human body + friendly_id: acupuncture_model_type__human_body +- id: 10347 + name: Bariatric + friendly_id: bed_pan_type__bariatric +- id: 10348 + name: Fracture bed pan + friendly_id: bed_pan_type__fracture_bed_pan +- id: 10349 + name: Standard + friendly_id: bed_pan_type__standard +- id: 10350 + name: Button + friendly_id: control_type__button +- id: 10351 + name: Sensor + friendly_id: control_type__sensor +- id: 10352 + name: Monochrome + friendly_id: display_technology__monochrome +- id: 10353 + name: Armband + friendly_id: activity_tracker_design__armband +- id: 10354 + name: Clip-on + friendly_id: activity_tracker_design__clip_on +- id: 10355 + name: Waist belt + friendly_id: activity_tracker_design__waist_belt +- id: 10356 + name: Wristband + friendly_id: activity_tracker_design__wristband +- id: 10357 + name: MIP + friendly_id: display_technology__mip +- id: 10358 + name: PMOLED + friendly_id: display_technology__pmoled +- id: 10359 + name: SAMOLED + friendly_id: display_technology__samoled +- id: 10360 + name: Blood pressure + friendly_id: tracking_metrics__blood_pressure +- id: 10361 + name: Body fat + friendly_id: tracking_metrics__body_fat +- id: 10362 + name: Calories + friendly_id: tracking_metrics__calories +- id: 10363 + name: Distance traveled + friendly_id: tracking_metrics__distance_traveled +- id: 10364 + name: Heart rate + friendly_id: tracking_metrics__heart_rate +- id: 10365 + name: Sleep + friendly_id: tracking_metrics__sleep +- id: 10366 + name: Steps + friendly_id: tracking_metrics__steps +- id: 10367 + name: BIA + friendly_id: measuring_method__bia +- id: 10368 + name: Calipers + friendly_id: measuring_method__calipers +- id: 10369 + name: Optical + friendly_id: measuring_method__optical +- id: 10370 + name: Body fat percentage + friendly_id: metrics_supported__body_fat_percentage +- id: 10371 + name: Body water percentage + friendly_id: metrics_supported__body_water_percentage +- id: 10372 + name: Bone mass + friendly_id: metrics_supported__bone_mass +- id: 10373 + name: Muscle mass + friendly_id: metrics_supported__muscle_mass +- id: 10374 + name: Pounds (lbs) + friendly_id: weight_unit_supported__pounds_lbs +- id: 10375 + name: Kilograms (kg) + friendly_id: weight_unit_supported__kilograms_kg +- id: 10376 + name: Stones (st) + friendly_id: weight_unit_supported__stones_st +- id: 10377 + name: App-based + friendly_id: test_format__app_based +- id: 10378 + name: Digital + friendly_id: test_format__digital +- id: 10379 + name: Midstream + friendly_id: test_format__midstream +- id: 10380 + name: Monitor + friendly_id: test_format__monitor +- id: 10381 + name: Test strip + friendly_id: test_format__test_strip +- id: 10382 + name: Ear + friendly_id: measuring_type__ear +- id: 10383 + name: Oral + friendly_id: measuring_type__oral +- id: 10384 + name: Rectal + friendly_id: measuring_type__rectal +- id: 10385 + name: Underarm + friendly_id: measuring_type__underarm +- id: 10386 + name: Forehead + friendly_id: measuring_type__forehead +- id: 10387 + name: Universal + friendly_id: measuring_type__universal +- id: 10388 + name: Celsius (°C) + friendly_id: temperature_measurement__celsius_c +- id: 10389 + name: Fahrenheit (°F) + friendly_id: temperature_measurement__fahrenheit_f +- id: 10390 + name: Contact thermometer + friendly_id: test_sample__contact_thermometer +- id: 10391 + name: Remote sensing thermometer + friendly_id: test_sample__remote_sensing_thermometer +- id: 10392 + name: Breast + friendly_id: measuring_type__breast +- id: 10393 + name: Clothes + friendly_id: measuring_type__clothes +- id: 10394 + name: Finger + friendly_id: measuring_type__finger +- id: 10395 + name: Wrist + friendly_id: measuring_type__wrist +- id: 10396 + name: Male + friendly_id: condom_type__male +- id: 10397 + name: Female + friendly_id: condom_type__female +- id: 10398 + name: Assorted + friendly_id: surface_texture__assorted +- id: 10399 + name: Dotted + friendly_id: surface_texture__dotted +- id: 10400 + name: Ribbed + friendly_id: surface_texture__ribbed +- id: 10401 + name: Rugged + friendly_id: surface_texture__rugged +- id: 10402 + name: Smooth + friendly_id: surface_texture__smooth +- id: 10403 + name: Textured + friendly_id: surface_texture__textured +- id: 10404 + name: Bottle + friendly_id: package_type__bottle +- id: 10405 + name: Dispenser + friendly_id: package_type__dispenser +- id: 10406 + name: Refillable + friendly_id: usage_type__refillable +- id: 10407 + name: Liquid + friendly_id: product_form__liquid +- id: 10408 + name: Gel + friendly_id: product_form__gel +- id: 10409 + name: Spray + friendly_id: product_form__spray +- id: 10410 + name: Foam + friendly_id: product_form__foam +- id: 10411 + name: Powder + friendly_id: product_form__powder +- id: 10412 + name: Wipes + friendly_id: product_form__wipes +- id: 10413 + name: Other + friendly_id: product_form__other +- id: 10414 + name: All skin types + friendly_id: suitable_for_skin_type__all_skin_types +- id: 10415 + name: Normal + friendly_id: suitable_for_skin_type__normal +- id: 10416 + name: Sensitive + friendly_id: suitable_for_skin_type__sensitive +- id: 10417 + name: Abdomen + friendly_id: body_area__abdomen +- id: 10418 + name: Chest + friendly_id: body_area__chest +- id: 10419 + name: Eyes + friendly_id: body_area__eyes +- id: 10420 + name: Hips + friendly_id: body_area__hips +- id: 10421 + name: Legs + friendly_id: body_area__legs +- id: 10422 + name: Lips + friendly_id: body_area__lips +- id: 10423 + name: Bicycle + friendly_id: first_aid_kit_usage__bicycle +- id: 10424 + name: Car + friendly_id: first_aid_kit_usage__car +- id: 10425 + name: Home + friendly_id: first_aid_kit_usage__home +- id: 10426 + name: Industrial + friendly_id: first_aid_kit_usage__industrial +- id: 10427 + name: Pets + friendly_id: first_aid_kit_usage__pets +- id: 10428 + name: Sport + friendly_id: first_aid_kit_usage__sport +- id: 10429 + name: Travel + friendly_id: first_aid_kit_usage__travel +- id: 10430 + name: Knees + friendly_id: body_area__knees +- id: 10431 + name: Wrists + friendly_id: body_area__wrists +- id: 10432 + name: Other + friendly_id: body_area__other +- id: 10433 + name: Muscle pain + friendly_id: treatment_objective__muscle_pain +- id: 10434 + name: Joint pain + friendly_id: treatment_objective__joint_pain +- id: 10435 + name: Swelling + friendly_id: treatment_objective__swelling +- id: 10436 + name: Fever + friendly_id: treatment_objective__fever +- id: 10437 + name: Cream + friendly_id: product_form__cream +- id: 10438 + name: Ointment + friendly_id: product_form__ointment +- id: 10439 + name: Roll-on + friendly_id: product_form__roll_on +- id: 10440 + name: Lotion + friendly_id: product_form__lotion +- id: 10441 + name: AC-powered + friendly_id: heat_source__ac_powered +- id: 10442 + name: Battery-powered + friendly_id: heat_source__battery_powered +- id: 10443 + name: Chemical + friendly_id: heat_source__chemical +- id: 10444 + name: Hot water + friendly_id: heat_source__hot_water +- id: 10445 + name: Infrared + friendly_id: heat_source__infrared +- id: 10446 + name: Microwavable + friendly_id: heat_source__microwavable +- id: 10447 + name: Thermal gel + friendly_id: heat_source__thermal_gel +- id: 10448 + name: USB + friendly_id: heat_source__usb +- id: 10449 + name: Bead pack + friendly_id: ice_pack_type__bead_pack +- id: 10450 + name: Clay pack + friendly_id: ice_pack_type__clay_pack +- id: 10451 + name: Flexible ice blanket + friendly_id: ice_pack_type__flexible_ice_blanket +- id: 10452 + name: Foam pack + friendly_id: ice_pack_type__foam_pack +- id: 10453 + name: Gel pack + friendly_id: ice_pack_type__gel_pack +- id: 10454 + name: Ice bag + friendly_id: ice_pack_type__ice_bag +- id: 10455 + name: Instant (chemical-based) + friendly_id: ice_pack_type__instant_chemical_based +- id: 10456 + name: Energy + friendly_id: dietary_use__energy +- id: 10457 + name: Meal replacement + friendly_id: dietary_use__meal_replacement +- id: 10458 + name: Weight loss + friendly_id: dietary_use__weight_loss +- id: 10459 + name: Muscle building + friendly_id: dietary_use__muscle_building +- id: 10460 + name: High protein + friendly_id: dietary_use__high_protein +- id: 10461 + name: Endurance + friendly_id: dietary_use__endurance +- id: 10462 + name: Low carb + friendly_id: dietary_use__low_carb +- id: 10463 + name: High fiber + friendly_id: dietary_use__high_fiber +- id: 10464 + name: Recovery + friendly_id: dietary_use__recovery +- id: 10465 + name: Performance + friendly_id: dietary_use__performance +- id: 10466 + name: Snacking + friendly_id: dietary_use__snacking +- id: 10467 + name: Balanced nutrition + friendly_id: dietary_use__balanced_nutrition +- id: 10468 + name: Weight gain + friendly_id: dietary_use__weight_gain +- id: 10469 + name: Calorie control + friendly_id: dietary_use__calorie_control +- id: 10470 + name: Blood sugar control + friendly_id: dietary_use__blood_sugar_control +- id: 10471 + name: Level 1 (puréed) + friendly_id: texture_level__level_1_pured +- id: 10472 + name: Level 2 (minced) + friendly_id: texture_level__level_2_minced +- id: 10473 + name: Level 3 (soft or bite-sized foods) + friendly_id: texture_level__level_3_soft_or_bite_sized_foods +- id: 10474 + name: Newborn + friendly_id: age_group__newborn +- id: 10475 + name: Amino acids + friendly_id: ingredient_category__amino_acids +- id: 10476 + name: Animal-derived + friendly_id: ingredient_category__animal_derived +- id: 10477 + name: Antioxidants + friendly_id: ingredient_category__antioxidants +- id: 10478 + name: Artificial ingredients + friendly_id: ingredient_category__artificial_ingredients +- id: 10479 + name: Botanicals + friendly_id: ingredient_category__botanicals +- id: 10480 + name: Dairy-based + friendly_id: ingredient_category__dairy_based +- id: 10481 + name: Enzymes + friendly_id: ingredient_category__enzymes +- id: 10482 + name: Fruit extracts + friendly_id: ingredient_category__fruit_extracts +- id: 10483 + name: Herbs + friendly_id: ingredient_category__herbs +- id: 10484 + name: Mushroom extracts + friendly_id: ingredient_category__mushroom_extracts +- id: 10485 + name: Natural ingredients + friendly_id: ingredient_category__natural_ingredients +- id: 10486 + name: Omega fatty acids + friendly_id: ingredient_category__omega_fatty_acids +- id: 10487 + name: Organic + friendly_id: ingredient_category__organic +- id: 10488 + name: Plant-based + friendly_id: ingredient_category__plant_based +- id: 10489 + name: Probiotics + friendly_id: ingredient_category__probiotics +- id: 10490 + name: Synthetic + friendly_id: ingredient_category__synthetic +- id: 10491 + name: Vegetable extracts + friendly_id: ingredient_category__vegetable_extracts +- id: 10492 + name: Other + friendly_id: ingredient_category__other +- id: 10493 + name: ASC + friendly_id: product_certifications_standards__asc +- id: 10494 + name: B corporation + friendly_id: product_certifications_standards__b_corporation +- id: 10495 + name: Cruelty-free + friendly_id: product_certifications_standards__cruelty_free +- id: 10496 + name: Ecocert + friendly_id: product_certifications_standards__ecocert +- id: 10497 + name: Fair trade + friendly_id: product_certifications_standards__fair_trade +- id: 10498 + name: GMP + friendly_id: product_certifications_standards__gmp +- id: 10499 + name: GRAS + friendly_id: product_certifications_standards__gras +- id: 10500 + name: Halal + friendly_id: product_certifications_standards__halal +- id: 10501 + name: Informed choice + friendly_id: product_certifications_standards__informed_choice +- id: 10502 + name: ISO + friendly_id: product_certifications_standards__iso +- id: 10503 + name: Kosher + friendly_id: product_certifications_standards__kosher +- id: 10504 + name: Marine stewardship council (MSC) + friendly_id: product_certifications_standards__marine_stewardship_council_msc +- id: 10505 + name: Non-GMO + friendly_id: product_certifications_standards__non_gmo +- id: 10506 + name: NSF + friendly_id: product_certifications_standards__nsf +- id: 10507 + name: Pregnancy safe + friendly_id: product_certifications_standards__pregnancy_safe +- id: 10508 + name: Rainforest alliance + friendly_id: product_certifications_standards__rainforest_alliance +- id: 10509 + name: UL + friendly_id: product_certifications_standards__ul +- id: 10510 + name: USDA organic + friendly_id: product_certifications_standards__usda_organic +- id: 10511 + name: Other + friendly_id: product_certifications_standards__other +- id: 10512 + name: Ampoule + friendly_id: medicine_supplement_form__ampoule +- id: 10513 + name: Caplet + friendly_id: medicine_supplement_form__caplet +- id: 10514 + name: Capsules + friendly_id: medicine_supplement_form__capsules +- id: 10515 + name: Chewable tablets + friendly_id: medicine_supplement_form__chewable_tablets +- id: 10516 + name: Drops + friendly_id: medicine_supplement_form__drops +- id: 10517 + name: Effervescent tablets + friendly_id: medicine_supplement_form__effervescent_tablets +- id: 10518 + name: Gel + friendly_id: medicine_supplement_form__gel +- id: 10519 + name: Granules + friendly_id: medicine_supplement_form__granules +- id: 10520 + name: Liquid + friendly_id: medicine_supplement_form__liquid +- id: 10521 + name: Lozenges + friendly_id: medicine_supplement_form__lozenges +- id: 10522 + name: Oil + friendly_id: medicine_supplement_form__oil +- id: 10523 + name: Pill + friendly_id: medicine_supplement_form__pill +- id: 10524 + name: Powder + friendly_id: medicine_supplement_form__powder +- id: 10525 + name: Softgel + friendly_id: medicine_supplement_form__softgel +- id: 10526 + name: Spray + friendly_id: medicine_supplement_form__spray +- id: 10527 + name: Syrup + friendly_id: medicine_supplement_form__syrup +- id: 10528 + name: Tablets + friendly_id: medicine_supplement_form__tablets +- id: 10529 + name: Other + friendly_id: medicine_supplement_form__other +- id: 10530 + name: L-carnitine + friendly_id: detailed_ingredients__l_carnitine +- id: 10531 + name: L-cysteine + friendly_id: detailed_ingredients__l_cysteine +- id: 10532 + name: L-glutamine + friendly_id: detailed_ingredients__l_glutamine +- id: 10533 + name: L-valine + friendly_id: detailed_ingredients__l_valine +- id: 10534 + name: Omega fatty acids + friendly_id: detailed_ingredients__omega_fatty_acids +- id: 10535 + name: Taurine + friendly_id: detailed_ingredients__taurine +- id: 10536 + name: Vitamin B5 + friendly_id: detailed_ingredients__vitamin_b5 +- id: 10537 + name: Other + friendly_id: detailed_ingredients__other +- id: 10538 + name: Collagen + friendly_id: detailed_ingredients__collagen +- id: 10539 + name: Inulin + friendly_id: detailed_ingredients__inulin +- id: 10540 + name: Acacia + friendly_id: detailed_ingredients__acacia +- id: 10541 + name: Acai + friendly_id: detailed_ingredients__acai +- id: 10542 + name: Aloe + friendly_id: detailed_ingredients__aloe +- id: 10543 + name: Animal protein + friendly_id: detailed_ingredients__animal_protein +- id: 10544 + name: Arnica + friendly_id: detailed_ingredients__arnica +- id: 10545 + name: Artichoke + friendly_id: detailed_ingredients__artichoke +- id: 10546 + name: Calcium + friendly_id: detailed_ingredients__calcium +- id: 10547 + name: Chamomile + friendly_id: detailed_ingredients__chamomile +- id: 10548 + name: Chlorophyll + friendly_id: detailed_ingredients__chlorophyll +- id: 10549 + name: Cinnamon + friendly_id: detailed_ingredients__cinnamon +- id: 10550 + name: Creatine + friendly_id: detailed_ingredients__creatine +- id: 10551 + name: Curcumin + friendly_id: detailed_ingredients__curcumin +- id: 10552 + name: Echinacea + friendly_id: detailed_ingredients__echinacea +- id: 10553 + name: Egg protein + friendly_id: detailed_ingredients__egg_protein +- id: 10554 + name: Flaxseed + friendly_id: detailed_ingredients__flaxseed +- id: 10555 + name: Ginger + friendly_id: detailed_ingredients__ginger +- id: 10556 + name: Ginseng + friendly_id: detailed_ingredients__ginseng +- id: 10557 + name: Green tea + friendly_id: detailed_ingredients__green_tea +- id: 10558 + name: Guarana + friendly_id: detailed_ingredients__guarana +- id: 10559 + name: Hemp + friendly_id: detailed_ingredients__hemp +- id: 10560 + name: Honey + friendly_id: detailed_ingredients__honey +- id: 10561 + name: Iodine + friendly_id: detailed_ingredients__iodine +- id: 10562 + name: Iron + friendly_id: detailed_ingredients__iron +- id: 10563 + name: Lavender + friendly_id: detailed_ingredients__lavender +- id: 10564 + name: Lecithin + friendly_id: detailed_ingredients__lecithin +- id: 10565 + name: Magnesium + friendly_id: detailed_ingredients__magnesium +- id: 10566 + name: Manganese + friendly_id: detailed_ingredients__manganese +- id: 10567 + name: Matcha + friendly_id: detailed_ingredients__matcha +- id: 10568 + name: Milk protein + friendly_id: detailed_ingredients__milk_protein +- id: 10569 + name: Moringa + friendly_id: detailed_ingredients__moringa +- id: 10570 + name: Olive oil + friendly_id: detailed_ingredients__olive_oil +- id: 10571 + name: Phosphorus + friendly_id: detailed_ingredients__phosphorus +- id: 10572 + name: Plant-based protein + friendly_id: detailed_ingredients__plant_based_protein +- id: 10573 + name: Potassium + friendly_id: detailed_ingredients__potassium +- id: 10574 + name: Propolis + friendly_id: detailed_ingredients__propolis +- id: 10575 + name: Rosehip + friendly_id: detailed_ingredients__rosehip +- id: 10576 + name: Rosemary + friendly_id: detailed_ingredients__rosemary +- id: 10577 + name: Royal jelly + friendly_id: detailed_ingredients__royal_jelly +- id: 10578 + name: Selenium + friendly_id: detailed_ingredients__selenium +- id: 10579 + name: Sodium + friendly_id: detailed_ingredients__sodium +- id: 10580 + name: Soy protein + friendly_id: detailed_ingredients__soy_protein +- id: 10581 + name: Spirulina + friendly_id: detailed_ingredients__spirulina +- id: 10582 + name: Stevia + friendly_id: detailed_ingredients__stevia +- id: 10583 + name: Tapioca + friendly_id: detailed_ingredients__tapioca +- id: 10584 + name: Trace minerals + friendly_id: detailed_ingredients__trace_minerals +- id: 10585 + name: Vitamin A + friendly_id: detailed_ingredients__vitamin_a +- id: 10586 + name: Vitamin B + friendly_id: detailed_ingredients__vitamin_b +- id: 10587 + name: Vitamin B1 + friendly_id: detailed_ingredients__vitamin_b1 +- id: 10588 + name: Vitamin B12 + friendly_id: detailed_ingredients__vitamin_b12 +- id: 10589 + name: Vitamin B2 + friendly_id: detailed_ingredients__vitamin_b2 +- id: 10590 + name: Vitamin B3 + friendly_id: detailed_ingredients__vitamin_b3 +- id: 10591 + name: Vitamin B6 + friendly_id: detailed_ingredients__vitamin_b6 +- id: 10592 + name: Vitamin B7 + friendly_id: detailed_ingredients__vitamin_b7 +- id: 10593 + name: Vitamin B9 (folic acid) + friendly_id: detailed_ingredients__vitamin_b9_folic_acid +- id: 10594 + name: Vitamin C + friendly_id: detailed_ingredients__vitamin_c +- id: 10595 + name: Vitamin D + friendly_id: detailed_ingredients__vitamin_d +- id: 10596 + name: Vitamin D3 + friendly_id: detailed_ingredients__vitamin_d3 +- id: 10597 + name: Vitamin E + friendly_id: detailed_ingredients__vitamin_e +- id: 10598 + name: Vitamin K + friendly_id: detailed_ingredients__vitamin_k +- id: 10599 + name: Vitamin K1 + friendly_id: detailed_ingredients__vitamin_k1 +- id: 10600 + name: Vitamin K2 + friendly_id: detailed_ingredients__vitamin_k2 +- id: 10601 + name: Vitamin K3 + friendly_id: detailed_ingredients__vitamin_k3 +- id: 10602 + name: Whey protein + friendly_id: detailed_ingredients__whey_protein +- id: 10603 + name: Yeast + friendly_id: detailed_ingredients__yeast +- id: 10604 + name: Zinc + friendly_id: detailed_ingredients__zinc +- id: 10605 + name: Bacillus subtilis + friendly_id: detailed_ingredients__bacillus_subtilis +- id: 10606 + name: Bacillus coagulans + friendly_id: detailed_ingredients__bacillus_coagulans +- id: 10607 + name: Bifidobacterium bifidum + friendly_id: detailed_ingredients__bifidobacterium_bifidum +- id: 10608 + name: Lacticaseibacillus rhamnosus + friendly_id: detailed_ingredients__lacticaseibacillus_rhamnosus +- id: 10609 + name: Lactobacillus acidophilus + friendly_id: detailed_ingredients__lactobacillus_acidophilus +- id: 10610 + name: Lacticaseibacillus casei + friendly_id: detailed_ingredients__lacticaseibacillus_casei +- id: 10611 + name: Mannan-oligosaccharide (MOS) + friendly_id: detailed_ingredients__mannan_oligosaccharide_mos +- id: 10612 + name: Fructooligosaccharides (FOS) + friendly_id: detailed_ingredients__fructooligosaccharides_fos +- id: 10613 + name: Natural flavors + friendly_id: detailed_ingredients__natural_flavors +- id: 10614 + name: Rechargeable + friendly_id: battery_type__rechargeable +- id: 10615 + name: Disposable + friendly_id: battery_type__disposable +- id: 10616 + name: Plastic + friendly_id: hearing_aid_material__plastic +- id: 10617 + name: Silicone + friendly_id: hearing_aid_material__silicone +- id: 10618 + name: Basic + friendly_id: technology_level__basic +- id: 10619 + name: Intermediate + friendly_id: technology_level__intermediate +- id: 10620 + name: Advanced + friendly_id: technology_level__advanced +- id: 10621 + name: Premium + friendly_id: technology_level__premium +- id: 10622 + name: Pull-ups + friendly_id: diaper_type__pull_ups +- id: 10623 + name: Diapers + friendly_id: diaper_type__diapers +- id: 10624 + name: Pads + friendly_id: diaper_type__pads +- id: 10625 + name: Adjustable light spectrum + friendly_id: light_spectrum__adjustable_light_spectrum +- id: 10626 + name: Blue light + friendly_id: light_spectrum__blue_light +- id: 10627 + name: Full spectrum + friendly_id: light_spectrum__full_spectrum +- id: 10628 + name: Green light + friendly_id: light_spectrum__green_light +- id: 10629 + name: Infrared light + friendly_id: light_spectrum__infrared_light +- id: 10630 + name: Multi-spectrum + friendly_id: light_spectrum__multi_spectrum +- id: 10631 + name: Near-infrared light (NIR) + friendly_id: light_spectrum__near_infrared_light_nir +- id: 10632 + name: Red light + friendly_id: light_spectrum__red_light +- id: 10633 + name: UV light + friendly_id: light_spectrum__uv_light +- id: 10634 + name: White light + friendly_id: light_spectrum__white_light +- id: 10635 + name: Home-based + friendly_id: system_range__home_based +- id: 10636 + name: On-the-go (GPS) + friendly_id: system_range__on_the_go_gps +- id: 10637 + name: At-home test (self-administered) + friendly_id: test_method__at_home_test_self_administered +- id: 10638 + name: Lab analysis + friendly_id: test_method__lab_analysis +- id: 10639 + name: Point-of-care test + friendly_id: test_method__point_of_care_test +- id: 10640 + name: RDT + friendly_id: test_method__rdt +- id: 10641 + name: Blood + friendly_id: test_sample__blood +- id: 10642 + name: Breath + friendly_id: test_sample__breath +- id: 10643 + name: Saliva + friendly_id: test_sample__saliva +- id: 10644 + name: Stool test + friendly_id: test_sample__stool_test +- id: 10645 + name: Swab + friendly_id: test_sample__swab +- id: 10646 + name: Urine + friendly_id: test_sample__urine +- id: 10647 + name: Bugs + friendly_id: allergen_test_type__bugs +- id: 10648 + name: Food + friendly_id: allergen_test_type__food +- id: 10649 + name: Environmental + friendly_id: allergen_test_type__environmental +- id: 10650 + name: Pets + friendly_id: allergen_test_type__pets +- id: 10651 + name: Stool + friendly_id: test_sample__stool +- id: 10652 + name: Adhesive bandages + friendly_id: blood_test_kit_components__adhesive_bandages +- id: 10653 + name: Alcohol prep pads + friendly_id: blood_test_kit_components__alcohol_prep_pads +- id: 10654 + name: Blood collection pipettes + friendly_id: blood_test_kit_components__blood_collection_pipettes +- id: 10655 + name: Disposable gloves + friendly_id: blood_test_kit_components__disposable_gloves +- id: 10656 + name: Gauze pads + friendly_id: blood_test_kit_components__gauze_pads +- id: 10657 + name: Sample collection bag + friendly_id: blood_test_kit_components__sample_collection_bag +- id: 10658 + name: Sterile lancets + friendly_id: blood_test_kit_components__sterile_lancets +- id: 10659 + name: Test strip + friendly_id: blood_test_kit_components__test_strip +- id: 10660 + name: Test tube + friendly_id: blood_test_kit_components__test_tube +- id: 10661 + name: Amphetamine + friendly_id: detectable_drugs__amphetamine +- id: 10662 + name: Barbiturates + friendly_id: detectable_drugs__barbiturates +- id: 10663 + name: Benzodiazepines + friendly_id: detectable_drugs__benzodiazepines +- id: 10664 + name: Buprenorphine + friendly_id: detectable_drugs__buprenorphine +- id: 10665 + name: Ecstasy + friendly_id: detectable_drugs__ecstasy +- id: 10666 + name: Marijuana + friendly_id: detectable_drugs__marijuana +- id: 10667 + name: Methadone + friendly_id: detectable_drugs__methadone +- id: 10668 + name: Methamphetamine + friendly_id: detectable_drugs__methamphetamine +- id: 10669 + name: Opiates + friendly_id: detectable_drugs__opiates +- id: 10670 + name: Oxycodone + friendly_id: detectable_drugs__oxycodone +- id: 10671 + name: Phencyclidine + friendly_id: detectable_drugs__phencyclidine +- id: 10672 + name: Early detection + friendly_id: pregnancy_test_sensitivity__early_detection +- id: 10673 + name: Standard detection + friendly_id: pregnancy_test_sensitivity__standard_detection +- id: 10674 + name: Digital + friendly_id: result_display__digital +- id: 10675 + name: Line-based + friendly_id: result_display__line_based +- id: 10676 + name: Plus/Minus symbol + friendly_id: result_display__plus_minus_symbol +- id: 10677 + name: Test cassette + friendly_id: test_format__test_cassette +- id: 10678 + name: Test cup + friendly_id: test_format__test_cup +- id: 10679 + name: 3-wheel + friendly_id: mobility_scooter_type__3_wheel +- id: 10680 + name: 4-wheel + friendly_id: mobility_scooter_type__4_wheel +- id: 10681 + name: Folding/Portable + friendly_id: mobility_scooter_type__folding_portable +- id: 10682 + name: Heavy-duty (bariatric) + friendly_id: mobility_scooter_type__heavy_duty_bariatric +- id: 10683 + name: Travel + friendly_id: mobility_scooter_type__travel +- id: 10684 + name: Handheld remote + friendly_id: stair_lifts_control_type__handheld_remote +- id: 10685 + name: Wall-mounted switch + friendly_id: stair_lifts_control_type__wall_mounted_switch +- id: 10686 + name: Emergency stop + friendly_id: stair_lifts_safety_features__emergency_stop +- id: 10687 + name: Obstacle sensors + friendly_id: stair_lifts_safety_features__obstacle_sensors +- id: 10688 + name: Seat belt + friendly_id: stair_lifts_safety_features__seat_belt +- id: 10689 + name: Curved + friendly_id: staircase_type__curved +- id: 10690 + name: Multi-level + friendly_id: staircase_type__multi_level +- id: 10691 + name: Outdoor + friendly_id: staircase_type__outdoor +- id: 10692 + name: Straight + friendly_id: staircase_type__straight +- id: 10693 + name: Non-slip + friendly_id: transfer_boards_surface_type__non_slip +- id: 10694 + name: Padded + friendly_id: transfer_boards_surface_type__padded +- id: 10695 + name: Smooth + friendly_id: transfer_boards_surface_type__smooth +- id: 10696 + name: Manual + friendly_id: wheelchair_type__manual +- id: 10697 + name: Electric + friendly_id: wheelchair_type__electric +- id: 10698 + name: Lightweight + friendly_id: wheelchair_type__lightweight +- id: 10699 + name: Folding + friendly_id: wheelchair_type__folding +- id: 10700 + name: Transport + friendly_id: wheelchair_type__transport +- id: 10701 + name: Pediatric + friendly_id: wheelchair_type__pediatric +- id: 10702 + name: Bariatric + friendly_id: wheelchair_type__bariatric +- id: 10703 + name: Reclining + friendly_id: wheelchair_type__reclining +- id: 10704 + name: Hook & loop + friendly_id: attachment_type__hook_loop +- id: 10705 + name: Canes & walking sticks + friendly_id: compatible_walking_aid_equipment__canes_walking_sticks +- id: 10706 + name: Crutches + friendly_id: compatible_walking_aid_equipment__crutches +- id: 10707 + name: Walkers + friendly_id: compatible_walking_aid_equipment__walkers +- id: 10708 + name: Forearm (elbow) + friendly_id: crutch_type__forearm_elbow +- id: 10709 + name: Platform + friendly_id: crutch_type__platform +- id: 10710 + name: Underarm (axillary) + friendly_id: crutch_type__underarm_axillary +- id: 10711 + name: Belt + friendly_id: muscle_estimulator_design__belt +- id: 10712 + name: Arm-band + friendly_id: muscle_estimulator_design__arm_band +- id: 10713 + name: Leg-band + friendly_id: muscle_estimulator_design__leg_band +- id: 10714 + name: Sticker plate + friendly_id: muscle_estimulator_design__sticker_plate +- id: 10715 + name: Electrodes unit + friendly_id: muscle_estimulator_design__electrodes_unit +- id: 10716 + name: Jet + friendly_id: nebulizer_technology__jet +- id: 10717 + name: Mesh + friendly_id: nebulizer_technology__mesh +- id: 10718 + name: Piston + friendly_id: nebulizer_technology__piston +- id: 10719 + name: Ultrasonic + friendly_id: nebulizer_technology__ultrasonic +- id: 10720 + name: VMT + friendly_id: nebulizer_technology__vmt +- id: 10721 + name: Cigar lighter + friendly_id: power_source__cigar_lighter +- id: 10722 + name: Tabletop + friendly_id: product_design__tabletop +- id: 10723 + name: Handheld + friendly_id: product_design__handheld +- id: 10724 + name: Post valve + friendly_id: oxygen_tank_valve_type__post_valve +- id: 10725 + name: Toggle + friendly_id: oxygen_tank_valve_type__toggle +- id: 10726 + name: Z valve + friendly_id: oxygen_tank_valve_type__z_valve +- id: 10727 + name: Full face + friendly_id: mask_type__full_face +- id: 10728 + name: Nasal + friendly_id: mask_type__nasal +- id: 10729 + name: Nasal pillow + friendly_id: mask_type__nasal_pillow +- id: 10730 + name: Oral + friendly_id: mask_type__oral +- id: 10731 + name: Film + friendly_id: product_form__film +- id: 10732 + name: Suppository + friendly_id: product_form__suppository +- id: 10733 + name: Tablets + friendly_id: product_form__tablets +- id: 10734 + name: Extra firm + friendly_id: compression_level__extra_firm +- id: 10735 + name: Firm + friendly_id: compression_level__firm +- id: 10736 + name: Light + friendly_id: compression_level__light +- id: 10737 + name: Moderate + friendly_id: compression_level__moderate +- id: 10738 + name: Straps + friendly_id: closure_type__straps +- id: 10739 + name: Fabric + friendly_id: support_brace_material__fabric +- id: 10740 + name: Foam + friendly_id: support_brace_material__foam +- id: 10741 + name: Neoprene + friendly_id: support_brace_material__neoprene +- id: 10742 + name: Silicone + friendly_id: support_brace_material__silicone +- id: 10743 + name: Sachet + friendly_id: dispenser_type__sachet +- id: 10744 + name: Diamond + friendly_id: suitable_for_precious_material__diamond +- id: 10745 + name: Gemstone + friendly_id: suitable_for_precious_material__gemstone +- id: 10746 + name: Gold + friendly_id: suitable_for_precious_material__gold +- id: 10747 + name: Hard gemstone + friendly_id: suitable_for_precious_material__hard_gemstone +- id: 10748 + name: Metal + friendly_id: suitable_for_precious_material__metal +- id: 10749 + name: Platinum + friendly_id: suitable_for_precious_material__platinum +- id: 10750 + name: Silver + friendly_id: suitable_for_precious_material__silver +- id: 10751 + name: Soft gemstone + friendly_id: suitable_for_precious_material__soft_gemstone +- id: 10752 + name: Aging + friendly_id: suitable_for_skin_type__aging +- id: 10753 + name: Combination + friendly_id: suitable_for_skin_type__combination +- id: 10754 + name: Demanding + friendly_id: suitable_for_skin_type__demanding +- id: 10755 + name: Dry + friendly_id: suitable_for_skin_type__dry +- id: 10756 + name: Mature + friendly_id: suitable_for_skin_type__mature +- id: 10757 + name: Oily + friendly_id: suitable_for_skin_type__oily +- id: 10758 + name: Problem + friendly_id: suitable_for_skin_type__problem +- id: 10759 + name: Rough + friendly_id: suitable_for_skin_type__rough +- id: 10760 + name: Universal + friendly_id: suitable_for_skin_type__universal +- id: 10761 + name: Very dry + friendly_id: suitable_for_skin_type__very_dry +- id: 10762 + name: Wet + friendly_id: suitable_for_skin_type__wet +- id: 10763 + name: With redness + friendly_id: suitable_for_skin_type__with_redness +- id: 10764 + name: Long + friendly_id: handle_type__long +- id: 10765 + name: No handle + friendly_id: handle_type__no_handle +- id: 10766 + name: Short + friendly_id: handle_type__short +- id: 10767 + name: Flip-top + friendly_id: package_type__flip_top +- id: 10768 + name: Pump bottle + friendly_id: package_type__pump_bottle +- id: 10769 + name: Squeeze tube + friendly_id: package_type__squeeze_tube +- id: 10770 + name: Alcohol + friendly_id: active_ingredient__alcohol +- id: 10771 + name: Other + friendly_id: active_ingredient__other +- id: 10772 + name: Pouch + friendly_id: dispenser_type__pouch +- id: 10773 + name: Insoluble + friendly_id: solubility__insoluble +- id: 10774 + name: Partially soluble + friendly_id: solubility__partially_soluble +- id: 10775 + name: Water-soluble + friendly_id: solubility__water_soluble +- id: 10776 + name: Beauty tool containers + friendly_id: compatible_cosmetic_tools__beauty_tool_containers +- id: 10777 + name: Eyebrow trimmers + friendly_id: compatible_cosmetic_tools__eyebrow_trimmers +- id: 10778 + name: Eyelash curlers + friendly_id: compatible_cosmetic_tools__eyelash_curlers +- id: 10779 + name: Makeup brushes + friendly_id: compatible_cosmetic_tools__makeup_brushes +- id: 10780 + name: Makeup mixing palettes + friendly_id: compatible_cosmetic_tools__makeup_mixing_palettes +- id: 10781 + name: Powder puffs + friendly_id: compatible_cosmetic_tools__powder_puffs +- id: 10782 + name: Silicone applicators + friendly_id: compatible_cosmetic_tools__silicone_applicators +- id: 10783 + name: Spatula + friendly_id: compatible_cosmetic_tools__spatula +- id: 10784 + name: Sponges + friendly_id: compatible_cosmetic_tools__sponges +- id: 10785 + name: Tweezers + friendly_id: compatible_cosmetic_tools__tweezers +- id: 10786 + name: Solid + friendly_id: product_form__solid +- id: 10787 + name: Free-standing + friendly_id: mounting_hardware__free_standing +- id: 10788 + name: Handheld + friendly_id: mounting_hardware__handheld +- id: 10789 + name: Screws + friendly_id: mounting_hardware__screws +- id: 10790 + name: Suction cup + friendly_id: mounting_hardware__suction_cup +- id: 10791 + name: Other + friendly_id: mounting_hardware__other +- id: 10792 + name: Curved + friendly_id: eyelash_applicator_design__curved +- id: 10793 + name: Straight + friendly_id: eyelash_applicator_design__straight +- id: 10794 + name: Tweezer-style + friendly_id: eyelash_applicator_design__tweezer_style +- id: 10795 + name: Scissor-style + friendly_id: eyelash_applicator_design__scissor_style +- id: 10796 + name: Flat + friendly_id: bristle_shape__flat +- id: 10797 + name: Rounded + friendly_id: bristle_shape__rounded +- id: 10798 + name: Angled + friendly_id: bristle_shape__angled +- id: 10799 + name: Tapered + friendly_id: bristle_shape__tapered +- id: 10800 + name: Blush + friendly_id: compatible_makeup__blush +- id: 10801 + name: Eyeshadow + friendly_id: compatible_makeup__eyeshadow +- id: 10802 + name: Lipstick + friendly_id: compatible_makeup__lipstick +- id: 10803 + name: Powder + friendly_id: compatible_makeup__powder +- id: 10804 + name: Flat + friendly_id: tip_style__flat +- id: 10805 + name: Curved + friendly_id: tip_style__curved +- id: 10806 + name: Angled + friendly_id: tip_style__angled +- id: 10807 + name: Pointed + friendly_id: tip_style__pointed +- id: 10808 + name: Curved + friendly_id: blade_type__curved +- id: 10809 + name: Straight + friendly_id: blade_type__straight +- id: 10810 + name: Contoured + friendly_id: toe_spacer_design__contoured +- id: 10811 + name: Loop design + friendly_id: toe_spacer_design__loop_design +- id: 10812 + name: Traditional toe separator + friendly_id: toe_spacer_design__traditional_toe_separator +- id: 10813 + name: Flat + friendly_id: blade_type__flat +- id: 10814 + name: Hollow + friendly_id: blade_type__hollow +- id: 10815 + name: Rectangular + friendly_id: file_shape__rectangular +- id: 10816 + name: Oval + friendly_id: file_shape__oval +- id: 10817 + name: Contoured + friendly_id: file_shape__contoured +- id: 10818 + name: Other + friendly_id: file_shape__other +- id: 10819 + name: Machine washable + friendly_id: pad_type__machine_washable +- id: 10820 + name: Removable + friendly_id: pad_type__removable +- id: 10821 + name: Replaceable + friendly_id: pad_type__replaceable +- id: 10822 + name: Loop + friendly_id: extractor_tip_style__loop +- id: 10823 + name: Lancet + friendly_id: extractor_tip_style__lancet +- id: 10824 + name: Needle + friendly_id: extractor_tip_style__needle +- id: 10825 + name: Scoop + friendly_id: extractor_tip_style__scoop +- id: 10826 + name: Dual + friendly_id: roller_head__dual +- id: 10827 + name: Single + friendly_id: roller_head__single +- id: 10828 + name: Glass + friendly_id: roller_material__glass +- id: 10829 + name: Jade + friendly_id: roller_material__jade +- id: 10830 + name: Quartz + friendly_id: roller_material__quartz +- id: 10831 + name: Metal + friendly_id: roller_material__metal +- id: 10832 + name: Plastic + friendly_id: roller_material__plastic +- id: 10833 + name: Silicone + friendly_id: roller_material__silicone +- id: 10834 + name: Stainless steel + friendly_id: roller_material__stainless_steel +- id: 10835 + name: Ice + friendly_id: roller_type__ice +- id: 10836 + name: Jade + friendly_id: roller_type__jade +- id: 10837 + name: Microneedle + friendly_id: roller_type__microneedle +- id: 10838 + name: Quartz + friendly_id: roller_type__quartz +- id: 10839 + name: Daily cleansing + friendly_id: brush_head_usage__daily_cleansing +- id: 10840 + name: Deep cleansing + friendly_id: brush_head_usage__deep_cleansing +- id: 10841 + name: Exfoliation + friendly_id: brush_head_usage__exfoliation +- id: 10842 + name: Sensitive skin + friendly_id: brush_head_usage__sensitive_skin +- id: 10843 + name: Multiple + friendly_id: speed_settings__multiple +- id: 10844 + name: Single + friendly_id: speed_settings__single +- id: 10845 + name: Variable + friendly_id: speed_settings__variable +- id: 10846 + name: Alcohol-free + friendly_id: product_certifications_standards__alcohol_free +- id: 10847 + name: Dermatologist tested + friendly_id: product_certifications_standards__dermatologist_tested +- id: 10848 + name: Dye-free + friendly_id: product_certifications_standards__dye_free +- id: 10849 + name: EWG verified + friendly_id: product_certifications_standards__ewg_verified +- id: 10850 + name: Gluten-free + friendly_id: product_certifications_standards__gluten_free +- id: 10851 + name: Leaping bunny certified + friendly_id: product_certifications_standards__leaping_bunny_certified +- id: 10852 + name: Made safe certified + friendly_id: product_certifications_standards__made_safe_certified +- id: 10853 + name: Natrue certified + friendly_id: product_certifications_standards__natrue_certified +- id: 10854 + name: Natural ingredients + friendly_id: product_certifications_standards__natural_ingredients +- id: 10855 + name: No artificial colors + friendly_id: product_certifications_standards__no_artificial_colors +- id: 10856 + name: Oil-free + friendly_id: product_certifications_standards__oil_free +- id: 10857 + name: Organic + friendly_id: product_certifications_standards__organic +- id: 10858 + name: Paraben-free + friendly_id: product_certifications_standards__paraben_free +- id: 10859 + name: PETA approved + friendly_id: product_certifications_standards__peta_approved +- id: 10860 + name: Phthalate-free + friendly_id: product_certifications_standards__phthalate_free +- id: 10861 + name: RSPO certified + friendly_id: product_certifications_standards__rspo_certified +- id: 10862 + name: Silicone-free + friendly_id: product_certifications_standards__silicone_free +- id: 10863 + name: SPF protection + friendly_id: product_certifications_standards__spf_protection +- id: 10864 + name: Sulfate-free + friendly_id: product_certifications_standards__sulfate_free +- id: 10865 + name: Vegan + friendly_id: product_certifications_standards__vegan +- id: 10866 + name: Stick + friendly_id: product_form__stick +- id: 10867 + name: Matte + friendly_id: cosmetic_finish__matte +- id: 10868 + name: Metallic + friendly_id: cosmetic_finish__metallic +- id: 10869 + name: Neon + friendly_id: cosmetic_finish__neon +- id: 10870 + name: Satin + friendly_id: cosmetic_finish__satin +- id: 10871 + name: Dewy + friendly_id: cosmetic_finish__dewy +- id: 10872 + name: Other + friendly_id: cosmetic_finish__other +- id: 10873 + name: Fair skin + friendly_id: skin_tone__fair_skin +- id: 10874 + name: Light skin + friendly_id: skin_tone__light_skin +- id: 10875 + name: Medium skin + friendly_id: skin_tone__medium_skin +- id: 10876 + name: Deep skin + friendly_id: skin_tone__deep_skin +- id: 10877 + name: Sand skin + friendly_id: skin_tone__sand_skin +- id: 10878 + name: Cafe skin + friendly_id: skin_tone__cafe_skin +- id: 10879 + name: Nude skin + friendly_id: skin_tone__nude_skin +- id: 10880 + name: Dark skin + friendly_id: skin_tone__dark_skin +- id: 10881 + name: Tanned skin + friendly_id: skin_tone__tanned_skin +- id: 10882 + name: All skin tones + friendly_id: skin_tone__all_skin_tones +- id: 10883 + name: Cool + friendly_id: skin_undertone__cool +- id: 10884 + name: Neutral + friendly_id: skin_undertone__neutral +- id: 10885 + name: Warm + friendly_id: skin_undertone__warm +- id: 10886 + name: Neutral/Warm + friendly_id: skin_undertone__neutral_warm +- id: 10887 + name: Neutral/Warm/Pink + friendly_id: skin_undertone__neutral_warm_pink +- id: 10888 + name: Cool/Pink + friendly_id: skin_undertone__cool_pink +- id: 10889 + name: Warm/Yellow + friendly_id: skin_undertone__warm_yellow +- id: 10890 + name: Yellow + friendly_id: skin_undertone__yellow +- id: 10891 + name: Olive/Yellow + friendly_id: skin_undertone__olive_yellow +- id: 10892 + name: Red/Yellow + friendly_id: skin_undertone__red_yellow +- id: 10893 + name: Pink/Yellow + friendly_id: skin_undertone__pink_yellow +- id: 10894 + name: Brown/Red/Yellow + friendly_id: skin_undertone__brown_red_yellow +- id: 10895 + name: Gold + friendly_id: skin_undertone__gold +- id: 10896 + name: Rose + friendly_id: skin_undertone__rose +- id: 10897 + name: Pot + friendly_id: dispenser_type__pot +- id: 10898 + name: Anti-aging + friendly_id: skin_care_effect__anti_aging +- id: 10899 + name: Anti-wrinkle + friendly_id: skin_care_effect__anti_wrinkle +- id: 10900 + name: Smoothing + friendly_id: skin_care_effect__smoothing +- id: 10901 + name: Hydrating + friendly_id: skin_care_effect__hydrating +- id: 10902 + name: Plumping + friendly_id: skin_care_effect__plumping +- id: 10903 + name: Other + friendly_id: skin_care_effect__other +- id: 10904 + name: Glitter + friendly_id: cosmetic_finish__glitter +- id: 10905 + name: Glossy + friendly_id: cosmetic_finish__glossy +- id: 10906 + name: Luminous + friendly_id: cosmetic_finish__luminous +- id: 10907 + name: Pearlescent + friendly_id: cosmetic_finish__pearlescent +- id: 10908 + name: Shimmer + friendly_id: cosmetic_finish__shimmer +- id: 10909 + name: Smoothing + friendly_id: eye_shadow_effect__smoothing +- id: 10910 + name: Metallic + friendly_id: eye_shadow_effect__metallic +- id: 10911 + name: Smoky + friendly_id: eye_shadow_effect__smoky +- id: 10912 + name: Glitter + friendly_id: eye_shadow_effect__glitter +- id: 10913 + name: Nourishing + friendly_id: eye_shadow_effect__nourishing +- id: 10914 + name: Pencil + friendly_id: product_form__pencil +- id: 10915 + name: Pencil + friendly_id: dispenser_type__pencil +- id: 10916 + name: Cream-to-powder + friendly_id: product_form__cream_to_powder +- id: 10917 + name: Kohl + friendly_id: product_form__kohl +- id: 10918 + name: Loose powder + friendly_id: product_form__loose_powder +- id: 10919 + name: Pressed powder + friendly_id: product_form__pressed_powder +- id: 10920 + name: Extra short + friendly_id: accessory_size__extra_short +- id: 10921 + name: Short + friendly_id: accessory_size__short +- id: 10922 + name: Long + friendly_id: accessory_size__long +- id: 10923 + name: Silk + friendly_id: eyelash_material__silk +- id: 10924 + name: Synthetic + friendly_id: eyelash_material__synthetic +- id: 10925 + name: Serum + friendly_id: product_form__serum +- id: 10926 + name: Curling + friendly_id: mascara_effect__curling +- id: 10927 + name: Coloring + friendly_id: mascara_effect__coloring +- id: 10928 + name: Definition + friendly_id: mascara_effect__definition +- id: 10929 + name: Elasticity + friendly_id: mascara_effect__elasticity +- id: 10930 + name: Glitter + friendly_id: mascara_effect__glitter +- id: 10931 + name: Highlighting + friendly_id: mascara_effect__highlighting +- id: 10932 + name: Hydration + friendly_id: mascara_effect__hydration +- id: 10933 + name: Lengthening + friendly_id: mascara_effect__lengthening +- id: 10934 + name: Nourishing + friendly_id: mascara_effect__nourishing +- id: 10935 + name: Plumping + friendly_id: mascara_effect__plumping +- id: 10936 + name: Precision + friendly_id: mascara_effect__precision +- id: 10937 + name: Protection + friendly_id: mascara_effect__protection +- id: 10938 + name: Revitalizing + friendly_id: mascara_effect__revitalizing +- id: 10939 + name: Strengthening + friendly_id: mascara_effect__strengthening +- id: 10940 + name: Thickening + friendly_id: mascara_effect__thickening +- id: 10941 + name: Volumizing + friendly_id: mascara_effect__volumizing +- id: 10942 + name: Fixation + friendly_id: mascara_effect__fixation +- id: 10943 + name: Palette + friendly_id: dispenser_type__palette +- id: 10944 + name: Brightening + friendly_id: product_benefits__brightening +- id: 10945 + name: Bronzing + friendly_id: product_benefits__bronzing +- id: 10946 + name: Highlighting + friendly_id: product_benefits__highlighting +- id: 10947 + name: Natural + friendly_id: product_benefits__natural +- id: 10948 + name: Radiant + friendly_id: product_benefits__radiant +- id: 10949 + name: Case + friendly_id: dispenser_type__case +- id: 10950 + name: Ampoule + friendly_id: dispenser_type__ampoule +- id: 10951 + name: Box + friendly_id: dispenser_type__box +- id: 10952 + name: Can + friendly_id: dispenser_type__can +- id: 10953 + name: Capsules + friendly_id: dispenser_type__capsules +- id: 10954 + name: Roll-on + friendly_id: dispenser_type__roll_on +- id: 10955 + name: Pore shrinking + friendly_id: skin_care_effect__pore_shrinking +- id: 10956 + name: Anti-fatigue + friendly_id: skin_care_effect__anti_fatigue +- id: 10957 + name: Brightening + friendly_id: skin_care_effect__brightening +- id: 10958 + name: Tightening + friendly_id: skin_care_effect__tightening +- id: 10959 + name: Mattifying + friendly_id: skin_care_effect__mattifying +- id: 10960 + name: Moisturizing + friendly_id: skin_care_effect__moisturizing +- id: 10961 + name: Lifting + friendly_id: skin_care_effect__lifting +- id: 10962 + name: Protection + friendly_id: skin_care_effect__protection +- id: 10963 + name: Priming + friendly_id: skin_care_effect__priming +- id: 10964 + name: Leveling + friendly_id: skin_care_effect__leveling +- id: 10965 + name: Pore refining + friendly_id: skin_care_effect__pore_refining +- id: 10966 + name: Anti-shine + friendly_id: skin_care_effect__anti_shine +- id: 10967 + name: Calming + friendly_id: skin_care_effect__calming +- id: 10968 + name: Nourishing + friendly_id: skin_care_effect__nourishing +- id: 10969 + name: Soothing + friendly_id: skin_care_effect__soothing +- id: 10970 + name: Anti-redness + friendly_id: skin_care_effect__anti_redness +- id: 10971 + name: Anti-acne + friendly_id: skin_care_effect__anti_acne +- id: 10972 + name: Anti-bacterial + friendly_id: skin_care_effect__anti_bacterial +- id: 10973 + name: Anti-blackhead + friendly_id: skin_care_effect__anti_blackhead +- id: 10974 + name: Anti-blemish + friendly_id: skin_care_effect__anti_blemish +- id: 10975 + name: Anti-cellulite + friendly_id: skin_care_effect__anti_cellulite +- id: 10976 + name: Anti-dark circle + friendly_id: skin_care_effect__anti_dark_circle +- id: 10977 + name: Anti-dark spot + friendly_id: skin_care_effect__anti_dark_spot +- id: 10978 + name: Anti-drying + friendly_id: skin_care_effect__anti_drying +- id: 10979 + name: Anti-dullness + friendly_id: skin_care_effect__anti_dullness +- id: 10980 + name: Anti-imperfections + friendly_id: skin_care_effect__anti_imperfections +- id: 10981 + name: Anti-irritation + friendly_id: skin_care_effect__anti_irritation +- id: 10982 + name: Anti-itching + friendly_id: skin_care_effect__anti_itching +- id: 10983 + name: Anti-keratin + friendly_id: skin_care_effect__anti_keratin +- id: 10984 + name: Anti-particles + friendly_id: skin_care_effect__anti_particles +- id: 10985 + name: Anti-perleche + friendly_id: skin_care_effect__anti_perleche +- id: 10986 + name: Anti-pimple + friendly_id: skin_care_effect__anti_pimple +- id: 10987 + name: Anti-puffiness + friendly_id: skin_care_effect__anti_puffiness +- id: 10988 + name: Anti-rubbing + friendly_id: skin_care_effect__anti_rubbing +- id: 10989 + name: Anti-scars + friendly_id: skin_care_effect__anti_scars +- id: 10990 + name: Anti-stress + friendly_id: skin_care_effect__anti_stress +- id: 10991 + name: Anti-stretch mark + friendly_id: skin_care_effect__anti_stretch_mark +- id: 10992 + name: Bronzing + friendly_id: skin_care_effect__bronzing +- id: 10993 + name: Clarity + friendly_id: skin_care_effect__clarity +- id: 10994 + name: Cleansing + friendly_id: skin_care_effect__cleansing +- id: 10995 + name: Color correction + friendly_id: skin_care_effect__color_correction +- id: 10996 + name: Cooling + friendly_id: skin_care_effect__cooling +- id: 10997 + name: Drying + friendly_id: skin_care_effect__drying +- id: 10998 + name: Elasticity + friendly_id: skin_care_effect__elasticity +- id: 10999 + name: Energizing + friendly_id: skin_care_effect__energizing +- id: 11000 + name: Exfoliating + friendly_id: skin_care_effect__exfoliating +- id: 11001 + name: Filler effect + friendly_id: skin_care_effect__filler_effect +- id: 11002 + name: Firming + friendly_id: skin_care_effect__firming +- id: 11003 + name: Healing + friendly_id: skin_care_effect__healing +- id: 11004 + name: Illuminating + friendly_id: skin_care_effect__illuminating +- id: 11005 + name: Invigorating + friendly_id: skin_care_effect__invigorating +- id: 11006 + name: Keratin reduction + friendly_id: skin_care_effect__keratin_reduction +- id: 11007 + name: Oxygenating + friendly_id: skin_care_effect__oxygenating +- id: 11008 + name: Pore tightening + friendly_id: skin_care_effect__pore_tightening +- id: 11009 + name: Prevents age spots + friendly_id: skin_care_effect__prevents_age_spots +- id: 11010 + name: Prevents freckles + friendly_id: skin_care_effect__prevents_freckles +- id: 11011 + name: Purifying + friendly_id: skin_care_effect__purifying +- id: 11012 + name: Rebalancing + friendly_id: skin_care_effect__rebalancing +- id: 11013 + name: Refreshing + friendly_id: skin_care_effect__refreshing +- id: 11014 + name: Regenerating + friendly_id: skin_care_effect__regenerating +- id: 11015 + name: Relaxation + friendly_id: skin_care_effect__relaxation +- id: 11016 + name: Repairing + friendly_id: skin_care_effect__repairing +- id: 11017 + name: Replenishing + friendly_id: skin_care_effect__replenishing +- id: 11018 + name: Revitalizing + friendly_id: skin_care_effect__revitalizing +- id: 11019 + name: Reviving + friendly_id: skin_care_effect__reviving +- id: 11020 + name: Scrub + friendly_id: skin_care_effect__scrub +- id: 11021 + name: Shimmering + friendly_id: skin_care_effect__shimmering +- id: 11022 + name: Shine + friendly_id: skin_care_effect__shine +- id: 11023 + name: Slimming + friendly_id: skin_care_effect__slimming +- id: 11024 + name: Softening + friendly_id: skin_care_effect__softening +- id: 11025 + name: Strengthening + friendly_id: skin_care_effect__strengthening +- id: 11026 + name: Tonifying + friendly_id: skin_care_effect__tonifying +- id: 11027 + name: Treatment + friendly_id: skin_care_effect__treatment +- id: 11028 + name: Unclogging + friendly_id: skin_care_effect__unclogging +- id: 11029 + name: Warming + friendly_id: skin_care_effect__warming +- id: 11030 + name: Whitening + friendly_id: skin_care_effect__whitening +- id: 11031 + name: Radiant + friendly_id: cosmetic_finish__radiant +- id: 11032 + name: Opaque + friendly_id: cosmetic_finish__opaque +- id: 11033 + name: Satin-matte + friendly_id: cosmetic_finish__satin_matte +- id: 11034 + name: Sheer + friendly_id: cosmetic_finish__sheer +- id: 11035 + name: Sparkly + friendly_id: cosmetic_finish__sparkly +- id: 11036 + name: Nourishing + friendly_id: lip_gloss_effect__nourishing +- id: 11037 + name: Moisturizing + friendly_id: lip_gloss_effect__moisturizing +- id: 11038 + name: Plumping + friendly_id: lip_gloss_effect__plumping +- id: 11039 + name: Hydrating + friendly_id: lip_gloss_effect__hydrating +- id: 11040 + name: Softening + friendly_id: lip_gloss_effect__softening +- id: 11041 + name: Smoothing + friendly_id: lip_gloss_effect__smoothing +- id: 11042 + name: Radiant + friendly_id: lip_gloss_effect__radiant +- id: 11043 + name: Mirroring + friendly_id: lip_gloss_effect__mirroring +- id: 11044 + name: Coloring + friendly_id: lip_gloss_effect__coloring +- id: 11045 + name: Glowing + friendly_id: lip_gloss_effect__glowing +- id: 11046 + name: Volumizing + friendly_id: lip_gloss_effect__volumizing +- id: 11047 + name: Smooth + friendly_id: cosmetic_finish__smooth +- id: 11048 + name: Moisturizing + friendly_id: product_benefits__moisturizing +- id: 11049 + name: Nourishing + friendly_id: product_benefits__nourishing +- id: 11050 + name: Hydrating + friendly_id: product_benefits__hydrating +- id: 11051 + name: Smoothing + friendly_id: product_benefits__smoothing +- id: 11052 + name: Priming + friendly_id: product_benefits__priming +- id: 11053 + name: Softening + friendly_id: product_benefits__softening +- id: 11054 + name: Creamy + friendly_id: texture__creamy +- id: 11055 + name: Lightweight + friendly_id: texture__lightweight +- id: 11056 + name: Smooth + friendly_id: texture__smooth +- id: 11057 + name: Natural + friendly_id: cosmetic_finish__natural +- id: 11058 + name: Shine-free + friendly_id: cosmetic_finish__shine_free +- id: 11059 + name: Velvet + friendly_id: cosmetic_finish__velvet +- id: 11060 + name: Absorbent + friendly_id: texture__absorbent +- id: 11061 + name: Cushiony + friendly_id: texture__cushiony +- id: 11062 + name: Non-greasy + friendly_id: texture__non_greasy +- id: 11063 + name: Silky + friendly_id: texture__silky +- id: 11064 + name: Soft + friendly_id: texture__soft +- id: 11065 + name: Semi-matte + friendly_id: cosmetic_finish__semi_matte +- id: 11066 + name: Velvet-matte + friendly_id: cosmetic_finish__velvet_matte +- id: 11067 + name: Moisturizing + friendly_id: lipstick_effect__moisturizing +- id: 11068 + name: Conditioning + friendly_id: lipstick_effect__conditioning +- id: 11069 + name: Coloring + friendly_id: lipstick_effect__coloring +- id: 11070 + name: Nourishing + friendly_id: lipstick_effect__nourishing +- id: 11071 + name: Soothing + friendly_id: lipstick_effect__soothing +- id: 11072 + name: Hydrating + friendly_id: lipstick_effect__hydrating +- id: 11073 + name: Softening + friendly_id: lipstick_effect__softening +- id: 11074 + name: Protection + friendly_id: lipstick_effect__protection +- id: 11075 + name: Smoothing + friendly_id: lipstick_effect__smoothing +- id: 11076 + name: Firming + friendly_id: lipstick_effect__firming +- id: 11077 + name: Plumping + friendly_id: lipstick_effect__plumping +- id: 11078 + name: Volumizing + friendly_id: lipstick_effect__volumizing +- id: 11079 + name: Refreshing + friendly_id: lipstick_effect__refreshing +- id: 11080 + name: Velvety + friendly_id: texture__velvety +- id: 11081 + name: Butter-like + friendly_id: texture__butter_like +- id: 11082 + name: Embossed + friendly_id: cosmetic_finish__embossed +- id: 11083 + name: Soft-focus + friendly_id: cosmetic_finish__soft_focus +- id: 11084 + name: DBP + friendly_id: product_certifications_standards__dbp +- id: 11085 + name: Free from formaldehyde + friendly_id: product_certifications_standards__free_from_formaldehyde +- id: 11086 + name: Free from toluene + friendly_id: product_certifications_standards__free_from_toluene +- id: 11087 + name: Non-toxic + friendly_id: product_certifications_standards__non_toxic +- id: 11088 + name: Almond oil + friendly_id: detailed_ingredients__almond_oil +- id: 11089 + name: Argan oil + friendly_id: detailed_ingredients__argan_oil +- id: 11090 + name: Beeswax + friendly_id: detailed_ingredients__beeswax +- id: 11091 + name: Coconut oil + friendly_id: detailed_ingredients__coconut_oil +- id: 11092 + name: Glycerin + friendly_id: detailed_ingredients__glycerin +- id: 11093 + name: Hyaluronic acid + friendly_id: detailed_ingredients__hyaluronic_acid +- id: 11094 + name: Jojoba oil + friendly_id: detailed_ingredients__jojoba_oil +- id: 11095 + name: Keratin + friendly_id: detailed_ingredients__keratin +- id: 11096 + name: Lanolin + friendly_id: detailed_ingredients__lanolin +- id: 11097 + name: Lemongrass oil + friendly_id: detailed_ingredients__lemongrass_oil +- id: 11098 + name: Peppermint oil + friendly_id: detailed_ingredients__peppermint_oil +- id: 11099 + name: Salicylic acid + friendly_id: detailed_ingredients__salicylic_acid +- id: 11100 + name: Shea butter + friendly_id: detailed_ingredients__shea_butter +- id: 11101 + name: Sunflower seed oil + friendly_id: detailed_ingredients__sunflower_seed_oil +- id: 11102 + name: Tea tree oil + friendly_id: detailed_ingredients__tea_tree_oil +- id: 11103 + name: Natural + friendly_id: nail_design__natural +- id: 11104 + name: French tip + friendly_id: nail_design__french_tip +- id: 11105 + name: Solid color + friendly_id: nail_design__solid_color +- id: 11106 + name: Glitter + friendly_id: nail_design__glitter +- id: 11107 + name: Matte + friendly_id: nail_design__matte +- id: 11108 + name: Metallic + friendly_id: nail_design__metallic +- id: 11109 + name: Chrome + friendly_id: nail_design__chrome +- id: 11110 + name: Ombre + friendly_id: nail_design__ombre +- id: 11111 + name: Holographic + friendly_id: nail_design__holographic +- id: 11112 + name: Animal print + friendly_id: nail_design__animal_print +- id: 11113 + name: Floral + friendly_id: nail_design__floral +- id: 11114 + name: Geometric + friendly_id: nail_design__geometric +- id: 11115 + name: Abstract + friendly_id: nail_design__abstract +- id: 11116 + name: Iridescent + friendly_id: nail_design__iridescent +- id: 11117 + name: Almond + friendly_id: nail_shape__almond +- id: 11118 + name: Arrowhead + friendly_id: nail_shape__arrowhead +- id: 11119 + name: Ballerina + friendly_id: nail_shape__ballerina +- id: 11120 + name: Coffin + friendly_id: nail_shape__coffin +- id: 11121 + name: Edge + friendly_id: nail_shape__edge +- id: 11122 + name: Flare + friendly_id: nail_shape__flare +- id: 11123 + name: Lipstick + friendly_id: nail_shape__lipstick +- id: 11124 + name: Mountain + friendly_id: nail_shape__mountain +- id: 11125 + name: Other + friendly_id: nail_shape__other +- id: 11126 + name: Oval + friendly_id: nail_shape__oval +- id: 11127 + name: Pipe + friendly_id: nail_shape__pipe +- id: 11128 + name: Round + friendly_id: nail_shape__round +- id: 11129 + name: Square + friendly_id: nail_shape__square +- id: 11130 + name: Stiletto + friendly_id: nail_shape__stiletto +- id: 11131 + name: Gentle + friendly_id: glue_strength__gentle +- id: 11132 + name: Medium + friendly_id: glue_strength__medium +- id: 11133 + name: Strong + friendly_id: glue_strength__strong +- id: 11134 + name: Extra strong + friendly_id: glue_strength__extra_strong +- id: 11135 + name: Oil-based + friendly_id: polish_dry_form__oil_based +- id: 11136 + name: Water-based + friendly_id: polish_dry_form__water_based +- id: 11137 + name: Solvent-based + friendly_id: polish_dry_form__solvent_based +- id: 11138 + name: Silicone-based + friendly_id: polish_dry_form__silicone_based +- id: 11139 + name: Other + friendly_id: polish_dry_form__other +- id: 11140 + name: Liquid nail polish remover + friendly_id: polish_remover_form__liquid_nail_polish_remover +- id: 11141 + name: Removal wraps + friendly_id: polish_remover_form__removal_wraps +- id: 11142 + name: Dip in nail polish remover + friendly_id: polish_remover_form__dip_in_nail_polish_remover +- id: 11143 + name: Soak-off remover wraps + friendly_id: polish_remover_form__soak_off_remover_wraps +- id: 11144 + name: Nail polish degreaser + friendly_id: polish_remover_form__nail_polish_degreaser +- id: 11145 + name: Nail polish eraser cream + friendly_id: polish_remover_form__nail_polish_eraser_cream +- id: 11146 + name: Holographic + friendly_id: cosmetic_finish__holographic +- id: 11147 + name: Strengthening + friendly_id: product_benefits__strengthening +- id: 11148 + name: Protection + friendly_id: product_benefits__protection +- id: 11149 + name: Regenerating + friendly_id: product_benefits__regenerating +- id: 11150 + name: Coloring + friendly_id: product_benefits__coloring +- id: 11151 + name: Care + friendly_id: product_benefits__care +- id: 11152 + name: Firming + friendly_id: product_benefits__firming +- id: 11153 + name: Whitening + friendly_id: product_benefits__whitening +- id: 11154 + name: Casual + friendly_id: occasion__casual +- id: 11155 + name: Formal + friendly_id: occasion__formal +- id: 11156 + name: Everyday + friendly_id: occasion__everyday +- id: 11157 + name: Special occasion + friendly_id: occasion__special_occasion +- id: 11158 + name: Spring + friendly_id: season__spring +- id: 11159 + name: Summer + friendly_id: season__summer +- id: 11160 + name: Fall + friendly_id: season__fall +- id: 11161 + name: Winter + friendly_id: season__winter +- id: 11162 + name: Oil + friendly_id: product_form__oil +- id: 11163 + name: Benzoyl peroxide + friendly_id: active_ingredient__benzoyl_peroxide +- id: 11164 + name: Glycolic acid + friendly_id: active_ingredient__glycolic_acid +- id: 11165 + name: Retinol + friendly_id: active_ingredient__retinol +- id: 11166 + name: Salicylic acid + friendly_id: active_ingredient__salicylic_acid +- id: 11167 + name: Hyaluronic acid + friendly_id: active_ingredient__hyaluronic_acid +- id: 11168 + name: Niacinamide + friendly_id: active_ingredient__niacinamide +- id: 11169 + name: Peptides + friendly_id: active_ingredient__peptides +- id: 11170 + name: Vitamin C + friendly_id: active_ingredient__vitamin_c +- id: 11171 + name: Argan oil + friendly_id: active_ingredient__argan_oil +- id: 11172 + name: Calendula oil + friendly_id: active_ingredient__calendula_oil +- id: 11173 + name: Coconut oil + friendly_id: active_ingredient__coconut_oil +- id: 11174 + name: Jojoba oil + friendly_id: active_ingredient__jojoba_oil +- id: 11175 + name: Lavender oil + friendly_id: active_ingredient__lavender_oil +- id: 11176 + name: Moroccan argan oil + friendly_id: active_ingredient__moroccan_argan_oil +- id: 11177 + name: Sea buckthorn oil + friendly_id: active_ingredient__sea_buckthorn_oil +- id: 11178 + name: Sweet almond oil + friendly_id: active_ingredient__sweet_almond_oil +- id: 11179 + name: Vitamin A + friendly_id: active_ingredient__vitamin_a +- id: 11180 + name: Vitamin E + friendly_id: active_ingredient__vitamin_e +- id: 11181 + name: Aloe vera + friendly_id: active_ingredient__aloe_vera +- id: 11182 + name: Cocoa butter + friendly_id: active_ingredient__cocoa_butter +- id: 11183 + name: Shaker + friendly_id: package_type__shaker +- id: 11184 + name: Other + friendly_id: package_type__other +- id: 11185 + name: Filaggrin technology + friendly_id: active_ingredient__filaggrin_technology +- id: 11186 + name: Zinc coceth sulfate + friendly_id: active_ingredient__zinc_coceth_sulfate +- id: 11187 + name: Charcoal + friendly_id: active_ingredient__charcoal +- id: 11188 + name: Witch hazel + friendly_id: active_ingredient__witch_hazel +- id: 11189 + name: Sachet + friendly_id: package_type__sachet +- id: 11190 + name: Pot + friendly_id: package_type__pot +- id: 11191 + name: Stick + friendly_id: package_type__stick +- id: 11192 + name: Acacia honey + friendly_id: constitutive_ingredients__acacia_honey +- id: 11193 + name: Acerola cherry + friendly_id: constitutive_ingredients__acerola_cherry +- id: 11194 + name: Almond oil + friendly_id: constitutive_ingredients__almond_oil +- id: 11195 + name: Aloe vera + friendly_id: constitutive_ingredients__aloe_vera +- id: 11196 + name: Apricot oil + friendly_id: constitutive_ingredients__apricot_oil +- id: 11197 + name: Avocado oil + friendly_id: constitutive_ingredients__avocado_oil +- id: 11198 + name: Beeswax + friendly_id: constitutive_ingredients__beeswax +- id: 11199 + name: Blueberry seed oil + friendly_id: constitutive_ingredients__blueberry_seed_oil +- id: 11200 + name: Calendula + friendly_id: constitutive_ingredients__calendula +- id: 11201 + name: Castor oil + friendly_id: constitutive_ingredients__castor_oil +- id: 11202 + name: Cherry oil + friendly_id: constitutive_ingredients__cherry_oil +- id: 11203 + name: Cocoa butter + friendly_id: constitutive_ingredients__cocoa_butter +- id: 11204 + name: Coconut oil + friendly_id: constitutive_ingredients__coconut_oil +- id: 11205 + name: Essential oil + friendly_id: constitutive_ingredients__essential_oil +- id: 11206 + name: Eucalyptus + friendly_id: constitutive_ingredients__eucalyptus +- id: 11207 + name: Goji berry extract + friendly_id: constitutive_ingredients__goji_berry_extract +- id: 11208 + name: Green tea + friendly_id: constitutive_ingredients__green_tea +- id: 11209 + name: Hemp oil + friendly_id: constitutive_ingredients__hemp_oil +- id: 11210 + name: Jojoba oil + friendly_id: constitutive_ingredients__jojoba_oil +- id: 11211 + name: Lemon butter + friendly_id: constitutive_ingredients__lemon_butter +- id: 11212 + name: Macadamia oil + friendly_id: constitutive_ingredients__macadamia_oil +- id: 11213 + name: Moringa butter + friendly_id: constitutive_ingredients__moringa_butter +- id: 11214 + name: Olive oil + friendly_id: constitutive_ingredients__olive_oil +- id: 11215 + name: Orange + friendly_id: constitutive_ingredients__orange +- id: 11216 + name: Rose extract + friendly_id: constitutive_ingredients__rose_extract +- id: 11217 + name: Rosehip oil + friendly_id: constitutive_ingredients__rosehip_oil +- id: 11218 + name: Shea butter + friendly_id: constitutive_ingredients__shea_butter +- id: 11219 + name: Other + friendly_id: constitutive_ingredients__other +- id: 11220 + name: Beeswax + friendly_id: active_ingredient__beeswax +- id: 11221 + name: Menthol + friendly_id: active_ingredient__menthol +- id: 11222 + name: Soothing + friendly_id: cosmetic_function__soothing +- id: 11223 + name: Healing + friendly_id: cosmetic_function__healing +- id: 11224 + name: Protecting + friendly_id: cosmetic_function__protecting +- id: 11225 + name: Anti-aging + friendly_id: cosmetic_function__anti_aging +- id: 11226 + name: Brightening + friendly_id: cosmetic_function__brightening +- id: 11227 + name: Hydration + friendly_id: cosmetic_function__hydration +- id: 11228 + name: Repairing + friendly_id: cosmetic_function__repairing +- id: 11229 + name: Travel size + friendly_id: package_type__travel_size +- id: 11230 + name: Cleansing + friendly_id: cosmetic_function__cleansing +- id: 11231 + name: Hydrating + friendly_id: cosmetic_function__hydrating +- id: 11232 + name: Nourishing + friendly_id: cosmetic_function__nourishing +- id: 11233 + name: Refill + friendly_id: package_type__refill +- id: 11234 + name: Moisturizing + friendly_id: cosmetic_function__moisturizing +- id: 11235 + name: Alpha-isomethyl ionone + friendly_id: allergens__alpha_isomethyl_ionone +- id: 11236 + name: Amyl cinnamal (amyl cinnamic aldehyde) + friendly_id: allergens__amyl_cinnamal_amyl_cinnamic_aldehyde +- id: 11237 + name: Amylcinnamyl alcohol + friendly_id: allergens__amylcinnamyl_alcohol +- id: 11238 + name: Anisyl alcohol + friendly_id: allergens__anisyl_alcohol +- id: 11239 + name: Benzyl alcohol + friendly_id: allergens__benzyl_alcohol +- id: 11240 + name: Benzyl benzoate + friendly_id: allergens__benzyl_benzoate +- id: 11241 + name: Benzyl cinnamate + friendly_id: allergens__benzyl_cinnamate +- id: 11242 + name: Benzyl salicylate + friendly_id: allergens__benzyl_salicylate +- id: 11243 + name: Cinnamal + friendly_id: allergens__cinnamal +- id: 11244 + name: Cinnamyl alcohol + friendly_id: allergens__cinnamyl_alcohol +- id: 11245 + name: Citral + friendly_id: allergens__citral +- id: 11246 + name: Citronellol + friendly_id: allergens__citronellol +- id: 11247 + name: Coumarin + friendly_id: allergens__coumarin +- id: 11248 + name: Eugenol + friendly_id: allergens__eugenol +- id: 11249 + name: Evernia furfuracea (treemoss) extract + friendly_id: allergens__evernia_furfuracea_treemoss_extract +- id: 11250 + name: Evernia prunastri (oakmoss) extract + friendly_id: allergens__evernia_prunastri_oakmoss_extract +- id: 11251 + name: Farnesol + friendly_id: allergens__farnesol +- id: 11252 + name: Geraniol + friendly_id: allergens__geraniol +- id: 11253 + name: Hexyl cinnamal + friendly_id: allergens__hexyl_cinnamal +- id: 11254 + name: Hydroxycitronellal + friendly_id: allergens__hydroxycitronellal +- id: 11255 + name: Isoeugenol + friendly_id: allergens__isoeugenol +- id: 11256 + name: Limonene + friendly_id: allergens__limonene +- id: 11257 + name: Linalool + friendly_id: allergens__linalool +- id: 11258 + name: Lyral (hydroxyisohexyl 3-cyclohexene carboxaldehyde) + friendly_id: allergens__lyral_hydroxyisohexyl_3_cyclohexene_carboxaldehyde +- id: 11259 + name: Methyl 2-octynoate (methyl heptin carbonate) + friendly_id: allergens__methyl_2_octynoate_methyl_heptin_carbonate +- id: 11260 + name: Myroxylon pereirae (balsam peru) + friendly_id: allergens__myroxylon_pereirae_balsam_peru +- id: 11261 + name: Other + friendly_id: allergens__other +- id: 11262 + name: Wipes + friendly_id: dispenser_type__wipes +- id: 11263 + name: Mosquitoes + friendly_id: bug_type__mosquitoes +- id: 11264 + name: Ticks + friendly_id: bug_type__ticks +- id: 11265 + name: Face + friendly_id: body_area__face +- id: 11266 + name: Foaming lotion + friendly_id: product_form__foaming_lotion +- id: 11267 + name: Milk + friendly_id: product_form__milk +- id: 11268 + name: Mousse + friendly_id: product_form__mousse +- id: 11269 + name: Towelette + friendly_id: product_form__towelette +- id: 11270 + name: Gradual + friendly_id: tan_type__gradual +- id: 11271 + name: Instant + friendly_id: tan_type__instant +- id: 11272 + name: Dark + friendly_id: tan_type__dark +- id: 11273 + name: Medium + friendly_id: tan_type__medium +- id: 11274 + name: Exfoliating + friendly_id: cosmetic_function__exfoliating +- id: 11275 + name: Pore minimizing + friendly_id: cosmetic_function__pore_minimizing +- id: 11276 + name: Pads + friendly_id: product_form__pads +- id: 11277 + name: Hands + friendly_id: body_area__hands +- id: 11278 + name: Cosmos organic + friendly_id: product_certifications_standards__cosmos_organic +- id: 11279 + name: Beeswax + friendly_id: candle_material__beeswax +- id: 11280 + name: Paraffin wax + friendly_id: candle_material__paraffin_wax +- id: 11281 + name: Soy wax + friendly_id: candle_material__soy_wax +- id: 11282 + name: Dropper + friendly_id: ear_car_application_method__dropper +- id: 11283 + name: Nozzle + friendly_id: ear_car_application_method__nozzle +- id: 11284 + name: Ear cleaning + friendly_id: treatment_objective__ear_cleaning +- id: 11285 + name: Earwax removal + friendly_id: treatment_objective__earwax_removal +- id: 11286 + name: Ear infection relief + friendly_id: treatment_objective__ear_infection_relief +- id: 11287 + name: Stationary + friendly_id: portability__stationary +- id: 11288 + name: Swimming + friendly_id: earplug_use__swimming +- id: 11289 + name: Sleeping + friendly_id: earplug_use__sleeping +- id: 11290 + name: Shooting + friendly_id: earplug_use__shooting +- id: 11291 + name: Constipation relief + friendly_id: treatment_objective__constipation_relief +- id: 11292 + name: Bowel cleansing + friendly_id: treatment_objective__bowel_cleansing +- id: 11293 + name: Preparation for a medical procedure + friendly_id: treatment_objective__preparation_for_a_medical_procedure +- id: 11294 + name: Vaginal pH balancing + friendly_id: treatment_objective__vaginal_ph_balancing +- id: 11295 + name: Relieving irritation + friendly_id: treatment_objective__relieving_irritation +- id: 11296 + name: Hydration + friendly_id: treatment_objective__hydration +- id: 11297 + name: Regular + friendly_id: absorbency_level__regular +- id: 11298 + name: Bell + friendly_id: menstrual_cup_shape__bell +- id: 11299 + name: V-shaped + friendly_id: menstrual_cup_shape__v_shaped +- id: 11300 + name: Other + friendly_id: menstrual_cup_shape__other +- id: 11301 + name: Cardboard + friendly_id: applicator_material__cardboard +- id: 11302 + name: Cotton + friendly_id: applicator_material__cotton +- id: 11303 + name: Plastic + friendly_id: applicator_material__plastic +- id: 11304 + name: Synthetic + friendly_id: applicator_material__synthetic +- id: 11305 + name: Heels + friendly_id: body_area__heels +- id: 11306 + name: Soles + friendly_id: body_area__soles +- id: 11307 + name: Toes + friendly_id: body_area__toes +- id: 11308 + name: Comfort + friendly_id: treatment_objective__comfort +- id: 11309 + name: Pain relief + friendly_id: treatment_objective__pain_relief +- id: 11310 + name: Support + friendly_id: treatment_objective__support +- id: 11311 + name: All hair types + friendly_id: suitable_for_hair_type__all_hair_types +- id: 11312 + name: Bleached + friendly_id: suitable_for_hair_type__bleached +- id: 11313 + name: Blonde + friendly_id: suitable_for_hair_type__blonde +- id: 11314 + name: Brittle + friendly_id: suitable_for_hair_type__brittle +- id: 11315 + name: Brunette + friendly_id: suitable_for_hair_type__brunette +- id: 11316 + name: Colored + friendly_id: suitable_for_hair_type__colored +- id: 11317 + name: Combination + friendly_id: suitable_for_hair_type__combination +- id: 11318 + name: Curly + friendly_id: suitable_for_hair_type__curly +- id: 11319 + name: Damaged + friendly_id: suitable_for_hair_type__damaged +- id: 11320 + name: Demanding + friendly_id: suitable_for_hair_type__demanding +- id: 11321 + name: Dry + friendly_id: suitable_for_hair_type__dry +- id: 11322 + name: Dull + friendly_id: suitable_for_hair_type__dull +- id: 11323 + name: Dyed + friendly_id: suitable_for_hair_type__dyed +- id: 11324 + name: Fine + friendly_id: suitable_for_hair_type__fine +- id: 11325 + name: Frizzy + friendly_id: suitable_for_hair_type__frizzy +- id: 11326 + name: Gray + friendly_id: suitable_for_hair_type__gray +- id: 11327 + name: Highlighted + friendly_id: suitable_for_hair_type__highlighted +- id: 11328 + name: Lifeless + friendly_id: suitable_for_hair_type__lifeless +- id: 11329 + name: Loss + friendly_id: suitable_for_hair_type__loss +- id: 11330 + name: Normal + friendly_id: suitable_for_hair_type__normal +- id: 11331 + name: Oily + friendly_id: suitable_for_hair_type__oily +- id: 11332 + name: Sensitive + friendly_id: suitable_for_hair_type__sensitive +- id: 11333 + name: Split + friendly_id: suitable_for_hair_type__split +- id: 11334 + name: Straight + friendly_id: suitable_for_hair_type__straight +- id: 11335 + name: Thick + friendly_id: suitable_for_hair_type__thick +- id: 11336 + name: Thin + friendly_id: suitable_for_hair_type__thin +- id: 11337 + name: Treated + friendly_id: suitable_for_hair_type__treated +- id: 11338 + name: Unruly + friendly_id: suitable_for_hair_type__unruly +- id: 11339 + name: Weakened + friendly_id: suitable_for_hair_type__weakened +- id: 11340 + name: Auburn + friendly_id: compatible_hair_color__auburn +- id: 11341 + name: Black + friendly_id: compatible_hair_color__black +- id: 11342 + name: Blonde + friendly_id: compatible_hair_color__blonde +- id: 11343 + name: Blue + friendly_id: compatible_hair_color__blue +- id: 11344 + name: Brown + friendly_id: compatible_hair_color__brown +- id: 11345 + name: Burgundy + friendly_id: compatible_hair_color__burgundy +- id: 11346 + name: Cinnamon + friendly_id: compatible_hair_color__cinnamon +- id: 11347 + name: Dark + friendly_id: compatible_hair_color__dark +- id: 11348 + name: Dark blonde + friendly_id: compatible_hair_color__dark_blonde +- id: 11349 + name: Fair + friendly_id: compatible_hair_color__fair +- id: 11350 + name: Gray + friendly_id: compatible_hair_color__gray +- id: 11351 + name: Green + friendly_id: compatible_hair_color__green +- id: 11352 + name: Lilac + friendly_id: compatible_hair_color__lilac +- id: 11353 + name: Mahogany + friendly_id: compatible_hair_color__mahogany +- id: 11354 + name: Orange + friendly_id: compatible_hair_color__orange +- id: 11355 + name: Pink + friendly_id: compatible_hair_color__pink +- id: 11356 + name: Platinum + friendly_id: compatible_hair_color__platinum +- id: 11357 + name: Purple + friendly_id: compatible_hair_color__purple +- id: 11358 + name: Red + friendly_id: compatible_hair_color__red +- id: 11359 + name: Silver + friendly_id: compatible_hair_color__silver +- id: 11360 + name: Turquoise + friendly_id: compatible_hair_color__turquoise +- id: 11361 + name: Violet + friendly_id: compatible_hair_color__violet +- id: 11362 + name: White + friendly_id: compatible_hair_color__white +- id: 11363 + name: Other + friendly_id: compatible_hair_color__other +- id: 11364 + name: Alopecia areata + friendly_id: hair_loss_type__alopecia_areata +- id: 11365 + name: Male pattern baldness + friendly_id: hair_loss_type__male_pattern_baldness +- id: 11366 + name: Telogen effluvium + friendly_id: hair_loss_type__telogen_effluvium +- id: 11367 + name: Topical + friendly_id: treatment_type__topical +- id: 11368 + name: Oral + friendly_id: treatment_type__oral +- id: 11369 + name: Laser + friendly_id: treatment_type__laser +- id: 11370 + name: Paste + friendly_id: product_form__paste +- id: 11371 + name: Matte + friendly_id: hair_care_finish__matte +- id: 11372 + name: Shiny + friendly_id: hair_care_finish__shiny +- id: 11373 + name: Glossy + friendly_id: hair_care_finish__glossy +- id: 11374 + name: Light + friendly_id: hold_level__light +- id: 11375 + name: Medium + friendly_id: hold_level__medium +- id: 11376 + name: Strong + friendly_id: hold_level__strong +- id: 11377 + name: Steam + friendly_id: hair_care_technology__steam +- id: 11378 + name: Warm + friendly_id: hair_care_technology__warm +- id: 11379 + name: Ceramic + friendly_id: barrel_material__ceramic +- id: 11380 + name: Chrome + friendly_id: barrel_material__chrome +- id: 11381 + name: Gold + friendly_id: barrel_material__gold +- id: 11382 + name: Titanium + friendly_id: barrel_material__titanium +- id: 11383 + name: Tourmaline + friendly_id: barrel_material__tourmaline +- id: 11384 + name: Low + friendly_id: heat_settings__low +- id: 11385 + name: Medium + friendly_id: heat_settings__medium +- id: 11386 + name: High + friendly_id: heat_settings__high +- id: 11387 + name: Flexi rods + friendly_id: curler_type__flexi_rods +- id: 11388 + name: Hot rollers + friendly_id: curler_type__hot_rollers +- id: 11389 + name: Ceramic + friendly_id: plate_type__ceramic +- id: 11390 + name: Titanium + friendly_id: plate_type__titanium +- id: 11391 + name: Tourmaline + friendly_id: plate_type__tourmaline +- id: 11392 + name: All-natural ingredients + friendly_id: product_certifications_standards__all_natural_ingredients +- id: 11393 + name: EU organic + friendly_id: product_certifications_standards__eu_organic +- id: 11394 + name: No artificial fragrance + friendly_id: product_certifications_standards__no_artificial_fragrance +- id: 11395 + name: Non-GMO project verified + friendly_id: product_certifications_standards__non_gmo_project_verified +- id: 11396 + name: Anti hair loss + friendly_id: conditioner_effect__anti_hair_loss +- id: 11397 + name: Anti-dandruff + friendly_id: conditioner_effect__anti_dandruff +- id: 11398 + name: Anti-frizz + friendly_id: conditioner_effect__anti_frizz +- id: 11399 + name: Cleansing + friendly_id: conditioner_effect__cleansing +- id: 11400 + name: Color protection + friendly_id: conditioner_effect__color_protection +- id: 11401 + name: Densifying + friendly_id: conditioner_effect__densifying +- id: 11402 + name: Detangling + friendly_id: conditioner_effect__detangling +- id: 11403 + name: Moisturizing + friendly_id: conditioner_effect__moisturizing +- id: 11404 + name: Nourishing + friendly_id: conditioner_effect__nourishing +- id: 11405 + name: Protection + friendly_id: conditioner_effect__protection +- id: 11406 + name: Purifying + friendly_id: conditioner_effect__purifying +- id: 11407 + name: Regenerating + friendly_id: conditioner_effect__regenerating +- id: 11408 + name: Repair + friendly_id: conditioner_effect__repair +- id: 11409 + name: Revitalizing + friendly_id: conditioner_effect__revitalizing +- id: 11410 + name: Shine + friendly_id: conditioner_effect__shine +- id: 11411 + name: Smoothing + friendly_id: conditioner_effect__smoothing +- id: 11412 + name: Strengthening + friendly_id: conditioner_effect__strengthening +- id: 11413 + name: Thickening + friendly_id: conditioner_effect__thickening +- id: 11414 + name: Volumizing + friendly_id: conditioner_effect__volumizing +- id: 11415 + name: Other + friendly_id: conditioner_effect__other +- id: 11416 + name: 2 in 1 hair & body + friendly_id: shampoo_type__2_in_1_hair_body +- id: 11417 + name: 2 in 1 shampoo & conditioner + friendly_id: shampoo_type__2_in_1_shampoo_conditioner +- id: 11418 + name: 3 in 1 shampoo & conditioner & body + friendly_id: shampoo_type__3_in_1_shampoo_conditioner_body +- id: 11419 + name: Dry + friendly_id: shampoo_type__dry +- id: 11420 + name: Powder + friendly_id: shampoo_type__powder +- id: 11421 + name: Solid + friendly_id: shampoo_type__solid +- id: 11422 + name: With heat + friendly_id: heat_function__with_heat +- id: 11423 + name: Without heat + friendly_id: heat_function__without_heat +- id: 11424 + name: Deep tissue + friendly_id: massage_technique__deep_tissue +- id: 11425 + name: Curved + friendly_id: claw_design__curved +- id: 11426 + name: Pointed + friendly_id: claw_design__pointed +- id: 11427 + name: Rounded + friendly_id: claw_design__rounded +- id: 11428 + name: Rectangular + friendly_id: eye_pillow_shape__rectangular +- id: 11429 + name: Contoured + friendly_id: eye_pillow_shape__contoured +- id: 11430 + name: Other + friendly_id: eye_pillow_shape__other +- id: 11431 + name: Full recline + friendly_id: reclining_function__full_recline +- id: 11432 + name: Zero gravity + friendly_id: reclining_function__zero_gravity +- id: 11433 + name: Almond + friendly_id: base_oil__almond +- id: 11434 + name: Apricot kernel + friendly_id: base_oil__apricot_kernel +- id: 11435 + name: Argan + friendly_id: base_oil__argan +- id: 11436 + name: Avocado + friendly_id: base_oil__avocado +- id: 11437 + name: Coconut + friendly_id: base_oil__coconut +- id: 11438 + name: Grapeseed + friendly_id: base_oil__grapeseed +- id: 11439 + name: Jojoba + friendly_id: base_oil__jojoba +- id: 11440 + name: Olive + friendly_id: base_oil__olive +- id: 11441 + name: Sesame + friendly_id: base_oil__sesame +- id: 11442 + name: Sunflower + friendly_id: base_oil__sunflower +- id: 11443 + name: Heavyweight + friendly_id: texture__heavyweight +- id: 11444 + name: Petrified wood + friendly_id: stone_name__petrified_wood +- id: 11445 + name: Shiva lingam + friendly_id: stone_name__shiva_lingam +- id: 11446 + name: Rose quartz + friendly_id: stone_name__rose_quartz +- id: 11447 + name: Fluorite + friendly_id: stone_name__fluorite +- id: 11448 + name: Lapis lazuli + friendly_id: stone_name__lapis_lazuli +- id: 11449 + name: Hematite + friendly_id: stone_name__hematite +- id: 11450 + name: Amethyst + friendly_id: stone_name__amethyst +- id: 11451 + name: Turquoise + friendly_id: stone_name__turquoise +- id: 11452 + name: Kyanite + friendly_id: stone_name__kyanite +- id: 11453 + name: Obsidian + friendly_id: stone_name__obsidian +- id: 11454 + name: Citrine + friendly_id: stone_name__citrine +- id: 11455 + name: Pendulum + friendly_id: stone_name__pendulum +- id: 11456 + name: Jasper + friendly_id: stone_name__jasper +- id: 11457 + name: Aventurine + friendly_id: stone_name__aventurine +- id: 11458 + name: Sodalite + friendly_id: stone_name__sodalite +- id: 11459 + name: Basalt + friendly_id: stone_material__basalt +- id: 11460 + name: Himalayan salt stone + friendly_id: stone_material__himalayan_salt_stone +- id: 11461 + name: Jade + friendly_id: stone_material__jade +- id: 11462 + name: Marble + friendly_id: stone_material__marble +- id: 11463 + name: Cold stone + friendly_id: stone_type__cold_stone +- id: 11464 + name: Hot stone + friendly_id: stone_type__hot_stone +- id: 11465 + name: Smooth + friendly_id: massage_stone_texture__smooth +- id: 11466 + name: Rough + friendly_id: massage_stone_texture__rough +- id: 11467 + name: Full body + friendly_id: body_area__full_body +- id: 11468 + name: Hamstrings + friendly_id: body_area__hamstrings +- id: 11469 + name: Head + friendly_id: body_area__head +- id: 11470 + name: Alcohol-free + friendly_id: breath_sprays_certifications__alcohol_free +- id: 11471 + name: Artificial flavor free + friendly_id: breath_sprays_certifications__artificial_flavor_free +- id: 11472 + name: Artificial preservatives free + friendly_id: breath_sprays_certifications__artificial_preservatives_free +- id: 11473 + name: Cruelty-free + friendly_id: breath_sprays_certifications__cruelty_free +- id: 11474 + name: Dye-free + friendly_id: breath_sprays_certifications__dye_free +- id: 11475 + name: EU organic + friendly_id: breath_sprays_certifications__eu_organic +- id: 11476 + name: EWG verified + friendly_id: breath_sprays_certifications__ewg_verified +- id: 11477 + name: Fair trade + friendly_id: breath_sprays_certifications__fair_trade +- id: 11478 + name: Fluoride-free + friendly_id: breath_sprays_certifications__fluoride_free +- id: 11479 + name: Gluten-free + friendly_id: breath_sprays_certifications__gluten_free +- id: 11480 + name: Halal + friendly_id: breath_sprays_certifications__halal +- id: 11481 + name: Kosher + friendly_id: breath_sprays_certifications__kosher +- id: 11482 + name: Natural ingredients + friendly_id: breath_sprays_certifications__natural_ingredients +- id: 11483 + name: Non-GMO + friendly_id: breath_sprays_certifications__non_gmo +- id: 11484 + name: Organic ingredients + friendly_id: breath_sprays_certifications__organic_ingredients +- id: 11485 + name: PETA approved + friendly_id: breath_sprays_certifications__peta_approved +- id: 11486 + name: Suitable for diabetics + friendly_id: breath_sprays_certifications__suitable_for_diabetics +- id: 11487 + name: USDA organic + friendly_id: breath_sprays_certifications__usda_organic +- id: 11488 + name: Vegan + friendly_id: breath_sprays_certifications__vegan +- id: 11489 + name: Thin + friendly_id: dental_floss_thickness_level__thin +- id: 11490 + name: Regular + friendly_id: dental_floss_thickness_level__regular +- id: 11491 + name: Thick + friendly_id: dental_floss_thickness_level__thick +- id: 11492 + name: ADA accepted + friendly_id: dental_mouthguard_certifications__ada_accepted +- id: 11493 + name: BPA-free + friendly_id: dental_mouthguard_certifications__bpa_free +- id: 11494 + name: CE certified + friendly_id: dental_mouthguard_certifications__ce_certified +- id: 11495 + name: CPSIA compliant + friendly_id: dental_mouthguard_certifications__cpsia_compliant +- id: 11496 + name: FDA approved + friendly_id: dental_mouthguard_certifications__fda_approved +- id: 11497 + name: ISO + friendly_id: dental_mouthguard_certifications__iso +- id: 11498 + name: Latex-free + friendly_id: dental_mouthguard_certifications__latex_free +- id: 11499 + name: Leaching testing passed + friendly_id: dental_mouthguard_certifications__leaching_testing_passed +- id: 11500 + name: Made in a GMP certified facility + friendly_id: dental_mouthguard_certifications__made_in_a_gmp_certified_facility +- id: 11501 + name: Phthalate-free + friendly_id: dental_mouthguard_certifications__phthalate_free +- id: 11502 + name: Standard + friendly_id: nozzle_type__standard +- id: 11503 + name: Orthodontic + friendly_id: nozzle_type__orthodontic +- id: 11504 + name: Periodontal + friendly_id: nozzle_type__periodontal +- id: 11505 + name: Tongue cleaner + friendly_id: nozzle_type__tongue_cleaner +- id: 11506 + name: Pink + friendly_id: denture_base_color__pink +- id: 11507 + name: Natural gum + friendly_id: denture_base_color__natural_gum +- id: 11508 + name: Natural white + friendly_id: denture_teeth_color__natural_white +- id: 11509 + name: Off-white + friendly_id: denture_teeth_color__off_white +- id: 11510 + name: Light yellow + friendly_id: denture_teeth_color__light_yellow +- id: 11511 + name: Ribbed + friendly_id: handle_grip_texture__ribbed +- id: 11512 + name: Smooth + friendly_id: handle_grip_texture__smooth +- id: 11513 + name: Tapered + friendly_id: stimulator_tip_shape__tapered +- id: 11514 + name: Conical + friendly_id: stimulator_tip_shape__conical +- id: 11515 + name: Carbamide + friendly_id: peroxide_content__carbamide +- id: 11516 + name: Hydrogen + friendly_id: peroxide_content__hydrogen +- id: 11517 + name: Peroxide-free + friendly_id: peroxide_content__peroxide_free +- id: 11518 + name: Daily + friendly_id: usage_frequency__daily +- id: 11519 + name: Weekly + friendly_id: usage_frequency__weekly +- id: 11520 + name: Electric toothbrush heads + friendly_id: suitable_for_toothbrush__electric_toothbrush_heads +- id: 11521 + name: Toothbrushes + friendly_id: suitable_for_toothbrush__toothbrushes +- id: 11522 + name: Anti-decay + friendly_id: toothpaste_type__anti_decay +- id: 11523 + name: Anticalculus + friendly_id: toothpaste_type__anticalculus +- id: 11524 + name: Antiplaque + friendly_id: toothpaste_type__antiplaque +- id: 11525 + name: Desensitizing + friendly_id: toothpaste_type__desensitizing +- id: 11526 + name: Whitening + friendly_id: toothpaste_type__whitening +- id: 11527 + name: Flat + friendly_id: toothpick_design__flat +- id: 11528 + name: Round + friendly_id: toothpick_design__round +- id: 11529 + name: Other + friendly_id: toothpick_design__other +- id: 11530 + name: Anal + friendly_id: lubricant_application__anal +- id: 11531 + name: Massage + friendly_id: lubricant_application__massage +- id: 11532 + name: Oral + friendly_id: lubricant_application__oral +- id: 11533 + name: Vaginal + friendly_id: lubricant_application__vaginal +- id: 11534 + name: Oil-based + friendly_id: lubricant_composition__oil_based +- id: 11535 + name: Silicone-based + friendly_id: lubricant_composition__silicone_based +- id: 11536 + name: Water-based + friendly_id: lubricant_composition__water_based +- id: 11537 + name: Hybrid + friendly_id: lubricant_composition__hybrid +- id: 11538 + name: Cream + friendly_id: application_method__cream +- id: 11539 + name: Powder + friendly_id: application_method__powder +- id: 11540 + name: Fine + friendly_id: body_facial_hair_type__fine +- id: 11541 + name: Coarse + friendly_id: body_facial_hair_type__coarse +- id: 11542 + name: Flexible + friendly_id: razor_flexibility__flexible +- id: 11543 + name: Fixed + friendly_id: razor_flexibility__fixed +- id: 11544 + name: Single + friendly_id: razor_head_design__single +- id: 11545 + name: Double + friendly_id: razor_head_design__double +- id: 11546 + name: Triple + friendly_id: razor_head_design__triple +- id: 11547 + name: Wet + friendly_id: usage_conditions__wet +- id: 11548 + name: Dry + friendly_id: usage_conditions__dry +- id: 11549 + name: Bikini line + friendly_id: body_area__bikini_line +- id: 11550 + name: Galvanic + friendly_id: hair_care_technology__galvanic +- id: 11551 + name: Thermolysis + friendly_id: hair_care_technology__thermolysis +- id: 11552 + name: Foam + friendly_id: shaving_cream_formulation__foam +- id: 11553 + name: Gel + friendly_id: shaving_cream_formulation__gel +- id: 11554 + name: Badger hair + friendly_id: brush_type__badger_hair +- id: 11555 + name: Synthetic + friendly_id: brush_type__synthetic +- id: 11556 + name: Safety + friendly_id: razor_type__safety +- id: 11557 + name: Straight + friendly_id: razor_type__straight +- id: 11558 + name: Razor + friendly_id: shaving_kit_components__razor +- id: 11559 + name: Brush + friendly_id: shaving_kit_components__brush +- id: 11560 + name: Stand + friendly_id: shaving_kit_components__stand +- id: 11561 + name: Aluminum sulfate + friendly_id: active_ingredient__aluminum_sulfate +- id: 11562 + name: Potassium alum + friendly_id: active_ingredient__potassium_alum +- id: 11563 + name: Obstructive sleep apnea + friendly_id: treatment_objective__obstructive_sleep_apnea +- id: 11564 + name: Snoring + friendly_id: treatment_objective__snoring +- id: 11565 + name: U-shaped + friendly_id: travel_pillow_shape__u_shaped +- id: 11566 + name: J-shaped + friendly_id: travel_pillow_shape__j_shaped +- id: 11567 + name: Other + friendly_id: travel_pillow_shape__other +- id: 11568 + name: Case + friendly_id: package_type__case +- id: 11569 + name: Hydrogen peroxide-based + friendly_id: solution_type__hydrogen_peroxide_based +- id: 11570 + name: Multi-purpose + friendly_id: solution_type__multi_purpose +- id: 11571 + name: Screw-top + friendly_id: bottle_type__screw_top +- id: 11572 + name: Squeeze + friendly_id: bottle_type__squeeze +- id: 11573 + name: Saline + friendly_id: solution_type__saline +- id: 11574 + name: CR-39 + friendly_id: eyewear_lens_material__cr_39 +- id: 11575 + name: Glass + friendly_id: eyewear_lens_material__glass +- id: 11576 + name: High-index plastic + friendly_id: eyewear_lens_material__high_index_plastic +- id: 11577 + name: Nylon + friendly_id: eyewear_lens_material__nylon +- id: 11578 + name: Plastic + friendly_id: eyewear_lens_material__plastic +- id: 11579 + name: Polycarbonate (PC) + friendly_id: eyewear_lens_material__polycarbonate_pc +- id: 11580 + name: Thermoplastic polyurethane (TPU) + friendly_id: eyewear_lens_material__thermoplastic_polyurethane_tpu +- id: 11581 + name: Trivex + friendly_id: eyewear_lens_material__trivex +- id: 11582 + name: Acetate + friendly_id: eyewear_frame_material__acetate +- id: 11583 + name: Bamboo + friendly_id: eyewear_frame_material__bamboo +- id: 11584 + name: Carbon fiber + friendly_id: eyewear_frame_material__carbon_fiber +- id: 11585 + name: Metal + friendly_id: eyewear_frame_material__metal +- id: 11586 + name: Plastic + friendly_id: eyewear_frame_material__plastic +- id: 11587 + name: Wood + friendly_id: eyewear_frame_material__wood +- id: 11588 + name: Anti-reflective + friendly_id: lens_coating__anti_reflective +- id: 11589 + name: Scratch-resistant + friendly_id: lens_coating__scratch_resistant +- id: 11590 + name: Progressive + friendly_id: lens_type__progressive +- id: 11591 + name: Single vision + friendly_id: lens_type__single_vision +- id: 11592 + name: Full frame + friendly_id: optical_frame_design__full_frame +- id: 11593 + name: Rimless + friendly_id: optical_frame_design__rimless +- id: 11594 + name: Spray + friendly_id: bottle_type__spray +- id: 11595 + name: Spray + friendly_id: solution_type__spray +- id: 11596 + name: Wipes + friendly_id: solution_type__wipes +- id: 11597 + name: Polarized + friendly_id: lens_type__polarized +- id: 11598 + name: Non-polarized + friendly_id: lens_type__non_polarized +- id: 11599 + name: UV400 + friendly_id: uv_protection__uv400 +- id: 11600 + name: Bamboo + friendly_id: rug_mat_material__bamboo +- id: 11601 + name: Coir + friendly_id: rug_mat_material__coir +- id: 11602 + name: Cotton + friendly_id: rug_mat_material__cotton +- id: 11603 + name: Jute + friendly_id: rug_mat_material__jute +- id: 11604 + name: Leather + friendly_id: rug_mat_material__leather +- id: 11605 + name: Microfiber + friendly_id: rug_mat_material__microfiber +- id: 11606 + name: Nylon + friendly_id: rug_mat_material__nylon +- id: 11607 + name: Polycarbonate (PC) + friendly_id: rug_mat_material__polycarbonate_pc +- id: 11608 + name: Polyester + friendly_id: rug_mat_material__polyester +- id: 11609 + name: Polypropylene (PP) + friendly_id: rug_mat_material__polypropylene_pp +- id: 11610 + name: Polyvinyl chloride (PVC) + friendly_id: rug_mat_material__polyvinyl_chloride_pvc +- id: 11611 + name: Rubber + friendly_id: rug_mat_material__rubber +- id: 11612 + name: Seagrass + friendly_id: rug_mat_material__seagrass +- id: 11613 + name: Silk + friendly_id: rug_mat_material__silk +- id: 11614 + name: Sisal + friendly_id: rug_mat_material__sisal +- id: 11615 + name: Wool + friendly_id: rug_mat_material__wool +- id: 11616 + name: Berber + friendly_id: pile_type__berber +- id: 11617 + name: Braided + friendly_id: pile_type__braided +- id: 11618 + name: Cable + friendly_id: pile_type__cable +- id: 11619 + name: Cut + friendly_id: pile_type__cut +- id: 11620 + name: Cut & loop + friendly_id: pile_type__cut_loop +- id: 11621 + name: Flatweave + friendly_id: pile_type__flatweave +- id: 11622 + name: Frieze + friendly_id: pile_type__frieze +- id: 11623 + name: Hand-knotted + friendly_id: pile_type__hand_knotted +- id: 11624 + name: Hand-tufted + friendly_id: pile_type__hand_tufted +- id: 11625 + name: Level loop + friendly_id: pile_type__level_loop +- id: 11626 + name: Loop + friendly_id: pile_type__loop +- id: 11627 + name: Machine made + friendly_id: pile_type__machine_made +- id: 11628 + name: Multi-level loop + friendly_id: pile_type__multi_level_loop +- id: 11629 + name: Plush + friendly_id: pile_type__plush +- id: 11630 + name: Saxony + friendly_id: pile_type__saxony +- id: 11631 + name: Shag + friendly_id: pile_type__shag +- id: 11632 + name: Textured saxony + friendly_id: pile_type__textured_saxony +- id: 11633 + name: Tufted + friendly_id: pile_type__tufted +- id: 11634 + name: Velvet + friendly_id: pile_type__velvet +- id: 11635 + name: Round + friendly_id: mat_rug_shape__round +- id: 11636 + name: Oval + friendly_id: mat_rug_shape__oval +- id: 11637 + name: Rectangular + friendly_id: mat_rug_shape__rectangular +- id: 11638 + name: Runner + friendly_id: mat_rug_shape__runner +- id: 11639 + name: Semicircular + friendly_id: mat_rug_shape__semicircular +- id: 11640 + name: Square + friendly_id: mat_rug_shape__square +- id: 11641 + name: Other + friendly_id: mat_rug_shape__other +- id: 11642 + name: Grommet + friendly_id: shower_curtain_mounting_type__grommet +- id: 11643 + name: Ring + friendly_id: shower_curtain_mounting_type__ring +- id: 11644 + name: Hidden tab + friendly_id: shower_curtain_mounting_type__hidden_tab +- id: 11645 + name: Rod pocket + friendly_id: shower_curtain_mounting_type__rod_pocket +- id: 11646 + name: Hanging hook + friendly_id: shower_curtain_mounting_type__hanging_hook +- id: 11647 + name: Other + friendly_id: shower_curtain_mounting_type__other +- id: 11648 + name: Straight + friendly_id: rod_shape__straight +- id: 11649 + name: Curved + friendly_id: rod_shape__curved +- id: 11650 + name: L-shaped + friendly_id: rod_shape__l_shaped +- id: 11651 + name: U-shaped + friendly_id: rod_shape__u_shaped +- id: 11652 + name: Other + friendly_id: rod_shape__other +- id: 11653 + name: Dome + friendly_id: camera_shape__dome +- id: 11654 + name: Bullet + friendly_id: camera_shape__bullet +- id: 11655 + name: Box + friendly_id: camera_shape__box +- id: 11656 + name: Other + friendly_id: camera_shape__other +- id: 11657 + name: Lever + friendly_id: control_type__lever +- id: 11658 + name: Not available + friendly_id: control_type__not_available +- id: 11659 + name: Rotary + friendly_id: control_type__rotary +- id: 11660 + name: Scrollbar + friendly_id: control_type__scrollbar +- id: 11661 + name: Slider + friendly_id: control_type__slider +- id: 11662 + name: Tilt + friendly_id: control_type__tilt +- id: 11663 + name: Touch + friendly_id: control_type__touch +- id: 11664 + name: Wireless + friendly_id: control_type__wireless +- id: 11665 + name: Infrared + friendly_id: motion_sensor_type__infrared +- id: 11666 + name: Laser + friendly_id: motion_sensor_type__laser +- id: 11667 + name: Microwave + friendly_id: motion_sensor_type__microwave +- id: 11668 + name: Photocell + friendly_id: motion_sensor_type__photocell +- id: 11669 + name: PIR + friendly_id: motion_sensor_type__pir +- id: 11670 + name: Ultrasonic + friendly_id: motion_sensor_type__ultrasonic +- id: 11671 + name: Hanger + friendly_id: mounting_hardware__hanger +- id: 11672 + name: Hook + friendly_id: mounting_hardware__hook +- id: 11673 + name: Armband + friendly_id: monitor_mounting_type__armband +- id: 11674 + name: Free-standing + friendly_id: monitor_mounting_type__free_standing +- id: 11675 + name: Wall + friendly_id: monitor_mounting_type__wall +- id: 11676 + name: Other + friendly_id: monitor_mounting_type__other +- id: 11677 + name: Code + friendly_id: lock_type__code +- id: 11678 + name: Electronic + friendly_id: lock_type__electronic +- id: 11679 + name: Fingerprint reader + friendly_id: lock_type__fingerprint_reader +- id: 11680 + name: Magnetic + friendly_id: lock_type__magnetic +- id: 11681 + name: Alphanumeric + friendly_id: keypad_style__alphanumeric +- id: 11682 + name: Biometric + friendly_id: keypad_style__biometric +- id: 11683 + name: Digital + friendly_id: keypad_style__digital +- id: 11684 + name: Mechanical + friendly_id: keypad_style__mechanical +- id: 11685 + name: Numeric + friendly_id: keypad_style__numeric +- id: 11686 + name: Touch-sensitive + friendly_id: keypad_style__touch_sensitive +- id: 11687 + name: High + friendly_id: rfid_frequency__high +- id: 11688 + name: Low + friendly_id: rfid_frequency__low +- id: 11689 + name: Ultra-high + friendly_id: rfid_frequency__ultra_high +- id: 11690 + name: Arecidae + friendly_id: plant_class__arecidae +- id: 11691 + name: Apiales + friendly_id: plant_class__apiales +- id: 11692 + name: Aquifoliaceae + friendly_id: plant_class__aquifoliaceae +- id: 11693 + name: Asparagales + friendly_id: plant_class__asparagales +- id: 11694 + name: Asterales + friendly_id: plant_class__asterales +- id: 11695 + name: Brassicales + friendly_id: plant_class__brassicales +- id: 11696 + name: Bryophyta + friendly_id: plant_class__bryophyta +- id: 11697 + name: Caryophyllales + friendly_id: plant_class__caryophyllales +- id: 11698 + name: Charophyceae + friendly_id: plant_class__charophyceae +- id: 11699 + name: Chlorophyceae + friendly_id: plant_class__chlorophyceae +- id: 11700 + name: Commelinidae + friendly_id: plant_class__commelinidae +- id: 11701 + name: Coniferopsida + friendly_id: plant_class__coniferopsida +- id: 11702 + name: Cornales + friendly_id: plant_class__cornales +- id: 11703 + name: Cucurbitales + friendly_id: plant_class__cucurbitales +- id: 11704 + name: Cycadopsida + friendly_id: plant_class__cycadopsida +- id: 11705 + name: Dilleniidae + friendly_id: plant_class__dilleniidae +- id: 11706 + name: Dioscoreales + friendly_id: plant_class__dioscoreales +- id: 11707 + name: Ericales + friendly_id: plant_class__ericales +- id: 11708 + name: Equisetopsida + friendly_id: plant_class__equisetopsida +- id: 11709 + name: Fabidae + friendly_id: plant_class__fabidae +- id: 11710 + name: Fagales + friendly_id: plant_class__fagales +- id: 11711 + name: Geraniales + friendly_id: plant_class__geraniales +- id: 11712 + name: Ginkgopsida + friendly_id: plant_class__ginkgopsida +- id: 11713 + name: Gnetidae + friendly_id: plant_class__gnetidae +- id: 11714 + name: Gnetopsida + friendly_id: plant_class__gnetopsida +- id: 11715 + name: Lamiales + friendly_id: plant_class__lamiales +- id: 11716 + name: Liliopsida + friendly_id: plant_class__liliopsida +- id: 11717 + name: Lycopodiopsida + friendly_id: plant_class__lycopodiopsida +- id: 11718 + name: Magnoliidae + friendly_id: plant_class__magnoliidae +- id: 11719 + name: Magnoliopsida + friendly_id: plant_class__magnoliopsida +- id: 11720 + name: Malpighiales + friendly_id: plant_class__malpighiales +- id: 11721 + name: Marchantiophyta + friendly_id: plant_class__marchantiophyta +- id: 11722 + name: Myrtales + friendly_id: plant_class__myrtales +- id: 11723 + name: Ophioglossopsida + friendly_id: plant_class__ophioglossopsida +- id: 11724 + name: Oxalidales + friendly_id: plant_class__oxalidales +- id: 11725 + name: Pinopsida + friendly_id: plant_class__pinopsida +- id: 11726 + name: Piperales + friendly_id: plant_class__piperales +- id: 11727 + name: Poales + friendly_id: plant_class__poales +- id: 11728 + name: Polypodiopsida + friendly_id: plant_class__polypodiopsida +- id: 11729 + name: Psilotopsida + friendly_id: plant_class__psilotopsida +- id: 11730 + name: Ranunculales + friendly_id: plant_class__ranunculales +- id: 11731 + name: Rosales + friendly_id: plant_class__rosales +- id: 11732 + name: Rosidae + friendly_id: plant_class__rosidae +- id: 11733 + name: Santalales + friendly_id: plant_class__santalales +- id: 11734 + name: Sapindales + friendly_id: plant_class__sapindales +- id: 11735 + name: Saxifragales + friendly_id: plant_class__saxifragales +- id: 11736 + name: Solanales + friendly_id: plant_class__solanales +- id: 11737 + name: Vitales + friendly_id: plant_class__vitales +- id: 11738 + name: Zingiberales + friendly_id: plant_class__zingiberales +- id: 11739 + name: Other + friendly_id: plant_class__other +- id: 11740 + name: Aeonium + friendly_id: plant_name__aeonium +- id: 11741 + name: Allium + friendly_id: plant_name__allium +- id: 11742 + name: Alocasia + friendly_id: plant_name__alocasia +- id: 11743 + name: Aloe vera + friendly_id: plant_name__aloe_vera +- id: 11744 + name: Amaryllis + friendly_id: plant_name__amaryllis +- id: 11745 + name: Anthurium + friendly_id: plant_name__anthurium +- id: 11746 + name: Aralia + friendly_id: plant_name__aralia +- id: 11747 + name: Bamboo + friendly_id: plant_name__bamboo +- id: 11748 + name: Bonsai + friendly_id: plant_name__bonsai +- id: 11749 + name: Bougainvillea + friendly_id: plant_name__bougainvillea +- id: 11750 + name: Boxwood + friendly_id: plant_name__boxwood +- id: 11751 + name: Cactus + friendly_id: plant_name__cactus +- id: 11752 + name: Calathea + friendly_id: plant_name__calathea +- id: 11753 + name: Cherry + friendly_id: plant_name__cherry +- id: 11754 + name: Chrysanthemum + friendly_id: plant_name__chrysanthemum +- id: 11755 + name: Cotton + friendly_id: plant_name__cotton +- id: 11756 + name: Dahlia + friendly_id: plant_name__dahlia +- id: 11757 + name: Echeveria + friendly_id: plant_name__echeveria +- id: 11758 + name: Edelweiss + friendly_id: plant_name__edelweiss +- id: 11759 + name: Eucalyptus + friendly_id: plant_name__eucalyptus +- id: 11760 + name: Ficus + friendly_id: plant_name__ficus +- id: 11761 + name: Fir + friendly_id: plant_name__fir +- id: 11762 + name: Galanthus + friendly_id: plant_name__galanthus +- id: 11763 + name: Grass + friendly_id: plant_name__grass +- id: 11764 + name: Hydrangea + friendly_id: plant_name__hydrangea +- id: 11765 + name: Ivy + friendly_id: plant_name__ivy +- id: 11766 + name: Magnolia + friendly_id: plant_name__magnolia +- id: 11767 + name: Miscanthus sinensis + friendly_id: plant_name__miscanthus_sinensis +- id: 11768 + name: Monstera + friendly_id: plant_name__monstera +- id: 11769 + name: Olive + friendly_id: plant_name__olive +- id: 11770 + name: Orchid + friendly_id: plant_name__orchid +- id: 11771 + name: Palm + friendly_id: plant_name__palm +- id: 11772 + name: Pampas grass + friendly_id: plant_name__pampas_grass +- id: 11773 + name: Papyrus + friendly_id: plant_name__papyrus +- id: 11774 + name: Peony + friendly_id: plant_name__peony +- id: 11775 + name: Phalaenopsis + friendly_id: plant_name__phalaenopsis +- id: 11776 + name: Philodendron + friendly_id: plant_name__philodendron +- id: 11777 + name: Pine + friendly_id: plant_name__pine +- id: 11778 + name: Poinsettia + friendly_id: plant_name__poinsettia +- id: 11779 + name: Protea + friendly_id: plant_name__protea +- id: 11780 + name: Ranunculus + friendly_id: plant_name__ranunculus +- id: 11781 + name: Rose + friendly_id: plant_name__rose +- id: 11782 + name: Sansevieria + friendly_id: plant_name__sansevieria +- id: 11783 + name: Water lily + friendly_id: plant_name__water_lily +- id: 11784 + name: Wildflower + friendly_id: plant_name__wildflower +- id: 11785 + name: Willow + friendly_id: plant_name__willow +- id: 11786 + name: Zamioculcas + friendly_id: plant_name__zamioculcas +- id: 11787 + name: Other + friendly_id: plant_name__other +- id: 11788 + name: Acrylic + friendly_id: frame__acrylic +- id: 11789 + name: Braided + friendly_id: frame__braided +- id: 11790 + name: Canvas + friendly_id: frame__canvas +- id: 11791 + name: Clip + friendly_id: frame__clip +- id: 11792 + name: Floater + friendly_id: frame__floater +- id: 11793 + name: Framed + friendly_id: frame__framed +- id: 11794 + name: Gallery wrapped + friendly_id: frame__gallery_wrapped +- id: 11795 + name: Matted + friendly_id: frame__matted +- id: 11796 + name: Modern + friendly_id: frame__modern +- id: 11797 + name: Ornate + friendly_id: frame__ornate +- id: 11798 + name: Poster + friendly_id: frame__poster +- id: 11799 + name: Rustic + friendly_id: frame__rustic +- id: 11800 + name: Shadow box + friendly_id: frame__shadow_box +- id: 11801 + name: Unframed + friendly_id: frame__unframed +- id: 11802 + name: Aluminum + friendly_id: artwork_frame_material__aluminum +- id: 11803 + name: Composite + friendly_id: artwork_frame_material__composite +- id: 11804 + name: Gold + friendly_id: artwork_frame_material__gold +- id: 11805 + name: Gold-plated + friendly_id: artwork_frame_material__gold_plated +- id: 11806 + name: Metal + friendly_id: artwork_frame_material__metal +- id: 11807 + name: Plastic + friendly_id: artwork_frame_material__plastic +- id: 11808 + name: Silver + friendly_id: artwork_frame_material__silver +- id: 11809 + name: Silver-plated + friendly_id: artwork_frame_material__silver_plated +- id: 11810 + name: Wood + friendly_id: artwork_frame_material__wood +- id: 11811 + name: Adjustable + friendly_id: filler_support__adjustable +- id: 11812 + name: Buckwheat + friendly_id: filler_support__buckwheat +- id: 11813 + name: Down + friendly_id: filler_support__down +- id: 11814 + name: Extra firm + friendly_id: filler_support__extra_firm +- id: 11815 + name: Firm + friendly_id: filler_support__firm +- id: 11816 + name: Latex + friendly_id: filler_support__latex +- id: 11817 + name: Medium + friendly_id: filler_support__medium +- id: 11818 + name: Memory foam + friendly_id: filler_support__memory_foam +- id: 11819 + name: Microbead + friendly_id: filler_support__microbead +- id: 11820 + name: Mid-plush + friendly_id: filler_support__mid_plush +- id: 11821 + name: Plush + friendly_id: filler_support__plush +- id: 11822 + name: Soft + friendly_id: filler_support__soft +- id: 11823 + name: Bench + friendly_id: suitable_for_chair_type__bench +- id: 11824 + name: Camping + friendly_id: suitable_for_chair_type__camping +- id: 11825 + name: Sofa + friendly_id: suitable_for_chair_type__sofa +- id: 11826 + name: Spa + friendly_id: suitable_for_chair_type__spa +- id: 11827 + name: Stool + friendly_id: suitable_for_chair_type__stool +- id: 11828 + name: Universal + friendly_id: suitable_for_chair_type__universal +- id: 11829 + name: Cork + friendly_id: mat_base_material__cork +- id: 11830 + name: Elastomer + friendly_id: mat_base_material__elastomer +- id: 11831 + name: Ethylene vinyl acetate (EVA) + friendly_id: mat_base_material__ethylene_vinyl_acetate_eva +- id: 11832 + name: Jute + friendly_id: mat_base_material__jute +- id: 11833 + name: Latex + friendly_id: mat_base_material__latex +- id: 11834 + name: Memory foam + friendly_id: mat_base_material__memory_foam +- id: 11835 + name: Nylon + friendly_id: mat_base_material__nylon +- id: 11836 + name: Polyethylene (PE) + friendly_id: mat_base_material__polyethylene_pe +- id: 11837 + name: Polyvinyl chloride (PVC) + friendly_id: mat_base_material__polyvinyl_chloride_pvc +- id: 11838 + name: Reed + friendly_id: mat_base_material__reed +- id: 11839 + name: Rubber + friendly_id: mat_base_material__rubber +- id: 11840 + name: Spandex + friendly_id: mat_base_material__spandex +- id: 11841 + name: Synthetic rubber + friendly_id: mat_base_material__synthetic_rubber +- id: 11842 + name: Thermoplastic elastomer (TPE) + friendly_id: mat_base_material__thermoplastic_elastomer_tpe +- id: 11843 + name: Vinyl + friendly_id: mat_base_material__vinyl +- id: 11844 + name: Low + friendly_id: pile_type__low +- id: 11845 + name: Acorn + friendly_id: finial_shape__acorn +- id: 11846 + name: Ball + friendly_id: finial_shape__ball +- id: 11847 + name: Spear + friendly_id: finial_shape__spear +- id: 11848 + name: Other + friendly_id: finial_shape__other +- id: 11849 + name: Rectangular + friendly_id: flag_shape__rectangular +- id: 11850 + name: Triangular + friendly_id: flag_shape__triangular +- id: 11851 + name: Pennant + friendly_id: flag_shape__pennant +- id: 11852 + name: Teardrop + friendly_id: flag_shape__teardrop +- id: 11853 + name: Other + friendly_id: flag_shape__other +- id: 11854 + name: Round + friendly_id: candle_shape__round +- id: 11855 + name: Cylindrical + friendly_id: candle_shape__cylindrical +- id: 11856 + name: Square + friendly_id: candle_shape__square +- id: 11857 + name: Egg + friendly_id: candle_shape__egg +- id: 11858 + name: Ellipse + friendly_id: candle_shape__ellipse +- id: 11859 + name: Other + friendly_id: candle_shape__other +- id: 11860 + name: Aluminum + friendly_id: pole_post_material__aluminum +- id: 11861 + name: Fiberglass + friendly_id: pole_post_material__fiberglass +- id: 11862 + name: Iron + friendly_id: pole_post_material__iron +- id: 11863 + name: Plastic + friendly_id: pole_post_material__plastic +- id: 11864 + name: Stainless steel + friendly_id: pole_post_material__stainless_steel +- id: 11865 + name: Steel + friendly_id: pole_post_material__steel +- id: 11866 + name: Wood + friendly_id: pole_post_material__wood +- id: 11867 + name: Bohemian + friendly_id: style__bohemian +- id: 11868 + name: Farmhouse + friendly_id: style__farmhouse +- id: 11869 + name: Scandinavian + friendly_id: style__scandinavian +- id: 11870 + name: Concrete + friendly_id: tree_stand_material__concrete +- id: 11871 + name: Metal + friendly_id: tree_stand_material__metal +- id: 11872 + name: Plastic + friendly_id: tree_stand_material__plastic +- id: 11873 + name: Fixing pin + friendly_id: fixation_type__fixing_pin +- id: 11874 + name: Fixing screw + friendly_id: fixation_type__fixing_screw +- id: 11875 + name: Fixing spike + friendly_id: fixation_type__fixing_spike +- id: 11876 + name: Decorating brush + friendly_id: egg_decorating_items_included__decorating_brush +- id: 11877 + name: Dye tablets + friendly_id: egg_decorating_items_included__dye_tablets +- id: 11878 + name: Egg dippers + friendly_id: egg_decorating_items_included__egg_dippers +- id: 11879 + name: Egg stands + friendly_id: egg_decorating_items_included__egg_stands +- id: 11880 + name: Glitter + friendly_id: egg_decorating_items_included__glitter +- id: 11881 + name: Instruction booklet + friendly_id: egg_decorating_items_included__instruction_booklet +- id: 11882 + name: Markers + friendly_id: egg_decorating_items_included__markers +- id: 11883 + name: Paint + friendly_id: egg_decorating_items_included__paint +- id: 11884 + name: Stickers + friendly_id: egg_decorating_items_included__stickers +- id: 11885 + name: Wax crayons + friendly_id: egg_decorating_items_included__wax_crayons +- id: 11886 + name: Armchair + friendly_id: suitable_for_furniture_type__armchair +- id: 11887 + name: Corner sofa + friendly_id: suitable_for_furniture_type__corner_sofa +- id: 11888 + name: Chair + friendly_id: suitable_for_furniture_type__chair +- id: 11889 + name: Chaise longue + friendly_id: suitable_for_furniture_type__chaise_longue +- id: 11890 + name: Sofa + friendly_id: suitable_for_furniture_type__sofa +- id: 11891 + name: Footstool + friendly_id: suitable_for_furniture_type__footstool +- id: 11892 + name: Universal + friendly_id: suitable_for_furniture_type__universal +- id: 11893 + name: Rectangular + friendly_id: pillow_shape__rectangular +- id: 11894 + name: Other + friendly_id: pillow_shape__other +- id: 11895 + name: Bottle + friendly_id: vase_shape__bottle +- id: 11896 + name: Conical + friendly_id: vase_shape__conical +- id: 11897 + name: Cylindrical + friendly_id: vase_shape__cylindrical +- id: 11898 + name: Gourd + friendly_id: vase_shape__gourd +- id: 11899 + name: Jar + friendly_id: vase_shape__jar +- id: 11900 + name: Mushroom + friendly_id: vase_shape__mushroom +- id: 11901 + name: Oval + friendly_id: vase_shape__oval +- id: 11902 + name: Pitcher + friendly_id: vase_shape__pitcher +- id: 11903 + name: Round + friendly_id: vase_shape__round +- id: 11904 + name: Square + friendly_id: vase_shape__square +- id: 11905 + name: Turnip + friendly_id: vase_shape__turnip +- id: 11906 + name: Urn + friendly_id: vase_shape__urn +- id: 11907 + name: Fair trade + friendly_id: sustainability__fair_trade +- id: 11908 + name: Handcrafted + friendly_id: sustainability__handcrafted +- id: 11909 + name: Responsibly sourced + friendly_id: sustainability__responsibly_sourced +- id: 11910 + name: Peel & stick + friendly_id: wallpaper_application_method__peel_stick +- id: 11911 + name: Pre-pasted + friendly_id: wallpaper_application_method__pre_pasted +- id: 11912 + name: Requires paste + friendly_id: wallpaper_application_method__requires_paste +- id: 11913 + name: Rooster + friendly_id: roof_decor_shape__rooster +- id: 11914 + name: Horse + friendly_id: roof_decor_shape__horse +- id: 11915 + name: Arrow + friendly_id: roof_decor_shape__arrow +- id: 11916 + name: Sailboat + friendly_id: roof_decor_shape__sailboat +- id: 11917 + name: Other + friendly_id: roof_decor_shape__other +- id: 11918 + name: Motorized + friendly_id: control_technology__motorized +- id: 11919 + name: Manual + friendly_id: control_technology__manual +- id: 11920 + name: Blackout + friendly_id: light_control__blackout +- id: 11921 + name: Light filtering + friendly_id: light_control__light_filtering +- id: 11922 + name: Opaque + friendly_id: light_control__opaque +- id: 11923 + name: Room darkening + friendly_id: light_control__room_darkening +- id: 11924 + name: Semi-opaque + friendly_id: light_control__semi_opaque +- id: 11925 + name: Sheer + friendly_id: light_control__sheer +- id: 11926 + name: Solar + friendly_id: light_control__solar +- id: 11927 + name: Translucent + friendly_id: light_control__translucent +- id: 11928 + name: Aluminum + friendly_id: window_treatment_material__aluminum +- id: 11929 + name: Fiberglass + friendly_id: window_treatment_material__fiberglass +- id: 11930 + name: Paper + friendly_id: window_treatment_material__paper +- id: 11931 + name: Plastic + friendly_id: window_treatment_material__plastic +- id: 11932 + name: Polyester + friendly_id: window_treatment_material__polyester +- id: 11933 + name: Polyvinyl chloride (PVC) + friendly_id: window_treatment_material__polyvinyl_chloride_pvc +- id: 11934 + name: Wood + friendly_id: window_treatment_material__wood +- id: 11935 + name: Wood plastic composite (WPC) + friendly_id: window_treatment_material__wood_plastic_composite_wpc +- id: 11936 + name: Vertical blind + friendly_id: blind_shade_style__vertical_blind +- id: 11937 + name: Bracket roller blind + friendly_id: blind_shade_style__bracket_roller_blind +- id: 11938 + name: Cassette roller blind + friendly_id: blind_shade_style__cassette_roller_blind +- id: 11939 + name: Roman blind + friendly_id: blind_shade_style__roman_blind +- id: 11940 + name: Venetian blind + friendly_id: blind_shade_style__venetian_blind +- id: 11941 + name: Roller blind + friendly_id: blind_shade_style__roller_blind +- id: 11942 + name: Day & night roller blind + friendly_id: blind_shade_style__day_night_roller_blind +- id: 11943 + name: Pleated shades + friendly_id: blind_shade_style__pleated_shades +- id: 11944 + name: Self-adhesive + friendly_id: film_application_method__self_adhesive +- id: 11945 + name: Static cling + friendly_id: film_application_method__static_cling +- id: 11946 + name: Sound alarms + friendly_id: alert_type__sound_alarms +- id: 11947 + name: Visual alerts + friendly_id: alert_type__visual_alerts +- id: 11948 + name: Smartphone notifications + friendly_id: alert_type__smartphone_notifications +- id: 11949 + name: Batteries + friendly_id: emergency_items_included__batteries +- id: 11950 + name: Blanket + friendly_id: emergency_items_included__blanket +- id: 11951 + name: Charger + friendly_id: emergency_items_included__charger +- id: 11952 + name: First aid kit + friendly_id: emergency_items_included__first_aid_kit +- id: 11953 + name: Flashlight + friendly_id: emergency_items_included__flashlight +- id: 11954 + name: Food + friendly_id: emergency_items_included__food +- id: 11955 + name: Hygiene products + friendly_id: emergency_items_included__hygiene_products +- id: 11956 + name: Powerbank + friendly_id: emergency_items_included__powerbank +- id: 11957 + name: Radio + friendly_id: emergency_items_included__radio +- id: 11958 + name: Water + friendly_id: emergency_items_included__water +- id: 11959 + name: Whistle + friendly_id: emergency_items_included__whistle +- id: 11960 + name: Primary + friendly_id: stove_airflow__primary +- id: 11961 + name: Secondary + friendly_id: stove_airflow__secondary +- id: 11962 + name: Tertiary + friendly_id: stove_airflow__tertiary +- id: 11963 + name: Ethanol + friendly_id: power_source__ethanol +- id: 11964 + name: Class A + friendly_id: extinguisher_rating__class_a +- id: 11965 + name: Class B + friendly_id: extinguisher_rating__class_b +- id: 11966 + name: Class C + friendly_id: extinguisher_rating__class_c +- id: 11967 + name: Class D + friendly_id: extinguisher_rating__class_d +- id: 11968 + name: Carbon dioxide (CO2) + friendly_id: extinguishing_agent_type__carbon_dioxide_co2 +- id: 11969 + name: Clean agent + friendly_id: extinguishing_agent_type__clean_agent +- id: 11970 + name: Foam + friendly_id: extinguishing_agent_type__foam +- id: 11971 + name: Powder (dry chemical) + friendly_id: extinguishing_agent_type__powder_dry_chemical +- id: 11972 + name: Water + friendly_id: extinguishing_agent_type__water +- id: 11973 + name: Wet chemical + friendly_id: extinguishing_agent_type__wet_chemical +- id: 11974 + name: A + friendly_id: suitable_for_fire_class__a +- id: 11975 + name: B + friendly_id: suitable_for_fire_class__b +- id: 11976 + name: C + friendly_id: suitable_for_fire_class__c +- id: 11977 + name: D + friendly_id: suitable_for_fire_class__d +- id: 11978 + name: E + friendly_id: suitable_for_fire_class__e +- id: 11979 + name: F + friendly_id: suitable_for_fire_class__f +- id: 11980 + name: Fixed temperature heat + friendly_id: detector_type__fixed_temperature_heat +- id: 11981 + name: Rate-of-rise heat + friendly_id: detector_type__rate_of_rise_heat +- id: 11982 + name: Biomimetic + friendly_id: sensor_type__biomimetic +- id: 11983 + name: Electrochemical + friendly_id: sensor_type__electrochemical +- id: 11984 + name: Infrared + friendly_id: sensor_type__infrared +- id: 11985 + name: MOS + friendly_id: sensor_type__mos +- id: 11986 + name: Air-sampling + friendly_id: detector_type__air_sampling +- id: 11987 + name: Combi + friendly_id: detector_type__combi +- id: 11988 + name: Ionization + friendly_id: detector_type__ionization +- id: 11989 + name: Optical + friendly_id: detector_type__optical +- id: 11990 + name: Optical beam + friendly_id: detector_type__optical_beam +- id: 11991 + name: Photoelectric reflection + friendly_id: detector_type__photoelectric_reflection +- id: 11992 + name: Cylinder + friendly_id: compatible_vacuum_type__cylinder +- id: 11993 + name: Drum + friendly_id: compatible_vacuum_type__drum +- id: 11994 + name: Handheld + friendly_id: compatible_vacuum_type__handheld +- id: 11995 + name: Robot + friendly_id: compatible_vacuum_type__robot +- id: 11996 + name: Steam + friendly_id: compatible_vacuum_type__steam +- id: 11997 + name: Stick + friendly_id: compatible_vacuum_type__stick +- id: 11998 + name: Universal + friendly_id: compatible_vacuum_type__universal +- id: 11999 + name: Combi + friendly_id: boiler_system__combi +- id: 12000 + name: Solo + friendly_id: boiler_system__solo +- id: 12001 + name: Natural gas + friendly_id: power_source__natural_gas +- id: 12002 + name: Oil + friendly_id: power_source__oil +- id: 12003 + name: Hot water + friendly_id: power_source__hot_water +- id: 12004 + name: Impeller + friendly_id: evaporation_technology__impeller +- id: 12005 + name: Steam + friendly_id: evaporation_technology__steam +- id: 12006 + name: Ultrasonic + friendly_id: evaporation_technology__ultrasonic +- id: 12007 + name: Natural + friendly_id: evaporation_technology__natural +- id: 12008 + name: Butane + friendly_id: power_source__butane +- id: 12009 + name: Infrared + friendly_id: power_source__infrared +- id: 12010 + name: Pellet + friendly_id: power_source__pellet +- id: 12011 + name: Belt drive + friendly_id: operation_method__belt_drive +- id: 12012 + name: Chain drive + friendly_id: operation_method__chain_drive +- id: 12013 + name: Hydraulic + friendly_id: operation_method__hydraulic +- id: 12014 + name: Front-load + friendly_id: loading_type__front_load +- id: 12015 + name: Top-load + friendly_id: loading_type__top_load +- id: 12016 + name: Built-in + friendly_id: mounting_type__built_in +- id: 12017 + name: Handheld + friendly_id: garment_steamer_design__handheld +- id: 12018 + name: Steam brush + friendly_id: garment_steamer_design__steam_brush +- id: 12019 + name: Upright + friendly_id: garment_steamer_design__upright +- id: 12020 + name: Aluminum + friendly_id: soleplate_type__aluminum +- id: 12021 + name: Alumite + friendly_id: soleplate_type__alumite +- id: 12022 + name: Anodilium + friendly_id: soleplate_type__anodilium +- id: 12023 + name: Auto clean + friendly_id: soleplate_type__auto_clean +- id: 12024 + name: Auto clean catalys + friendly_id: soleplate_type__auto_clean_catalys +- id: 12025 + name: Careeza + friendly_id: soleplate_type__careeza +- id: 12026 + name: Ceramic + friendly_id: soleplate_type__ceramic +- id: 12027 + name: Ceramic glide + friendly_id: soleplate_type__ceramic_glide +- id: 12028 + name: Ceramic ultra glide + friendly_id: soleplate_type__ceramic_ultra_glide +- id: 12029 + name: Ceranium + friendly_id: soleplate_type__ceranium +- id: 12030 + name: Ceranium glisse + friendly_id: soleplate_type__ceranium_glisse +- id: 12031 + name: Cerilium + friendly_id: soleplate_type__cerilium +- id: 12032 + name: Cross steam + friendly_id: soleplate_type__cross_steam +- id: 12033 + name: Diamond 4D + friendly_id: soleplate_type__diamond_4d +- id: 12034 + name: Diamond glide + friendly_id: soleplate_type__diamond_glide +- id: 12035 + name: Dual Thermolon + friendly_id: soleplate_type__dual_thermolon +- id: 12036 + name: Durilium + friendly_id: soleplate_type__durilium +- id: 12037 + name: Durilium airglide + friendly_id: soleplate_type__durilium_airglide +- id: 12038 + name: Durilium airglide auto clean + friendly_id: soleplate_type__durilium_airglide_auto_clean +- id: 12039 + name: Durilium airglide auto clean ultra thin + friendly_id: soleplate_type__durilium_airglide_auto_clean_ultra_thin +- id: 12040 + name: Durilium auto clean + friendly_id: soleplate_type__durilium_auto_clean +- id: 12041 + name: Dynaglide + friendly_id: soleplate_type__dynaglide +- id: 12042 + name: Eloxal + friendly_id: soleplate_type__eloxal +- id: 12043 + name: Eloxal plus + friendly_id: soleplate_type__eloxal_plus +- id: 12044 + name: Glide x soleplate + friendly_id: soleplate_type__glide_x_soleplate +- id: 12045 + name: Glissium + friendly_id: soleplate_type__glissium +- id: 12046 + name: Gold + friendly_id: soleplate_type__gold +- id: 12047 + name: Honeycomb + friendly_id: soleplate_type__honeycomb +- id: 12048 + name: Microsteam + friendly_id: soleplate_type__microsteam +- id: 12049 + name: Nano steel + friendly_id: soleplate_type__nano_steel +- id: 12050 + name: Nano-silver ceramic + friendly_id: soleplate_type__nano_silver_ceramic +- id: 12051 + name: Non-stick + friendly_id: soleplate_type__non_stick +- id: 12052 + name: Palladium + friendly_id: soleplate_type__palladium +- id: 12053 + name: Pearlonic 380 + friendly_id: soleplate_type__pearlonic_380 +- id: 12054 + name: Pro ceramic + friendly_id: soleplate_type__pro_ceramic +- id: 12055 + name: Protect + friendly_id: soleplate_type__protect +- id: 12056 + name: PTFE + friendly_id: soleplate_type__ptfe +- id: 12057 + name: RESILIUM + friendly_id: soleplate_type__resilium +- id: 12058 + name: Saphir + friendly_id: soleplate_type__saphir +- id: 12059 + name: Stainless steel + friendly_id: soleplate_type__stainless_steel +- id: 12060 + name: SteamGlide + friendly_id: soleplate_type__steamglide +- id: 12061 + name: SteamGlide elite + friendly_id: soleplate_type__steamglide_elite +- id: 12062 + name: T-ionic glide + friendly_id: soleplate_type__t_ionic_glide +- id: 12063 + name: Titanium + friendly_id: soleplate_type__titanium +- id: 12064 + name: Tourmaline ceramic + friendly_id: soleplate_type__tourmaline_ceramic +- id: 12065 + name: Ultragliss + friendly_id: soleplate_type__ultragliss +- id: 12066 + name: Ultragliss durilium + friendly_id: soleplate_type__ultragliss_durilium +- id: 12067 + name: XL duraglide + friendly_id: soleplate_type__xl_duraglide +- id: 12068 + name: Xpress glide + friendly_id: soleplate_type__xpress_glide +- id: 12069 + name: Other + friendly_id: soleplate_type__other +- id: 12070 + name: Anti-allergy + friendly_id: washing_programs__anti_allergy +- id: 12071 + name: Auto + friendly_id: washing_programs__auto +- id: 12072 + name: Baby care + friendly_id: washing_programs__baby_care +- id: 12073 + name: Beddings + friendly_id: washing_programs__beddings +- id: 12074 + name: Bio + friendly_id: washing_programs__bio +- id: 12075 + name: Black color + friendly_id: washing_programs__black_color +- id: 12076 + name: Cold wash + friendly_id: washing_programs__cold_wash +- id: 12077 + name: Cotton + friendly_id: washing_programs__cotton +- id: 12078 + name: Delicate + friendly_id: washing_programs__delicate +- id: 12079 + name: Easy care + friendly_id: washing_programs__easy_care +- id: 12080 + name: Eco + friendly_id: washing_programs__eco +- id: 12081 + name: Hand + friendly_id: washing_programs__hand +- id: 12082 + name: Intensive + friendly_id: washing_programs__intensive +- id: 12083 + name: Jeans + friendly_id: washing_programs__jeans +- id: 12084 + name: Lingerie + friendly_id: washing_programs__lingerie +- id: 12085 + name: Microfiber + friendly_id: washing_programs__microfiber +- id: 12086 + name: Mixed colors + friendly_id: washing_programs__mixed_colors +- id: 12087 + name: Outdoor + friendly_id: washing_programs__outdoor +- id: 12088 + name: Pillow + friendly_id: washing_programs__pillow +- id: 12089 + name: Pre-wash + friendly_id: washing_programs__pre_wash +- id: 12090 + name: Quick wash + friendly_id: washing_programs__quick_wash +- id: 12091 + name: Rinse + friendly_id: washing_programs__rinse +- id: 12092 + name: Shoes + friendly_id: washing_programs__shoes +- id: 12093 + name: Silk + friendly_id: washing_programs__silk +- id: 12094 + name: Spin & drain + friendly_id: washing_programs__spin_drain +- id: 12095 + name: Spin only + friendly_id: washing_programs__spin_only +- id: 12096 + name: Sport + friendly_id: washing_programs__sport +- id: 12097 + name: Steam + friendly_id: washing_programs__steam +- id: 12098 + name: Towel + friendly_id: washing_programs__towel +- id: 12099 + name: White color + friendly_id: washing_programs__white_color +- id: 12100 + name: Wool + friendly_id: washing_programs__wool +- id: 12101 + name: Other + friendly_id: washing_programs__other +- id: 12102 + name: Carpet + friendly_id: cleaning_surfaces__carpet +- id: 12103 + name: Glass surfaces + friendly_id: cleaning_surfaces__glass_surfaces +- id: 12104 + name: Laminate flooring + friendly_id: cleaning_surfaces__laminate_flooring +- id: 12105 + name: Stair steps + friendly_id: cleaning_surfaces__stair_steps +- id: 12106 + name: Tiles + friendly_id: cleaning_surfaces__tiles +- id: 12107 + name: Upholstery + friendly_id: cleaning_surfaces__upholstery +- id: 12108 + name: Vinyl flooring + friendly_id: cleaning_surfaces__vinyl_flooring +- id: 12109 + name: Wood flooring + friendly_id: cleaning_surfaces__wood_flooring +- id: 12110 + name: Other + friendly_id: cleaning_surfaces__other +- id: 12111 + name: Cyclonic + friendly_id: dirt_separating_method__cyclonic +- id: 12112 + name: Filtering + friendly_id: dirt_separating_method__filtering +- id: 12113 + name: Multi cyclonic + friendly_id: dirt_separating_method__multi_cyclonic +- id: 12114 + name: Aqua filtering + friendly_id: dirt_separating_method__aqua_filtering +- id: 12115 + name: Dry + friendly_id: dry_wet_cleaning__dry +- id: 12116 + name: Wet + friendly_id: dry_wet_cleaning__wet +- id: 12117 + name: Dry & wet + friendly_id: dry_wet_cleaning__dry_wet +- id: 12118 + name: Dust bag + friendly_id: dust_container_type__dust_bag +- id: 12119 + name: Bagless + friendly_id: dust_container_type__bagless +- id: 12120 + name: Combi + friendly_id: dust_container_type__combi +- id: 12121 + name: Allergy + friendly_id: vacuum_air_filtering_technology__allergy +- id: 12122 + name: Carbon + friendly_id: vacuum_air_filtering_technology__carbon +- id: 12123 + name: EPA + friendly_id: vacuum_air_filtering_technology__epa +- id: 12124 + name: HEPA + friendly_id: vacuum_air_filtering_technology__hepa +- id: 12125 + name: Microfilter + friendly_id: vacuum_air_filtering_technology__microfilter +- id: 12126 + name: Odor + friendly_id: vacuum_air_filtering_technology__odor +- id: 12127 + name: Pet + friendly_id: vacuum_air_filtering_technology__pet +- id: 12128 + name: Pre-motor + friendly_id: vacuum_air_filtering_technology__pre_motor +- id: 12129 + name: Post-motor + friendly_id: vacuum_air_filtering_technology__post_motor +- id: 12130 + name: S-class + friendly_id: vacuum_air_filtering_technology__s_class +- id: 12131 + name: Standard + friendly_id: vacuum_air_filtering_technology__standard +- id: 12132 + name: Water + friendly_id: vacuum_air_filtering_technology__water +- id: 12133 + name: Washable + friendly_id: vacuum_air_filtering_technology__washable +- id: 12134 + name: Hybrid + friendly_id: power_source__hybrid +- id: 12135 + name: Fabric + friendly_id: cleaning_surfaces__fabric +- id: 12136 + name: Rug + friendly_id: cleaning_surfaces__rug +- id: 12137 + name: Surfactants + friendly_id: ingredients__surfactants +- id: 12138 + name: Solvents + friendly_id: ingredients__solvents +- id: 12139 + name: Builders + friendly_id: ingredients__builders +- id: 12140 + name: Fragrances + friendly_id: ingredients__fragrances +- id: 12141 + name: Dyes + friendly_id: ingredients__dyes +- id: 12142 + name: Preservatives + friendly_id: ingredients__preservatives +- id: 12143 + name: Water + friendly_id: ingredients__water +- id: 12144 + name: Appliances + friendly_id: cleaning_surfaces__appliances +- id: 12145 + name: Bathroom fixtures + friendly_id: cleaning_surfaces__bathroom_fixtures +- id: 12146 + name: Countertops + friendly_id: cleaning_surfaces__countertops +- id: 12147 + name: Stone flooring + friendly_id: cleaning_surfaces__stone_flooring +- id: 12148 + name: Clothing + friendly_id: cleaning_surfaces__clothing +- id: 12149 + name: Hard surfaces + friendly_id: cleaning_surfaces__hard_surfaces +- id: 12150 + name: Pet bedding + friendly_id: cleaning_surfaces__pet_bedding +- id: 12151 + name: Dander + friendly_id: targeted_stains__dander +- id: 12152 + name: Feces + friendly_id: targeted_stains__feces +- id: 12153 + name: Mud + friendly_id: targeted_stains__mud +- id: 12154 + name: Urine + friendly_id: targeted_stains__urine +- id: 12155 + name: Vomit + friendly_id: targeted_stains__vomit +- id: 12156 + name: Gel + friendly_id: application_method__gel +- id: 12157 + name: Grout lines + friendly_id: cleaning_surfaces__grout_lines +- id: 12158 + name: Kitchen sinks + friendly_id: cleaning_surfaces__kitchen_sinks +- id: 12159 + name: Stovetops + friendly_id: cleaning_surfaces__stovetops +- id: 12160 + name: Fabric + friendly_id: cleaning_purpose__fabric +- id: 12161 + name: Stains + friendly_id: cleaning_purpose__stains +- id: 12162 + name: Refreshing + friendly_id: cleaning_purpose__refreshing +- id: 12163 + name: Blood + friendly_id: targeted_stains__blood +- id: 12164 + name: Coffee + friendly_id: targeted_stains__coffee +- id: 12165 + name: Food + friendly_id: targeted_stains__food +- id: 12166 + name: Ink + friendly_id: targeted_stains__ink +- id: 12167 + name: Oil + friendly_id: targeted_stains__oil +- id: 12168 + name: Enzymes + friendly_id: ingredients__enzymes +- id: 12169 + name: Hand washing + friendly_id: washing_method__hand_washing +- id: 12170 + name: Machine washing + friendly_id: washing_method__machine_washing +- id: 12171 + name: Universal + friendly_id: washing_method__universal +- id: 12172 + name: Mole + friendly_id: suitable_for_pest_type__mole +- id: 12173 + name: Gopher + friendly_id: suitable_for_pest_type__gopher +- id: 12174 + name: Rodent + friendly_id: suitable_for_pest_type__rodent +- id: 12175 + name: Rabbit + friendly_id: suitable_for_pest_type__rabbit +- id: 12176 + name: Mouse + friendly_id: suitable_for_pest_type__mouse +- id: 12177 + name: Rat + friendly_id: suitable_for_pest_type__rat +- id: 12178 + name: Beaver + friendly_id: suitable_for_pest_type__beaver +- id: 12179 + name: Fox + friendly_id: suitable_for_pest_type__fox +- id: 12180 + name: Squirrel + friendly_id: suitable_for_pest_type__squirrel +- id: 12181 + name: Snail + friendly_id: suitable_for_pest_type__snail +- id: 12182 + name: Pyrethrins + friendly_id: ingredients__pyrethrins +- id: 12183 + name: Neonicotinoids + friendly_id: ingredients__neonicotinoids +- id: 12184 + name: Glyphosate + friendly_id: ingredients__glyphosate +- id: 12185 + name: Emulsifiers + friendly_id: ingredients__emulsifiers +- id: 12186 + name: Stabilizers + friendly_id: ingredients__stabilizers +- id: 12187 + name: Granules + friendly_id: application_method__granules +- id: 12188 + name: Deet + friendly_id: ingredients__deet +- id: 12189 + name: Picaridin + friendly_id: ingredients__picaridin +- id: 12190 + name: Lemon eucalyptus oil + friendly_id: ingredients__lemon_eucalyptus_oil +- id: 12191 + name: Chipmunks + friendly_id: animal_type__chipmunks +- id: 12192 + name: Deer + friendly_id: animal_type__deer +- id: 12193 + name: Groundhogs + friendly_id: animal_type__groundhogs +- id: 12194 + name: Mice + friendly_id: animal_type__mice +- id: 12195 + name: Moles + friendly_id: animal_type__moles +- id: 12196 + name: Possums + friendly_id: animal_type__possums +- id: 12197 + name: Raccoons + friendly_id: animal_type__raccoons +- id: 12198 + name: Skunks + friendly_id: animal_type__skunks +- id: 12199 + name: Squirrels + friendly_id: animal_type__squirrels +- id: 12200 + name: Other + friendly_id: animal_type__other +- id: 12201 + name: Ants + friendly_id: bug_type__ants +- id: 12202 + name: Bed bugs + friendly_id: bug_type__bed_bugs +- id: 12203 + name: Bees + friendly_id: bug_type__bees +- id: 12204 + name: Cockroaches + friendly_id: bug_type__cockroaches +- id: 12205 + name: Fleas + friendly_id: bug_type__fleas +- id: 12206 + name: Flies + friendly_id: bug_type__flies +- id: 12207 + name: Gnats + friendly_id: bug_type__gnats +- id: 12208 + name: Hornets + friendly_id: bug_type__hornets +- id: 12209 + name: Moths + friendly_id: bug_type__moths +- id: 12210 + name: Silverfish + friendly_id: bug_type__silverfish +- id: 12211 + name: Spiders + friendly_id: bug_type__spiders +- id: 12212 + name: Wasps + friendly_id: bug_type__wasps +- id: 12213 + name: 10 × 15 cm + friendly_id: format_supported__10_15_cm +- id: 12214 + name: 11 × 14 in + friendly_id: format_supported__11_14_in +- id: 12215 + name: 12 × 16 in + friendly_id: format_supported__12_16_in +- id: 12216 + name: 13 × 18 cm + friendly_id: format_supported__13_18_cm +- id: 12217 + name: 15 × 20 cm + friendly_id: format_supported__15_20_cm +- id: 12218 + name: 16 × 20 in + friendly_id: format_supported__16_20_in +- id: 12219 + name: 18 × 24 cm + friendly_id: format_supported__18_24_cm +- id: 12220 + name: 20 × 24 in + friendly_id: format_supported__20_24_in +- id: 12221 + name: 20 × 25 cm + friendly_id: format_supported__20_25_cm +- id: 12222 + name: 20 × 30 cm + friendly_id: format_supported__20_30_cm +- id: 12223 + name: 24 × 30 cm + friendly_id: format_supported__24_30_cm +- id: 12224 + name: 30 × 40 cm + friendly_id: format_supported__30_40_cm +- id: 12225 + name: 40 × 50 cm + friendly_id: format_supported__40_50_cm +- id: 12226 + name: 5 × 7 in + friendly_id: format_supported__5_7_in +- id: 12227 + name: 50 × 60 cm + friendly_id: format_supported__50_60_cm +- id: 12228 + name: 8 × 10 in + friendly_id: format_supported__8_10_in +- id: 12229 + name: 8 × 12 in + friendly_id: format_supported__8_12_in +- id: 12230 + name: 9 × 13 cm + friendly_id: format_supported__9_13_cm +- id: 12231 + name: Other + friendly_id: format_supported__other +- id: 12232 + name: Case + friendly_id: stationery_binding_type__case +- id: 12233 + name: Perfect + friendly_id: stationery_binding_type__perfect +- id: 12234 + name: Saddle stitch + friendly_id: stationery_binding_type__saddle_stitch +- id: 12235 + name: Spiral + friendly_id: stationery_binding_type__spiral +- id: 12236 + name: Acrylic + friendly_id: barware_material__acrylic +- id: 12237 + name: Aluminum + friendly_id: barware_material__aluminum +- id: 12238 + name: Bamboo + friendly_id: barware_material__bamboo +- id: 12239 + name: Cast iron + friendly_id: barware_material__cast_iron +- id: 12240 + name: Ceramic + friendly_id: barware_material__ceramic +- id: 12241 + name: Cork + friendly_id: barware_material__cork +- id: 12242 + name: Crystal + friendly_id: barware_material__crystal +- id: 12243 + name: Faux leather + friendly_id: barware_material__faux_leather +- id: 12244 + name: Glass + friendly_id: barware_material__glass +- id: 12245 + name: Granite + friendly_id: barware_material__granite +- id: 12246 + name: Marble + friendly_id: barware_material__marble +- id: 12247 + name: Metal + friendly_id: barware_material__metal +- id: 12248 + name: Plastic + friendly_id: barware_material__plastic +- id: 12249 + name: Polypropylene (PP) + friendly_id: barware_material__polypropylene_pp +- id: 12250 + name: Polyvinyl chloride (PVC) + friendly_id: barware_material__polyvinyl_chloride_pvc +- id: 12251 + name: Rubber + friendly_id: barware_material__rubber +- id: 12252 + name: Silicone + friendly_id: barware_material__silicone +- id: 12253 + name: Stainless steel + friendly_id: barware_material__stainless_steel +- id: 12254 + name: Steel + friendly_id: barware_material__steel +- id: 12255 + name: Wood + friendly_id: barware_material__wood +- id: 12256 + name: Zinc alloy + friendly_id: barware_material__zinc_alloy +- id: 12257 + name: Other + friendly_id: barware_material__other +- id: 12258 + name: Baking sheets + friendly_id: bakeware_pieces_included__baking_sheets +- id: 12259 + name: Cake pan + friendly_id: bakeware_pieces_included__cake_pan +- id: 12260 + name: Loaf pan + friendly_id: bakeware_pieces_included__loaf_pan +- id: 12261 + name: Muffin tin + friendly_id: bakeware_pieces_included__muffin_tin +- id: 12262 + name: Pie dish + friendly_id: bakeware_pieces_included__pie_dish +- id: 12263 + name: Aluminum + friendly_id: baking_sheet_material__aluminum +- id: 12264 + name: Carbon steel + friendly_id: baking_sheet_material__carbon_steel +- id: 12265 + name: Silicone + friendly_id: baking_sheet_material__silicone +- id: 12266 + name: Stainless steel + friendly_id: baking_sheet_material__stainless_steel +- id: 12267 + name: Teflon + friendly_id: baking_sheet_material__teflon +- id: 12268 + name: Rectangular + friendly_id: bakeware_shape__rectangular +- id: 12269 + name: Square + friendly_id: bakeware_shape__square +- id: 12270 + name: Round + friendly_id: bakeware_shape__round +- id: 12271 + name: Bundt + friendly_id: bakeware_shape__bundt +- id: 12272 + name: Springform + friendly_id: bakeware_shape__springform +- id: 12273 + name: Other + friendly_id: bakeware_shape__other +- id: 12274 + name: Gas + friendly_id: compatible_hob_type__gas +- id: 12275 + name: Halogen + friendly_id: compatible_hob_type__halogen +- id: 12276 + name: Induction + friendly_id: compatible_hob_type__induction +- id: 12277 + name: Ceramic + friendly_id: compatible_hob_type__ceramic +- id: 12278 + name: Sealed plate + friendly_id: compatible_hob_type__sealed_plate +- id: 12279 + name: Paper + friendly_id: food_bag_material__paper +- id: 12280 + name: Plastic + friendly_id: food_bag_material__plastic +- id: 12281 + name: Silicone + friendly_id: food_bag_material__silicone +- id: 12282 + name: Conical + friendly_id: shape__conical +- id: 12283 + name: Ceramic + friendly_id: filter_material__ceramic +- id: 12284 + name: Cotton + friendly_id: filter_material__cotton +- id: 12285 + name: Hemp + friendly_id: filter_material__hemp +- id: 12286 + name: Metal + friendly_id: filter_material__metal +- id: 12287 + name: Paper + friendly_id: filter_material__paper +- id: 12288 + name: Plastic + friendly_id: filter_material__plastic +- id: 12289 + name: Porcelain + friendly_id: filter_material__porcelain +- id: 12290 + name: Silicone + friendly_id: filter_material__silicone +- id: 12291 + name: Stainless steel + friendly_id: filter_material__stainless_steel +- id: 12292 + name: Steel + friendly_id: filter_material__steel +- id: 12293 + name: Acacia wood + friendly_id: tool_utensil_material__acacia_wood +- id: 12294 + name: Acrylic + friendly_id: tool_utensil_material__acrylic +- id: 12295 + name: Alder wood + friendly_id: tool_utensil_material__alder_wood +- id: 12296 + name: Aluminum + friendly_id: tool_utensil_material__aluminum +- id: 12297 + name: Bamboo + friendly_id: tool_utensil_material__bamboo +- id: 12298 + name: Beech wood + friendly_id: tool_utensil_material__beech_wood +- id: 12299 + name: Brass + friendly_id: tool_utensil_material__brass +- id: 12300 + name: Cast iron + friendly_id: tool_utensil_material__cast_iron +- id: 12301 + name: Ceramic + friendly_id: tool_utensil_material__ceramic +- id: 12302 + name: Cotton + friendly_id: tool_utensil_material__cotton +- id: 12303 + name: Glass + friendly_id: tool_utensil_material__glass +- id: 12304 + name: Granite + friendly_id: tool_utensil_material__granite +- id: 12305 + name: Iron + friendly_id: tool_utensil_material__iron +- id: 12306 + name: Marble + friendly_id: tool_utensil_material__marble +- id: 12307 + name: Melamine + friendly_id: tool_utensil_material__melamine +- id: 12308 + name: Metal + friendly_id: tool_utensil_material__metal +- id: 12309 + name: Nylon + friendly_id: tool_utensil_material__nylon +- id: 12310 + name: Olive wood + friendly_id: tool_utensil_material__olive_wood +- id: 12311 + name: Plastic + friendly_id: tool_utensil_material__plastic +- id: 12312 + name: Polyethylene (PE) + friendly_id: tool_utensil_material__polyethylene_pe +- id: 12313 + name: Polypropylene (PP) + friendly_id: tool_utensil_material__polypropylene_pp +- id: 12314 + name: Polyvinyl chloride (PVC) + friendly_id: tool_utensil_material__polyvinyl_chloride_pvc +- id: 12315 + name: Porcelain + friendly_id: tool_utensil_material__porcelain +- id: 12316 + name: Rubber + friendly_id: tool_utensil_material__rubber +- id: 12317 + name: Silicone + friendly_id: tool_utensil_material__silicone +- id: 12318 + name: Stainless steel + friendly_id: tool_utensil_material__stainless_steel +- id: 12319 + name: Steel + friendly_id: tool_utensil_material__steel +- id: 12320 + name: Synthetic + friendly_id: tool_utensil_material__synthetic +- id: 12321 + name: Teak wood + friendly_id: tool_utensil_material__teak_wood +- id: 12322 + name: Wood + friendly_id: tool_utensil_material__wood +- id: 12323 + name: Other + friendly_id: tool_utensil_material__other +- id: 12324 + name: Food blender + friendly_id: suitable_for_food_processor_type__food_blender +- id: 12325 + name: Food grinder + friendly_id: suitable_for_food_processor_type__food_grinder +- id: 12326 + name: Food mixer + friendly_id: suitable_for_food_processor_type__food_mixer +- id: 12327 + name: Coffee beans + friendly_id: coffee_input_type__coffee_beans +- id: 12328 + name: Coffee capsules + friendly_id: coffee_input_type__coffee_capsules +- id: 12329 + name: Coffee pods + friendly_id: coffee_input_type__coffee_pods +- id: 12330 + name: Ceramic + friendly_id: hob_type__ceramic +- id: 12331 + name: Coil + friendly_id: hob_type__coil +- id: 12332 + name: Combi + friendly_id: hob_type__combi +- id: 12333 + name: Gas + friendly_id: hob_type__gas +- id: 12334 + name: Halogen + friendly_id: hob_type__halogen +- id: 12335 + name: Sealed plate + friendly_id: hob_type__sealed_plate +- id: 12336 + name: Zone induction + friendly_id: hob_type__zone_induction +- id: 12337 + name: Zoneless induction + friendly_id: hob_type__zoneless_induction +- id: 12338 + name: Cast iron + friendly_id: top_surface_material__cast_iron +- id: 12339 + name: Ceramic + friendly_id: top_surface_material__ceramic +- id: 12340 + name: Glass-ceramic + friendly_id: top_surface_material__glass_ceramic +- id: 12341 + name: Stainless steel + friendly_id: top_surface_material__stainless_steel +- id: 12342 + name: Steel + friendly_id: top_surface_material__steel +- id: 12343 + name: Tempered glass + friendly_id: top_surface_material__tempered_glass +- id: 12344 + name: Undercounter + friendly_id: mounting_type__undercounter +- id: 12345 + name: '1' + friendly_id: star_rating__1 +- id: 12346 + name: '2' + friendly_id: star_rating__2 +- id: 12347 + name: '3' + friendly_id: star_rating__3 +- id: 12348 + name: '4' + friendly_id: star_rating__4 +- id: 12349 + name: '5' + friendly_id: star_rating__5 +- id: 12350 + name: '6' + friendly_id: star_rating__6 +- id: 12351 + name: Frozen yogurt + friendly_id: compatible_recipes__frozen_yogurt +- id: 12352 + name: Fruit ice + friendly_id: compatible_recipes__fruit_ice +- id: 12353 + name: Gelato + friendly_id: compatible_recipes__gelato +- id: 12354 + name: Ice cream + friendly_id: compatible_recipes__ice_cream +- id: 12355 + name: Sherbet + friendly_id: compatible_recipes__sherbet +- id: 12356 + name: Sorbet + friendly_id: compatible_recipes__sorbet +- id: 12357 + name: Charcoal + friendly_id: power_source__charcoal +- id: 12358 + name: Roasting pan + friendly_id: oven_accessories_included__roasting_pan +- id: 12359 + name: Rotisserie attachment + friendly_id: oven_accessories_included__rotisserie_attachment +- id: 12360 + name: Wire rack + friendly_id: oven_accessories_included__wire_rack +- id: 12361 + name: Ducted + friendly_id: extraction_type__ducted +- id: 12362 + name: Ductless + friendly_id: extraction_type__ductless +- id: 12363 + name: Convertible + friendly_id: extraction_type__convertible +- id: 12364 + name: Aluminum + friendly_id: grease_filter_material__aluminum +- id: 12365 + name: Carbon + friendly_id: grease_filter_material__carbon +- id: 12366 + name: Charcoal + friendly_id: grease_filter_material__charcoal +- id: 12367 + name: Fiberglass + friendly_id: grease_filter_material__fiberglass +- id: 12368 + name: Mesh + friendly_id: grease_filter_material__mesh +- id: 12369 + name: Metal + friendly_id: grease_filter_material__metal +- id: 12370 + name: Stainless steel + friendly_id: grease_filter_material__stainless_steel +- id: 12371 + name: Steel + friendly_id: grease_filter_material__steel +- id: 12372 + name: Synthetic + friendly_id: grease_filter_material__synthetic +- id: 12373 + name: Carbonating cylinder + friendly_id: soda_maker_accessories_included__carbonating_cylinder +- id: 12374 + name: Reusable bottle + friendly_id: soda_maker_accessories_included__reusable_bottle +- id: 12375 + name: Soda maker unit + friendly_id: soda_maker_accessories_included__soda_maker_unit +- id: 12376 + name: Syrup + friendly_id: soda_maker_accessories_included__syrup +- id: 12377 + name: Coffee machine + friendly_id: water_filter_application__coffee_machine +- id: 12378 + name: Drinking water appliance + friendly_id: water_filter_application__drinking_water_appliance +- id: 12379 + name: Food preparation + friendly_id: water_filter_application__food_preparation +- id: 12380 + name: Ice machine + friendly_id: water_filter_application__ice_machine +- id: 12381 + name: Oven + friendly_id: water_filter_application__oven +- id: 12382 + name: Steamer + friendly_id: water_filter_application__steamer +- id: 12383 + name: Tea brewing + friendly_id: water_filter_application__tea_brewing +- id: 12384 + name: Fahrenheit (°F) + friendly_id: units_of_measurement__fahrenheit_f +- id: 12385 + name: Celsius (°C) + friendly_id: units_of_measurement__celsius_c +- id: 12386 + name: Cereals + friendly_id: food_dispenser_type__cereals +- id: 12387 + name: Grains + friendly_id: food_dispenser_type__grains +- id: 12388 + name: Pasta + friendly_id: food_dispenser_type__pasta +- id: 12389 + name: Seeds + friendly_id: food_dispenser_type__seeds +- id: 12390 + name: Sweets + friendly_id: food_dispenser_type__sweets +- id: 12391 + name: Combination + friendly_id: edge_type__combination +- id: 12392 + name: Granton + friendly_id: edge_type__granton +- id: 12393 + name: Hollow + friendly_id: edge_type__hollow +- id: 12394 + name: Micro-serrated + friendly_id: edge_type__micro_serrated +- id: 12395 + name: Notched + friendly_id: edge_type__notched +- id: 12396 + name: Tapered + friendly_id: edge_type__tapered +- id: 12397 + name: Serrated + friendly_id: edge_type__serrated +- id: 12398 + name: Straight + friendly_id: edge_type__straight +- id: 12399 + name: Bottle opener + friendly_id: kitchen_utensil_items_included__bottle_opener +- id: 12400 + name: Can opener + friendly_id: kitchen_utensil_items_included__can_opener +- id: 12401 + name: Ladle + friendly_id: kitchen_utensil_items_included__ladle +- id: 12402 + name: Pasta server + friendly_id: kitchen_utensil_items_included__pasta_server +- id: 12403 + name: Peeler + friendly_id: kitchen_utensil_items_included__peeler +- id: 12404 + name: Slotted spoon + friendly_id: kitchen_utensil_items_included__slotted_spoon +- id: 12405 + name: Solid spoon + friendly_id: kitchen_utensil_items_included__solid_spoon +- id: 12406 + name: Spatula + friendly_id: kitchen_utensil_items_included__spatula +- id: 12407 + name: Tongs + friendly_id: kitchen_utensil_items_included__tongs +- id: 12408 + name: Whisk + friendly_id: kitchen_utensil_items_included__whisk +- id: 12409 + name: Cups (c) + friendly_id: units_of_measurement__cups_c +- id: 12410 + name: Quarts (qt) + friendly_id: units_of_measurement__quarts_qt +- id: 12411 + name: Liters (l) + friendly_id: units_of_measurement__liters_l +- id: 12412 + name: Milliliters (ml) + friendly_id: units_of_measurement__milliliters_ml +- id: 12413 + name: Spaghetti + friendly_id: pasta_shape_type__spaghetti +- id: 12414 + name: Linguine + friendly_id: pasta_shape_type__linguine +- id: 12415 + name: Fettuccine + friendly_id: pasta_shape_type__fettuccine +- id: 12416 + name: Lasagna + friendly_id: pasta_shape_type__lasagna +- id: 12417 + name: Ravioli + friendly_id: pasta_shape_type__ravioli +- id: 12418 + name: Tortellini + friendly_id: pasta_shape_type__tortellini +- id: 12419 + name: Gnocchi + friendly_id: pasta_shape_type__gnocchi +- id: 12420 + name: Penne + friendly_id: pasta_shape_type__penne +- id: 12421 + name: Rigatoni + friendly_id: pasta_shape_type__rigatoni +- id: 12422 + name: Farfalle + friendly_id: pasta_shape_type__farfalle +- id: 12423 + name: Coffee pot + friendly_id: coffee_tea_set_pieces_included__coffee_pot +- id: 12424 + name: Creamer + friendly_id: coffee_tea_set_pieces_included__creamer +- id: 12425 + name: Cups + friendly_id: coffee_tea_set_pieces_included__cups +- id: 12426 + name: Saucers + friendly_id: coffee_tea_set_pieces_included__saucers +- id: 12427 + name: Scoop + friendly_id: coffee_tea_set_pieces_included__scoop +- id: 12428 + name: Sugar bowl + friendly_id: coffee_tea_set_pieces_included__sugar_bowl +- id: 12429 + name: Teapot + friendly_id: coffee_tea_set_pieces_included__teapot +- id: 12430 + name: Teaspoons + friendly_id: coffee_tea_set_pieces_included__teaspoons +- id: 12431 + name: Tray + friendly_id: coffee_tea_set_pieces_included__tray +- id: 12432 + name: Bamboo + friendly_id: tableware_material__bamboo +- id: 12433 + name: Bone china + friendly_id: tableware_material__bone_china +- id: 12434 + name: Brass + friendly_id: tableware_material__brass +- id: 12435 + name: Cast iron + friendly_id: tableware_material__cast_iron +- id: 12436 + name: Ceramic + friendly_id: tableware_material__ceramic +- id: 12437 + name: Concrete + friendly_id: tableware_material__concrete +- id: 12438 + name: Earthenware + friendly_id: tableware_material__earthenware +- id: 12439 + name: Glass + friendly_id: tableware_material__glass +- id: 12440 + name: Marble + friendly_id: tableware_material__marble +- id: 12441 + name: Melamine + friendly_id: tableware_material__melamine +- id: 12442 + name: Metal + friendly_id: tableware_material__metal +- id: 12443 + name: Plastic + friendly_id: tableware_material__plastic +- id: 12444 + name: Polyvinyl chloride (PVC) + friendly_id: tableware_material__polyvinyl_chloride_pvc +- id: 12445 + name: Porcelain + friendly_id: tableware_material__porcelain +- id: 12446 + name: Silicone + friendly_id: tableware_material__silicone +- id: 12447 + name: Stainless steel + friendly_id: tableware_material__stainless_steel +- id: 12448 + name: Steel + friendly_id: tableware_material__steel +- id: 12449 + name: Stone + friendly_id: tableware_material__stone +- id: 12450 + name: Stoneware + friendly_id: tableware_material__stoneware +- id: 12451 + name: Synthetic + friendly_id: tableware_material__synthetic +- id: 12452 + name: Teak wood + friendly_id: tableware_material__teak_wood +- id: 12453 + name: Wood + friendly_id: tableware_material__wood +- id: 12454 + name: Zamak + friendly_id: tableware_material__zamak +- id: 12455 + name: Other + friendly_id: tableware_material__other +- id: 12456 + name: Bowls + friendly_id: dinnerware_pieces_included__bowls +- id: 12457 + name: Butter dish + friendly_id: dinnerware_pieces_included__butter_dish +- id: 12458 + name: Cups + friendly_id: dinnerware_pieces_included__cups +- id: 12459 + name: Dinner plates + friendly_id: dinnerware_pieces_included__dinner_plates +- id: 12460 + name: Mugs + friendly_id: dinnerware_pieces_included__mugs +- id: 12461 + name: Pepper shaker + friendly_id: dinnerware_pieces_included__pepper_shaker +- id: 12462 + name: Salad plate + friendly_id: dinnerware_pieces_included__salad_plate +- id: 12463 + name: Salt shaker + friendly_id: dinnerware_pieces_included__salt_shaker +- id: 12464 + name: Saucers + friendly_id: dinnerware_pieces_included__saucers +- id: 12465 + name: Serving bowl + friendly_id: dinnerware_pieces_included__serving_bowl +- id: 12466 + name: Serving platter + friendly_id: dinnerware_pieces_included__serving_platter +- id: 12467 + name: Ceramic + friendly_id: drinkware_material__ceramic +- id: 12468 + name: Glass + friendly_id: drinkware_material__glass +- id: 12469 + name: Plastic + friendly_id: drinkware_material__plastic +- id: 12470 + name: Stainless steel + friendly_id: drinkware_material__stainless_steel +- id: 12471 + name: Champagne flutes + friendly_id: drinkware_pieces_included__champagne_flutes +- id: 12472 + name: Coasters + friendly_id: drinkware_pieces_included__coasters +- id: 12473 + name: Highball glasses + friendly_id: drinkware_pieces_included__highball_glasses +- id: 12474 + name: Ice bucket + friendly_id: drinkware_pieces_included__ice_bucket +- id: 12475 + name: Lowball glasses + friendly_id: drinkware_pieces_included__lowball_glasses +- id: 12476 + name: Martini glasses + friendly_id: drinkware_pieces_included__martini_glasses +- id: 12477 + name: Pitcher + friendly_id: drinkware_pieces_included__pitcher +- id: 12478 + name: Shot glasses + friendly_id: drinkware_pieces_included__shot_glasses +- id: 12479 + name: Wine glasses + friendly_id: drinkware_pieces_included__wine_glasses +- id: 12480 + name: Bamboo + friendly_id: flatware_material__bamboo +- id: 12481 + name: Beech wood + friendly_id: flatware_material__beech_wood +- id: 12482 + name: Ceramic + friendly_id: flatware_material__ceramic +- id: 12483 + name: Glass + friendly_id: flatware_material__glass +- id: 12484 + name: Gold + friendly_id: flatware_material__gold +- id: 12485 + name: Gold-plated + friendly_id: flatware_material__gold_plated +- id: 12486 + name: Melamine + friendly_id: flatware_material__melamine +- id: 12487 + name: Nylon + friendly_id: flatware_material__nylon +- id: 12488 + name: Plastic + friendly_id: flatware_material__plastic +- id: 12489 + name: Polyethylene (PE) + friendly_id: flatware_material__polyethylene_pe +- id: 12490 + name: Polypropylene (PP) + friendly_id: flatware_material__polypropylene_pp +- id: 12491 + name: Polyvinyl chloride (PVC) + friendly_id: flatware_material__polyvinyl_chloride_pvc +- id: 12492 + name: Porcelain + friendly_id: flatware_material__porcelain +- id: 12493 + name: Silicone + friendly_id: flatware_material__silicone +- id: 12494 + name: Silver + friendly_id: flatware_material__silver +- id: 12495 + name: Silver-plated + friendly_id: flatware_material__silver_plated +- id: 12496 + name: Stainless steel + friendly_id: flatware_material__stainless_steel +- id: 12497 + name: Steel + friendly_id: flatware_material__steel +- id: 12498 + name: Synthetic + friendly_id: flatware_material__synthetic +- id: 12499 + name: Thermoplastic elastomer (TPE) + friendly_id: flatware_material__thermoplastic_elastomer_tpe +- id: 12500 + name: Thermoplastic polyurethane (TPU) + friendly_id: flatware_material__thermoplastic_polyurethane_tpu +- id: 12501 + name: Wood + friendly_id: flatware_material__wood +- id: 12502 + name: Other + friendly_id: flatware_material__other +- id: 12503 + name: Butter knife + friendly_id: flatware_pieces_included__butter_knife +- id: 12504 + name: Dinner fork + friendly_id: flatware_pieces_included__dinner_fork +- id: 12505 + name: Dinner knife + friendly_id: flatware_pieces_included__dinner_knife +- id: 12506 + name: Salad fork + friendly_id: flatware_pieces_included__salad_fork +- id: 12507 + name: Serving spoon + friendly_id: flatware_pieces_included__serving_spoon +- id: 12508 + name: Soup spoon + friendly_id: flatware_pieces_included__soup_spoon +- id: 12509 + name: Steak knife + friendly_id: flatware_pieces_included__steak_knife +- id: 12510 + name: Sugar spoon + friendly_id: flatware_pieces_included__sugar_spoon +- id: 12511 + name: Teaspoon + friendly_id: flatware_pieces_included__teaspoon +- id: 12512 + name: Flower gardening + friendly_id: gardening_use__flower_gardening +- id: 12513 + name: Landscaping + friendly_id: gardening_use__landscaping +- id: 12514 + name: Mulching + friendly_id: gardening_use__mulching +- id: 12515 + name: Plant growth + friendly_id: gardening_use__plant_growth +- id: 12516 + name: Soil quality + friendly_id: gardening_use__soil_quality +- id: 12517 + name: Vegetable gardening + friendly_id: gardening_use__vegetable_gardening +- id: 12518 + name: Liquid spray + friendly_id: pest_control_method__liquid_spray +- id: 12519 + name: Dust + friendly_id: pest_control_method__dust +- id: 12520 + name: Granules + friendly_id: pest_control_method__granules +- id: 12521 + name: Biological + friendly_id: pest_control_method__biological +- id: 12522 + name: Fungi + friendly_id: suitable_for_pest_type__fungi +- id: 12523 + name: Bacteria + friendly_id: suitable_for_pest_type__bacteria +- id: 12524 + name: Viruses + friendly_id: suitable_for_pest_type__viruses +- id: 12525 + name: Nematodes + friendly_id: suitable_for_pest_type__nematodes +- id: 12526 + name: Phytoplasmas + friendly_id: suitable_for_pest_type__phytoplasmas +- id: 12527 + name: Oomycetes + friendly_id: suitable_for_pest_type__oomycetes +- id: 12528 + name: Parasitic plants + friendly_id: suitable_for_pest_type__parasitic_plants +- id: 12529 + name: Nitrogen + friendly_id: nutrient_content__nitrogen +- id: 12530 + name: Phosphorus + friendly_id: nutrient_content__phosphorus +- id: 12531 + name: Potassium + friendly_id: nutrient_content__potassium +- id: 12532 + name: Calcium + friendly_id: nutrient_content__calcium +- id: 12533 + name: Magnesium + friendly_id: nutrient_content__magnesium +- id: 12534 + name: Sulfur + friendly_id: nutrient_content__sulfur +- id: 12535 + name: Iron + friendly_id: nutrient_content__iron +- id: 12536 + name: Manganese + friendly_id: nutrient_content__manganese +- id: 12537 + name: Zinc + friendly_id: nutrient_content__zinc +- id: 12538 + name: Copper + friendly_id: nutrient_content__copper +- id: 12539 + name: Molybdenum + friendly_id: nutrient_content__molybdenum +- id: 12540 + name: Boron + friendly_id: nutrient_content__boron +- id: 12541 + name: Fork + friendly_id: compatible_gardening_tool__fork +- id: 12542 + name: Lawn roller + friendly_id: compatible_gardening_tool__lawn_roller +- id: 12543 + name: Machete + friendly_id: compatible_gardening_tool__machete +- id: 12544 + name: Pruning saw + friendly_id: compatible_gardening_tool__pruning_saw +- id: 12545 + name: Pruning shears + friendly_id: compatible_gardening_tool__pruning_shears +- id: 12546 + name: Rake + friendly_id: compatible_gardening_tool__rake +- id: 12547 + name: Shovel + friendly_id: compatible_gardening_tool__shovel +- id: 12548 + name: Sickle + friendly_id: compatible_gardening_tool__sickle +- id: 12549 + name: Spade + friendly_id: compatible_gardening_tool__spade +- id: 12550 + name: Sprayer + friendly_id: compatible_gardening_tool__sprayer +- id: 12551 + name: Spreader + friendly_id: compatible_gardening_tool__spreader +- id: 12552 + name: Trowel + friendly_id: compatible_gardening_tool__trowel +- id: 12553 + name: Anvil + friendly_id: cutting_method__anvil +- id: 12554 + name: Bypass + friendly_id: cutting_method__bypass +- id: 12555 + name: Scissor + friendly_id: cutting_method__scissor +- id: 12556 + name: Aluminum + friendly_id: screen_material__aluminum +- id: 12557 + name: Fiberglass + friendly_id: screen_material__fiberglass +- id: 12558 + name: Glass + friendly_id: screen_material__glass +- id: 12559 + name: Metal + friendly_id: screen_material__metal +- id: 12560 + name: Plastic + friendly_id: screen_material__plastic +- id: 12561 + name: Polycarbonate (PC) + friendly_id: screen_material__polycarbonate_pc +- id: 12562 + name: Polyester + friendly_id: screen_material__polyester +- id: 12563 + name: Stainless steel + friendly_id: screen_material__stainless_steel +- id: 12564 + name: Steel + friendly_id: screen_material__steel +- id: 12565 + name: 2,4-d + friendly_id: ingredients__24_d +- id: 12566 + name: Mold + friendly_id: targeted_pests__mold +- id: 12567 + name: Algae + friendly_id: targeted_pests__algae +- id: 12568 + name: Lichen + friendly_id: targeted_pests__lichen +- id: 12569 + name: Moss + friendly_id: targeted_pests__moss +- id: 12570 + name: Weed + friendly_id: targeted_pests__weed +- id: 12571 + name: Bamboo + friendly_id: plant_support_material__bamboo +- id: 12572 + name: Ceramic + friendly_id: plant_support_material__ceramic +- id: 12573 + name: Coir + friendly_id: plant_support_material__coir +- id: 12574 + name: Concrete + friendly_id: plant_support_material__concrete +- id: 12575 + name: Fiberglass + friendly_id: plant_support_material__fiberglass +- id: 12576 + name: Glass + friendly_id: plant_support_material__glass +- id: 12577 + name: Metal + friendly_id: plant_support_material__metal +- id: 12578 + name: Plastic + friendly_id: plant_support_material__plastic +- id: 12579 + name: Resin + friendly_id: plant_support_material__resin +- id: 12580 + name: Stone + friendly_id: plant_support_material__stone +- id: 12581 + name: Terracotta + friendly_id: plant_support_material__terracotta +- id: 12582 + name: Wood + friendly_id: plant_support_material__wood +- id: 12583 + name: Standard + friendly_id: gardening_use__standard +- id: 12584 + name: Multi-purpose + friendly_id: gardening_use__multi_purpose +- id: 12585 + name: Fixed + friendly_id: awning_construction_type__fixed +- id: 12586 + name: Retractable + friendly_id: awning_construction_type__retractable +- id: 12587 + name: Inflatable + friendly_id: awning_construction_type__inflatable +- id: 12588 + name: Curved + friendly_id: awning_design__curved +- id: 12589 + name: Flat + friendly_id: awning_design__flat +- id: 12590 + name: Frame + friendly_id: compatible_hammock_design__frame +- id: 12591 + name: Hanging + friendly_id: compatible_hammock_design__hanging +- id: 12592 + name: Ember glow + friendly_id: light_temperature__ember_glow +- id: 12593 + name: Warm white + friendly_id: light_temperature__warm_white +- id: 12594 + name: Cool white + friendly_id: light_temperature__cool_white +- id: 12595 + name: Daylight + friendly_id: light_temperature__daylight +- id: 12596 + name: Blue light + friendly_id: light_temperature__blue_light +- id: 12597 + name: Cotton + friendly_id: canopy_material__cotton +- id: 12598 + name: Fiberglass + friendly_id: canopy_material__fiberglass +- id: 12599 + name: Nylon + friendly_id: canopy_material__nylon +- id: 12600 + name: Plastic + friendly_id: canopy_material__plastic +- id: 12601 + name: Polyamide (PA) + friendly_id: canopy_material__polyamide_pa +- id: 12602 + name: Polyester + friendly_id: canopy_material__polyester +- id: 12603 + name: Vinyl + friendly_id: canopy_material__vinyl +- id: 12604 + name: Battery charger + friendly_id: outdoor_power_accessories_included__battery_charger +- id: 12605 + name: Blower + friendly_id: outdoor_power_accessories_included__blower +- id: 12606 + name: Chainsaw + friendly_id: outdoor_power_accessories_included__chainsaw +- id: 12607 + name: Ear plugs + friendly_id: outdoor_power_accessories_included__ear_plugs +- id: 12608 + name: Hedge trimmer + friendly_id: outdoor_power_accessories_included__hedge_trimmer +- id: 12609 + name: Lawn mower + friendly_id: outdoor_power_accessories_included__lawn_mower +- id: 12610 + name: Safety glasses + friendly_id: outdoor_power_accessories_included__safety_glasses +- id: 12611 + name: Trimmer + friendly_id: outdoor_power_accessories_included__trimmer +- id: 12612 + name: Tow + friendly_id: propulsion_type__tow +- id: 12613 + name: Rose + friendly_id: sprinkler_head_type__rose +- id: 12614 + name: Shower + friendly_id: sprinkler_head_type__shower +- id: 12615 + name: Jet + friendly_id: sprinkler_head_type__jet +- id: 12616 + name: Cone + friendly_id: sprinkler_head_type__cone +- id: 12617 + name: Flat + friendly_id: sprinkler_head_type__flat +- id: 12618 + name: A15 + friendly_id: bulb_size__a15 +- id: 12619 + name: A19 + friendly_id: bulb_size__a19 +- id: 12620 + name: A21 + friendly_id: bulb_size__a21 +- id: 12621 + name: BR30 + friendly_id: bulb_size__br30 +- id: 12622 + name: BR40 + friendly_id: bulb_size__br40 +- id: 12623 + name: C7 + friendly_id: bulb_size__c7 +- id: 12624 + name: C9 + friendly_id: bulb_size__c9 +- id: 12625 + name: G25 + friendly_id: bulb_size__g25 +- id: 12626 + name: PAR20 + friendly_id: bulb_size__par20 +- id: 12627 + name: PAR30 + friendly_id: bulb_size__par30 +- id: 12628 + name: PAR38 + friendly_id: bulb_size__par38 +- id: 12629 + name: T2 + friendly_id: bulb_size__t2 +- id: 12630 + name: T4 + friendly_id: bulb_size__t4 +- id: 12631 + name: T5 + friendly_id: bulb_size__t5 +- id: 12632 + name: T8 + friendly_id: bulb_size__t8 +- id: 12633 + name: E10 + friendly_id: bulb_cap_type__e10 +- id: 12634 + name: E12 + friendly_id: bulb_cap_type__e12 +- id: 12635 + name: E26 + friendly_id: bulb_cap_type__e26 +- id: 12636 + name: E27 + friendly_id: bulb_cap_type__e27 +- id: 12637 + name: G4 + friendly_id: bulb_cap_type__g4 +- id: 12638 + name: G9 + friendly_id: bulb_cap_type__g9 +- id: 12639 + name: GU10 + friendly_id: bulb_cap_type__gu10 +- id: 12640 + name: GU24 + friendly_id: bulb_cap_type__gu24 +- id: 12641 + name: MR16 + friendly_id: bulb_cap_type__mr16 +- id: 12642 + name: A-shape + friendly_id: bulb_shape__a_shape +- id: 12643 + name: Globe + friendly_id: bulb_shape__globe +- id: 12644 + name: Candle + friendly_id: bulb_shape__candle +- id: 12645 + name: Reflector + friendly_id: bulb_shape__reflector +- id: 12646 + name: Tube + friendly_id: bulb_shape__tube +- id: 12647 + name: Spiral + friendly_id: bulb_shape__spiral +- id: 12648 + name: Edison + friendly_id: bulb_shape__edison +- id: 12649 + name: Bullet + friendly_id: bulb_shape__bullet +- id: 12650 + name: PAR + friendly_id: bulb_shape__par +- id: 12651 + name: Other + friendly_id: bulb_shape__other +- id: 12652 + name: Minimalist + friendly_id: style__minimalist +- id: 12653 + name: Rustic + friendly_id: style__rustic +- id: 12654 + name: Other + friendly_id: style__other +- id: 12655 + name: Daily + friendly_id: timer_type__daily +- id: 12656 + name: Weekly + friendly_id: timer_type__weekly +- id: 12657 + name: Paraffin oil + friendly_id: oil_type__paraffin_oil +- id: 12658 + name: Lamp oil + friendly_id: oil_type__lamp_oil +- id: 12659 + name: Kerosene + friendly_id: oil_type__kerosene +- id: 12660 + name: Mineral oil + friendly_id: oil_type__mineral_oil +- id: 12661 + name: Citronella oil + friendly_id: oil_type__citronella_oil +- id: 12662 + name: Bottom sheet + friendly_id: bedding_pieces_included__bottom_sheet +- id: 12663 + name: Pillowcase + friendly_id: bedding_pieces_included__pillowcase +- id: 12664 + name: Top sheet + friendly_id: bedding_pieces_included__top_sheet +- id: 12665 + name: Concealed + friendly_id: closure_style__concealed +- id: 12666 + name: Traditional + friendly_id: closure_style__traditional +- id: 12667 + name: Begonia + friendly_id: plant_name__begonia +- id: 12668 + name: Bird of paradise + friendly_id: plant_name__bird_of_paradise +- id: 12669 + name: Crocus + friendly_id: plant_name__crocus +- id: 12670 + name: Cyclamen + friendly_id: plant_name__cyclamen +- id: 12671 + name: Daffodil + friendly_id: plant_name__daffodil +- id: 12672 + name: Daisy + friendly_id: plant_name__daisy +- id: 12673 + name: Dandelion + friendly_id: plant_name__dandelion +- id: 12674 + name: Echinacea + friendly_id: plant_name__echinacea +- id: 12675 + name: Fern + friendly_id: plant_name__fern +- id: 12676 + name: Forsythia + friendly_id: plant_name__forsythia +- id: 12677 + name: Gardenia + friendly_id: plant_name__gardenia +- id: 12678 + name: Geranium + friendly_id: plant_name__geranium +- id: 12679 + name: Hibiscus + friendly_id: plant_name__hibiscus +- id: 12680 + name: Hosta + friendly_id: plant_name__hosta +- id: 12681 + name: Honeysuckle + friendly_id: plant_name__honeysuckle +- id: 12682 + name: Hyacinth + friendly_id: plant_name__hyacinth +- id: 12683 + name: Jasmine + friendly_id: plant_name__jasmine +- id: 12684 + name: Lavender + friendly_id: plant_name__lavender +- id: 12685 + name: Lily + friendly_id: plant_name__lily +- id: 12686 + name: Marigold + friendly_id: plant_name__marigold +- id: 12687 + name: Pansy + friendly_id: plant_name__pansy +- id: 12688 + name: Petunia + friendly_id: plant_name__petunia +- id: 12689 + name: Rubber plant + friendly_id: plant_name__rubber_plant +- id: 12690 + name: Spider plant + friendly_id: plant_name__spider_plant +- id: 12691 + name: Sunflower + friendly_id: plant_name__sunflower +- id: 12692 + name: Sweet pea + friendly_id: plant_name__sweet_pea +- id: 12693 + name: Tulip + friendly_id: plant_name__tulip +- id: 12694 + name: Venus flytrap + friendly_id: plant_name__venus_flytrap +- id: 12695 + name: Violet + friendly_id: plant_name__violet +- id: 12696 + name: Weeping fig + friendly_id: plant_name__weeping_fig +- id: 12697 + name: Yarrow + friendly_id: plant_name__yarrow +- id: 12698 + name: Yucca + friendly_id: plant_name__yucca +- id: 12699 + name: Zinnia + friendly_id: plant_name__zinnia +- id: 12700 + name: Attracts pollinators + friendly_id: plant_characteristics__attracts_pollinators +- id: 12701 + name: Cold hardy + friendly_id: plant_characteristics__cold_hardy +- id: 12702 + name: Deer-resistant + friendly_id: plant_characteristics__deer_resistant +- id: 12703 + name: Disease resistant + friendly_id: plant_characteristics__disease_resistant +- id: 12704 + name: Drought resistant + friendly_id: plant_characteristics__drought_resistant +- id: 12705 + name: Edible + friendly_id: plant_characteristics__edible +- id: 12706 + name: Evergreen + friendly_id: plant_characteristics__evergreen +- id: 12707 + name: Fast-growing + friendly_id: plant_characteristics__fast_growing +- id: 12708 + name: Flowering + friendly_id: plant_characteristics__flowering +- id: 12709 + name: Fragrant + friendly_id: plant_characteristics__fragrant +- id: 12710 + name: Groundcover + friendly_id: plant_characteristics__groundcover +- id: 12711 + name: Self-fertile + friendly_id: plant_characteristics__self_fertile +- id: 12712 + name: Self-pollinating + friendly_id: plant_characteristics__self_pollinating +- id: 12713 + name: Full sun + friendly_id: sunlight__full_sun +- id: 12714 + name: Partial shade + friendly_id: sunlight__partial_shade +- id: 12715 + name: Shade + friendly_id: sunlight__shade +- id: 12716 + name: Allium schoenoprasum + friendly_id: culinary_botanical_name__allium_schoenoprasum +- id: 12717 + name: Anethum graveolens + friendly_id: culinary_botanical_name__anethum_graveolens +- id: 12718 + name: Anthriscus cerefolium + friendly_id: culinary_botanical_name__anthriscus_cerefolium +- id: 12719 + name: Artemisia dracunculus + friendly_id: culinary_botanical_name__artemisia_dracunculus +- id: 12720 + name: Capsicum annuum + friendly_id: culinary_botanical_name__capsicum_annuum +- id: 12721 + name: Coriandrum sativum + friendly_id: culinary_botanical_name__coriandrum_sativum +- id: 12722 + name: Cucumis sativus + friendly_id: culinary_botanical_name__cucumis_sativus +- id: 12723 + name: Cucurbita pepo + friendly_id: culinary_botanical_name__cucurbita_pepo +- id: 12724 + name: Foeniculum vulgare + friendly_id: culinary_botanical_name__foeniculum_vulgare +- id: 12725 + name: Laurus nobilis + friendly_id: culinary_botanical_name__laurus_nobilis +- id: 12726 + name: Lavandula angustifolia + friendly_id: culinary_botanical_name__lavandula_angustifolia +- id: 12727 + name: Mentha + friendly_id: culinary_botanical_name__mentha +- id: 12728 + name: Murraya koenigii + friendly_id: culinary_botanical_name__murraya_koenigii +- id: 12729 + name: Ocimum basilicum + friendly_id: culinary_botanical_name__ocimum_basilicum +- id: 12730 + name: Origanum majorana + friendly_id: culinary_botanical_name__origanum_majorana +- id: 12731 + name: Origanum vulgare + friendly_id: culinary_botanical_name__origanum_vulgare +- id: 12732 + name: Petroselinum crispum + friendly_id: culinary_botanical_name__petroselinum_crispum +- id: 12733 + name: Rosmarinus officinalis + friendly_id: culinary_botanical_name__rosmarinus_officinalis +- id: 12734 + name: Salvia officinalis + friendly_id: culinary_botanical_name__salvia_officinalis +- id: 12735 + name: Solanum lycopersicum + friendly_id: culinary_botanical_name__solanum_lycopersicum +- id: 12736 + name: Solanum lycopersicum var. cerasiforme + friendly_id: culinary_botanical_name__solanum_lycopersicum_var_cerasiforme +- id: 12737 + name: Solanum melongena + friendly_id: culinary_botanical_name__solanum_melongena +- id: 12738 + name: Thymus vulgaris + friendly_id: culinary_botanical_name__thymus_vulgaris +- id: 12739 + name: Vitis vinifera + friendly_id: culinary_botanical_name__vitis_vinifera +- id: 12740 + name: Aubergine + friendly_id: plant_name__aubergine +- id: 12741 + name: Basil + friendly_id: plant_name__basil +- id: 12742 + name: Bay leaves + friendly_id: plant_name__bay_leaves +- id: 12743 + name: Bell pepper + friendly_id: plant_name__bell_pepper +- id: 12744 + name: Cherry tomato + friendly_id: plant_name__cherry_tomato +- id: 12745 + name: Chervil + friendly_id: plant_name__chervil +- id: 12746 + name: Chives + friendly_id: plant_name__chives +- id: 12747 + name: Cilantro + friendly_id: plant_name__cilantro +- id: 12748 + name: Coriander + friendly_id: plant_name__coriander +- id: 12749 + name: Courgette + friendly_id: plant_name__courgette +- id: 12750 + name: Cucumber + friendly_id: plant_name__cucumber +- id: 12751 + name: Curry leaves + friendly_id: plant_name__curry_leaves +- id: 12752 + name: Dill + friendly_id: plant_name__dill +- id: 12753 + name: Fennel + friendly_id: plant_name__fennel +- id: 12754 + name: Grape vine + friendly_id: plant_name__grape_vine +- id: 12755 + name: Marjoram + friendly_id: plant_name__marjoram +- id: 12756 + name: Mint + friendly_id: plant_name__mint +- id: 12757 + name: Oregano + friendly_id: plant_name__oregano +- id: 12758 + name: Parsley + friendly_id: plant_name__parsley +- id: 12759 + name: Rosemary + friendly_id: plant_name__rosemary +- id: 12760 + name: Sage + friendly_id: plant_name__sage +- id: 12761 + name: Tarragon + friendly_id: plant_name__tarragon +- id: 12762 + name: Thyme + friendly_id: plant_name__thyme +- id: 12763 + name: Tomato + friendly_id: plant_name__tomato +- id: 12764 + name: Above-ground pool + friendly_id: suitable_for_pool_type__above_ground_pool +- id: 12765 + name: Built-in pool + friendly_id: suitable_for_pool_type__built_in_pool +- id: 12766 + name: Inflatable pool + friendly_id: suitable_for_pool_type__inflatable_pool +- id: 12767 + name: Firewood + friendly_id: power_source__firewood +- id: 12768 + name: Aspen wood + friendly_id: wall_material__aspen_wood +- id: 12769 + name: Cedar wood + friendly_id: wall_material__cedar_wood +- id: 12770 + name: Hemlock + friendly_id: wall_material__hemlock +- id: 12771 + name: Pine wood + friendly_id: wall_material__pine_wood +- id: 12772 + name: Spruce wood + friendly_id: wall_material__spruce_wood +- id: 12773 + name: '0.58' + friendly_id: humidity_control__0_58 +- id: 12774 + name: '0.62' + friendly_id: humidity_control__0_62 +- id: 12775 + name: '0.65' + friendly_id: humidity_control__0_65 +- id: 12776 + name: '0.68' + friendly_id: humidity_control__0_68 +- id: 12777 + name: '0.72' + friendly_id: humidity_control__0_72 +- id: 12778 + name: '0.75' + friendly_id: humidity_control__0_75 +- id: 12779 + name: Buckles + friendly_id: tag_fastening__buckles +- id: 12780 + name: Loop + friendly_id: tag_fastening__loop +- id: 12781 + name: Strap + friendly_id: tag_fastening__strap +- id: 12782 + name: Flip cap + friendly_id: bottle_container_closure__flip_cap +- id: 12783 + name: Pump + friendly_id: bottle_container_closure__pump +- id: 12784 + name: Screw cap + friendly_id: bottle_container_closure__screw_cap +- id: 12785 + name: Adjustable + friendly_id: bag_strap_type__adjustable +- id: 12786 + name: Crossbody + friendly_id: bag_strap_type__crossbody +- id: 12787 + name: Shoulder + friendly_id: bag_strap_type__shoulder +- id: 12788 + name: Short + friendly_id: tote_handle_type__short +- id: 12789 + name: Long + friendly_id: tote_handle_type__long +- id: 12790 + name: Dual + friendly_id: tote_handle_type__dual +- id: 12791 + name: 2-wheel + friendly_id: spinner_type__2_wheel +- id: 12792 + name: 4-wheel + friendly_id: spinner_type__4_wheel +- id: 12793 + name: 8-wheel + friendly_id: spinner_type__8_wheel +- id: 12794 + name: Telescopic + friendly_id: suitcase_handle_type__telescopic +- id: 12795 + name: Top carry + friendly_id: suitcase_handle_type__top_carry +- id: 12796 + name: Side carry + friendly_id: suitcase_handle_type__side_carry +- id: 12797 + name: Handle + friendly_id: carry_options__handle +- id: 12798 + name: Shoulder strap + friendly_id: carry_options__shoulder_strap +- id: 12799 + name: Compartments + friendly_id: interior_features__compartments +- id: 12800 + name: Dividers + friendly_id: interior_features__dividers +- id: 12801 + name: Mirror + friendly_id: interior_features__mirror +- id: 12802 + name: Undergraduate + friendly_id: academic_level__undergraduate +- id: 12803 + name: Graduate + friendly_id: academic_level__graduate +- id: 12804 + name: Doctoral + friendly_id: academic_level__doctoral +- id: 12805 + name: Postdoctoral + friendly_id: academic_level__postdoctoral +- id: 12806 + name: Faculty research + friendly_id: academic_level__faculty_research +- id: 12807 + name: Journal article + friendly_id: publication_type__journal_article +- id: 12808 + name: Conference paper + friendly_id: publication_type__conference_paper +- id: 12809 + name: Thesis + friendly_id: publication_type__thesis +- id: 12810 + name: Dissertation + friendly_id: publication_type__dissertation +- id: 12811 + name: Research report + friendly_id: publication_type__research_report +- id: 12812 + name: Book chapter + friendly_id: publication_type__book_chapter +- id: 12813 + name: Technical report + friendly_id: publication_type__technical_report +- id: 12814 + name: White paper + friendly_id: publication_type__white_paper +- id: 12815 + name: Review article + friendly_id: publication_type__review_article +- id: 12816 + name: Case study + friendly_id: publication_type__case_study +- id: 12817 + name: Anthropology + friendly_id: research_focus__anthropology +- id: 12818 + name: Biology + friendly_id: research_focus__biology +- id: 12819 + name: Chemistry + friendly_id: research_focus__chemistry +- id: 12820 + name: Computer science + friendly_id: research_focus__computer_science +- id: 12821 + name: Economics + friendly_id: research_focus__economics +- id: 12822 + name: Environmental science + friendly_id: research_focus__environmental_science +- id: 12823 + name: Geography + friendly_id: research_focus__geography +- id: 12824 + name: History + friendly_id: research_focus__history +- id: 12825 + name: Linguistics + friendly_id: research_focus__linguistics +- id: 12826 + name: Literature + friendly_id: research_focus__literature +- id: 12827 + name: Philosophy + friendly_id: research_focus__philosophy +- id: 12828 + name: Physics + friendly_id: research_focus__physics +- id: 12829 + name: Political science + friendly_id: research_focus__political_science +- id: 12830 + name: Psychology + friendly_id: research_focus__psychology +- id: 12831 + name: Sociology + friendly_id: research_focus__sociology +- id: 12832 + name: Other + friendly_id: research_focus__other +- id: 12833 + name: Experimental + friendly_id: research_methodology__experimental +- id: 12834 + name: Survey + friendly_id: research_methodology__survey +- id: 12835 + name: Qualitative + friendly_id: research_methodology__qualitative +- id: 12836 + name: Quantitative + friendly_id: research_methodology__quantitative +- id: 12837 + name: Case study + friendly_id: research_methodology__case_study +- id: 12838 + name: Mixed methods + friendly_id: research_methodology__mixed_methods +- id: 12839 + name: Observational + friendly_id: research_methodology__observational +- id: 12840 + name: Modeling and simulation + friendly_id: research_methodology__modeling_and_simulation +- id: 12841 + name: Meta-analysis + friendly_id: research_methodology__meta_analysis +- id: 12842 + name: Literature review + friendly_id: research_methodology__literature_review +- id: 12843 + name: Arts + friendly_id: subject_area__arts +- id: 12844 + name: Business + friendly_id: subject_area__business +- id: 12845 + name: Education + friendly_id: subject_area__education +- id: 12846 + name: Engineering + friendly_id: subject_area__engineering +- id: 12847 + name: Health sciences + friendly_id: subject_area__health_sciences +- id: 12848 + name: Humanities + friendly_id: subject_area__humanities +- id: 12849 + name: Mathematics + friendly_id: subject_area__mathematics +- id: 12850 + name: Science + friendly_id: subject_area__science +- id: 12851 + name: Social sciences + friendly_id: subject_area__social_sciences +- id: 12852 + name: Technology + friendly_id: subject_area__technology +- id: 12853 + name: Other + friendly_id: subject_area__other +- id: 12854 + name: Contemporary + friendly_id: time_period__contemporary +- id: 12855 + name: Historical + friendly_id: time_period__historical +- id: 12856 + name: Prehistoric + friendly_id: time_period__prehistoric +- id: 12857 + name: Modern + friendly_id: time_period__modern +- id: 12858 + name: Ancient + friendly_id: time_period__ancient +- id: 12859 + name: Medieval + friendly_id: time_period__medieval +- id: 12860 + name: Renaissance + friendly_id: time_period__renaissance +- id: 12861 + name: Industrial revolution + friendly_id: time_period__industrial_revolution +- id: 12862 + name: 20th century + friendly_id: time_period__20th_century +- id: 12863 + name: Action & adventure + friendly_id: genre__action_adventure +- id: 12864 + name: Animation + friendly_id: genre__animation +- id: 12865 + name: Anime + friendly_id: genre__anime +- id: 12866 + name: Arts + friendly_id: genre__arts +- id: 12867 + name: Biography + friendly_id: genre__biography +- id: 12868 + name: Business + friendly_id: genre__business +- id: 12869 + name: Children + friendly_id: genre__children +- id: 12870 + name: Comics & graphic novels + friendly_id: genre__comics_graphic_novels +- id: 12871 + name: Crime & mystery + friendly_id: genre__crime_mystery +- id: 12872 + name: Design + friendly_id: genre__design +- id: 12873 + name: Documentary + friendly_id: genre__documentary +- id: 12874 + name: Drama + friendly_id: genre__drama +- id: 12875 + name: Education + friendly_id: genre__education +- id: 12876 + name: Family + friendly_id: genre__family +- id: 12877 + name: Fantasy + friendly_id: genre__fantasy +- id: 12878 + name: Fashion & beauty + friendly_id: genre__fashion_beauty +- id: 12879 + name: Finance + friendly_id: genre__finance +- id: 12880 + name: Food & cooking + friendly_id: genre__food_cooking +- id: 12881 + name: Game show + friendly_id: genre__game_show +- id: 12882 + name: Gaming + friendly_id: genre__gaming +- id: 12883 + name: Health & fitness + friendly_id: genre__health_fitness +- id: 12884 + name: Historical fiction + friendly_id: genre__historical_fiction +- id: 12885 + name: History + friendly_id: genre__history +- id: 12886 + name: Hobbies & interests + friendly_id: genre__hobbies_interests +- id: 12887 + name: Horror + friendly_id: genre__horror +- id: 12888 + name: Humor & comedy + friendly_id: genre__humor_comedy +- id: 12889 + name: Literature + friendly_id: genre__literature +- id: 12890 + name: Marketing + friendly_id: genre__marketing +- id: 12891 + name: Mental health + friendly_id: genre__mental_health +- id: 12892 + name: Movies & TV + friendly_id: genre__movies_tv +- id: 12893 + name: Music + friendly_id: genre__music +- id: 12894 + name: News & politics + friendly_id: genre__news_politics +- id: 12895 + name: Parenting + friendly_id: genre__parenting +- id: 12896 + name: Period drama + friendly_id: genre__period_drama +- id: 12897 + name: Philosophy + friendly_id: genre__philosophy +- id: 12898 + name: Reality TV + friendly_id: genre__reality_tv +- id: 12899 + name: Relationships + friendly_id: genre__relationships +- id: 12900 + name: Religion & spirituality + friendly_id: genre__religion_spirituality +- id: 12901 + name: Romance + friendly_id: genre__romance +- id: 12902 + name: Sci-fi + friendly_id: genre__sci_fi +- id: 12903 + name: Self-help & personal development + friendly_id: genre__self_help_personal_development +- id: 12904 + name: Society & culture + friendly_id: genre__society_culture +- id: 12905 + name: Sports + friendly_id: genre__sports +- id: 12906 + name: Supernatural + friendly_id: genre__supernatural +- id: 12907 + name: Suspense + friendly_id: genre__suspense +- id: 12908 + name: Talk show + friendly_id: genre__talk_show +- id: 12909 + name: Technology + friendly_id: genre__technology +- id: 12910 + name: Thriller & suspense + friendly_id: genre__thriller_suspense +- id: 12911 + name: Travel + friendly_id: genre__travel +- id: 12912 + name: War + friendly_id: genre__war +- id: 12913 + name: Western + friendly_id: genre__western +- id: 12914 + name: Young adult + friendly_id: genre__young_adult +- id: 12915 + name: Other + friendly_id: genre__other +- id: 12916 + name: Other + friendly_id: language_version__other +- id: 12917 + name: Adults + friendly_id: target_audience__adults +- id: 12918 + name: Kids + friendly_id: target_audience__kids +- id: 12919 + name: Suitable for all ages + friendly_id: target_audience__suitable_for_all_ages +- id: 12920 + name: Teens & young adults + friendly_id: target_audience__teens_young_adults +- id: 12921 + name: Hardcover + friendly_id: book_cover_type__hardcover +- id: 12922 + name: Paperback + friendly_id: book_cover_type__paperback +- id: 12923 + name: Soft + friendly_id: book_cover_type__soft +- id: 12924 + name: Soft front & hard back + friendly_id: book_cover_type__soft_front_hard_back +- id: 12925 + name: Other + friendly_id: book_cover_type__other +- id: 12926 + name: Digital subscription + friendly_id: media_access__digital_subscription +- id: 12927 + name: Online + friendly_id: media_access__online +- id: 12928 + name: Print + friendly_id: media_access__print +- id: 12929 + name: Print & online + friendly_id: media_access__print_online +- id: 12930 + name: Art & culture + friendly_id: media_theme__art_culture +- id: 12931 + name: Automotive + friendly_id: media_theme__automotive +- id: 12932 + name: Business & finance + friendly_id: media_theme__business_finance +- id: 12933 + name: Education + friendly_id: media_theme__education +- id: 12934 + name: Entertainment & celebrity + friendly_id: media_theme__entertainment_celebrity +- id: 12935 + name: Fashion + friendly_id: media_theme__fashion +- id: 12936 + name: Food & cooking + friendly_id: media_theme__food_cooking +- id: 12937 + name: Gaming + friendly_id: media_theme__gaming +- id: 12938 + name: Gardening + friendly_id: media_theme__gardening +- id: 12939 + name: Health & wellness + friendly_id: media_theme__health_wellness +- id: 12940 + name: History & heritage + friendly_id: media_theme__history_heritage +- id: 12941 + name: Hobby & crafts + friendly_id: media_theme__hobby_crafts +- id: 12942 + name: Home & decor + friendly_id: media_theme__home_decor +- id: 12943 + name: LGBTQ+ + friendly_id: media_theme__lgbtq+ +- id: 12944 + name: Lifestyle + friendly_id: media_theme__lifestyle +- id: 12945 + name: Literary & writing + friendly_id: media_theme__literary_writing +- id: 12946 + name: Mature + friendly_id: media_theme__mature +- id: 12947 + name: Men's interests + friendly_id: media_theme__mens_interests +- id: 12948 + name: Music + friendly_id: media_theme__music +- id: 12949 + name: News & current affairs + friendly_id: media_theme__news_current_affairs +- id: 12950 + name: Outdoor & adventure + friendly_id: media_theme__outdoor_adventure +- id: 12951 + name: Parenting & family + friendly_id: media_theme__parenting_family +- id: 12952 + name: Pets & animals + friendly_id: media_theme__pets_animals +- id: 12953 + name: Photography + friendly_id: media_theme__photography +- id: 12954 + name: Science & nature + friendly_id: media_theme__science_nature +- id: 12955 + name: Sport & fitness + friendly_id: media_theme__sport_fitness +- id: 12956 + name: Technology + friendly_id: media_theme__technology +- id: 12957 + name: Teen & young adult + friendly_id: media_theme__teen_young_adult +- id: 12958 + name: Travel + friendly_id: media_theme__travel +- id: 12959 + name: Wedding + friendly_id: media_theme__wedding +- id: 12960 + name: Women's interests + friendly_id: media_theme__womens_interests +- id: 12961 + name: Monthly + friendly_id: publication_frequency__monthly +- id: 12962 + name: Bi-monthly + friendly_id: publication_frequency__bi_monthly +- id: 12963 + name: Quarterly + friendly_id: publication_frequency__quarterly +- id: 12964 + name: Semi-annual + friendly_id: publication_frequency__semi_annual +- id: 12965 + name: Annual + friendly_id: publication_frequency__annual +- id: 12966 + name: Weekly + friendly_id: publication_frequency__weekly +- id: 12967 + name: Bi-weekly + friendly_id: publication_frequency__bi_weekly +- id: 12968 + name: Business & finance + friendly_id: media_section__business_finance +- id: 12969 + name: Entertainment + friendly_id: media_section__entertainment +- id: 12970 + name: General news + friendly_id: media_section__general_news +- id: 12971 + name: Lifestyle + friendly_id: media_section__lifestyle +- id: 12972 + name: Politics + friendly_id: media_section__politics +- id: 12973 + name: Sport + friendly_id: media_section__sport +- id: 12974 + name: Tabloid + friendly_id: media_section__tabloid +- id: 12975 + name: Other + friendly_id: media_section__other +- id: 12976 + name: Daily + friendly_id: publication_frequency__daily +- id: 12977 + name: Americana + friendly_id: music_genre__americana +- id: 12978 + name: Audiobook + friendly_id: music_genre__audiobook +- id: 12979 + name: Biography + friendly_id: music_genre__biography +- id: 12980 + name: Daily + friendly_id: release_schedule__daily +- id: 12981 + name: Weekly + friendly_id: release_schedule__weekly +- id: 12982 + name: Bi-weekly + friendly_id: release_schedule__bi_weekly +- id: 12983 + name: Monthly + friendly_id: release_schedule__monthly +- id: 12984 + name: Irregular + friendly_id: release_schedule__irregular +- id: 12985 + name: Other + friendly_id: release_schedule__other +- id: 12986 + name: Camera & optics + friendly_id: product_manual_area__camera_optics +- id: 12987 + name: Electronics + friendly_id: product_manual_area__electronics +- id: 12988 + name: Exercise & fitness equipment + friendly_id: product_manual_area__exercise_fitness_equipment +- id: 12989 + name: Household appliance + friendly_id: product_manual_area__household_appliance +- id: 12990 + name: Kitchen appliance + friendly_id: product_manual_area__kitchen_appliance +- id: 12991 + name: Model & toys + friendly_id: product_manual_area__model_toys +- id: 12992 + name: Office supplies + friendly_id: product_manual_area__office_supplies +- id: 12993 + name: Power tool & equipment + friendly_id: product_manual_area__power_tool_equipment +- id: 12994 + name: Vehicle service + friendly_id: product_manual_area__vehicle_service +- id: 12995 + name: Carpentry & woodworking project plans + friendly_id: product_manual_area__carpentry_woodworking_project_plans +- id: 12996 + name: Other + friendly_id: product_manual_area__other +- id: 12997 + name: Animated series + friendly_id: media_content_type__animated_series +- id: 12998 + name: Concert + friendly_id: media_content_type__concert +- id: 12999 + name: Documentary + friendly_id: media_content_type__documentary +- id: 13000 + name: Educational program + friendly_id: media_content_type__educational_program +- id: 13001 + name: Exercise/Fitness program + friendly_id: media_content_type__exercise_fitness_program +- id: 13002 + name: Live performance + friendly_id: media_content_type__live_performance +- id: 13003 + name: Mini-series + friendly_id: media_content_type__mini_series +- id: 13004 + name: Movie + friendly_id: media_content_type__movie +- id: 13005 + name: Music video compilation + friendly_id: media_content_type__music_video_compilation +- id: 13006 + name: Other + friendly_id: media_content_type__other +- id: 13007 + name: Reality TV + friendly_id: media_content_type__reality_tv +- id: 13008 + name: Special event coverage + friendly_id: media_content_type__special_event_coverage +- id: 13009 + name: Sport event + friendly_id: media_content_type__sport_event +- id: 13010 + name: Stand-up comedy + friendly_id: media_content_type__stand_up_comedy +- id: 13011 + name: TV show + friendly_id: media_content_type__tv_show +- id: 13012 + name: Web series + friendly_id: media_content_type__web_series +- id: 13013 + name: G + friendly_id: mpaa_rating__g +- id: 13014 + name: PG + friendly_id: mpaa_rating__pg +- id: 13015 + name: PG-13 + friendly_id: mpaa_rating__pg_13 +- id: 13016 + name: R + friendly_id: mpaa_rating__r +- id: 13017 + name: NC-17 + friendly_id: mpaa_rating__nc_17 +- id: 13018 + name: U + friendly_id: mpaa_rating__u +- id: 13019 + name: NR + friendly_id: mpaa_rating__nr +- id: 13020 + name: Other + friendly_id: closure_type__other +- id: 13021 + name: Cardboard + friendly_id: book_file_cover_material__cardboard +- id: 13022 + name: Leather + friendly_id: book_file_cover_material__leather +- id: 13023 + name: Metal + friendly_id: book_file_cover_material__metal +- id: 13024 + name: Paper + friendly_id: book_file_cover_material__paper +- id: 13025 + name: Plastic + friendly_id: book_file_cover_material__plastic +- id: 13026 + name: Silicone + friendly_id: book_file_cover_material__silicone +- id: 13027 + name: Wood + friendly_id: book_file_cover_material__wood +- id: 13028 + name: Low + friendly_id: brightness_levels__low +- id: 13029 + name: Medium + friendly_id: brightness_levels__medium +- id: 13030 + name: High + friendly_id: brightness_levels__high +- id: 13031 + name: Super bright + friendly_id: brightness_levels__super_bright +- id: 13032 + name: Flexible + friendly_id: light_attachment_type__flexible +- id: 13033 + name: Fixed + friendly_id: light_attachment_type__fixed +- id: 13034 + name: Tassel + friendly_id: bookmark_design__tassel +- id: 13035 + name: Ribbon + friendly_id: bookmark_design__ribbon +- id: 13036 + name: Magnetic + friendly_id: bookmark_design__magnetic +- id: 13037 + name: Clip + friendly_id: bookmark_design__clip +- id: 13038 + name: Animal + friendly_id: bookmark_shape__animal +- id: 13039 + name: Rectangular + friendly_id: bookmark_shape__rectangular +- id: 13040 + name: Round + friendly_id: bookmark_shape__round +- id: 13041 + name: Square + friendly_id: bookmark_shape__square +- id: 13042 + name: Cardboard + friendly_id: office_supply_material__cardboard +- id: 13043 + name: Glass + friendly_id: office_supply_material__glass +- id: 13044 + name: Fabric + friendly_id: office_supply_material__fabric +- id: 13045 + name: Faux leather + friendly_id: office_supply_material__faux_leather +- id: 13046 + name: Felt + friendly_id: office_supply_material__felt +- id: 13047 + name: Leather + friendly_id: office_supply_material__leather +- id: 13048 + name: Metal + friendly_id: office_supply_material__metal +- id: 13049 + name: Nylon + friendly_id: office_supply_material__nylon +- id: 13050 + name: Paper + friendly_id: office_supply_material__paper +- id: 13051 + name: Plastic + friendly_id: office_supply_material__plastic +- id: 13052 + name: Polyethylene (PE) + friendly_id: office_supply_material__polyethylene_pe +- id: 13053 + name: Polyethylene terephthalate (PET) + friendly_id: office_supply_material__polyethylene_terephthalate_pet +- id: 13054 + name: Polypropylene (PP) + friendly_id: office_supply_material__polypropylene_pp +- id: 13055 + name: Polyurethane (PU) + friendly_id: office_supply_material__polyurethane_pu +- id: 13056 + name: Polyvinyl chloride (PVC) + friendly_id: office_supply_material__polyvinyl_chloride_pvc +- id: 13057 + name: Stainless steel + friendly_id: office_supply_material__stainless_steel +- id: 13058 + name: Vinyl + friendly_id: office_supply_material__vinyl +- id: 13059 + name: Wood + friendly_id: office_supply_material__wood +- id: 13060 + name: Alphabetical + friendly_id: page_layout__alphabetical +- id: 13061 + name: Tabbed + friendly_id: page_layout__tabbed +- id: 13062 + name: Blank + friendly_id: page_layout__blank +- id: 13063 + name: Round + friendly_id: binder_ring_shape__round +- id: 13064 + name: D-shaped + friendly_id: binder_ring_shape__d_shaped +- id: 13065 + name: Blank + friendly_id: tab_style__blank +- id: 13066 + name: Pre-printed + friendly_id: tab_style__pre_printed +- id: 13067 + name: Numbered + friendly_id: tab_style__numbered +- id: 13068 + name: Alphabetical + friendly_id: tab_style__alphabetical +- id: 13069 + name: D-shaped + friendly_id: ring_type__d_shaped +- id: 13070 + name: Round + friendly_id: ring_type__round +- id: 13071 + name: Slant + friendly_id: ring_type__slant +- id: 13072 + name: Coil + friendly_id: binding_style__coil +- id: 13073 + name: Comb + friendly_id: binding_style__comb +- id: 13074 + name: Wire + friendly_id: binding_style__wire +- id: 13075 + name: Monthly + friendly_id: calendar_format__monthly +- id: 13076 + name: Weekly + friendly_id: calendar_format__weekly +- id: 13077 + name: Daily + friendly_id: calendar_format__daily +- id: 13078 + name: Animal + friendly_id: supply_shape__animal +- id: 13079 + name: Fruit + friendly_id: supply_shape__fruit +- id: 13080 + name: Heart + friendly_id: supply_shape__heart +- id: 13081 + name: Oval + friendly_id: supply_shape__oval +- id: 13082 + name: Rectangular + friendly_id: supply_shape__rectangular +- id: 13083 + name: Round + friendly_id: supply_shape__round +- id: 13084 + name: Star + friendly_id: supply_shape__star +- id: 13085 + name: Triangular + friendly_id: supply_shape__triangular +- id: 13086 + name: Vehicle + friendly_id: supply_shape__vehicle +- id: 13087 + name: Other + friendly_id: supply_shape__other +- id: 13088 + name: Lined + friendly_id: paper_type__lined +- id: 13089 + name: Blank + friendly_id: paper_type__blank +- id: 13090 + name: Grid + friendly_id: paper_type__grid +- id: 13091 + name: Specialty paper + friendly_id: paper_type__specialty_paper +- id: 13092 + name: Dot + friendly_id: paper_type__dot +- id: 13093 + name: Standard + friendly_id: band_strength__standard +- id: 13094 + name: Heavy-duty + friendly_id: band_strength__heavy_duty +- id: 13095 + name: Fine + friendly_id: staple_wire_gauge__fine +- id: 13096 + name: Medium + friendly_id: staple_wire_gauge__medium +- id: 13097 + name: Heavy + friendly_id: staple_wire_gauge__heavy +- id: 13098 + name: Blunt + friendly_id: point_design__blunt +- id: 13099 + name: Sharp + friendly_id: point_design__sharp +- id: 13100 + name: Decorative + friendly_id: tack_pushpin_head_design__decorative +- id: 13101 + name: Flat + friendly_id: tack_pushpin_head_design__flat +- id: 13102 + name: Round + friendly_id: tack_pushpin_head_design__round +- id: 13103 + name: High + friendly_id: recording_quality__high +- id: 13104 + name: Medium + friendly_id: recording_quality__medium +- id: 13105 + name: Low + friendly_id: recording_quality__low +- id: 13106 + name: Single + friendly_id: line_spacing_options__single +- id: 13107 + name: Double + friendly_id: line_spacing_options__double +- id: 13108 + name: Adjustable + friendly_id: line_spacing_options__adjustable +- id: 13109 + name: Acrylic + friendly_id: office_instrument_material__acrylic +- id: 13110 + name: Aluminum + friendly_id: office_instrument_material__aluminum +- id: 13111 + name: Brass + friendly_id: office_instrument_material__brass +- id: 13112 + name: Bronze + friendly_id: office_instrument_material__bronze +- id: 13113 + name: Ceramic + friendly_id: office_instrument_material__ceramic +- id: 13114 + name: Copper + friendly_id: office_instrument_material__copper +- id: 13115 + name: Gold + friendly_id: office_instrument_material__gold +- id: 13116 + name: Hardboard + friendly_id: office_instrument_material__hardboard +- id: 13117 + name: Iron + friendly_id: office_instrument_material__iron +- id: 13118 + name: Leather + friendly_id: office_instrument_material__leather +- id: 13119 + name: Nickel + friendly_id: office_instrument_material__nickel +- id: 13120 + name: Pewter + friendly_id: office_instrument_material__pewter +- id: 13121 + name: Plastic + friendly_id: office_instrument_material__plastic +- id: 13122 + name: Rubber + friendly_id: office_instrument_material__rubber +- id: 13123 + name: Silver + friendly_id: office_instrument_material__silver +- id: 13124 + name: Stainless steel + friendly_id: office_instrument_material__stainless_steel +- id: 13125 + name: Tin + friendly_id: office_instrument_material__tin +- id: 13126 + name: Titanium + friendly_id: office_instrument_material__titanium +- id: 13127 + name: Wood + friendly_id: office_instrument_material__wood +- id: 13128 + name: Zinc steel + friendly_id: office_instrument_material__zinc_steel +- id: 13129 + name: Other + friendly_id: office_instrument_material__other +- id: 13130 + name: Low-profile + friendly_id: clip_type__low_profile +- id: 13131 + name: High-capacity + friendly_id: clip_type__high_capacity +- id: 13132 + name: Single + friendly_id: lens_configuration__single +- id: 13133 + name: Multiple + friendly_id: lens_configuration__multiple +- id: 13134 + name: Self-inking + friendly_id: stamp_type__self_inking +- id: 13135 + name: Pre-inked + friendly_id: stamp_type__pre_inked +- id: 13136 + name: Traditional + friendly_id: stamp_type__traditional +- id: 13137 + name: Fine + friendly_id: pen_felt_tip_design__fine +- id: 13138 + name: Medium + friendly_id: pen_felt_tip_design__medium +- id: 13139 + name: Bold + friendly_id: pen_felt_tip_design__bold +- id: 13140 + name: HB + friendly_id: lead_grade__hb +- id: 13141 + name: 2B + friendly_id: lead_grade__2b +- id: 13142 + name: 4B + friendly_id: lead_grade__4b +- id: 13143 + name: 6B + friendly_id: lead_grade__6b +- id: 13144 + name: Other + friendly_id: lead_grade__other +- id: 13145 + name: Soft + friendly_id: hardness__soft +- id: 13146 + name: Medium + friendly_id: hardness__medium +- id: 13147 + name: Hard + friendly_id: hardness__hard +- id: 13148 + name: Chisel + friendly_id: marker_tip_design__chisel +- id: 13149 + name: Fine + friendly_id: marker_tip_design__fine +- id: 13150 + name: Bullet + friendly_id: marker_tip_design__bullet +- id: 13151 + name: Brush + friendly_id: marker_tip_design__brush +- id: 13152 + name: Ballpoint + friendly_id: pen_type__ballpoint +- id: 13153 + name: Gel + friendly_id: pen_type__gel +- id: 13154 + name: Mechanical pencil + friendly_id: pen_type__mechanical_pencil +- id: 13155 + name: Rollerball + friendly_id: pen_type__rollerball +- id: 13156 + name: Fountain + friendly_id: pen_type__fountain +- id: 13157 + name: Mechanical + friendly_id: pencil_type__mechanical +- id: 13158 + name: Wooden + friendly_id: pencil_type__wooden +- id: 13159 + name: 9H + friendly_id: lead_grade__9h +- id: 13160 + name: 8H + friendly_id: lead_grade__8h +- id: 13161 + name: 7H + friendly_id: lead_grade__7h +- id: 13162 + name: 6H + friendly_id: lead_grade__6h +- id: 13163 + name: 5H + friendly_id: lead_grade__5h +- id: 13164 + name: 4H + friendly_id: lead_grade__4h +- id: 13165 + name: 3H + friendly_id: lead_grade__3h +- id: 13166 + name: 2H + friendly_id: lead_grade__2h +- id: 13167 + name: H + friendly_id: lead_grade__h +- id: 13168 + name: F + friendly_id: lead_grade__f +- id: 13169 + name: B + friendly_id: lead_grade__b +- id: 13170 + name: 3B + friendly_id: lead_grade__3b +- id: 13171 + name: 5B + friendly_id: lead_grade__5b +- id: 13172 + name: 7B + friendly_id: lead_grade__7b +- id: 13173 + name: 8B + friendly_id: lead_grade__8b +- id: 13174 + name: 9B + friendly_id: lead_grade__9b +- id: 13175 + name: Automatic + friendly_id: feed_system__automatic +- id: 13176 + name: Manual + friendly_id: feed_system__manual +- id: 13177 + name: Letter fold + friendly_id: fold_type__letter_fold +- id: 13178 + name: Double parallel fold + friendly_id: fold_type__double_parallel_fold +- id: 13179 + name: Plain + friendly_id: paperweight_design__plain +- id: 13180 + name: Decorative + friendly_id: paperweight_design__decorative +- id: 13181 + name: Engraved + friendly_id: paperweight_design__engraved +- id: 13182 + name: Personalized + friendly_id: paperweight_design__personalized +- id: 13183 + name: Easel-backed + friendly_id: board_mounting_type__easel_backed +- id: 13184 + name: Free-standing + friendly_id: board_mounting_type__free_standing +- id: 13185 + name: Portable + friendly_id: board_mounting_type__portable +- id: 13186 + name: Wall + friendly_id: board_mounting_type__wall +- id: 13187 + name: Magnetic + friendly_id: chalkboard_surface__magnetic +- id: 13188 + name: Smooth + friendly_id: chalkboard_surface__smooth +- id: 13189 + name: Traditional + friendly_id: chalkboard_surface__traditional +- id: 13190 + name: Aluminum + friendly_id: frame_design__aluminum +- id: 13191 + name: Metal + friendly_id: frame_design__metal +- id: 13192 + name: Plastic + friendly_id: frame_design__plastic +- id: 13193 + name: Wood + friendly_id: frame_design__wood +- id: 13194 + name: Frameless + friendly_id: frame_design__frameless +- id: 13195 + name: Acrylic + friendly_id: board_material__acrylic +- id: 13196 + name: Cork + friendly_id: board_material__cork +- id: 13197 + name: Felt + friendly_id: board_material__felt +- id: 13198 + name: Glass + friendly_id: board_material__glass +- id: 13199 + name: Hardboard + friendly_id: board_material__hardboard +- id: 13200 + name: Melamine + friendly_id: board_material__melamine +- id: 13201 + name: Porcelain + friendly_id: board_material__porcelain +- id: 13202 + name: Slate + friendly_id: board_material__slate +- id: 13203 + name: Cork + friendly_id: board_surface__cork +- id: 13204 + name: Fabric + friendly_id: board_surface__fabric +- id: 13205 + name: Magnetic + friendly_id: board_surface__magnetic +- id: 13206 + name: Smooth + friendly_id: board_surface__smooth +- id: 13207 + name: Digital + friendly_id: zoom_type__digital +- id: 13208 + name: Optical + friendly_id: zoom_type__optical +- id: 13209 + name: Plain white + friendly_id: paper_type__plain_white +- id: 13210 + name: Flip-chart + friendly_id: paper_type__flip_chart +- id: 13211 + name: Laser diode + friendly_id: laser_light_source__laser_diode +- id: 13212 + name: LED + friendly_id: laser_light_source__led +- id: 13213 + name: Floor + friendly_id: lectern_mounting_type__floor +- id: 13214 + name: Free-standing + friendly_id: lectern_mounting_type__free_standing +- id: 13215 + name: Tabletop + friendly_id: lectern_mounting_type__tabletop +- id: 13216 + name: Air pillows + friendly_id: packing_materials_included__air_pillows +- id: 13217 + name: Bubble wrap + friendly_id: packing_materials_included__bubble_wrap +- id: 13218 + name: Corrugated inserts + friendly_id: packing_materials_included__corrugated_inserts +- id: 13219 + name: Edge protectors + friendly_id: packing_materials_included__edge_protectors +- id: 13220 + name: Packing foam + friendly_id: packing_materials_included__packing_foam +- id: 13221 + name: Packing inserts + friendly_id: packing_materials_included__packing_inserts +- id: 13222 + name: Packing paper + friendly_id: packing_materials_included__packing_paper +- id: 13223 + name: Packing peanuts + friendly_id: packing_materials_included__packing_peanuts +- id: 13224 + name: Stretch wrap + friendly_id: packing_materials_included__stretch_wrap +- id: 13225 + name: Bash + friendly_id: compatible_programming_languages__bash +- id: 13226 + name: C + friendly_id: compatible_programming_languages__c +- id: 13227 + name: C# + friendly_id: compatible_programming_languages__c# +- id: 13228 + name: C++ + friendly_id: compatible_programming_languages__c++ +- id: 13229 + name: Docker + friendly_id: compatible_programming_languages__docker +- id: 13230 + name: Go + friendly_id: compatible_programming_languages__go +- id: 13231 + name: Java + friendly_id: compatible_programming_languages__java +- id: 13232 + name: Javascript + friendly_id: compatible_programming_languages__javascript +- id: 13233 + name: Kotlin + friendly_id: compatible_programming_languages__kotlin +- id: 13234 + name: Kubernetes + friendly_id: compatible_programming_languages__kubernetes +- id: 13235 + name: Node.js + friendly_id: compatible_programming_languages__node_js +- id: 13236 + name: Perl + friendly_id: compatible_programming_languages__perl +- id: 13237 + name: PHP + friendly_id: compatible_programming_languages__php +- id: 13238 + name: Python + friendly_id: compatible_programming_languages__python +- id: 13239 + name: PyTorch + friendly_id: compatible_programming_languages__pytorch +- id: 13240 + name: R + friendly_id: compatible_programming_languages__r +- id: 13241 + name: Ruby + friendly_id: compatible_programming_languages__ruby +- id: 13242 + name: Rust + friendly_id: compatible_programming_languages__rust +- id: 13243 + name: Scala + friendly_id: compatible_programming_languages__scala +- id: 13244 + name: Shell + friendly_id: compatible_programming_languages__shell +- id: 13245 + name: SQL + friendly_id: compatible_programming_languages__sql +- id: 13246 + name: Swift + friendly_id: compatible_programming_languages__swift +- id: 13247 + name: TensorFlow + friendly_id: compatible_programming_languages__tensorflow +- id: 13248 + name: TypeScript + friendly_id: compatible_programming_languages__typescript +- id: 13249 + name: Other + friendly_id: compatible_programming_languages__other +- id: 13250 + name: CJIS + friendly_id: compliance_certifications__cjis +- id: 13251 + name: FedRAMP + friendly_id: compliance_certifications__fedramp +- id: 13252 + name: FISMA + friendly_id: compliance_certifications__fisma +- id: 13253 + name: GDPR + friendly_id: compliance_certifications__gdpr +- id: 13254 + name: HIPAA + friendly_id: compliance_certifications__hipaa +- id: 13255 + name: ISO 27001 + friendly_id: compliance_certifications__iso_27001 +- id: 13256 + name: PCI DSS + friendly_id: compliance_certifications__pci_dss +- id: 13257 + name: SOC 1/2/3 + friendly_id: compliance_certifications__soc_1_2_3 +- id: 13258 + name: Other + friendly_id: compliance_certifications__other +- id: 13259 + name: Africa + friendly_id: primary_region__africa +- id: 13260 + name: Asia-Pacific + friendly_id: primary_region__asia_pacific +- id: 13261 + name: Europe + friendly_id: primary_region__europe +- id: 13262 + name: Latin America + friendly_id: primary_region__latin_america +- id: 13263 + name: Middle East + friendly_id: primary_region__middle_east +- id: 13264 + name: North America + friendly_id: primary_region__north_america +- id: 13265 + name: Oceania + friendly_id: primary_region__oceania +- id: 13266 + name: Function as a service (FaaS) + friendly_id: service_type__function_as_a_service_faas +- id: 13267 + name: Infrastructure as a service (IaaS) + friendly_id: service_type__infrastructure_as_a_service_iaas +- id: 13268 + name: Platform as a service (PaaS) + friendly_id: service_type__platform_as_a_service_paas +- id: 13269 + name: Software as a service (SaaS) + friendly_id: service_type__software_as_a_service_saas +- id: 13270 + name: Free to use + friendly_id: license_type__free_to_use +- id: 13271 + name: Freemium + friendly_id: license_type__freemium +- id: 13272 + name: One-time purchase + friendly_id: license_type__one_time_purchase +- id: 13273 + name: Open-source + friendly_id: license_type__open_source +- id: 13274 + name: Subscription-based + friendly_id: license_type__subscription_based +- id: 13275 + name: Trial version + friendly_id: license_type__trial_version +- id: 13276 + name: Cross-platform + friendly_id: operating_system__cross_platform +- id: 13277 + name: Other + friendly_id: language__other +- id: 13278 + name: Individual + friendly_id: user_type__individual +- id: 13279 + name: Small business + friendly_id: user_type__small_business +- id: 13280 + name: Medium-sized business/enterprise + friendly_id: user_type__medium_sized_business_enterprise +- id: 13281 + name: Large enterprise + friendly_id: user_type__large_enterprise +- id: 13282 + name: Autonomous system + friendly_id: ai_application__autonomous_system +- id: 13283 + name: Computer vision + friendly_id: ai_application__computer_vision +- id: 13284 + name: Fraud detection + friendly_id: ai_application__fraud_detection +- id: 13285 + name: Natural language processing (NLP) + friendly_id: ai_application__natural_language_processing_nlp +- id: 13286 + name: Predictive analytics + friendly_id: ai_application__predictive_analytics +- id: 13287 + name: Recommendation system + friendly_id: ai_application__recommendation_system +- id: 13288 + name: Speech recognition + friendly_id: ai_application__speech_recognition +- id: 13289 + name: Cloud-based + friendly_id: deployment_type__cloud_based +- id: 13290 + name: On-premises + friendly_id: deployment_type__on_premises +- id: 13291 + name: Hybrid + friendly_id: deployment_type__hybrid +- id: 13292 + name: Automotive + friendly_id: industry_focus__automotive +- id: 13293 + name: Education + friendly_id: industry_focus__education +- id: 13294 + name: Finance + friendly_id: industry_focus__finance +- id: 13295 + name: Healthcare + friendly_id: industry_focus__healthcare +- id: 13296 + name: Manufacturing + friendly_id: industry_focus__manufacturing +- id: 13297 + name: Marketing + friendly_id: industry_focus__marketing +- id: 13298 + name: Retail + friendly_id: industry_focus__retail +- id: 13299 + name: Other + friendly_id: industry_focus__other +- id: 13300 + name: Accuracy + friendly_id: performance_metrics__accuracy +- id: 13301 + name: Precision + friendly_id: performance_metrics__precision +- id: 13302 + name: Recall + friendly_id: performance_metrics__recall +- id: 13303 + name: F1 score + friendly_id: performance_metrics__f1_score +- id: 13304 + name: Training time + friendly_id: performance_metrics__training_time +- id: 13305 + name: Inference speed + friendly_id: performance_metrics__inference_speed +- id: 13306 + name: Labeled data + friendly_id: training_data_requirements__labeled_data +- id: 13307 + name: Unlabeled data + friendly_id: training_data_requirements__unlabeled_data +- id: 13308 + name: Structured data + friendly_id: training_data_requirements__structured_data +- id: 13309 + name: Unstructured data + friendly_id: training_data_requirements__unstructured_data +- id: 13310 + name: Community forum + friendly_id: customer_support_channels__community_forum +- id: 13311 + name: Email support + friendly_id: customer_support_channels__email_support +- id: 13312 + name: Forum support + friendly_id: customer_support_channels__forum_support +- id: 13313 + name: In-app support + friendly_id: customer_support_channels__in_app_support +- id: 13314 + name: Knowledge base & FAQs + friendly_id: customer_support_channels__knowledge_base_faqs +- id: 13315 + name: Live chat support + friendly_id: customer_support_channels__live_chat_support +- id: 13316 + name: Personal agent + friendly_id: customer_support_channels__personal_agent +- id: 13317 + name: Phone support + friendly_id: customer_support_channels__phone_support +- id: 13318 + name: Social media support + friendly_id: customer_support_channels__social_media_support +- id: 13319 + name: Training classes + friendly_id: customer_support_channels__training_classes +- id: 13320 + name: Video tutorials + friendly_id: customer_support_channels__video_tutorials +- id: 13321 + name: Webinars + friendly_id: customer_support_channels__webinars +- id: 13322 + name: Build tool + friendly_id: software_tool_type__build_tool +- id: 13323 + name: Compiler + friendly_id: software_tool_type__compiler +- id: 13324 + name: Debugger + friendly_id: software_tool_type__debugger +- id: 13325 + name: GUI designer + friendly_id: software_tool_type__gui_designer +- id: 13326 + name: Linker + friendly_id: software_tool_type__linker +- id: 13327 + name: Source code editor + friendly_id: software_tool_type__source_code_editor +- id: 13328 + name: Version control system + friendly_id: software_tool_type__version_control_system +- id: 13329 + name: Antivirus + friendly_id: utility_maintenance_task_type__antivirus +- id: 13330 + name: Data backup + friendly_id: utility_maintenance_task_type__data_backup +- id: 13331 + name: Data recovery + friendly_id: utility_maintenance_task_type__data_recovery +- id: 13332 + name: Defragmentation + friendly_id: utility_maintenance_task_type__defragmentation +- id: 13333 + name: Disk cleanup + friendly_id: utility_maintenance_task_type__disk_cleanup +- id: 13334 + name: Disk partitioning + friendly_id: utility_maintenance_task_type__disk_partitioning +- id: 13335 + name: Driver updater + friendly_id: utility_maintenance_task_type__driver_updater +- id: 13336 + name: File compression + friendly_id: utility_maintenance_task_type__file_compression +- id: 13337 + name: Registry cleaner + friendly_id: utility_maintenance_task_type__registry_cleaner +- id: 13338 + name: System optimizer + friendly_id: utility_maintenance_task_type__system_optimizer +- id: 13339 + name: Other + friendly_id: utility_maintenance_task_type__other +- id: 13340 + name: Elementary school + friendly_id: education_level__elementary_school +- id: 13341 + name: Middle school + friendly_id: education_level__middle_school +- id: 13342 + name: High school + friendly_id: education_level__high_school +- id: 13343 + name: College + friendly_id: education_level__college +- id: 13344 + name: Graduate school + friendly_id: education_level__graduate_school +- id: 13345 + name: Professional + friendly_id: education_level__professional +- id: 13346 + name: Caribbean + friendly_id: coverage_region__caribbean +- id: 13347 + name: Central Asia + friendly_id: coverage_region__central_asia +- id: 13348 + name: East Asia + friendly_id: coverage_region__east_asia +- id: 13349 + name: Europe + friendly_id: coverage_region__europe +- id: 13350 + name: Central America + friendly_id: coverage_region__central_america +- id: 13351 + name: Middle East + friendly_id: coverage_region__middle_east +- id: 13352 + name: North Africa + friendly_id: coverage_region__north_africa +- id: 13353 + name: North America + friendly_id: coverage_region__north_america +- id: 13354 + name: Oceania + friendly_id: coverage_region__oceania +- id: 13355 + name: South America + friendly_id: coverage_region__south_america +- id: 13356 + name: South Asia + friendly_id: coverage_region__south_asia +- id: 13357 + name: Sub-Saharan Africa + friendly_id: coverage_region__sub_saharan_africa +- id: 13358 + name: Aviation device + friendly_id: gps_compatible_device__aviation_device +- id: 13359 + name: GPS navigator + friendly_id: gps_compatible_device__gps_navigator +- id: 13360 + name: Laptop + friendly_id: gps_compatible_device__laptop +- id: 13361 + name: Marine device + friendly_id: gps_compatible_device__marine_device +- id: 13362 + name: Smartphone + friendly_id: gps_compatible_device__smartphone +- id: 13363 + name: Tablet + friendly_id: gps_compatible_device__tablet +- id: 13364 + name: Real-time + friendly_id: update_frequency__real_time +- id: 13365 + name: Daily + friendly_id: update_frequency__daily +- id: 13366 + name: Weekly + friendly_id: update_frequency__weekly +- id: 13367 + name: Monthly + friendly_id: update_frequency__monthly +- id: 13368 + name: Quarterly + friendly_id: update_frequency__quarterly +- id: 13369 + name: Annually + friendly_id: update_frequency__annually +- id: 13370 + name: CD + friendly_id: disk_format_type__cd +- id: 13371 + name: DVD + friendly_id: disk_format_type__dvd +- id: 13372 + name: USB + friendly_id: disk_format_type__usb +- id: 13373 + name: Blu-ray + friendly_id: disk_format_type__blu_ray +- id: 13374 + name: AI + friendly_id: file_format_type__ai +- id: 13375 + name: AVI + friendly_id: file_format_type__avi +- id: 13376 + name: BMP + friendly_id: file_format_type__bmp +- id: 13377 + name: CSV + friendly_id: file_format_type__csv +- id: 13378 + name: DOC + friendly_id: file_format_type__doc +- id: 13379 + name: DOCX + friendly_id: file_format_type__docx +- id: 13380 + name: EOT + friendly_id: file_format_type__eot +- id: 13381 + name: EPS + friendly_id: file_format_type__eps +- id: 13382 + name: GIF + friendly_id: file_format_type__gif +- id: 13383 + name: ICO + friendly_id: file_format_type__ico +- id: 13384 + name: INDD + friendly_id: file_format_type__indd +- id: 13385 + name: JPEG + friendly_id: file_format_type__jpeg +- id: 13386 + name: MOV + friendly_id: file_format_type__mov +- id: 13387 + name: MP4 + friendly_id: file_format_type__mp4 +- id: 13388 + name: OTF + friendly_id: file_format_type__otf +- id: 13389 + name: PDF + friendly_id: file_format_type__pdf +- id: 13390 + name: PNG + friendly_id: file_format_type__png +- id: 13391 + name: PPT + friendly_id: file_format_type__ppt +- id: 13392 + name: PPTX + friendly_id: file_format_type__pptx +- id: 13393 + name: PSD + friendly_id: file_format_type__psd +- id: 13394 + name: RAW + friendly_id: file_format_type__raw +- id: 13395 + name: RTF + friendly_id: file_format_type__rtf +- id: 13396 + name: SVG + friendly_id: file_format_type__svg +- id: 13397 + name: TIFF + friendly_id: file_format_type__tiff +- id: 13398 + name: TTF + friendly_id: file_format_type__ttf +- id: 13399 + name: WebM + friendly_id: file_format_type__webm +- id: 13400 + name: WOFF + friendly_id: file_format_type__woff +- id: 13401 + name: XLS + friendly_id: file_format_type__xls +- id: 13402 + name: XLSX + friendly_id: file_format_type__xlsx +- id: 13403 + name: Other + friendly_id: file_format_type__other +- id: 13404 + name: Application + friendly_id: icon_type__application +- id: 13405 + name: Device + friendly_id: icon_type__device +- id: 13406 + name: File type + friendly_id: icon_type__file_type +- id: 13407 + name: Folder + friendly_id: icon_type__folder +- id: 13408 + name: Process + friendly_id: icon_type__process +- id: 13409 + name: Social media + friendly_id: icon_type__social_media +- id: 13410 + name: System + friendly_id: icon_type__system +- id: 13411 + name: User interface + friendly_id: icon_type__user_interface +- id: 13412 + name: Web + friendly_id: icon_type__web +- id: 13413 + name: Abstract + friendly_id: wallpaper_theme__abstract +- id: 13414 + name: Animals + friendly_id: wallpaper_theme__animals +- id: 13415 + name: Architecture + friendly_id: wallpaper_theme__architecture +- id: 13416 + name: Art & illustration + friendly_id: wallpaper_theme__art_illustration +- id: 13417 + name: Cars + friendly_id: wallpaper_theme__cars +- id: 13418 + name: Games + friendly_id: wallpaper_theme__games +- id: 13419 + name: Holidays + friendly_id: wallpaper_theme__holidays +- id: 13420 + name: Minimalist + friendly_id: wallpaper_theme__minimalist +- id: 13421 + name: Movies & TV + friendly_id: wallpaper_theme__movies_tv +- id: 13422 + name: Nature + friendly_id: wallpaper_theme__nature +- id: 13423 + name: Seasonal + friendly_id: wallpaper_theme__seasonal +- id: 13424 + name: Space + friendly_id: wallpaper_theme__space +- id: 13425 + name: Sports + friendly_id: wallpaper_theme__sports +- id: 13426 + name: Technology + friendly_id: wallpaper_theme__technology +- id: 13427 + name: Other + friendly_id: wallpaper_theme__other +- id: 13428 + name: Digital illustration + friendly_id: artwork_type__digital_illustration +- id: 13429 + name: Digital painting + friendly_id: artwork_type__digital_painting +- id: 13430 + name: Mixed media + friendly_id: artwork_type__mixed_media +- id: 13431 + name: 3D render + friendly_id: artwork_type__3d_render +- id: 13432 + name: Photomanipulation + friendly_id: artwork_type__photomanipulation +- id: 13433 + name: Pixel art + friendly_id: artwork_type__pixel_art +- id: 13434 + name: Vector art + friendly_id: artwork_type__vector_art +- id: 13435 + name: Fractal art + friendly_id: artwork_type__fractal_art +- id: 13436 + name: Typography + friendly_id: artwork_type__typography +- id: 13437 + name: Concept art + friendly_id: artwork_type__concept_art +- id: 13438 + name: Adobe Creative + friendly_id: compatible_software_platform__adobe_creative +- id: 13439 + name: Canva + friendly_id: compatible_software_platform__canva +- id: 13440 + name: Google Workspace + friendly_id: compatible_software_platform__google_workspace +- id: 13441 + name: iWork + friendly_id: compatible_software_platform__iwork +- id: 13442 + name: LibreOffice + friendly_id: compatible_software_platform__libreoffice +- id: 13443 + name: Microsoft Office + friendly_id: compatible_software_platform__microsoft_office +- id: 13444 + name: WordPress + friendly_id: compatible_software_platform__wordpress +- id: 13445 + name: Other + friendly_id: compatible_software_platform__other +- id: 13446 + name: Brochure + friendly_id: template_type__brochure +- id: 13447 + name: Business card + friendly_id: template_type__business_card +- id: 13448 + name: Certificate + friendly_id: template_type__certificate +- id: 13449 + name: Cover letter + friendly_id: template_type__cover_letter +- id: 13450 + name: Flyer + friendly_id: template_type__flyer +- id: 13451 + name: Invoice + friendly_id: template_type__invoice +- id: 13452 + name: Legal document + friendly_id: template_type__legal_document +- id: 13453 + name: Newsletter + friendly_id: template_type__newsletter +- id: 13454 + name: Powerpoint presentation + friendly_id: template_type__powerpoint_presentation +- id: 13455 + name: Report + friendly_id: template_type__report +- id: 13456 + name: Resume + friendly_id: template_type__resume +- id: 13457 + name: Wedding invitation + friendly_id: template_type__wedding_invitation +- id: 13458 + name: Other + friendly_id: template_type__other +- id: 13459 + name: Decorative + friendly_id: font_style__decorative +- id: 13460 + name: Display + friendly_id: font_style__display +- id: 13461 + name: Handwritten + friendly_id: font_style__handwritten +- id: 13462 + name: Icon + friendly_id: font_style__icon +- id: 13463 + name: Monospaced + friendly_id: font_style__monospaced +- id: 13464 + name: Sans serif + friendly_id: font_style__sans_serif +- id: 13465 + name: Script + friendly_id: font_style__script +- id: 13466 + name: Serif + friendly_id: font_style__serif +- id: 13467 + name: Slab serif + friendly_id: font_style__slab_serif +- id: 13468 + name: Animations + friendly_id: footage_type__animations +- id: 13469 + name: Icons + friendly_id: footage_type__icons +- id: 13470 + name: Illustrations + friendly_id: footage_type__illustrations +- id: 13471 + name: Stock photos + friendly_id: footage_type__stock_photos +- id: 13472 + name: Stock videos + friendly_id: footage_type__stock_videos +- id: 13473 + name: Textures + friendly_id: footage_type__textures +- id: 13474 + name: Vectors + friendly_id: footage_type__vectors +- id: 13475 + name: Downloadable content (DLC) + friendly_id: content_features__downloadable_content_dlc +- id: 13476 + name: Early access + friendly_id: content_features__early_access +- id: 13477 + name: Free to play + friendly_id: content_features__free_to_play +- id: 13478 + name: EC (Early Childhood) + friendly_id: esrb_rating__ec_early_childhood +- id: 13479 + name: E (Everyone) + friendly_id: esrb_rating__e_everyone +- id: 13480 + name: E10+ (Everyone 10 and older) + friendly_id: esrb_rating__e10+_everyone_10_and_older +- id: 13481 + name: T (Teen) + friendly_id: esrb_rating__t_teen +- id: 13482 + name: M (Mature) + friendly_id: esrb_rating__m_mature +- id: 13483 + name: AO (Adults Only) + friendly_id: esrb_rating__ao_adults_only +- id: 13484 + name: RP (Rating Pending) + friendly_id: esrb_rating__rp_rating_pending +- id: 13485 + name: '0' + friendly_id: national_regional_rating__0 +- id: 13486 + name: '2' + friendly_id: national_regional_rating__2 +- id: 13487 + name: '3' + friendly_id: national_regional_rating__3 +- id: 13488 + name: '4' + friendly_id: national_regional_rating__4 +- id: 13489 + name: '5' + friendly_id: national_regional_rating__5 +- id: 13490 + name: '6' + friendly_id: national_regional_rating__6 +- id: 13491 + name: '7' + friendly_id: national_regional_rating__7 +- id: 13492 + name: '8' + friendly_id: national_regional_rating__8 +- id: 13493 + name: '9' + friendly_id: national_regional_rating__9 +- id: 13494 + name: '10' + friendly_id: national_regional_rating__10 +- id: 13495 + name: '11' + friendly_id: national_regional_rating__11 +- id: 13496 + name: '12' + friendly_id: national_regional_rating__12 +- id: 13497 + name: '13' + friendly_id: national_regional_rating__13 +- id: 13498 + name: '14' + friendly_id: national_regional_rating__14 +- id: 13499 + name: '15' + friendly_id: national_regional_rating__15 +- id: 13500 + name: '16' + friendly_id: national_regional_rating__16 +- id: 13501 + name: '17' + friendly_id: national_regional_rating__17 +- id: 13502 + name: '18' + friendly_id: national_regional_rating__18 +- id: 13503 + name: '19' + friendly_id: national_regional_rating__19 +- id: 13504 + name: '20' + friendly_id: national_regional_rating__20 +- id: 13505 + name: '21' + friendly_id: national_regional_rating__21 +- id: 13506 + name: 0/1 + friendly_id: national_regional_rating__0_1 +- id: 13507 + name: 0+ + friendly_id: national_regional_rating__0+ +- id: 13508 + name: 10–12PG + friendly_id: national_regional_rating__1012pg +- id: 13509 + name: 12+ + friendly_id: national_regional_rating__12+ +- id: 13510 + name: 13+ + friendly_id: national_regional_rating__13+ +- id: 13511 + name: 14+ + friendly_id: national_regional_rating__14+ +- id: 13512 + name: 15+ + friendly_id: national_regional_rating__15+ +- id: 13513 + name: 16+ + friendly_id: national_regional_rating__16+ +- id: 13514 + name: 17+ + friendly_id: national_regional_rating__17+ +- id: 13515 + name: 18+ + friendly_id: national_regional_rating__18+ +- id: 13516 + name: 3+ + friendly_id: national_regional_rating__3+ +- id: 13517 + name: 4+ + friendly_id: national_regional_rating__4+ +- id: 13518 + name: 6+ + friendly_id: national_regional_rating__6+ +- id: 13519 + name: 7–9PG + friendly_id: national_regional_rating__79pg +- id: 13520 + name: 7+ + friendly_id: national_regional_rating__7+ +- id: 13521 + name: 8+ + friendly_id: national_regional_rating__8+ +- id: 13522 + name: 9+ + friendly_id: national_regional_rating__9+ +- id: 13523 + name: A + friendly_id: national_regional_rating__a +- id: 13524 + name: ADV16 + friendly_id: national_regional_rating__adv16 +- id: 13525 + name: All Ages + friendly_id: national_regional_rating__all_ages +- id: 13526 + name: ATP + friendly_id: national_regional_rating__atp +- id: 13527 + name: B + friendly_id: national_regional_rating__b +- id: 13528 + name: B15 + friendly_id: national_regional_rating__b15 +- id: 13529 + name: C + friendly_id: national_regional_rating__c +- id: 13530 + name: CTC + friendly_id: national_regional_rating__ctc +- id: 13531 + name: D + friendly_id: national_regional_rating__d +- id: 13532 + name: G + friendly_id: national_regional_rating__g +- id: 13533 + name: I + friendly_id: national_regional_rating__i +- id: 13534 + name: II + friendly_id: national_regional_rating__ii +- id: 13535 + name: III + friendly_id: national_regional_rating__iii +- id: 13536 + name: L + friendly_id: national_regional_rating__l +- id: 13537 + name: M + friendly_id: national_regional_rating__m +- id: 13538 + name: M18 + friendly_id: national_regional_rating__m18 +- id: 13539 + name: MA 15+ + friendly_id: national_regional_rating__ma_15+ +- id: 13540 + name: P + friendly_id: national_regional_rating__p +- id: 13541 + name: PG + friendly_id: national_regional_rating__pg +- id: 13542 + name: R 18+ + friendly_id: national_regional_rating__r_18+ +- id: 13543 + name: R13 + friendly_id: national_regional_rating__r13 +- id: 13544 + name: R15 + friendly_id: national_regional_rating__r15 +- id: 13545 + name: R16 + friendly_id: national_regional_rating__r16 +- id: 13546 + name: R18 + friendly_id: national_regional_rating__r18 +- id: 13547 + name: RC + friendly_id: national_regional_rating__rc +- id: 13548 + name: SU + friendly_id: national_regional_rating__su +- id: 13549 + name: TE + friendly_id: national_regional_rating__te +- id: 13550 + name: Z + friendly_id: national_regional_rating__z +- id: 13551 + name: Other + friendly_id: national_regional_rating__other +- id: 13552 + name: '3' + friendly_id: pegi_rating__3 +- id: 13553 + name: '7' + friendly_id: pegi_rating__7 +- id: 13554 + name: '12' + friendly_id: pegi_rating__12 +- id: 13555 + name: '16' + friendly_id: pegi_rating__16 +- id: 13556 + name: '18' + friendly_id: pegi_rating__18 +- id: 13557 + name: Amiga + friendly_id: platform__amiga +- id: 13558 + name: Arcade + friendly_id: platform__arcade +- id: 13559 + name: Atari 2600 + friendly_id: platform__atari_2600 +- id: 13560 + name: Atari 7800 + friendly_id: platform__atari_7800 +- id: 13561 + name: Commodore 64 + friendly_id: platform__commodore_64 +- id: 13562 + name: Game Boy + friendly_id: platform__game_boy +- id: 13563 + name: Mobile + friendly_id: platform__mobile +- id: 13564 + name: Neo Geo + friendly_id: platform__neo_geo +- id: 13565 + name: Nintendo 2DS + friendly_id: platform__nintendo_2ds +- id: 13566 + name: Nintendo 3DS + friendly_id: platform__nintendo_3ds +- id: 13567 + name: Nintendo 64 + friendly_id: platform__nintendo_64 +- id: 13568 + name: Nintendo DS + friendly_id: platform__nintendo_ds +- id: 13569 + name: Nintendo Entertainment System (NES) + friendly_id: platform__nintendo_entertainment_system_nes +- id: 13570 + name: Nintendo GameCube + friendly_id: platform__nintendo_gamecube +- id: 13571 + name: Nintendo Switch + friendly_id: platform__nintendo_switch +- id: 13572 + name: Nintendo Wii + friendly_id: platform__nintendo_wii +- id: 13573 + name: Nintendo Wii U + friendly_id: platform__nintendo_wii_u +- id: 13574 + name: PC + friendly_id: platform__pc +- id: 13575 + name: PlayStation 1 + friendly_id: platform__playstation_1 +- id: 13576 + name: PlayStation 2 + friendly_id: platform__playstation_2 +- id: 13577 + name: PlayStation 3 + friendly_id: platform__playstation_3 +- id: 13578 + name: PlayStation 4 + friendly_id: platform__playstation_4 +- id: 13579 + name: PlayStation 5 + friendly_id: platform__playstation_5 +- id: 13580 + name: PlayStation Portable (PSP) + friendly_id: platform__playstation_portable_psp +- id: 13581 + name: PlayStation Vita + friendly_id: platform__playstation_vita +- id: 13582 + name: Sega Dreamcast + friendly_id: platform__sega_dreamcast +- id: 13583 + name: Sega Genesis + friendly_id: platform__sega_genesis +- id: 13584 + name: Sega Saturn + friendly_id: platform__sega_saturn +- id: 13585 + name: Steam + friendly_id: platform__steam +- id: 13586 + name: Super Nintendo Entertainment System (SNES) + friendly_id: platform__super_nintendo_entertainment_system_snes +- id: 13587 + name: Virtual Reality + friendly_id: platform__virtual_reality +- id: 13588 + name: Xbox + friendly_id: platform__xbox +- id: 13589 + name: Xbox 360 + friendly_id: platform__xbox_360 +- id: 13590 + name: Xbox One + friendly_id: platform__xbox_one +- id: 13591 + name: Xbox Series XS + friendly_id: platform__xbox_series_xs +- id: 13592 + name: Other + friendly_id: platform__other +- id: 13593 + name: Africa (AF) + friendly_id: region_code__africa_af +- id: 13594 + name: Asia (AS) + friendly_id: region_code__asia_as +- id: 13595 + name: Australia (AUS) + friendly_id: region_code__australia_aus +- id: 13596 + name: Europe (EU) + friendly_id: region_code__europe_eu +- id: 13597 + name: Global (GL) + friendly_id: region_code__global_gl +- id: 13598 + name: Japan (JP) + friendly_id: region_code__japan_jp +- id: 13599 + name: Latin America (LA) + friendly_id: region_code__latin_america_la +- id: 13600 + name: Middle East (ME) + friendly_id: region_code__middle_east_me +- id: 13601 + name: North America (NA) + friendly_id: region_code__north_america_na +- id: 13602 + name: Action + friendly_id: video_game_genre__action +- id: 13603 + name: Adult + friendly_id: video_game_genre__adult +- id: 13604 + name: Adventure + friendly_id: video_game_genre__adventure +- id: 13605 + name: Arcade + friendly_id: video_game_genre__arcade +- id: 13606 + name: Brain training + friendly_id: video_game_genre__brain_training +- id: 13607 + name: Casual + friendly_id: video_game_genre__casual +- id: 13608 + name: Driving/Racing + friendly_id: video_game_genre__driving_racing +- id: 13609 + name: Educational + friendly_id: video_game_genre__educational +- id: 13610 + name: Family + friendly_id: video_game_genre__family +- id: 13611 + name: Fighting + friendly_id: video_game_genre__fighting +- id: 13612 + name: Fitness + friendly_id: video_game_genre__fitness +- id: 13613 + name: Horror + friendly_id: video_game_genre__horror +- id: 13614 + name: Indie + friendly_id: video_game_genre__indie +- id: 13615 + name: Massively multiplayer + friendly_id: video_game_genre__massively_multiplayer +- id: 13616 + name: Music + friendly_id: video_game_genre__music +- id: 13617 + name: Party + friendly_id: video_game_genre__party +- id: 13618 + name: Puzzle + friendly_id: video_game_genre__puzzle +- id: 13619 + name: Racing + friendly_id: video_game_genre__racing +- id: 13620 + name: RPG + friendly_id: video_game_genre__rpg +- id: 13621 + name: Shooter + friendly_id: video_game_genre__shooter +- id: 13622 + name: Simulation + friendly_id: video_game_genre__simulation +- id: 13623 + name: Sports + friendly_id: video_game_genre__sports +- id: 13624 + name: Strategy + friendly_id: video_game_genre__strategy +- id: 13625 + name: Survival + friendly_id: video_game_genre__survival +- id: 13626 + name: Trivia & quiz + friendly_id: video_game_genre__trivia_quiz +- id: 13627 + name: Unique + friendly_id: video_game_genre__unique +- id: 13628 + name: Visual novel + friendly_id: video_game_genre__visual_novel +- id: 13629 + name: Other + friendly_id: video_game_genre__other +- id: 13630 + name: 4X + friendly_id: video_game_sub_genre__4x +- id: 13631 + name: Artillery + friendly_id: video_game_sub_genre__artillery +- id: 13632 + name: Auto battler + friendly_id: video_game_sub_genre__auto_battler +- id: 13633 + name: Battle royale + friendly_id: video_game_sub_genre__battle_royale +- id: 13634 + name: Beat 'em up + friendly_id: video_game_sub_genre__beat_em_up +- id: 13635 + name: City building + friendly_id: video_game_sub_genre__city_building +- id: 13636 + name: Construction and management simulation + friendly_id: video_game_sub_genre__construction_and_management_simulation +- id: 13637 + name: Dating sim + friendly_id: video_game_sub_genre__dating_sim +- id: 13638 + name: First-person shooter + friendly_id: video_game_sub_genre__first_person_shooter +- id: 13639 + name: Flight simulator + friendly_id: video_game_sub_genre__flight_simulator +- id: 13640 + name: God game + friendly_id: video_game_sub_genre__god_game +- id: 13641 + name: Graphic adventure + friendly_id: video_game_sub_genre__graphic_adventure +- id: 13642 + name: Hack and slash + friendly_id: video_game_sub_genre__hack_and_slash +- id: 13643 + name: Life simulation + friendly_id: video_game_sub_genre__life_simulation +- id: 13644 + name: Metroidvania + friendly_id: video_game_sub_genre__metroidvania +- id: 13645 + name: MMORPG + friendly_id: video_game_sub_genre__mmorpg +- id: 13646 + name: MOBA + friendly_id: video_game_sub_genre__moba +- id: 13647 + name: Party + friendly_id: video_game_sub_genre__party +- id: 13648 + name: Platformer + friendly_id: video_game_sub_genre__platformer +- id: 13649 + name: Point-and-click adventure + friendly_id: video_game_sub_genre__point_and_click_adventure +- id: 13650 + name: Puzzle platformer + friendly_id: video_game_sub_genre__puzzle_platformer +- id: 13651 + name: Real-time tactics + friendly_id: video_game_sub_genre__real_time_tactics +- id: 13652 + name: Rhythm + friendly_id: video_game_sub_genre__rhythm +- id: 13653 + name: Roguelike + friendly_id: video_game_sub_genre__roguelike +- id: 13654 + name: Sandbox + friendly_id: video_game_sub_genre__sandbox +- id: 13655 + name: Sports management + friendly_id: video_game_sub_genre__sports_management +- id: 13656 + name: Survival horror + friendly_id: video_game_sub_genre__survival_horror +- id: 13657 + name: Tactical shooter + friendly_id: video_game_sub_genre__tactical_shooter +- id: 13658 + name: Text adventure + friendly_id: video_game_sub_genre__text_adventure +- id: 13659 + name: Third-person shooter + friendly_id: video_game_sub_genre__third_person_shooter +- id: 13660 + name: Tower defense + friendly_id: video_game_sub_genre__tower_defense +- id: 13661 + name: Turn-based tactics + friendly_id: video_game_sub_genre__turn_based_tactics +- id: 13662 + name: Vehicle simulation + friendly_id: video_game_sub_genre__vehicle_simulation +- id: 13663 + name: Walking simulator + friendly_id: video_game_sub_genre__walking_simulator +- id: 13664 + name: Other + friendly_id: video_game_sub_genre__other +- id: 13665 + name: '0' + friendly_id: ball_size__0 +- id: 13666 + name: '1' + friendly_id: ball_size__1 +- id: 13667 + name: '2' + friendly_id: ball_size__2 +- id: 13668 + name: '3' + friendly_id: ball_size__3 +- id: 13669 + name: '4' + friendly_id: ball_size__4 +- id: 13670 + name: '5' + friendly_id: ball_size__5 +- id: 13671 + name: '6' + friendly_id: ball_size__6 +- id: 13672 + name: '7' + friendly_id: ball_size__7 +- id: 13673 + name: Junior + friendly_id: ball_size__junior +- id: 13674 + name: Youth + friendly_id: ball_size__youth +- id: 13675 + name: Adults + friendly_id: ball_size__adults +- id: 13676 + name: Mini + friendly_id: ball_size__mini +- id: 13677 + name: Giant + friendly_id: ball_size__giant +- id: 13678 + name: Acrylic + friendly_id: ball_material__acrylic +- id: 13679 + name: Ceramic + friendly_id: ball_material__ceramic +- id: 13680 + name: Cork + friendly_id: ball_material__cork +- id: 13681 + name: Cotton + friendly_id: ball_material__cotton +- id: 13682 + name: Ethylene vinyl acetate (EVA) + friendly_id: ball_material__ethylene_vinyl_acetate_eva +- id: 13683 + name: Faux leather + friendly_id: ball_material__faux_leather +- id: 13684 + name: Foam + friendly_id: ball_material__foam +- id: 13685 + name: Latex + friendly_id: ball_material__latex +- id: 13686 + name: Leather + friendly_id: ball_material__leather +- id: 13687 + name: Microfiber + friendly_id: ball_material__microfiber +- id: 13688 + name: Neoprene + friendly_id: ball_material__neoprene +- id: 13689 + name: Nylon + friendly_id: ball_material__nylon +- id: 13690 + name: Plastic + friendly_id: ball_material__plastic +- id: 13691 + name: Polyester + friendly_id: ball_material__polyester +- id: 13692 + name: Polyurethane (PU) + friendly_id: ball_material__polyurethane_pu +- id: 13693 + name: Polyvinyl chloride (PVC) + friendly_id: ball_material__polyvinyl_chloride_pvc +- id: 13694 + name: Resin + friendly_id: ball_material__resin +- id: 13695 + name: Rubber + friendly_id: ball_material__rubber +- id: 13696 + name: Silicone + friendly_id: ball_material__silicone +- id: 13697 + name: Synthetic + friendly_id: ball_material__synthetic +- id: 13698 + name: Thermoplastic polyurethane (TPU) + friendly_id: ball_material__thermoplastic_polyurethane_tpu +- id: 13699 + name: Vinyl + friendly_id: ball_material__vinyl +- id: 13700 + name: BBCOR + friendly_id: bat_standard__bbcor +- id: 13701 + name: BESR + friendly_id: bat_standard__besr +- id: 13702 + name: Little league + friendly_id: bat_standard__little_league +- id: 13703 + name: NCAA + friendly_id: bat_standard__ncaa +- id: 13704 + name: NFHS + friendly_id: bat_standard__nfhs +- id: 13705 + name: USA bat standard + friendly_id: bat_standard__usa_bat_standard +- id: 13706 + name: USSSA + friendly_id: bat_standard__usssa +- id: 13707 + name: Aluminum + friendly_id: bat_material__aluminum +- id: 13708 + name: Carbon fiber + friendly_id: bat_material__carbon_fiber +- id: 13709 + name: Composite + friendly_id: bat_material__composite +- id: 13710 + name: Metal + friendly_id: bat_material__metal +- id: 13711 + name: Wood + friendly_id: bat_material__wood +- id: 13712 + name: Balanced + friendly_id: swing_weighting__balanced +- id: 13713 + name: Endload + friendly_id: swing_weighting__endload +- id: 13714 + name: Baseball + friendly_id: baseball_softball_ball_type__baseball +- id: 13715 + name: Softball + friendly_id: baseball_softball_ball_type__softball +- id: 13716 + name: Baseball + friendly_id: compatible_ball_type__baseball +- id: 13717 + name: Golf + friendly_id: compatible_ball_type__golf +- id: 13718 + name: Softballs + friendly_id: compatible_ball_type__softballs +- id: 13719 + name: Tennis + friendly_id: compatible_ball_type__tennis +- id: 13720 + name: Wiffle + friendly_id: compatible_ball_type__wiffle +- id: 13721 + name: ASA + friendly_id: bat_standard__asa +- id: 13722 + name: ISA + friendly_id: bat_standard__isa +- id: 13723 + name: ISF + friendly_id: bat_standard__isf +- id: 13724 + name: NSA + friendly_id: bat_standard__nsa +- id: 13725 + name: Fastpitch softball + friendly_id: sports_discipline__fastpitch_softball +- id: 13726 + name: Slowpitch softball + friendly_id: sports_discipline__slowpitch_softball +- id: 13727 + name: Basketball ball + friendly_id: basketball_equipment_included__basketball_ball +- id: 13728 + name: Hoop + friendly_id: basketball_equipment_included__hoop +- id: 13729 + name: Net + friendly_id: basketball_equipment_included__net +- id: 13730 + name: Post + friendly_id: basketball_equipment_included__post +- id: 13731 + name: Canvas + friendly_id: punching_training_bag_material__canvas +- id: 13732 + name: Fabric + friendly_id: punching_training_bag_material__fabric +- id: 13733 + name: Foam + friendly_id: punching_training_bag_material__foam +- id: 13734 + name: Leather + friendly_id: punching_training_bag_material__leather +- id: 13735 + name: Rubber + friendly_id: punching_training_bag_material__rubber +- id: 13736 + name: Sand + friendly_id: punching_training_bag_material__sand +- id: 13737 + name: Sawdust + friendly_id: punching_training_bag_material__sawdust +- id: 13738 + name: Vinyl + friendly_id: punching_training_bag_material__vinyl +- id: 13739 + name: Canvas + friendly_id: net_material__canvas +- id: 13740 + name: Cotton + friendly_id: net_material__cotton +- id: 13741 + name: Faux leather + friendly_id: net_material__faux_leather +- id: 13742 + name: Leather + friendly_id: net_material__leather +- id: 13743 + name: Nylon + friendly_id: net_material__nylon +- id: 13744 + name: Plastic + friendly_id: net_material__plastic +- id: 13745 + name: Polyester + friendly_id: net_material__polyester +- id: 13746 + name: Polyethylene (PE) + friendly_id: net_material__polyethylene_pe +- id: 13747 + name: Polypropylene (PP) + friendly_id: net_material__polypropylene_pp +- id: 13748 + name: Steel + friendly_id: net_material__steel +- id: 13749 + name: Vinyl + friendly_id: net_material__vinyl +- id: 13750 + name: Australian football + friendly_id: activity__australian_football +- id: 13751 + name: Badminton + friendly_id: activity__badminton +- id: 13752 + name: Floorball + friendly_id: activity__floorball +- id: 13753 + name: Futsal + friendly_id: activity__futsal +- id: 13754 + name: Gaelic football + friendly_id: activity__gaelic_football +- id: 13755 + name: Hurling + friendly_id: activity__hurling +- id: 13756 + name: Ice hockey + friendly_id: activity__ice_hockey +- id: 13757 + name: Ultimate frisbee + friendly_id: activity__ultimate_frisbee +- id: 13758 + name: Water polo + friendly_id: activity__water_polo +- id: 13759 + name: Abdominal guard + friendly_id: cricket_equipment_included__abdominal_guard +- id: 13760 + name: Bails + friendly_id: cricket_equipment_included__bails +- id: 13761 + name: Cricket ball + friendly_id: cricket_equipment_included__cricket_ball +- id: 13762 + name: Cricket bat + friendly_id: cricket_equipment_included__cricket_bat +- id: 13763 + name: Gloves + friendly_id: cricket_equipment_included__gloves +- id: 13764 + name: Helmet + friendly_id: cricket_equipment_included__helmet +- id: 13765 + name: Kit bag + friendly_id: cricket_equipment_included__kit_bag +- id: 13766 + name: Pads + friendly_id: cricket_equipment_included__pads +- id: 13767 + name: Stumps + friendly_id: cricket_equipment_included__stumps +- id: 13768 + name: Thigh guard + friendly_id: cricket_equipment_included__thigh_guard +- id: 13769 + name: Belgian + friendly_id: grip_type__belgian +- id: 13770 + name: Bent french + friendly_id: grip_type__bent_french +- id: 13771 + name: French + friendly_id: grip_type__french +- id: 13772 + name: German + friendly_id: grip_type__german +- id: 13773 + name: Hungarian + friendly_id: grip_type__hungarian +- id: 13774 + name: Italian + friendly_id: grip_type__italian +- id: 13775 + name: Pistol + friendly_id: grip_type__pistol +- id: 13776 + name: Russian + friendly_id: grip_type__russian +- id: 13777 + name: Schermasport + friendly_id: grip_type__schermasport +- id: 13778 + name: Straight French + friendly_id: grip_type__straight_french +- id: 13779 + name: Visconti + friendly_id: grip_type__visconti +- id: 13780 + name: Aluminum + friendly_id: stick_material__aluminum +- id: 13781 + name: Carbon + friendly_id: stick_material__carbon +- id: 13782 + name: Carbon fiber + friendly_id: stick_material__carbon_fiber +- id: 13783 + name: Fiberglass + friendly_id: stick_material__fiberglass +- id: 13784 + name: Kevlar + friendly_id: stick_material__kevlar +- id: 13785 + name: Plastic + friendly_id: stick_material__plastic +- id: 13786 + name: Titanium + friendly_id: stick_material__titanium +- id: 13787 + name: Wood + friendly_id: stick_material__wood +- id: 13788 + name: Arm pads + friendly_id: lacrosse_equipment_included__arm_pads +- id: 13789 + name: Athletic cup + friendly_id: lacrosse_equipment_included__athletic_cup +- id: 13790 + name: Cleats + friendly_id: lacrosse_equipment_included__cleats +- id: 13791 + name: Gloves + friendly_id: lacrosse_equipment_included__gloves +- id: 13792 + name: Helmet + friendly_id: lacrosse_equipment_included__helmet +- id: 13793 + name: Lacrosse ball + friendly_id: lacrosse_equipment_included__lacrosse_ball +- id: 13794 + name: Lacrosse stick + friendly_id: lacrosse_equipment_included__lacrosse_stick +- id: 13795 + name: Mouthguard + friendly_id: lacrosse_equipment_included__mouthguard +- id: 13796 + name: Rib pads + friendly_id: lacrosse_equipment_included__rib_pads +- id: 13797 + name: Shoulder pads + friendly_id: lacrosse_equipment_included__shoulder_pads +- id: 13798 + name: Attacker + friendly_id: player_position__attacker +- id: 13799 + name: Defender + friendly_id: player_position__defender +- id: 13800 + name: Goalie + friendly_id: player_position__goalie +- id: 13801 + name: Midfielder + friendly_id: player_position__midfielder +- id: 13802 + name: Beginner + friendly_id: recommended_skill_level__beginner +- id: 13803 + name: Intermediate + friendly_id: recommended_skill_level__intermediate +- id: 13804 + name: Expert + friendly_id: recommended_skill_level__expert +- id: 13805 + name: Athletic cup + friendly_id: hockey_equipment_included__athletic_cup +- id: 13806 + name: Chest protector + friendly_id: hockey_equipment_included__chest_protector +- id: 13807 + name: Goalie blocker + friendly_id: hockey_equipment_included__goalie_blocker +- id: 13808 + name: Goalie catcher + friendly_id: hockey_equipment_included__goalie_catcher +- id: 13809 + name: Goalie mask + friendly_id: hockey_equipment_included__goalie_mask +- id: 13810 + name: Skates + friendly_id: hockey_equipment_included__skates +- id: 13811 + name: Stick + friendly_id: hockey_equipment_included__stick +- id: 13812 + name: Goalie pads + friendly_id: hockey_equipment_included__goalie_pads +- id: 13813 + name: Field player + friendly_id: player_position__field_player +- id: 13814 + name: Magnetic + friendly_id: fastener_type__magnetic +- id: 13815 + name: Mechanical + friendly_id: fastener_type__mechanical +- id: 13816 + name: Closed + friendly_id: blade_curve__closed +- id: 13817 + name: Heel + friendly_id: blade_curve__heel +- id: 13818 + name: Mid + friendly_id: blade_curve__mid +- id: 13819 + name: Open + friendly_id: blade_curve__open +- id: 13820 + name: Toe + friendly_id: blade_curve__toe +- id: 13821 + name: Inline skating + friendly_id: activity__inline_skating +- id: 13822 + name: Rounders + friendly_id: activity__rounders +- id: 13823 + name: Team handball + friendly_id: activity__team_handball +- id: 13824 + name: Track & field + friendly_id: activity__track_field +- id: 13825 + name: Kickboxing + friendly_id: activity__kickboxing +- id: 13826 + name: Mixed martial arts (MMA) + friendly_id: activity__mixed_martial_arts_mma +- id: 13827 + name: Universal + friendly_id: activity__universal +- id: 13828 + name: Extra soft + friendly_id: material_hardness__extra_soft +- id: 13829 + name: Soft + friendly_id: material_hardness__soft +- id: 13830 + name: Medium + friendly_id: material_hardness__medium +- id: 13831 + name: Hard + friendly_id: material_hardness__hard +- id: 13832 + name: Extra hard + friendly_id: material_hardness__extra_hard +- id: 13833 + name: Pentagonal + friendly_id: shape__pentagonal +- id: 13834 + name: Heptagonal + friendly_id: shape__heptagonal +- id: 13835 + name: Orange dot + friendly_id: dynamic_level__orange_dot +- id: 13836 + name: Double yellow dot + friendly_id: dynamic_level__double_yellow_dot +- id: 13837 + name: Yellow dot + friendly_id: dynamic_level__yellow_dot +- id: 13838 + name: White dot + friendly_id: dynamic_level__white_dot +- id: 13839 + name: Green dot + friendly_id: dynamic_level__green_dot +- id: 13840 + name: Red dot + friendly_id: dynamic_level__red_dot +- id: 13841 + name: Blue dot + friendly_id: dynamic_level__blue_dot +- id: 13842 + name: Aluminum + friendly_id: racket_material__aluminum +- id: 13843 + name: Carbon + friendly_id: racket_material__carbon +- id: 13844 + name: Carbon fiber + friendly_id: racket_material__carbon_fiber +- id: 13845 + name: Fiberglass + friendly_id: racket_material__fiberglass +- id: 13846 + name: Graphite + friendly_id: racket_material__graphite +- id: 13847 + name: Kevlar + friendly_id: racket_material__kevlar +- id: 13848 + name: Metal + friendly_id: racket_material__metal +- id: 13849 + name: Nylon + friendly_id: racket_material__nylon +- id: 13850 + name: Plastic + friendly_id: racket_material__plastic +- id: 13851 + name: Polyurethane (PU) + friendly_id: racket_material__polyurethane_pu +- id: 13852 + name: Rubber + friendly_id: racket_material__rubber +- id: 13853 + name: Thermoplastic elastomer (TPE) + friendly_id: racket_material__thermoplastic_elastomer_tpe +- id: 13854 + name: Titanium + friendly_id: racket_material__titanium +- id: 13855 + name: Wood + friendly_id: racket_material__wood +- id: 13856 + name: C-clamp + friendly_id: net_mounting_type__c_clamp +- id: 13857 + name: Clip-on + friendly_id: net_mounting_type__clip_on +- id: 13858 + name: I-bolt + friendly_id: net_mounting_type__i_bolt +- id: 13859 + name: Stand-mounted + friendly_id: net_mounting_type__stand_mounted +- id: 13860 + name: Tripod stand + friendly_id: net_mounting_type__tripod_stand +- id: 13861 + name: Other + friendly_id: net_mounting_type__other +- id: 13862 + name: Mono-filament + friendly_id: racket_string_design__mono_filament +- id: 13863 + name: Multi-filament + friendly_id: racket_string_design__multi_filament +- id: 13864 + name: Kevlar + friendly_id: racket_string_material__kevlar +- id: 13865 + name: Nylon + friendly_id: racket_string_material__nylon +- id: 13866 + name: Polyamide (PA) + friendly_id: racket_string_material__polyamide_pa +- id: 13867 + name: Polyester + friendly_id: racket_string_material__polyester +- id: 13868 + name: Polyolefin + friendly_id: racket_string_material__polyolefin +- id: 13869 + name: Polyurethane (PU) + friendly_id: racket_string_material__polyurethane_pu +- id: 13870 + name: Vectran + friendly_id: racket_string_material__vectran +- id: 13871 + name: '13' + friendly_id: racket_gauge__13 +- id: 13872 + name: '14' + friendly_id: racket_gauge__14 +- id: 13873 + name: '15' + friendly_id: racket_gauge__15 +- id: 13874 + name: 15L + friendly_id: racket_gauge__15l +- id: 13875 + name: '16' + friendly_id: racket_gauge__16 +- id: 13876 + name: 16L + friendly_id: racket_gauge__16l +- id: 13877 + name: '17' + friendly_id: racket_gauge__17 +- id: 13878 + name: '18' + friendly_id: racket_gauge__18 +- id: 13879 + name: '19' + friendly_id: racket_gauge__19 +- id: 13880 + name: '20' + friendly_id: racket_gauge__20 +- id: 13881 + name: '21' + friendly_id: racket_gauge__21 +- id: 13882 + name: '22' + friendly_id: racket_gauge__22 +- id: 13883 + name: Compact strokes + friendly_id: swing_style__compact_strokes +- id: 13884 + name: Moderate strokes + friendly_id: swing_style__moderate_strokes +- id: 13885 + name: Long strokes + friendly_id: swing_style__long_strokes +- id: 13886 + name: Aluminum + friendly_id: exercise_equipment_material__aluminum +- id: 13887 + name: Foam + friendly_id: exercise_equipment_material__foam +- id: 13888 + name: High density polyethylene (HDPE) + friendly_id: exercise_equipment_material__high_density_polyethylene_hdpe +- id: 13889 + name: Nylon + friendly_id: exercise_equipment_material__nylon +- id: 13890 + name: Polyethylene (PE) + friendly_id: exercise_equipment_material__polyethylene_pe +- id: 13891 + name: Polypropylene (PP) + friendly_id: exercise_equipment_material__polypropylene_pp +- id: 13892 + name: Polyvinyl chloride (PVC) + friendly_id: exercise_equipment_material__polyvinyl_chloride_pvc +- id: 13893 + name: Rubber + friendly_id: exercise_equipment_material__rubber +- id: 13894 + name: Silicone + friendly_id: exercise_equipment_material__silicone +- id: 13895 + name: Steel + friendly_id: exercise_equipment_material__steel +- id: 13896 + name: Synthetic + friendly_id: exercise_equipment_material__synthetic +- id: 13897 + name: Magnetic + friendly_id: resistance_system__magnetic +- id: 13898 + name: Air + friendly_id: resistance_system__air +- id: 13899 + name: Electromagnetic + friendly_id: resistance_system__electromagnetic +- id: 13900 + name: Hydraulic piston + friendly_id: resistance_system__hydraulic_piston +- id: 13901 + name: Water + friendly_id: resistance_system__water +- id: 13902 + name: Exercise guide + friendly_id: exercise_equipment_included__exercise_guide +- id: 13903 + name: Handle + friendly_id: exercise_equipment_included__handle +- id: 13904 + name: Pump + friendly_id: exercise_equipment_included__pump +- id: 13905 + name: Very light + friendly_id: resistance_level__very_light +- id: 13906 + name: Light + friendly_id: resistance_level__light +- id: 13907 + name: Medium + friendly_id: resistance_level__medium +- id: 13908 + name: Heavy + friendly_id: resistance_level__heavy +- id: 13909 + name: Very heavy + friendly_id: resistance_level__very_heavy +- id: 13910 + name: Decline + friendly_id: compatible_bench_positions__decline +- id: 13911 + name: Flat + friendly_id: compatible_bench_positions__flat +- id: 13912 + name: Incline + friendly_id: compatible_bench_positions__incline +- id: 13913 + name: Barbell + friendly_id: exercise_equipment_included__barbell +- id: 13914 + name: Dumbbells + friendly_id: exercise_equipment_included__dumbbells +- id: 13915 + name: Elliptical machine + friendly_id: exercise_equipment_included__elliptical_machine +- id: 13916 + name: Exercise ball + friendly_id: exercise_equipment_included__exercise_ball +- id: 13917 + name: Exercise bike + friendly_id: exercise_equipment_included__exercise_bike +- id: 13918 + name: Jump rope + friendly_id: exercise_equipment_included__jump_rope +- id: 13919 + name: Resistance bands + friendly_id: exercise_equipment_included__resistance_bands +- id: 13920 + name: Treadmill + friendly_id: exercise_equipment_included__treadmill +- id: 13921 + name: Weight bench + friendly_id: exercise_equipment_included__weight_bench +- id: 13922 + name: Yoga mat + friendly_id: exercise_equipment_included__yoga_mat +- id: 13923 + name: Low resistance + friendly_id: material_hardness__low_resistance +- id: 13924 + name: High resistance + friendly_id: material_hardness__high_resistance +- id: 13925 + name: Chin-ups + friendly_id: compatible_exercises__chin_ups +- id: 13926 + name: Dips + friendly_id: compatible_exercises__dips +- id: 13927 + name: Inverted rows + friendly_id: compatible_exercises__inverted_rows +- id: 13928 + name: Knee raises + friendly_id: compatible_exercises__knee_raises +- id: 13929 + name: L-sits + friendly_id: compatible_exercises__l_sits +- id: 13930 + name: Leg raises + friendly_id: compatible_exercises__leg_raises +- id: 13931 + name: Pull-ups + friendly_id: compatible_exercises__pull_ups +- id: 13932 + name: Push-ups + friendly_id: compatible_exercises__push_ups +- id: 13933 + name: Split squats + friendly_id: compatible_exercises__split_squats +- id: 13934 + name: Wall + friendly_id: bar_mounting_type__wall +- id: 13935 + name: Ceiling + friendly_id: bar_mounting_type__ceiling +- id: 13936 + name: Door + friendly_id: bar_mounting_type__door +- id: 13937 + name: Joist + friendly_id: bar_mounting_type__joist +- id: 13938 + name: Other + friendly_id: bar_mounting_type__other +- id: 13939 + name: Hiking + friendly_id: activity__hiking +- id: 13940 + name: Mixed use + friendly_id: weight_bar_activity__mixed_use +- id: 13941 + name: Powerlifting + friendly_id: weight_bar_activity__powerlifting +- id: 13942 + name: Specialty + friendly_id: weight_bar_activity__specialty +- id: 13943 + name: Technique training + friendly_id: weight_bar_activity__technique_training +- id: 13944 + name: Weightlifting + friendly_id: weight_bar_activity__weightlifting +- id: 13945 + name: Cambered + friendly_id: weight_bar_type__cambered +- id: 13946 + name: Curl + friendly_id: weight_bar_type__curl +- id: 13947 + name: Safety squat + friendly_id: weight_bar_type__safety_squat +- id: 13948 + name: Solid + friendly_id: weight_bar_type__solid +- id: 13949 + name: Swiss + friendly_id: weight_bar_type__swiss +- id: 13950 + name: Trap + friendly_id: weight_bar_type__trap +- id: 13951 + name: Spinlock + friendly_id: collar_lock_type__spinlock +- id: 13952 + name: Spring clamp + friendly_id: collar_lock_type__spring_clamp +- id: 13953 + name: Barbell + friendly_id: compatible_weight_lifting_accessory__barbell +- id: 13954 + name: Dumbbell + friendly_id: compatible_weight_lifting_accessory__dumbbell +- id: 13955 + name: Flat + friendly_id: j_cup_type__flat +- id: 13956 + name: Lowered + friendly_id: j_cup_type__lowered +- id: 13957 + name: Regular + friendly_id: j_cup_type__regular +- id: 13958 + name: Sandwich + friendly_id: j_cup_type__sandwich +- id: 13959 + name: Globe grip + friendly_id: pull_up_bar__globe_grip +- id: 13960 + name: Multi-grip + friendly_id: pull_up_bar__multi_grip +- id: 13961 + name: Raw + friendly_id: pull_up_bar__raw +- id: 13962 + name: Standard + friendly_id: pull_up_bar__standard +- id: 13963 + name: Conical + friendly_id: cue_style__conical +- id: 13964 + name: Double + friendly_id: cue_style__double +- id: 13965 + name: European + friendly_id: cue_style__european +- id: 13966 + name: Hybrid + friendly_id: cue_style__hybrid +- id: 13967 + name: Pro + friendly_id: cue_style__pro +- id: 13968 + name: Straight + friendly_id: cue_style__straight +- id: 13969 + name: Break + friendly_id: cue_type__break +- id: 13970 + name: Carom + friendly_id: cue_type__carom +- id: 13971 + name: House + friendly_id: cue_type__house +- id: 13972 + name: Jump + friendly_id: cue_type__jump +- id: 13973 + name: Masse + friendly_id: cue_type__masse +- id: 13974 + name: Play + friendly_id: cue_type__play +- id: 13975 + name: Short + friendly_id: cue_type__short +- id: 13976 + name: Snooker + friendly_id: cue_type__snooker +- id: 13977 + name: No wrap + friendly_id: cue_wrap__no_wrap +- id: 13978 + name: Cork + friendly_id: cue_wrap__cork +- id: 13979 + name: Irish linen + friendly_id: cue_wrap__irish_linen +- id: 13980 + name: Leather + friendly_id: cue_wrap__leather +- id: 13981 + name: Leatherette + friendly_id: cue_wrap__leatherette +- id: 13982 + name: Luxury leather + friendly_id: cue_wrap__luxury_leather +- id: 13983 + name: Nylon + friendly_id: cue_wrap__nylon +- id: 13984 + name: Rubber + friendly_id: cue_wrap__rubber +- id: 13985 + name: Silicone + friendly_id: cue_wrap__silicone +- id: 13986 + name: Sport + friendly_id: cue_wrap__sport +- id: 13987 + name: Ultra skin + friendly_id: cue_wrap__ultra_skin +- id: 13988 + name: 1/2 x 13 + friendly_id: joint_style__1_2_x_13 +- id: 13989 + name: 3/8 x 10 + friendly_id: joint_style__3_8_x_10 +- id: 13990 + name: 3/8 x 10 flat + friendly_id: joint_style__3_8_x_10_flat +- id: 13991 + name: 3/8 x 10 piloted + friendly_id: joint_style__3_8_x_10_piloted +- id: 13992 + name: 3/8 x 10 wood + friendly_id: joint_style__3_8_x_10_wood +- id: 13993 + name: 3/8 x 11 + friendly_id: joint_style__3_8_x_11 +- id: 13994 + name: 3/8 x 11 flat + friendly_id: joint_style__3_8_x_11_flat +- id: 13995 + name: 3/8 x 11 flush + friendly_id: joint_style__3_8_x_11_flush +- id: 13996 + name: 3/8 x 11 full + friendly_id: joint_style__3_8_x_11_full +- id: 13997 + name: 3/8 x 11 partial + friendly_id: joint_style__3_8_x_11_partial +- id: 13998 + name: 3/8 x 11 piloted + friendly_id: joint_style__3_8_x_11_piloted +- id: 13999 + name: 3/8 x 11 wood + friendly_id: joint_style__3_8_x_11_wood +- id: 14000 + name: 3/8 x 14 + friendly_id: joint_style__3_8_x_14 +- id: 14001 + name: 3/8 x 8 + friendly_id: joint_style__3_8_x_8 +- id: 14002 + name: 5/16 x 11 + friendly_id: joint_style__5_16_x_11 +- id: 14003 + name: 5/16 x 12 + friendly_id: joint_style__5_16_x_12 +- id: 14004 + name: 5/16 x 14 + friendly_id: joint_style__5_16_x_14 +- id: 14005 + name: 5/16 x 14 flat + friendly_id: joint_style__5_16_x_14_flat +- id: 14006 + name: 5/16 x 14 flush + friendly_id: joint_style__5_16_x_14_flush +- id: 14007 + name: 5/16 x 14 full + friendly_id: joint_style__5_16_x_14_full +- id: 14008 + name: 5/16 x 14 partial + friendly_id: joint_style__5_16_x_14_partial +- id: 14009 + name: 5/16 x 14 piloted + friendly_id: joint_style__5_16_x_14_piloted +- id: 14010 + name: 5/16 x 14 wood + friendly_id: joint_style__5_16_x_14_wood +- id: 14011 + name: 5/16 x 18 + friendly_id: joint_style__5_16_x_18 +- id: 14012 + name: 5/16 x 18 flat + friendly_id: joint_style__5_16_x_18_flat +- id: 14013 + name: 5/16 x 18 piloted + friendly_id: joint_style__5_16_x_18_piloted +- id: 14014 + name: 5/16 x 18 wood + friendly_id: joint_style__5_16_x_18_wood +- id: 14015 + name: Accu-Loc + friendly_id: joint_style__accu_loc +- id: 14016 + name: Bullet + friendly_id: joint_style__bullet +- id: 14017 + name: Flat-faced + friendly_id: joint_style__flat_faced +- id: 14018 + name: LBM + friendly_id: joint_style__lbm +- id: 14019 + name: Lucasi custom solid core low deflection + friendly_id: joint_style__lucasi_custom_solid_core_low_deflection +- id: 14020 + name: Lucasi hybrid zero flex slim + friendly_id: joint_style__lucasi_hybrid_zero_flex_slim +- id: 14021 + name: McDermott 3/8 x 10 + friendly_id: joint_style__mcdermott_3_8_x_10 +- id: 14022 + name: McDermott quick release + friendly_id: joint_style__mcdermott_quick_release +- id: 14023 + name: Mezz united joint + friendly_id: joint_style__mezz_united_joint +- id: 14024 + name: Mezz wavy joint + friendly_id: joint_style__mezz_wavy_joint +- id: 14025 + name: No joint + friendly_id: joint_style__no_joint +- id: 14026 + name: OB-1, OB-2, OB Classic, OB Pro + friendly_id: joint_style__ob_1_ob_2_ob_classic_ob_pro +- id: 14027 + name: Pechauer speed joint + friendly_id: joint_style__pechauer_speed_joint +- id: 14028 + name: Piloted + friendly_id: joint_style__piloted +- id: 14029 + name: Predator radial + friendly_id: joint_style__predator_radial +- id: 14030 + name: Predator uniloc + friendly_id: joint_style__predator_uniloc +- id: 14031 + name: Quick release + friendly_id: joint_style__quick_release +- id: 14032 + name: Radial + friendly_id: joint_style__radial +- id: 14033 + name: SBJ + friendly_id: joint_style__sbj +- id: 14034 + name: Schon 5/16 x 14 + friendly_id: joint_style__schon_5_16_x_14 +- id: 14035 + name: Southwest 5/16 x 14 + friendly_id: joint_style__southwest_5_16_x_14 +- id: 14036 + name: Speed joint + friendly_id: joint_style__speed_joint +- id: 14037 + name: Speed-loc + friendly_id: joint_style__speed_loc +- id: 14038 + name: True-loc + friendly_id: joint_style__true_loc +- id: 14039 + name: Uni-loc + friendly_id: joint_style__uni_loc +- id: 14040 + name: Vantage 3/8 x 10 + friendly_id: joint_style__vantage_3_8_x_10 +- id: 14041 + name: Viking quick release + friendly_id: joint_style__viking_quick_release +- id: 14042 + name: Viking radial + friendly_id: joint_style__viking_radial +- id: 14043 + name: Wood-to-wood + friendly_id: joint_style__wood_to_wood +- id: 14044 + name: Other + friendly_id: joint_style__other +- id: 14045 + name: Air hockey + friendly_id: games_included__air_hockey +- id: 14046 + name: Backgammon + friendly_id: games_included__backgammon +- id: 14047 + name: Billiard + friendly_id: games_included__billiard +- id: 14048 + name: Blackjack + friendly_id: games_included__blackjack +- id: 14049 + name: Bowling + friendly_id: games_included__bowling +- id: 14050 + name: Cards + friendly_id: games_included__cards +- id: 14051 + name: Checkers + friendly_id: games_included__checkers +- id: 14052 + name: Chess + friendly_id: games_included__chess +- id: 14053 + name: Chinese checkers + friendly_id: games_included__chinese_checkers +- id: 14054 + name: Darts + friendly_id: games_included__darts +- id: 14055 + name: Dominoes + friendly_id: games_included__dominoes +- id: 14056 + name: Foosball + friendly_id: games_included__foosball +- id: 14057 + name: Ludo + friendly_id: games_included__ludo +- id: 14058 + name: Manji + friendly_id: games_included__manji +- id: 14059 + name: Marbles + friendly_id: games_included__marbles +- id: 14060 + name: Nok hockey + friendly_id: games_included__nok_hockey +- id: 14061 + name: Pick-up sticks + friendly_id: games_included__pick_up_sticks +- id: 14062 + name: Poker dice + friendly_id: games_included__poker_dice +- id: 14063 + name: Shuffleboard + friendly_id: games_included__shuffleboard +- id: 14064 + name: Snakes & ladders + friendly_id: games_included__snakes_ladders +- id: 14065 + name: Steeplechase + friendly_id: games_included__steeplechase +- id: 14066 + name: Table tennis + friendly_id: games_included__table_tennis +- id: 14067 + name: Tic-tac-toe + friendly_id: games_included__tic_tac_toe +- id: 14068 + name: Train chess + friendly_id: games_included__train_chess +- id: 14069 + name: Other + friendly_id: games_included__other +- id: 14070 + name: Net + friendly_id: ping_pong_equipment_included__net +- id: 14071 + name: Posts + friendly_id: ping_pong_equipment_included__posts +- id: 14072 + name: Ping pong balls + friendly_id: ping_pong_equipment_included__ping_pong_balls +- id: 14073 + name: Ping pong paddles + friendly_id: ping_pong_equipment_included__ping_pong_paddles +- id: 14074 + name: Manual + friendly_id: watercraft_propulsion_type__manual +- id: 14075 + name: Motorized + friendly_id: watercraft_propulsion_type__motorized +- id: 14076 + name: Dive bag + friendly_id: diving_snorkeling_equipment_included__dive_bag +- id: 14077 + name: Dive computer + friendly_id: diving_snorkeling_equipment_included__dive_computer +- id: 14078 + name: Dive knife + friendly_id: diving_snorkeling_equipment_included__dive_knife +- id: 14079 + name: Fins + friendly_id: diving_snorkeling_equipment_included__fins +- id: 14080 + name: Mask + friendly_id: diving_snorkeling_equipment_included__mask +- id: 14081 + name: Snorkel + friendly_id: diving_snorkeling_equipment_included__snorkel +- id: 14082 + name: Wetsuit + friendly_id: diving_snorkeling_equipment_included__wetsuit +- id: 14083 + name: Scuba diving + friendly_id: water_sport__scuba_diving +- id: 14084 + name: Freediving + friendly_id: water_sport__freediving +- id: 14085 + name: Snorkeling + friendly_id: water_sport__snorkeling +- id: 14086 + name: Full foot + friendly_id: fin_pocket_type__full_foot +- id: 14087 + name: Open heel + friendly_id: fin_pocket_type__open_heel +- id: 14088 + name: Neoprene + friendly_id: fin_material__neoprene +- id: 14089 + name: Plastic + friendly_id: fin_material__plastic +- id: 14090 + name: Polypropylene (PP) + friendly_id: fin_material__polypropylene_pp +- id: 14091 + name: Rubber + friendly_id: fin_material__rubber +- id: 14092 + name: Silicone + friendly_id: fin_material__silicone +- id: 14093 + name: Balanced piston + friendly_id: diving_regulator_style__balanced_piston +- id: 14094 + name: Diaphragm + friendly_id: diving_regulator_style__diaphragm +- id: 14095 + name: Unbalanced piston + friendly_id: diving_regulator_style__unbalanced_piston +- id: 14096 + name: J-shaped + friendly_id: snorkel_shape__j_shaped +- id: 14097 + name: Contoured + friendly_id: snorkel_shape__contoured +- id: 14098 + name: Flexible + friendly_id: snorkel_shape__flexible +- id: 14099 + name: Other + friendly_id: snorkel_shape__other +- id: 14100 + name: Big air kitesurfing + friendly_id: kitesurfing_style__big_air_kitesurfing +- id: 14101 + name: Foiling kitesurfing + friendly_id: kitesurfing_style__foiling_kitesurfing +- id: 14102 + name: Freeride kitesurfing + friendly_id: kitesurfing_style__freeride_kitesurfing +- id: 14103 + name: Freestyle kitesurfing + friendly_id: kitesurfing_style__freestyle_kitesurfing +- id: 14104 + name: Snow kitesurfing + friendly_id: kitesurfing_style__snow_kitesurfing +- id: 14105 + name: Speed kitesurfing + friendly_id: kitesurfing_style__speed_kitesurfing +- id: 14106 + name: Wave riding + friendly_id: kitesurfing_style__wave_riding +- id: 14107 + name: Five-fin + friendly_id: fin_profile__five_fin +- id: 14108 + name: Quad + friendly_id: fin_profile__quad +- id: 14109 + name: Single + friendly_id: fin_profile__single +- id: 14110 + name: Thruster + friendly_id: fin_profile__thruster +- id: 14111 + name: Twin + friendly_id: fin_profile__twin +- id: 14112 + name: Convex + friendly_id: board_concave_shape__convex +- id: 14113 + name: Double-concave + friendly_id: board_concave_shape__double_concave +- id: 14114 + name: Flat + friendly_id: board_concave_shape__flat +- id: 14115 + name: Radial + friendly_id: board_concave_shape__radial +- id: 14116 + name: V-concave + friendly_id: board_concave_shape__v_concave +- id: 14117 + name: W-concave + friendly_id: board_concave_shape__w_concave +- id: 14118 + name: Camber + friendly_id: board_profile__camber +- id: 14119 + name: Rocker + friendly_id: board_profile__rocker +- id: 14120 + name: Flat + friendly_id: board_profile__flat +- id: 14121 + name: Kayaking + friendly_id: water_sport__kayaking +- id: 14122 + name: Synchronized swimming + friendly_id: water_sport__synchronized_swimming +- id: 14123 + name: Waterdance + friendly_id: water_sport__waterdance +- id: 14124 + name: Universal + friendly_id: water_sport__universal +- id: 14125 + name: Cap + friendly_id: ski_construction__cap +- id: 14126 + name: Hybrid cap + friendly_id: ski_construction__hybrid_cap +- id: 14127 + name: Partial cap + friendly_id: ski_construction__partial_cap +- id: 14128 + name: Sidewall + friendly_id: ski_construction__sidewall +- id: 14129 + name: Camber + friendly_id: rocker_type__camber +- id: 14130 + name: Early rise + friendly_id: rocker_type__early_rise +- id: 14131 + name: Flat + friendly_id: rocker_type__flat +- id: 14132 + name: Hybrid + friendly_id: rocker_type__hybrid +- id: 14133 + name: Rocker + friendly_id: rocker_type__rocker +- id: 14134 + name: Fluke + friendly_id: anchor_type__fluke +- id: 14135 + name: Grapnel + friendly_id: anchor_type__grapnel +- id: 14136 + name: Mushroom + friendly_id: anchor_type__mushroom +- id: 14137 + name: Plow + friendly_id: anchor_type__plow +- id: 14138 + name: Screw + friendly_id: anchor_type__screw +- id: 14139 + name: Formula + friendly_id: windsurfing_board_style__formula +- id: 14140 + name: Freeride + friendly_id: windsurfing_board_style__freeride +- id: 14141 + name: Freestyle + friendly_id: windsurfing_board_style__freestyle +- id: 14142 + name: Slalom + friendly_id: windsurfing_board_style__slalom +- id: 14143 + name: Wave + friendly_id: windsurfing_board_style__wave +- id: 14144 + name: FDA approved + friendly_id: certifications_standards__fda_approved +- id: 14145 + name: Silicone-free + friendly_id: certifications_standards__silicone_free +- id: 14146 + name: Alcohol + friendly_id: power_source__alcohol +- id: 14147 + name: Clip point + friendly_id: hunting_survival_knife_design__clip_point +- id: 14148 + name: Drop point + friendly_id: hunting_survival_knife_design__drop_point +- id: 14149 + name: Needle point + friendly_id: hunting_survival_knife_design__needle_point +- id: 14150 + name: Pen + friendly_id: hunting_survival_knife_design__pen +- id: 14151 + name: Sheepsfoot + friendly_id: hunting_survival_knife_design__sheepsfoot +- id: 14152 + name: Spey point + friendly_id: hunting_survival_knife_design__spey_point +- id: 14153 + name: Spear point + friendly_id: hunting_survival_knife_design__spear_point +- id: 14154 + name: Tanto point + friendly_id: hunting_survival_knife_design__tanto_point +- id: 14155 + name: Wharncliffe + friendly_id: hunting_survival_knife_design__wharncliffe +- id: 14156 + name: Dagger + friendly_id: hunting_survival_knife_design__dagger +- id: 14157 + name: Multi-tool + friendly_id: knife_type__multi_tool +- id: 14158 + name: Barlow + friendly_id: knife_type__barlow +- id: 14159 + name: Camper + friendly_id: knife_type__camper +- id: 14160 + name: Canoe + friendly_id: knife_type__canoe +- id: 14161 + name: Congress + friendly_id: knife_type__congress +- id: 14162 + name: Toothpick + friendly_id: knife_type__toothpick +- id: 14163 + name: Peanut + friendly_id: knife_type__peanut +- id: 14164 + name: Muskrat + friendly_id: knife_type__muskrat +- id: 14165 + name: Melon tester + friendly_id: knife_type__melon_tester +- id: 14166 + name: Cotton sampler + friendly_id: knife_type__cotton_sampler +- id: 14167 + name: Pen + friendly_id: knife_type__pen +- id: 14168 + name: Sodbuster + friendly_id: knife_type__sodbuster +- id: 14169 + name: Stockman + friendly_id: knife_type__stockman +- id: 14170 + name: Sunfish + friendly_id: knife_type__sunfish +- id: 14171 + name: Trapper + friendly_id: knife_type__trapper +- id: 14172 + name: Hunting + friendly_id: knife_type__hunting +- id: 14173 + name: Collector + friendly_id: knife_type__collector +- id: 14174 + name: Utensil + friendly_id: knife_type__utensil +- id: 14175 + name: Mushroom + friendly_id: knife_type__mushroom +- id: 14176 + name: EDC + friendly_id: knife_type__edc +- id: 14177 + name: Hiking + friendly_id: outdoor_walking_activity__hiking +- id: 14178 + name: Nordic walking + friendly_id: outdoor_walking_activity__nordic_walking +- id: 14179 + name: Trail running + friendly_id: outdoor_walking_activity__trail_running +- id: 14180 + name: Trekking + friendly_id: outdoor_walking_activity__trekking +- id: 14181 + name: Hand compass + friendly_id: compass_style__hand_compass +- id: 14182 + name: Car compass + friendly_id: compass_style__car_compass +- id: 14183 + name: Dive compass + friendly_id: compass_style__dive_compass +- id: 14184 + name: Backpacking + friendly_id: suitable_for_camping_activity__backpacking +- id: 14185 + name: Camping + friendly_id: suitable_for_camping_activity__camping +- id: 14186 + name: Beach + friendly_id: suitable_for_camping_activity__beach +- id: 14187 + name: Auto-locking + friendly_id: carabiner_gate_type__auto_locking +- id: 14188 + name: Bent gate + friendly_id: carabiner_gate_type__bent_gate +- id: 14189 + name: Non-locking + friendly_id: carabiner_gate_type__non_locking +- id: 14190 + name: Screw gate + friendly_id: carabiner_gate_type__screw_gate +- id: 14191 + name: Snap gate + friendly_id: carabiner_gate_type__snap_gate +- id: 14192 + name: Straight gate + friendly_id: carabiner_gate_type__straight_gate +- id: 14193 + name: Twist lock + friendly_id: carabiner_gate_type__twist_lock +- id: 14194 + name: Wire gate + friendly_id: carabiner_gate_type__wire_gate +- id: 14195 + name: Pear + friendly_id: carabiner_shape__pear +- id: 14196 + name: HMS + friendly_id: carabiner_shape__hms +- id: 14197 + name: D-shaped + friendly_id: carabiner_shape__d_shaped +- id: 14198 + name: Offset-D + friendly_id: carabiner_shape__offset_d +- id: 14199 + name: Oval + friendly_id: carabiner_shape__oval +- id: 14200 + name: Rectangle + friendly_id: carabiner_shape__rectangle +- id: 14201 + name: Triangle + friendly_id: carabiner_shape__triangle +- id: 14202 + name: S-shaped + friendly_id: carabiner_shape__s_shaped +- id: 14203 + name: Other + friendly_id: carabiner_shape__other +- id: 14204 + name: Hybrid + friendly_id: crampon_attachment_type__hybrid +- id: 14205 + name: Step-in + friendly_id: crampon_attachment_type__step_in +- id: 14206 + name: Strap-on + friendly_id: crampon_attachment_type__strap_on +- id: 14207 + name: Mountaineering + friendly_id: climbing_activity__mountaineering +- id: 14208 + name: Trad climbing + friendly_id: climbing_activity__trad_climbing +- id: 14209 + name: Ice climbing + friendly_id: climbing_activity__ice_climbing +- id: 14210 + name: Sport climbing + friendly_id: climbing_activity__sport_climbing +- id: 14211 + name: Drop seat buckle + friendly_id: harness_closure_type__drop_seat_buckle +- id: 14212 + name: Grommet + friendly_id: harness_closure_type__grommet +- id: 14213 + name: Hook & loop + friendly_id: harness_closure_type__hook_loop +- id: 14214 + name: Side release buckle + friendly_id: harness_closure_type__side_release_buckle +- id: 14215 + name: Zipper + friendly_id: harness_closure_type__zipper +- id: 14216 + name: Downhill + friendly_id: compatible_bike_type__downhill +- id: 14217 + name: Electric + friendly_id: compatible_bike_type__electric +- id: 14218 + name: Hybrid + friendly_id: compatible_bike_type__hybrid +- id: 14219 + name: Mountain + friendly_id: compatible_bike_type__mountain +- id: 14220 + name: Road + friendly_id: compatible_bike_type__road +- id: 14221 + name: Front + friendly_id: vehicle_placement__front +- id: 14222 + name: Rear + friendly_id: vehicle_placement__rear +- id: 14223 + name: Left side + friendly_id: vehicle_placement__left_side +- id: 14224 + name: Right side + friendly_id: vehicle_placement__right_side +- id: 14225 + name: Saddle + friendly_id: vehicle_placement__saddle +- id: 14226 + name: Frame + friendly_id: vehicle_placement__frame +- id: 14227 + name: Front + friendly_id: child_seat_placement__front +- id: 14228 + name: Rear + friendly_id: child_seat_placement__rear +- id: 14229 + name: Average + friendly_id: speed_settings__average +- id: 14230 + name: Comparing + friendly_id: speed_settings__comparing +- id: 14231 + name: Current + friendly_id: speed_settings__current +- id: 14232 + name: Maximum + friendly_id: speed_settings__maximum +- id: 14233 + name: Minimum + friendly_id: speed_settings__minimum +- id: 14234 + name: Speed without motor assistance + friendly_id: speed_settings__speed_without_motor_assistance +- id: 14235 + name: Axle-mounted + friendly_id: hitch_type__axle_mounted +- id: 14236 + name: Frame-mounted + friendly_id: hitch_type__frame_mounted +- id: 14237 + name: Seat post + friendly_id: hitch_type__seat_post +- id: 14238 + name: Trailer arm + friendly_id: hitch_type__trailer_arm +- id: 14239 + name: Cantilever + friendly_id: bicycle_brake_type__cantilever +- id: 14240 + name: Center-pull + friendly_id: bicycle_brake_type__center_pull +- id: 14241 + name: Coaster + friendly_id: bicycle_brake_type__coaster +- id: 14242 + name: Disc + friendly_id: bicycle_brake_type__disc +- id: 14243 + name: Drum + friendly_id: bicycle_brake_type__drum +- id: 14244 + name: Hydraulic disc + friendly_id: bicycle_brake_type__hydraulic_disc +- id: 14245 + name: Hydraulic rim + friendly_id: bicycle_brake_type__hydraulic_rim +- id: 14246 + name: N-brake + friendly_id: bicycle_brake_type__n_brake +- id: 14247 + name: Rim + friendly_id: bicycle_brake_type__rim +- id: 14248 + name: Roller + friendly_id: bicycle_brake_type__roller +- id: 14249 + name: U-brake + friendly_id: bicycle_brake_type__u_brake +- id: 14250 + name: V-brake + friendly_id: bicycle_brake_type__v_brake +- id: 14251 + name: Brake + friendly_id: cable_type__brake +- id: 14252 + name: Cable housing + friendly_id: cable_type__cable_housing +- id: 14253 + name: Dropper post cable + friendly_id: cable_type__dropper_post_cable +- id: 14254 + name: Electric + friendly_id: cable_type__electric +- id: 14255 + name: Gear + friendly_id: cable_type__gear +- id: 14256 + name: Hydraulic brake hose + friendly_id: cable_type__hydraulic_brake_hose +- id: 14257 + name: Tandem + friendly_id: cable_type__tandem +- id: 14258 + name: Carbon fiber + friendly_id: saddle_material__carbon_fiber +- id: 14259 + name: Foam + friendly_id: saddle_material__foam +- id: 14260 + name: Leather + friendly_id: saddle_material__leather +- id: 14261 + name: Metal + friendly_id: saddle_material__metal +- id: 14262 + name: Microfiber + friendly_id: saddle_material__microfiber +- id: 14263 + name: Nylon + friendly_id: saddle_material__nylon +- id: 14264 + name: Plastic + friendly_id: saddle_material__plastic +- id: 14265 + name: Polypropylene (PP) + friendly_id: saddle_material__polypropylene_pp +- id: 14266 + name: Rubber + friendly_id: saddle_material__rubber +- id: 14267 + name: Steel + friendly_id: saddle_material__steel +- id: 14268 + name: Titanium + friendly_id: saddle_material__titanium +- id: 14269 + name: Vinyl + friendly_id: saddle_material__vinyl +- id: 14270 + name: Cross-country cycling + friendly_id: cycling_style__cross_country_cycling +- id: 14271 + name: Mountain cycling + friendly_id: cycling_style__mountain_cycling +- id: 14272 + name: Road racing + friendly_id: cycling_style__road_racing +- id: 14273 + name: City cycling + friendly_id: cycling_style__city_cycling +- id: 14274 + name: Track racing + friendly_id: cycling_style__track_racing +- id: 14275 + name: Triathlon + friendly_id: cycling_style__triathlon +- id: 14276 + name: BMX racing + friendly_id: cycling_style__bmx_racing +- id: 14277 + name: Recreational cycling + friendly_id: cycling_style__recreational_cycling +- id: 14278 + name: Presta + friendly_id: valve_type__presta +- id: 14279 + name: Schrader + friendly_id: valve_type__schrader +- id: 14280 + name: Woods + friendly_id: valve_type__woods +- id: 14281 + name: MTB racing + friendly_id: cycling_style__mtb_racing +- id: 14282 + name: Training + friendly_id: cycling_style__training +- id: 14283 + name: Flexible + friendly_id: tire_bead_type__flexible +- id: 14284 + name: Folding + friendly_id: tire_bead_type__folding +- id: 14285 + name: TS + friendly_id: tire_bead_type__ts +- id: 14286 + name: Rigid + friendly_id: tire_bead_type__rigid +- id: 14287 + name: TR + friendly_id: tire_bead_type__tr +- id: 14288 + name: Chain + friendly_id: gearing_type__chain +- id: 14289 + name: Chainless + friendly_id: gearing_type__chainless +- id: 14290 + name: Belt + friendly_id: gearing_type__belt +- id: 14291 + name: Upright + friendly_id: tricycle_design__upright +- id: 14292 + name: Recumbent + friendly_id: tricycle_design__recumbent +- id: 14293 + name: Rear drive + friendly_id: tricycle_propulsion_type__rear_drive +- id: 14294 + name: Front drive + friendly_id: tricycle_propulsion_type__front_drive +- id: 14295 + name: Push + friendly_id: tricycle_propulsion_type__push +- id: 14296 + name: Inflatable + friendly_id: wheel_type__inflatable +- id: 14297 + name: Solid + friendly_id: wheel_type__solid +- id: 14298 + name: Half chaps + friendly_id: boot_type__half_chaps +- id: 14299 + name: Full chaps + friendly_id: boot_type__full_chaps +- id: 14300 + name: Solid + friendly_id: animal_feed_form__solid +- id: 14301 + name: Paste + friendly_id: animal_feed_form__paste +- id: 14302 + name: Powder + friendly_id: animal_feed_form__powder +- id: 14303 + name: Liquid + friendly_id: animal_feed_form__liquid +- id: 14304 + name: Spray + friendly_id: animal_feed_form__spray +- id: 14305 + name: Granules + friendly_id: animal_feed_form__granules +- id: 14306 + name: Chaff + friendly_id: animal_feed_form__chaff +- id: 14307 + name: Other + friendly_id: animal_feed_form__other +- id: 14308 + name: Blades + friendly_id: horse_grooming_accessories_included__blades +- id: 14309 + name: Carrying case + friendly_id: horse_grooming_accessories_included__carrying_case +- id: 14310 + name: Cleaning brush + friendly_id: horse_grooming_accessories_included__cleaning_brush +- id: 14311 + name: Lubricating oil + friendly_id: horse_grooming_accessories_included__lubricating_oil +- id: 14312 + name: Cob + friendly_id: horse_category__cob +- id: 14313 + name: Draft horse + friendly_id: horse_category__draft_horse +- id: 14314 + name: Miniature horse + friendly_id: horse_category__miniature_horse +- id: 14315 + name: Pony + friendly_id: horse_category__pony +- id: 14316 + name: Standard + friendly_id: horse_category__standard +- id: 14317 + name: Warmblood + friendly_id: horse_category__warmblood +- id: 14318 + name: Bootfoot + friendly_id: clothing_type__bootfoot +- id: 14319 + name: Chest + friendly_id: clothing_type__chest +- id: 14320 + name: Hip + friendly_id: clothing_type__hip +- id: 14321 + name: Stockingfoot + friendly_id: clothing_type__stockingfoot +- id: 14322 + name: Thigh + friendly_id: clothing_type__thigh +- id: 14323 + name: Waist + friendly_id: clothing_type__waist +- id: 14324 + name: Fluorocarbon + friendly_id: fishing_wire_material__fluorocarbon +- id: 14325 + name: Nylon + friendly_id: fishing_wire_material__nylon +- id: 14326 + name: Polyethylene (PE) + friendly_id: fishing_wire_material__polyethylene_pe +- id: 14327 + name: Polyethylene terephthalate (PET) + friendly_id: fishing_wire_material__polyethylene_terephthalate_pet +- id: 14328 + name: Polyvinyl chloride (PVC) + friendly_id: fishing_wire_material__polyvinyl_chloride_pvc +- id: 14329 + name: Polyvinylidene fluoride (PVDF) + friendly_id: fishing_wire_material__polyvinylidene_fluoride_pvdf +- id: 14330 + name: Stainless steel + friendly_id: fishing_wire_material__stainless_steel +- id: 14331 + name: D-shaped + friendly_id: hoop_shape__d_shaped +- id: 14332 + name: Rectangle + friendly_id: hoop_shape__rectangle +- id: 14333 + name: Round + friendly_id: hoop_shape__round +- id: 14334 + name: Teardrop + friendly_id: hoop_shape__teardrop +- id: 14335 + name: Baitcasting + friendly_id: angling_style__baitcasting +- id: 14336 + name: Centerpin + friendly_id: angling_style__centerpin +- id: 14337 + name: Fly fishing + friendly_id: angling_style__fly_fishing +- id: 14338 + name: Ice fishing + friendly_id: angling_style__ice_fishing +- id: 14339 + name: Spinning + friendly_id: angling_style__spinning +- id: 14340 + name: Surfcasting + friendly_id: angling_style__surfcasting +- id: 14341 + name: Trolling + friendly_id: angling_style__trolling +- id: 14342 + name: Aluminum + friendly_id: body_material__aluminum +- id: 14343 + name: Composite + friendly_id: body_material__composite +- id: 14344 + name: Graphite + friendly_id: body_material__graphite +- id: 14345 + name: Stainless steel + friendly_id: body_material__stainless_steel +- id: 14346 + name: '6:1' + friendly_id: gear_ratio__61 +- id: 14347 + name: '7:1' + friendly_id: gear_ratio__71 +- id: 14348 + name: 7.2:1 + friendly_id: gear_ratio__7_21 +- id: 14349 + name: '4:1' + friendly_id: gear_ratio__41 +- id: 14350 + name: 4.5:1 + friendly_id: gear_ratio__4_51 +- id: 14351 + name: '1:1' + friendly_id: gear_ratio__11 +- id: 14352 + name: '3:1' + friendly_id: gear_ratio__31 +- id: 14353 + name: 5.2:1 + friendly_id: gear_ratio__5_21 +- id: 14354 + name: 5.5:1 + friendly_id: gear_ratio__5_51 +- id: 14355 + name: 4.9:1 + friendly_id: gear_ratio__4_91 +- id: 14356 + name: 5.1:1 + friendly_id: gear_ratio__5_11 +- id: 14357 + name: 4.1:1 + friendly_id: gear_ratio__4_11 +- id: 14358 + name: Aluminum + friendly_id: spool_material__aluminum +- id: 14359 + name: Carbon + friendly_id: spool_material__carbon +- id: 14360 + name: Duralumin + friendly_id: spool_material__duralumin +- id: 14361 + name: Graphite + friendly_id: spool_material__graphite +- id: 14362 + name: Magnesium + friendly_id: spool_material__magnesium +- id: 14363 + name: Plastic + friendly_id: spool_material__plastic +- id: 14364 + name: Stainless steel + friendly_id: spool_material__stainless_steel +- id: 14365 + name: Aluminum + friendly_id: butt_cap_material__aluminum +- id: 14366 + name: Composite + friendly_id: butt_cap_material__composite +- id: 14367 + name: Cork + friendly_id: butt_cap_material__cork +- id: 14368 + name: Ethylene vinyl acetate (EVA) + friendly_id: butt_cap_material__ethylene_vinyl_acetate_eva +- id: 14369 + name: Hypalon + friendly_id: butt_cap_material__hypalon +- id: 14370 + name: Plastic + friendly_id: butt_cap_material__plastic +- id: 14371 + name: Rubber + friendly_id: butt_cap_material__rubber +- id: 14372 + name: Wood + friendly_id: butt_cap_material__wood +- id: 14373 + name: Slow + friendly_id: fishing_rod_action__slow +- id: 14374 + name: Moderate + friendly_id: fishing_rod_action__moderate +- id: 14375 + name: Moderate-fast + friendly_id: fishing_rod_action__moderate_fast +- id: 14376 + name: Fast + friendly_id: fishing_rod_action__fast +- id: 14377 + name: Extra fast + friendly_id: fishing_rod_action__extra_fast +- id: 14378 + name: Ultra light + friendly_id: fishing_rod_power__ultra_light +- id: 14379 + name: Light + friendly_id: fishing_rod_power__light +- id: 14380 + name: Medium-light + friendly_id: fishing_rod_power__medium_light +- id: 14381 + name: Medium + friendly_id: fishing_rod_power__medium +- id: 14382 + name: Medium-heavy + friendly_id: fishing_rod_power__medium_heavy +- id: 14383 + name: Heavy + friendly_id: fishing_rod_power__heavy +- id: 14384 + name: Extra heavy + friendly_id: fishing_rod_power__extra_heavy +- id: 14385 + name: Aluminum + friendly_id: rod_material__aluminum +- id: 14386 + name: Bamboo + friendly_id: rod_material__bamboo +- id: 14387 + name: Cork + friendly_id: rod_material__cork +- id: 14388 + name: Ethylene vinyl acetate (EVA) + friendly_id: rod_material__ethylene_vinyl_acetate_eva +- id: 14389 + name: Fiberglass + friendly_id: rod_material__fiberglass +- id: 14390 + name: Graphite + friendly_id: rod_material__graphite +- id: 14391 + name: Plastic + friendly_id: rod_material__plastic +- id: 14392 + name: Rubber + friendly_id: rod_material__rubber +- id: 14393 + name: Wood + friendly_id: rod_material__wood +- id: 14394 + name: Cable + friendly_id: tip_type__cable +- id: 14395 + name: Chisel + friendly_id: tip_type__chisel +- id: 14396 + name: Double barb + friendly_id: tip_type__double_barb +- id: 14397 + name: Harpoon + friendly_id: tip_type__harpoon +- id: 14398 + name: Paralyzer + friendly_id: tip_type__paralyzer +- id: 14399 + name: Single barb + friendly_id: tip_type__single_barb +- id: 14400 + name: Slip + friendly_id: tip_type__slip +- id: 14401 + name: Spring-loaded + friendly_id: tip_type__spring_loaded +- id: 14402 + name: Trident + friendly_id: tip_type__trident +- id: 14403 + name: Lead + friendly_id: sinker_material__lead +- id: 14404 + name: Tungsten + friendly_id: sinker_material__tungsten +- id: 14405 + name: Zinc + friendly_id: sinker_material__zinc +- id: 14406 + name: Balance stripe + friendly_id: golf_equipment_included__balance_stripe +- id: 14407 + name: Ball holder + friendly_id: golf_equipment_included__ball_holder +- id: 14408 + name: Ball marker + friendly_id: golf_equipment_included__ball_marker +- id: 14409 + name: Brush + friendly_id: golf_equipment_included__brush +- id: 14410 + name: Cleaner + friendly_id: golf_equipment_included__cleaner +- id: 14411 + name: Cup + friendly_id: golf_equipment_included__cup +- id: 14412 + name: Direction cross + friendly_id: golf_equipment_included__direction_cross +- id: 14413 + name: Divot tool + friendly_id: golf_equipment_included__divot_tool +- id: 14414 + name: Finger support + friendly_id: golf_equipment_included__finger_support +- id: 14415 + name: Flag + friendly_id: golf_equipment_included__flag +- id: 14416 + name: Golf ball case + friendly_id: golf_equipment_included__golf_ball_case +- id: 14417 + name: Golf scope + friendly_id: golf_equipment_included__golf_scope +- id: 14418 + name: GPS navigation + friendly_id: golf_equipment_included__gps_navigation +- id: 14419 + name: Grip + friendly_id: golf_equipment_included__grip +- id: 14420 + name: Head cover + friendly_id: golf_equipment_included__head_cover +- id: 14421 + name: Nameplate + friendly_id: golf_equipment_included__nameplate +- id: 14422 + name: Polishing pad + friendly_id: golf_equipment_included__polishing_pad +- id: 14423 + name: Putter cover + friendly_id: golf_equipment_included__putter_cover +- id: 14424 + name: Scoop + friendly_id: golf_equipment_included__scoop +- id: 14425 + name: Score counter + friendly_id: golf_equipment_included__score_counter +- id: 14426 + name: Spare ball + friendly_id: golf_equipment_included__spare_ball +- id: 14427 + name: Spike wrench + friendly_id: golf_equipment_included__spike_wrench +- id: 14428 + name: Stinger + friendly_id: golf_equipment_included__stinger +- id: 14429 + name: Tee + friendly_id: golf_equipment_included__tee +- id: 14430 + name: Tee holder + friendly_id: golf_equipment_included__tee_holder +- id: 14431 + name: Soft distance + friendly_id: golf_ball_type__soft_distance +- id: 14432 + name: Straight distance + friendly_id: golf_ball_type__straight_distance +- id: 14433 + name: Tour performance + friendly_id: golf_ball_type__tour_performance +- id: 14434 + name: Tour value + friendly_id: golf_ball_type__tour_value +- id: 14435 + name: Blade putter + friendly_id: club_subset__blade_putter +- id: 14436 + name: Fairway wood + friendly_id: club_subset__fairway_wood +- id: 14437 + name: Gap wedge + friendly_id: club_subset__gap_wedge +- id: 14438 + name: Lob wedge + friendly_id: club_subset__lob_wedge +- id: 14439 + name: Long iron + friendly_id: club_subset__long_iron +- id: 14440 + name: Mallet putter + friendly_id: club_subset__mallet_putter +- id: 14441 + name: Mid iron + friendly_id: club_subset__mid_iron +- id: 14442 + name: Mid mallet putter + friendly_id: club_subset__mid_mallet_putter +- id: 14443 + name: Peripheral weighted putter + friendly_id: club_subset__peripheral_weighted_putter +- id: 14444 + name: Pitching wedge + friendly_id: club_subset__pitching_wedge +- id: 14445 + name: Sand wedge + friendly_id: club_subset__sand_wedge +- id: 14446 + name: Short iron + friendly_id: club_subset__short_iron +- id: 14447 + name: Traditional blade putter + friendly_id: club_subset__traditional_blade_putter +- id: 14448 + name: Ultra lob wedge + friendly_id: club_subset__ultra_lob_wedge +- id: 14449 + name: Chipper + friendly_id: club_type__chipper +- id: 14450 + name: Driver + friendly_id: club_type__driver +- id: 14451 + name: Fairway + friendly_id: club_type__fairway +- id: 14452 + name: Hybrid + friendly_id: club_type__hybrid +- id: 14453 + name: Iron + friendly_id: club_type__iron +- id: 14454 + name: Putter + friendly_id: club_type__putter +- id: 14455 + name: Utility + friendly_id: club_type__utility +- id: 14456 + name: Wedge + friendly_id: club_type__wedge +- id: 14457 + name: Wood + friendly_id: club_type__wood +- id: 14458 + name: Extra stiff + friendly_id: shaft_flex__extra_stiff +- id: 14459 + name: Stiff + friendly_id: shaft_flex__stiff +- id: 14460 + name: Regular + friendly_id: shaft_flex__regular +- id: 14461 + name: Active + friendly_id: shaft_flex__active +- id: 14462 + name: Senior + friendly_id: shaft_flex__senior +- id: 14463 + name: Ladies + friendly_id: shaft_flex__ladies +- id: 14464 + name: BASE jumping + friendly_id: parachuting_activity__base_jumping +- id: 14465 + name: Hang gliding + friendly_id: parachuting_activity__hang_gliding +- id: 14466 + name: High altitude balloon jumping + friendly_id: parachuting_activity__high_altitude_balloon_jumping +- id: 14467 + name: Military parachuting + friendly_id: parachuting_activity__military_parachuting +- id: 14468 + name: Parachute acrobatics + friendly_id: parachuting_activity__parachute_acrobatics +- id: 14469 + name: Parachute racing + friendly_id: parachuting_activity__parachute_racing +- id: 14470 + name: Parachute rescue + friendly_id: parachuting_activity__parachute_rescue +- id: 14471 + name: Parachute skiing + friendly_id: parachuting_activity__parachute_skiing +- id: 14472 + name: Parachute surfing + friendly_id: parachuting_activity__parachute_surfing +- id: 14473 + name: Parachute testing + friendly_id: parachuting_activity__parachute_testing +- id: 14474 + name: Paragliding + friendly_id: parachuting_activity__paragliding +- id: 14475 + name: Skydiving + friendly_id: parachuting_activity__skydiving +- id: 14476 + name: Smoke jumping + friendly_id: parachuting_activity__smoke_jumping +- id: 14477 + name: Outdoor hunting + friendly_id: archery_activity__outdoor_hunting +- id: 14478 + name: Targets practice + friendly_id: archery_activity__targets_practice +- id: 14479 + name: 3D archery + friendly_id: archery_style__3d_archery +- id: 14480 + name: Bowhunting + friendly_id: archery_style__bowhunting +- id: 14481 + name: Compound target + friendly_id: archery_style__compound_target +- id: 14482 + name: Recreational + friendly_id: archery_style__recreational +- id: 14483 + name: Feathers + friendly_id: arrow_fletching_material__feathers +- id: 14484 + name: Plastic + friendly_id: arrow_fletching_material__plastic +- id: 14485 + name: Synthetic + friendly_id: arrow_fletching_material__synthetic +- id: 14486 + name: Aluminum + friendly_id: nock_material__aluminum +- id: 14487 + name: Plastic + friendly_id: nock_material__plastic +- id: 14488 + name: Carbon steel + friendly_id: broadhead_field_point_material__carbon_steel +- id: 14489 + name: Stainless steel + friendly_id: broadhead_field_point_material__stainless_steel +- id: 14490 + name: Aluminum + friendly_id: arrow_bolt_material__aluminum +- id: 14491 + name: Bamboo + friendly_id: arrow_bolt_material__bamboo +- id: 14492 + name: Carbon fiber + friendly_id: arrow_bolt_material__carbon_fiber +- id: 14493 + name: Carbon fiber reinforced polymer (CFRP) + friendly_id: arrow_bolt_material__carbon_fiber_reinforced_polymer_cfrp +- id: 14494 + name: Fiberglass + friendly_id: arrow_bolt_material__fiberglass +- id: 14495 + name: Wood + friendly_id: arrow_bolt_material__wood +- id: 14496 + name: Aluminum + friendly_id: bow_material__aluminum +- id: 14497 + name: Carbon fiber + friendly_id: bow_material__carbon_fiber +- id: 14498 + name: Composite + friendly_id: bow_material__composite +- id: 14499 + name: Fiberglass + friendly_id: bow_material__fiberglass +- id: 14500 + name: Foam + friendly_id: bow_material__foam +- id: 14501 + name: Wood + friendly_id: bow_material__wood +- id: 14502 + name: Dacron + friendly_id: string_material__dacron +- id: 14503 + name: High-modulus polyethylene (HMPE) + friendly_id: string_material__high_modulus_polyethylene_hmpe +- id: 14504 + name: Kevlar + friendly_id: string_material__kevlar +- id: 14505 + name: Vectran + friendly_id: string_material__vectran +- id: 14506 + name: Bow stringer + friendly_id: archery_equipment_included__bow_stringer +- id: 14507 + name: Sight mount + friendly_id: archery_equipment_included__sight_mount +- id: 14508 + name: Stabilizer mount + friendly_id: archery_equipment_included__stabilizer_mount +- id: 14509 + name: Armguard + friendly_id: archery_equipment_included__armguard +- id: 14510 + name: Arrow rest + friendly_id: archery_equipment_included__arrow_rest +- id: 14511 + name: Quiver + friendly_id: archery_equipment_included__quiver +- id: 14512 + name: Safety glass arrows + friendly_id: archery_equipment_included__safety_glass_arrows +- id: 14513 + name: Sight pin + friendly_id: archery_equipment_included__sight_pin +- id: 14514 + name: Back + friendly_id: quiver_style__back +- id: 14515 + name: Belt + friendly_id: quiver_style__belt +- id: 14516 + name: Bow + friendly_id: quiver_style__bow +- id: 14517 + name: Field + friendly_id: quiver_style__field +- id: 14518 + name: Ground + friendly_id: quiver_style__ground +- id: 14519 + name: Hip + friendly_id: quiver_style__hip +- id: 14520 + name: Modern + friendly_id: quiver_style__modern +- id: 14521 + name: Pocket + friendly_id: quiver_style__pocket +- id: 14522 + name: Shoulder + friendly_id: quiver_style__shoulder +- id: 14523 + name: Traditional + friendly_id: quiver_style__traditional +- id: 14524 + name: Beavers + friendly_id: animal_type__beavers +- id: 14525 + name: Boars + friendly_id: animal_type__boars +- id: 14526 + name: Bobcats + friendly_id: animal_type__bobcats +- id: 14527 + name: Coyotes + friendly_id: animal_type__coyotes +- id: 14528 + name: Ducks + friendly_id: animal_type__ducks +- id: 14529 + name: Foxes + friendly_id: animal_type__foxes +- id: 14530 + name: Geese + friendly_id: animal_type__geese +- id: 14531 + name: Gophers + friendly_id: animal_type__gophers +- id: 14532 + name: Turkeys + friendly_id: animal_type__turkeys +- id: 14533 + name: Batteries + friendly_id: paintball_airsoft_equipment_included__batteries +- id: 14534 + name: Charger + friendly_id: paintball_airsoft_equipment_included__charger +- id: 14535 + name: Protective eyewear + friendly_id: paintball_airsoft_equipment_included__protective_eyewear +- id: 14536 + name: Tactical vest + friendly_id: paintball_airsoft_equipment_included__tactical_vest +- id: 14537 + name: Skiing + friendly_id: activity__skiing +- id: 14538 + name: Hard boot + friendly_id: boot_type__hard_boot +- id: 14539 + name: Soft boot + friendly_id: boot_type__soft_boot +- id: 14540 + name: Semi-soft boot + friendly_id: boot_type__semi_soft_boot +- id: 14541 + name: Reinforced boot + friendly_id: boot_type__reinforced_boot +- id: 14542 + name: Aluminum + friendly_id: shell_frame_material__aluminum +- id: 14543 + name: Composite + friendly_id: shell_frame_material__composite +- id: 14544 + name: Plastic + friendly_id: shell_frame_material__plastic +- id: 14545 + name: Polyurethane (PU) + friendly_id: shell_frame_material__polyurethane_pu +- id: 14546 + name: Rubber + friendly_id: shell_frame_material__rubber +- id: 14547 + name: Aggressive inline skating + friendly_id: inline_skating_style__aggressive_inline_skating +- id: 14548 + name: Freestyle slalom inline skating + friendly_id: inline_skating_style__freestyle_slalom_inline_skating +- id: 14549 + name: Roller hockey inline skating + friendly_id: inline_skating_style__roller_hockey_inline_skating +- id: 14550 + name: Artistic inline skating + friendly_id: inline_skating_style__artistic_inline_skating +- id: 14551 + name: Downhill inline skating + friendly_id: inline_skating_style__downhill_inline_skating +- id: 14552 + name: Recreational inline skating + friendly_id: inline_skating_style__recreational_inline_skating +- id: 14553 + name: Speed inline skating + friendly_id: inline_skating_style__speed_inline_skating +- id: 14554 + name: Net + friendly_id: paddle_equipment_included__net +- id: 14555 + name: Posts + friendly_id: paddle_equipment_included__posts +- id: 14556 + name: Paddle balls + friendly_id: paddle_equipment_included__paddle_balls +- id: 14557 + name: Paddles + friendly_id: paddle_equipment_included__paddles +- id: 14558 + name: Rope + friendly_id: tetherball_equipment_included__rope +- id: 14559 + name: Tetherball + friendly_id: tetherball_equipment_included__tetherball +- id: 14560 + name: Tetherball pole + friendly_id: tetherball_equipment_included__tetherball_pole +- id: 14561 + name: Bank ramp + friendly_id: ramp_type__bank_ramp +- id: 14562 + name: Bowl + friendly_id: ramp_type__bowl +- id: 14563 + name: Drop-in ramp + friendly_id: ramp_type__drop_in_ramp +- id: 14564 + name: Fly box + friendly_id: ramp_type__fly_box +- id: 14565 + name: Fun box + friendly_id: ramp_type__fun_box +- id: 14566 + name: Grind box + friendly_id: ramp_type__grind_box +- id: 14567 + name: Half-pipe + friendly_id: ramp_type__half_pipe +- id: 14568 + name: Kicker ramp + friendly_id: ramp_type__kicker_ramp +- id: 14569 + name: Launch ramp + friendly_id: ramp_type__launch_ramp +- id: 14570 + name: Ledge + friendly_id: ramp_type__ledge +- id: 14571 + name: Manual pad + friendly_id: ramp_type__manual_pad +- id: 14572 + name: Mini-ramp + friendly_id: ramp_type__mini_ramp +- id: 14573 + name: Pyramid + friendly_id: ramp_type__pyramid +- id: 14574 + name: Quarter-pipe + friendly_id: ramp_type__quarter_pipe +- id: 14575 + name: Rail + friendly_id: ramp_type__rail +- id: 14576 + name: Snake run + friendly_id: ramp_type__snake_run +- id: 14577 + name: Spine ramp + friendly_id: ramp_type__spine_ramp +- id: 14578 + name: Step-up ramp + friendly_id: ramp_type__step_up_ramp +- id: 14579 + name: Vert ramp + friendly_id: ramp_type__vert_ramp +- id: 14580 + name: Wall ride + friendly_id: ramp_type__wall_ride +- id: 14581 + name: Classic + friendly_id: board_type__classic +- id: 14582 + name: Cruiser + friendly_id: board_type__cruiser +- id: 14583 + name: Longboard + friendly_id: board_type__longboard +- id: 14584 + name: Mini-cruiser + friendly_id: board_type__mini_cruiser +- id: 14585 + name: Mountainboard + friendly_id: board_type__mountainboard +- id: 14586 + name: Special shape + friendly_id: board_type__special_shape +- id: 14587 + name: Cruising + friendly_id: skateboarding_style__cruising +- id: 14588 + name: Downhill + friendly_id: skateboarding_style__downhill +- id: 14589 + name: Freestyle + friendly_id: skateboarding_style__freestyle +- id: 14590 + name: Off-road + friendly_id: skateboarding_style__off_road +- id: 14591 + name: Park + friendly_id: skateboarding_style__park +- id: 14592 + name: Ramp + friendly_id: skateboarding_style__ramp +- id: 14593 + name: Slalom + friendly_id: skateboarding_style__slalom +- id: 14594 + name: Street + friendly_id: skateboarding_style__street +- id: 14595 + name: 75A + friendly_id: wheel_hardness__75a +- id: 14596 + name: 78A + friendly_id: wheel_hardness__78a +- id: 14597 + name: 80A + friendly_id: wheel_hardness__80a +- id: 14598 + name: 81A + friendly_id: wheel_hardness__81a +- id: 14599 + name: 82A + friendly_id: wheel_hardness__82a +- id: 14600 + name: 83A + friendly_id: wheel_hardness__83a +- id: 14601 + name: 84A + friendly_id: wheel_hardness__84a +- id: 14602 + name: 86A + friendly_id: wheel_hardness__86a +- id: 14603 + name: 90A + friendly_id: wheel_hardness__90a +- id: 14604 + name: 97A + friendly_id: wheel_hardness__97a +- id: 14605 + name: 101A + friendly_id: wheel_hardness__101a +- id: 14606 + name: Centerset wheel + friendly_id: wheel_hub_placement__centerset_wheel +- id: 14607 + name: Offset wheel + friendly_id: wheel_hub_placement__offset_wheel +- id: 14608 + name: Side-set wheel + friendly_id: wheel_hub_placement__side_set_wheel +- id: 14609 + name: Snowboarding + friendly_id: activity__snowboarding +- id: 14610 + name: Solid + friendly_id: application_method__solid +- id: 14611 + name: All-mountain skiing + friendly_id: skiing_style__all_mountain_skiing +- id: 14612 + name: Backcountry skiing + friendly_id: skiing_style__backcountry_skiing +- id: 14613 + name: Carve skiing + friendly_id: skiing_style__carve_skiing +- id: 14614 + name: Freeride skiing + friendly_id: skiing_style__freeride_skiing +- id: 14615 + name: Freestyle skiing + friendly_id: skiing_style__freestyle_skiing +- id: 14616 + name: Park skiing + friendly_id: skiing_style__park_skiing +- id: 14617 + name: Piste skiing + friendly_id: skiing_style__piste_skiing +- id: 14618 + name: Powder skiing + friendly_id: skiing_style__powder_skiing +- id: 14619 + name: Race skiing + friendly_id: skiing_style__race_skiing +- id: 14620 + name: Touring + friendly_id: skiing_style__touring +- id: 14621 + name: Cold + friendly_id: wax_application_method__cold +- id: 14622 + name: Hot + friendly_id: wax_application_method__hot +- id: 14623 + name: Freeride + friendly_id: riding_style__freeride +- id: 14624 + name: Freestyle + friendly_id: riding_style__freestyle +- id: 14625 + name: All-mountain + friendly_id: riding_style__all_mountain +- id: 14626 + name: Cross-country skiing + friendly_id: skiing_style__cross_country_skiing +- id: 14627 + name: Ski touring + friendly_id: skiing_style__ski_touring +- id: 14628 + name: Downhill skiing + friendly_id: skiing_style__downhill_skiing +- id: 14629 + name: Alpine skiing + friendly_id: skiing_style__alpine_skiing +- id: 14630 + name: Ski racing + friendly_id: skiing_style__ski_racing +- id: 14631 + name: Nordic skiing + friendly_id: skiing_style__nordic_skiing +- id: 14632 + name: 2x2 disc + friendly_id: binding_mount__2x2_disc +- id: 14633 + name: 3D disc + friendly_id: binding_mount__3d_disc +- id: 14634 + name: 4D + friendly_id: binding_mount__4d +- id: 14635 + name: 4x4 disc + friendly_id: binding_mount__4x4_disc +- id: 14636 + name: EST channel system + friendly_id: binding_mount__est_channel_system +- id: 14637 + name: '1' + friendly_id: flexibility_rating__1 +- id: 14638 + name: '2' + friendly_id: flexibility_rating__2 +- id: 14639 + name: '3' + friendly_id: flexibility_rating__3 +- id: 14640 + name: '4' + friendly_id: flexibility_rating__4 +- id: 14641 + name: '5' + friendly_id: flexibility_rating__5 +- id: 14642 + name: '6' + friendly_id: flexibility_rating__6 +- id: 14643 + name: '7' + friendly_id: flexibility_rating__7 +- id: 14644 + name: '8' + friendly_id: flexibility_rating__8 +- id: 14645 + name: '9' + friendly_id: flexibility_rating__9 +- id: 14646 + name: '10' + friendly_id: flexibility_rating__10 +- id: 14647 + name: Park + friendly_id: riding_style__park +- id: 14648 + name: Slalom + friendly_id: riding_style__slalom +- id: 14649 + name: Strap-in + friendly_id: shoe_binding_type__strap_in +- id: 14650 + name: Step-in + friendly_id: shoe_binding_type__step_in +- id: 14651 + name: Speed entry + friendly_id: shoe_binding_type__speed_entry +- id: 14652 + name: Toe cap strap + friendly_id: toe_strap_type__toe_cap_strap +- id: 14653 + name: Traditional toe strap + friendly_id: toe_strap_type__traditional_toe_strap +- id: 14654 + name: Hybrid toe strap + friendly_id: toe_strap_type__hybrid_toe_strap +- id: 14655 + name: One piece strap + friendly_id: toe_strap_type__one_piece_strap +- id: 14656 + name: 3D + friendly_id: toe_strap_type__3d +- id: 14657 + name: Park snowboarding + friendly_id: snowboarding_style__park_snowboarding +- id: 14658 + name: Backcountry snowboarding + friendly_id: snowboarding_style__backcountry_snowboarding +- id: 14659 + name: Freestyle snowboarding + friendly_id: snowboarding_style__freestyle_snowboarding +- id: 14660 + name: All-mountain snowboarding + friendly_id: snowboarding_style__all_mountain_snowboarding +- id: 14661 + name: Freeriding + friendly_id: snowboarding_style__freeriding +- id: 14662 + name: Race snowboarding + friendly_id: snowboarding_style__race_snowboarding +- id: 14663 + name: Powder snowboarding + friendly_id: snowboarding_style__powder_snowboarding +- id: 14664 + name: Medium + friendly_id: stiffness__medium +- id: 14665 + name: Soft + friendly_id: stiffness__soft +- id: 14666 + name: Stiff + friendly_id: stiffness__stiff +- id: 14667 + name: Flat + friendly_id: snowboard_construction__flat +- id: 14668 + name: Hybrid + friendly_id: snowboard_construction__hybrid +- id: 14669 + name: Camber + friendly_id: snowboard_construction__camber +- id: 14670 + name: Rocker + friendly_id: snowboard_construction__rocker +- id: 14671 + name: Twin tip + friendly_id: snowboard_design__twin_tip +- id: 14672 + name: Directional twin + friendly_id: snowboard_design__directional_twin +- id: 14673 + name: Directional + friendly_id: snowboard_design__directional +- id: 14674 + name: Tapered + friendly_id: snowboard_design__tapered +- id: 14675 + name: Boa + friendly_id: shoe_binding_type__boa +- id: 14676 + name: Hyperlink + friendly_id: shoe_binding_type__hyperlink +- id: 14677 + name: Quick release buckle + friendly_id: shoe_binding_type__quick_release_buckle +- id: 14678 + name: Ratchet strap + friendly_id: shoe_binding_type__ratchet_strap +- id: 14679 + name: Webbing strap + friendly_id: shoe_binding_type__webbing_strap +- id: 14680 + name: Hiking + friendly_id: suitable_for_snowshoeing_activity__hiking +- id: 14681 + name: Recreational use + friendly_id: suitable_for_snowshoeing_activity__recreational_use +- id: 14682 + name: Backcountry skiing + friendly_id: suitable_for_snowshoeing_activity__backcountry_skiing +- id: 14683 + name: Running + friendly_id: suitable_for_snowshoeing_activity__running +- id: 14684 + name: Fitness + friendly_id: suitable_for_snowshoeing_activity__fitness +- id: 14685 + name: Work + friendly_id: suitable_for_snowshoeing_activity__work +- id: 14686 + name: Flat + friendly_id: terrain__flat +- id: 14687 + name: Mountain + friendly_id: terrain__mountain +- id: 14688 + name: Rolling + friendly_id: terrain__rolling +- id: 14689 + name: 0-1 year + friendly_id: recommended_age_group__0_1_year +- id: 14690 + name: 1-3 years + friendly_id: recommended_age_group__1_3_years +- id: 14691 + name: 3-5 years + friendly_id: recommended_age_group__3_5_years +- id: 14692 + name: 6-8 years + friendly_id: recommended_age_group__6_8_years +- id: 14693 + name: 9-12 years + friendly_id: recommended_age_group__9_12_years +- id: 14694 + name: 13-18 years + friendly_id: recommended_age_group__13_18_years +- id: 14695 + name: 1 year or older + friendly_id: recommended_age_group__1_year_or_older +- id: 14696 + name: 2 years or older + friendly_id: recommended_age_group__2_years_or_older +- id: 14697 + name: 3 years or older + friendly_id: recommended_age_group__3_years_or_older +- id: 14698 + name: 4 years or older + friendly_id: recommended_age_group__4_years_or_older +- id: 14699 + name: 5 years or older + friendly_id: recommended_age_group__5_years_or_older +- id: 14700 + name: 6 years or older + friendly_id: recommended_age_group__6_years_or_older +- id: 14701 + name: 7 years or older + friendly_id: recommended_age_group__7_years_or_older +- id: 14702 + name: 8 years or older + friendly_id: recommended_age_group__8_years_or_older +- id: 14703 + name: 9 years or older + friendly_id: recommended_age_group__9_years_or_older +- id: 14704 + name: 10 years or older + friendly_id: recommended_age_group__10_years_or_older +- id: 14705 + name: 12 years or older + friendly_id: recommended_age_group__12_years_or_older +- id: 14706 + name: 18 years or older + friendly_id: recommended_age_group__18_years_or_older +- id: 14707 + name: Babies + friendly_id: recommended_age_group__babies +- id: 14708 + name: Toddlers + friendly_id: recommended_age_group__toddlers +- id: 14709 + name: Preschoolers + friendly_id: recommended_age_group__preschoolers +- id: 14710 + name: School-age children + friendly_id: recommended_age_group__school_age_children +- id: 14711 + name: Teens + friendly_id: recommended_age_group__teens +- id: 14712 + name: Adults + friendly_id: recommended_age_group__adults +- id: 14713 + name: All ages + friendly_id: recommended_age_group__all_ages +- id: 14714 + name: Other + friendly_id: recommended_age_group__other +- id: 14715 + name: Adventure & travel + friendly_id: board_game_mechanics__adventure_travel +- id: 14716 + name: Area control + friendly_id: board_game_mechanics__area_control +- id: 14717 + name: Card exchange + friendly_id: board_game_mechanics__card_exchange +- id: 14718 + name: Cooperative + friendly_id: board_game_mechanics__cooperative +- id: 14719 + name: Deck building + friendly_id: board_game_mechanics__deck_building +- id: 14720 + name: Deduction & detectives + friendly_id: board_game_mechanics__deduction_detectives +- id: 14721 + name: Economic simulation + friendly_id: board_game_mechanics__economic_simulation +- id: 14722 + name: Educational + friendly_id: board_game_mechanics__educational +- id: 14723 + name: Escape game + friendly_id: board_game_mechanics__escape_game +- id: 14724 + name: Family + friendly_id: board_game_mechanics__family +- id: 14725 + name: Hidden role + friendly_id: board_game_mechanics__hidden_role +- id: 14726 + name: Legacy + friendly_id: board_game_mechanics__legacy +- id: 14727 + name: Party + friendly_id: board_game_mechanics__party +- id: 14728 + name: Quiz & trivia + friendly_id: board_game_mechanics__quiz_trivia +- id: 14729 + name: Race + friendly_id: board_game_mechanics__race +- id: 14730 + name: Role-playing + friendly_id: board_game_mechanics__role_playing +- id: 14731 + name: Strategy + friendly_id: board_game_mechanics__strategy +- id: 14732 + name: Tile-based + friendly_id: board_game_mechanics__tile_based +- id: 14733 + name: War simulation + friendly_id: board_game_mechanics__war_simulation +- id: 14734 + name: Words + friendly_id: board_game_mechanics__words +- id: 14735 + name: Worker placement + friendly_id: board_game_mechanics__worker_placement +- id: 14736 + name: Other + friendly_id: board_game_mechanics__other +- id: 14737 + name: Arithmetic + friendly_id: gameplay_skills__arithmetic +- id: 14738 + name: Concentration + friendly_id: gameplay_skills__concentration +- id: 14739 + name: Deduction + friendly_id: gameplay_skills__deduction +- id: 14740 + name: Dexterity + friendly_id: gameplay_skills__dexterity +- id: 14741 + name: Drawing + friendly_id: gameplay_skills__drawing +- id: 14742 + name: Lateral thinking + friendly_id: gameplay_skills__lateral_thinking +- id: 14743 + name: Learning + friendly_id: gameplay_skills__learning +- id: 14744 + name: Matching + friendly_id: gameplay_skills__matching +- id: 14745 + name: Memory + friendly_id: gameplay_skills__memory +- id: 14746 + name: Negotiation + friendly_id: gameplay_skills__negotiation +- id: 14747 + name: Pattern recognition + friendly_id: gameplay_skills__pattern_recognition +- id: 14748 + name: Strategic thinking + friendly_id: gameplay_skills__strategic_thinking +- id: 14749 + name: Tactical decision making + friendly_id: gameplay_skills__tactical_decision_making +- id: 14750 + name: Other + friendly_id: gameplay_skills__other +- id: 14751 + name: Tetrahedron (4 sides) + friendly_id: dice_shape__tetrahedron_4_sides +- id: 14752 + name: Cube (6 sides) + friendly_id: dice_shape__cube_6_sides +- id: 14753 + name: Octahedron (8 sides) + friendly_id: dice_shape__octahedron_8_sides +- id: 14754 + name: Pentagonal trapezohedron (10 sides) + friendly_id: dice_shape__pentagonal_trapezohedron_10_sides +- id: 14755 + name: Dodecahedron (12 sides) + friendly_id: dice_shape__dodecahedron_12_sides +- id: 14756 + name: Icosahedron (20 sides) + friendly_id: dice_shape__icosahedron_20_sides +- id: 14757 + name: Other + friendly_id: dice_shape__other +- id: 14758 + name: Crime + friendly_id: rpg_genre__crime +- id: 14759 + name: Dragons + friendly_id: rpg_genre__dragons +- id: 14760 + name: Lovecraftian + friendly_id: rpg_genre__lovecraftian +- id: 14761 + name: Magic + friendly_id: rpg_genre__magic +- id: 14762 + name: Medieval + friendly_id: rpg_genre__medieval +- id: 14763 + name: Military + friendly_id: rpg_genre__military +- id: 14764 + name: Mythology + friendly_id: rpg_genre__mythology +- id: 14765 + name: Space + friendly_id: rpg_genre__space +- id: 14766 + name: Steampunk + friendly_id: rpg_genre__steampunk +- id: 14767 + name: Zombies + friendly_id: rpg_genre__zombies +- id: 14768 + name: Floorstanding playhouse + friendly_id: playhouse_design__floorstanding_playhouse +- id: 14769 + name: Playhouse on poles + friendly_id: playhouse_design__playhouse_on_poles +- id: 14770 + name: Tree house + friendly_id: playhouse_design__tree_house +- id: 14771 + name: Nylon + friendly_id: jumping_surface_material__nylon +- id: 14772 + name: Polyester + friendly_id: jumping_surface_material__polyester +- id: 14773 + name: Polyethylene (PE) + friendly_id: jumping_surface_material__polyethylene_pe +- id: 14774 + name: Polypropylene (PP) + friendly_id: jumping_surface_material__polypropylene_pp +- id: 14775 + name: Synthetic + friendly_id: jumping_surface_material__synthetic +- id: 14776 + name: Springfree + friendly_id: trampoline_design__springfree +- id: 14777 + name: Coil spring + friendly_id: trampoline_design__coil_spring +- id: 14778 + name: Christmas tree + friendly_id: sprinkler_shape__christmas_tree +- id: 14779 + name: Cloud + friendly_id: sprinkler_shape__cloud +- id: 14780 + name: Conical + friendly_id: sprinkler_shape__conical +- id: 14781 + name: Cube + friendly_id: sprinkler_shape__cube +- id: 14782 + name: Cylinder + friendly_id: sprinkler_shape__cylinder +- id: 14783 + name: Heart + friendly_id: sprinkler_shape__heart +- id: 14784 + name: Hexagonal + friendly_id: sprinkler_shape__hexagonal +- id: 14785 + name: Octagonal + friendly_id: sprinkler_shape__octagonal +- id: 14786 + name: Oval + friendly_id: sprinkler_shape__oval +- id: 14787 + name: Rectangular + friendly_id: sprinkler_shape__rectangular +- id: 14788 + name: Round + friendly_id: sprinkler_shape__round +- id: 14789 + name: Spheric + friendly_id: sprinkler_shape__spheric +- id: 14790 + name: Square + friendly_id: sprinkler_shape__square +- id: 14791 + name: Star + friendly_id: sprinkler_shape__star +- id: 14792 + name: Triangular + friendly_id: sprinkler_shape__triangular +- id: 14793 + name: V-shaped + friendly_id: sprinkler_shape__v_shaped +- id: 14794 + name: Easy + friendly_id: difficulty_level__easy +- id: 14795 + name: Medium + friendly_id: difficulty_level__medium +- id: 14796 + name: Hard + friendly_id: difficulty_level__hard +- id: 14797 + name: Expert + friendly_id: difficulty_level__expert +- id: 14798 + name: Aircraft + friendly_id: puzzle_theme__aircraft +- id: 14799 + name: Animals + friendly_id: puzzle_theme__animals +- id: 14800 + name: Architecture + friendly_id: puzzle_theme__architecture +- id: 14801 + name: Art + friendly_id: puzzle_theme__art +- id: 14802 + name: Ballet + friendly_id: puzzle_theme__ballet +- id: 14803 + name: Cartoons + friendly_id: puzzle_theme__cartoons +- id: 14804 + name: Children + friendly_id: puzzle_theme__children +- id: 14805 + name: Christmas + friendly_id: puzzle_theme__christmas +- id: 14806 + name: Circus + friendly_id: puzzle_theme__circus +- id: 14807 + name: City + friendly_id: puzzle_theme__city +- id: 14808 + name: Comics + friendly_id: puzzle_theme__comics +- id: 14809 + name: Dinosaurs + friendly_id: puzzle_theme__dinosaurs +- id: 14810 + name: Education + friendly_id: puzzle_theme__education +- id: 14811 + name: Fairy + friendly_id: puzzle_theme__fairy +- id: 14812 + name: Fantasy + friendly_id: puzzle_theme__fantasy +- id: 14813 + name: Farm + friendly_id: puzzle_theme__farm +- id: 14814 + name: Fauna + friendly_id: puzzle_theme__fauna +- id: 14815 + name: Flags + friendly_id: puzzle_theme__flags +- id: 14816 + name: Flora + friendly_id: puzzle_theme__flora +- id: 14817 + name: Food & drinks + friendly_id: puzzle_theme__food_drinks +- id: 14818 + name: History + friendly_id: puzzle_theme__history +- id: 14819 + name: Holidays + friendly_id: puzzle_theme__holidays +- id: 14820 + name: Humor + friendly_id: puzzle_theme__humor +- id: 14821 + name: Insects + friendly_id: puzzle_theme__insects +- id: 14822 + name: Landscape + friendly_id: puzzle_theme__landscape +- id: 14823 + name: Maps + friendly_id: puzzle_theme__maps +- id: 14824 + name: Movies & TV + friendly_id: puzzle_theme__movies_tv +- id: 14825 + name: Music + friendly_id: puzzle_theme__music +- id: 14826 + name: People + friendly_id: puzzle_theme__people +- id: 14827 + name: Professions + friendly_id: puzzle_theme__professions +- id: 14828 + name: Science + friendly_id: puzzle_theme__science +- id: 14829 + name: Shapes + friendly_id: puzzle_theme__shapes +- id: 14830 + name: Ships + friendly_id: puzzle_theme__ships +- id: 14831 + name: Space + friendly_id: puzzle_theme__space +- id: 14832 + name: Sports + friendly_id: puzzle_theme__sports +- id: 14833 + name: Toys + friendly_id: puzzle_theme__toys +- id: 14834 + name: Trains + friendly_id: puzzle_theme__trains +- id: 14835 + name: Vehicles + friendly_id: puzzle_theme__vehicles +- id: 14836 + name: Video games + friendly_id: puzzle_theme__video_games +- id: 14837 + name: Other + friendly_id: puzzle_theme__other +- id: 14838 + name: Aircraft + friendly_id: construction_set_theme__aircraft +- id: 14839 + name: Animals + friendly_id: construction_set_theme__animals +- id: 14840 + name: Building + friendly_id: construction_set_theme__building +- id: 14841 + name: Castle + friendly_id: construction_set_theme__castle +- id: 14842 + name: Construction site + friendly_id: construction_set_theme__construction_site +- id: 14843 + name: Pirates + friendly_id: construction_set_theme__pirates +- id: 14844 + name: Spacecraft + friendly_id: construction_set_theme__spacecraft +- id: 14845 + name: Vehicles + friendly_id: construction_set_theme__vehicles +- id: 14846 + name: Watercraft + friendly_id: construction_set_theme__watercraft +- id: 14847 + name: Other + friendly_id: construction_set_theme__other +- id: 14848 + name: Animal + friendly_id: puppet_theme__animal +- id: 14849 + name: Fairytale + friendly_id: puppet_theme__fairytale +- id: 14850 + name: Fantastic + friendly_id: puppet_theme__fantastic +- id: 14851 + name: Human + friendly_id: puppet_theme__human +- id: 14852 + name: Insect + friendly_id: puppet_theme__insect +- id: 14853 + name: Finger puppet + friendly_id: puppet_type__finger_puppet +- id: 14854 + name: Hand puppet + friendly_id: puppet_type__hand_puppet +- id: 14855 + name: Marionette + friendly_id: puppet_type__marionette +- id: 14856 + name: Rod puppet + friendly_id: puppet_type__rod_puppet +- id: 14857 + name: Ventriloquist's dummy + friendly_id: puppet_type__ventriloquists_dummy +- id: 14858 + name: Shadow puppet + friendly_id: puppet_type__shadow_puppet +- id: 14859 + name: Airplane + friendly_id: compatible_play_vehicle_type__airplane +- id: 14860 + name: Boat + friendly_id: compatible_play_vehicle_type__boat +- id: 14861 + name: Car + friendly_id: compatible_play_vehicle_type__car +- id: 14862 + name: Construction vehicle + friendly_id: compatible_play_vehicle_type__construction_vehicle +- id: 14863 + name: Helicopter + friendly_id: compatible_play_vehicle_type__helicopter +- id: 14864 + name: Motorcycle + friendly_id: compatible_play_vehicle_type__motorcycle +- id: 14865 + name: Race car & track set + friendly_id: compatible_play_vehicle_type__race_car_track_set +- id: 14866 + name: Spacecraft + friendly_id: compatible_play_vehicle_type__spacecraft +- id: 14867 + name: Trains & train set + friendly_id: compatible_play_vehicle_type__trains_train_set +- id: 14868 + name: Truck + friendly_id: compatible_play_vehicle_type__truck +- id: 14869 + name: Expert + friendly_id: skill_level__expert +- id: 14870 + name: All levels + friendly_id: skill_level__all_levels +- id: 14871 + name: Battery-powered + friendly_id: riding_toy_propulsion_type__battery_powered +- id: 14872 + name: Electric + friendly_id: riding_toy_propulsion_type__electric +- id: 14873 + name: Manual + friendly_id: riding_toy_propulsion_type__manual +- id: 14874 + name: Pedal + friendly_id: riding_toy_propulsion_type__pedal +- id: 14875 + name: Push + friendly_id: riding_toy_propulsion_type__push +- id: 14876 + name: Tow + friendly_id: riding_toy_propulsion_type__tow +- id: 14877 + name: Airplane + friendly_id: compatible_aircraft_type__airplane +- id: 14878 + name: Balloon + friendly_id: compatible_aircraft_type__balloon +- id: 14879 + name: Blimp + friendly_id: compatible_aircraft_type__blimp +- id: 14880 + name: Glider + friendly_id: compatible_aircraft_type__glider +- id: 14881 + name: Helicopter + friendly_id: compatible_aircraft_type__helicopter +- id: 14882 + name: Lead-acid + friendly_id: compatible_battery_technology__lead_acid +- id: 14883 + name: Certified pre-owned + friendly_id: item_condition__certified_pre_owned +- id: 14884 + name: New + friendly_id: item_condition__new +- id: 14885 + name: Refurbished + friendly_id: item_condition__refurbished +- id: 14886 + name: Used + friendly_id: item_condition__used +- id: 14887 + name: Aftermarket + friendly_id: manufacturer_type__aftermarket +- id: 14888 + name: Genuine + friendly_id: manufacturer_type__genuine +- id: 14889 + name: OEM + friendly_id: manufacturer_type__oem +- id: 14890 + name: Third-party + friendly_id: manufacturer_type__third_party +- id: 14891 + name: Adapter + friendly_id: charging_cable_type__adapter +- id: 14892 + name: Level 1 + friendly_id: charging_cable_type__level_1 +- id: 14893 + name: Level 2 + friendly_id: charging_cable_type__level_2 +- id: 14894 + name: Level 3 + friendly_id: charging_cable_type__level_3 +- id: 14895 + name: Level 1 (120v) + friendly_id: charging_level__level_1_120v +- id: 14896 + name: Level 2 (240v) + friendly_id: charging_level__level_2_240v +- id: 14897 + name: Level 3 (480v+) + friendly_id: charging_level__level_3_480v+ +- id: 14898 + name: Single-phase + friendly_id: input_phase_type__single_phase +- id: 14899 + name: Three-phase + friendly_id: input_phase_type__three_phase +- id: 14900 + name: Two-phase + friendly_id: input_phase_type__two_phase +- id: 14901 + name: Fast charging + friendly_id: station_type__fast_charging +- id: 14902 + name: Home charging + friendly_id: station_type__home_charging +- id: 14903 + name: Portable charging + friendly_id: station_type__portable_charging +- id: 14904 + name: Public charging + friendly_id: station_type__public_charging +- id: 14905 + name: Supercharging + friendly_id: station_type__supercharging +- id: 14906 + name: CCS + friendly_id: ev_connector_adapter_type__ccs +- id: 14907 + name: CHAdeMO + friendly_id: ev_connector_adapter_type__chademo +- id: 14908 + name: J1772 + friendly_id: ev_connector_adapter_type__j1772 +- id: 14909 + name: Tesla + friendly_id: ev_connector_adapter_type__tesla +- id: 14910 + name: Type 2 + friendly_id: ev_connector_adapter_type__type_2 +- id: 14911 + name: Vehicle-to-home (V2H) + friendly_id: ev_connector_adapter_type__vehicle_to_home_v2h +- id: 14912 + name: Vehicle-to-grid (V2G) + friendly_id: ev_connector_adapter_type__vehicle_to_grid_v2g +- id: 14913 + name: Battery pack + friendly_id: ev_conversion_kit_components__battery_pack +- id: 14914 + name: Charger + friendly_id: ev_conversion_kit_components__charger +- id: 14915 + name: Controller + friendly_id: ev_conversion_kit_components__controller +- id: 14916 + name: DC-DC converter + friendly_id: ev_conversion_kit_components__dc_dc_converter +- id: 14917 + name: Fuses + friendly_id: ev_conversion_kit_components__fuses +- id: 14918 + name: Motor + friendly_id: ev_conversion_kit_components__motor +- id: 14919 + name: Mounts + friendly_id: ev_conversion_kit_components__mounts +- id: 14920 + name: Sensors + friendly_id: ev_conversion_kit_components__sensors +- id: 14921 + name: Throttle + friendly_id: ev_conversion_kit_components__throttle +- id: 14922 + name: Wiring harness + friendly_id: ev_conversion_kit_components__wiring_harness +- id: 14923 + name: Flow + friendly_id: ev_battery_type__flow +- id: 14924 + name: Lead-acid + friendly_id: ev_battery_type__lead_acid +- id: 14925 + name: Lithium-air (Li-air) + friendly_id: ev_battery_type__lithium_air_li_air +- id: 14926 + name: Lithium-ion (Li-ion) + friendly_id: ev_battery_type__lithium_ion_li_ion +- id: 14927 + name: Lithium-sulfur (Li-S) + friendly_id: ev_battery_type__lithium_sulfur_li_s +- id: 14928 + name: Lithium-titanate (Li-Ti) + friendly_id: ev_battery_type__lithium_titanate_li_ti +- id: 14929 + name: Nickel-cadmium (Ni-Cd) + friendly_id: ev_battery_type__nickel_cadmium_ni_cd +- id: 14930 + name: Nickel-metal hydride (NiMH) + friendly_id: ev_battery_type__nickel_metal_hydride_nimh +- id: 14931 + name: Sodium-ion (Na-ion) + friendly_id: ev_battery_type__sodium_ion_na_ion +- id: 14932 + name: Solid-state + friendly_id: ev_battery_type__solid_state +- id: 14933 + name: Ultra-capacitor + friendly_id: ev_battery_type__ultra_capacitor +- id: 14934 + name: Modified sine wave + friendly_id: inverter_type__modified_sine_wave +- id: 14935 + name: Pure sine wave + friendly_id: inverter_type__pure_sine_wave +- id: 14936 + name: Square wave + friendly_id: inverter_type__square_wave +- id: 14937 + name: Acrylonitrile butadiene styrene (ABS) + friendly_id: item_material__acrylonitrile_butadiene_styrene_abs +- id: 14938 + name: Aluminum + friendly_id: item_material__aluminum +- id: 14939 + name: Brass + friendly_id: item_material__brass +- id: 14940 + name: Carbon fiber + friendly_id: item_material__carbon_fiber +- id: 14941 + name: Ceramic + friendly_id: item_material__ceramic +- id: 14942 + name: Chrome + friendly_id: item_material__chrome +- id: 14943 + name: Copper + friendly_id: item_material__copper +- id: 14944 + name: Faux leather + friendly_id: item_material__faux_leather +- id: 14945 + name: Fiberglass + friendly_id: item_material__fiberglass +- id: 14946 + name: Glass + friendly_id: item_material__glass +- id: 14947 + name: Leather + friendly_id: item_material__leather +- id: 14948 + name: Metal + friendly_id: item_material__metal +- id: 14949 + name: Neoprene + friendly_id: item_material__neoprene +- id: 14950 + name: Nylon + friendly_id: item_material__nylon +- id: 14951 + name: Plastic + friendly_id: item_material__plastic +- id: 14952 + name: Polycarbonate (PC) + friendly_id: item_material__polycarbonate_pc +- id: 14953 + name: Polyethylene (PE) + friendly_id: item_material__polyethylene_pe +- id: 14954 + name: Polypropylene (PP) + friendly_id: item_material__polypropylene_pp +- id: 14955 + name: Polyurethane (PU) + friendly_id: item_material__polyurethane_pu +- id: 14956 + name: Polyvinyl chloride (PVC) + friendly_id: item_material__polyvinyl_chloride_pvc +- id: 14957 + name: Rubber + friendly_id: item_material__rubber +- id: 14958 + name: Silicone + friendly_id: item_material__silicone +- id: 14959 + name: Stainless steel + friendly_id: item_material__stainless_steel +- id: 14960 + name: Synthetic + friendly_id: item_material__synthetic +- id: 14961 + name: Thermoplastic + friendly_id: item_material__thermoplastic +- id: 14962 + name: Titanium + friendly_id: item_material__titanium +- id: 14963 + name: Vinyl + friendly_id: item_material__vinyl +- id: 14964 + name: Wood + friendly_id: item_material__wood +- id: 14965 + name: Other + friendly_id: item_material__other +- id: 14966 + name: Mono + friendly_id: amplifier_configuration__mono +- id: 14967 + name: Two-channel + friendly_id: amplifier_configuration__two_channel +- id: 14968 + name: Four-channel + friendly_id: amplifier_configuration__four_channel +- id: 14969 + name: Five-channel + friendly_id: amplifier_configuration__five_channel +- id: 14970 + name: Six-channel + friendly_id: amplifier_configuration__six_channel +- id: 14971 + name: Multi-channel + friendly_id: amplifier_configuration__multi_channel +- id: 14972 + name: 3.5mm to cassette + friendly_id: cassette_adapter_type__3_5mm_to_cassette +- id: 14973 + name: Bluetooth to cassette + friendly_id: cassette_adapter_type__bluetooth_to_cassette +- id: 14974 + name: USB to cassette + friendly_id: cassette_adapter_type__usb_to_cassette +- id: 14975 + name: CD player + friendly_id: compatible_player__cd_player +- id: 14976 + name: iPad + friendly_id: compatible_player__ipad +- id: 14977 + name: iPhone + friendly_id: compatible_player__iphone +- id: 14978 + name: iPod + friendly_id: compatible_player__ipod +- id: 14979 + name: Laptop + friendly_id: compatible_player__laptop +- id: 14980 + name: MP3 player + friendly_id: compatible_player__mp3_player +- id: 14981 + name: Portable DVD player + friendly_id: compatible_player__portable_dvd_player +- id: 14982 + name: Smartphone + friendly_id: compatible_player__smartphone +- id: 14983 + name: Tablet + friendly_id: compatible_player__tablet +- id: 14984 + name: Bluetooth + friendly_id: speakerphone_type__bluetooth +- id: 14985 + name: Hands-free + friendly_id: speakerphone_type__hands_free +- id: 14986 + name: Wired + friendly_id: speakerphone_type__wired +- id: 14987 + name: Wireless + friendly_id: speakerphone_type__wireless +- id: 14988 + name: Diesel + friendly_id: engine_type__diesel +- id: 14989 + name: Electric + friendly_id: engine_type__electric +- id: 14990 + name: Gas + friendly_id: engine_type__gas +- id: 14991 + name: Hybrid + friendly_id: engine_type__hybrid +- id: 14992 + name: Petrol + friendly_id: engine_type__petrol +- id: 14993 + name: Rotary + friendly_id: engine_type__rotary +- id: 14994 + name: Supercharged + friendly_id: engine_type__supercharged +- id: 14995 + name: Turbocharged + friendly_id: engine_type__turbocharged +- id: 14996 + name: Car + friendly_id: motor_vehicle_type__car +- id: 14997 + name: Truck + friendly_id: motor_vehicle_type__truck +- id: 14998 + name: SUV + friendly_id: motor_vehicle_type__suv +- id: 14999 + name: Van + friendly_id: motor_vehicle_type__van +- id: 15000 + name: Petrol + friendly_id: fuel_supply__petrol +- id: 15001 + name: Flex fuel + friendly_id: fuel_supply__flex_fuel +- id: 15002 + name: Custom + friendly_id: fit_type__custom +- id: 15003 + name: Universal + friendly_id: fit_type__universal +- id: 15004 + name: Direct + friendly_id: fit_type__direct +- id: 15005 + name: Tachometer + friendly_id: gauge_type__tachometer +- id: 15006 + name: Speedometer + friendly_id: gauge_type__speedometer +- id: 15007 + name: Odometer + friendly_id: gauge_type__odometer +- id: 15008 + name: Fuel level + friendly_id: gauge_type__fuel_level +- id: 15009 + name: Temperature + friendly_id: gauge_type__temperature +- id: 15010 + name: Pressure + friendly_id: gauge_type__pressure +- id: 15011 + name: Voltage + friendly_id: gauge_type__voltage +- id: 15012 + name: Front + friendly_id: motor_vehicle_placement__front +- id: 15013 + name: Rear + friendly_id: motor_vehicle_placement__rear +- id: 15014 + name: Left side + friendly_id: motor_vehicle_placement__left_side +- id: 15015 + name: Right side + friendly_id: motor_vehicle_placement__right_side +- id: 15016 + name: Automatic + friendly_id: transmission_type__automatic +- id: 15017 + name: Manual + friendly_id: transmission_type__manual +- id: 15018 + name: CVT + friendly_id: transmission_type__cvt +- id: 15019 + name: Dual-clutch + friendly_id: transmission_type__dual_clutch +- id: 15020 + name: Tiptronic + friendly_id: transmission_type__tiptronic +- id: 15021 + name: Alloy + friendly_id: rim_wheel_design__alloy +- id: 15022 + name: Carbon fiber + friendly_id: rim_wheel_design__carbon_fiber +- id: 15023 + name: Chrome + friendly_id: rim_wheel_design__chrome +- id: 15024 + name: Forged + friendly_id: rim_wheel_design__forged +- id: 15025 + name: Multi-piece + friendly_id: rim_wheel_design__multi_piece +- id: 15026 + name: Spoked + friendly_id: rim_wheel_design__spoked +- id: 15027 + name: Steel + friendly_id: rim_wheel_design__steel +- id: 15028 + name: All-season + friendly_id: vehicle_tire_type__all_season +- id: 15029 + name: All-terrain + friendly_id: vehicle_tire_type__all_terrain +- id: 15030 + name: Mud-terrain + friendly_id: vehicle_tire_type__mud_terrain +- id: 15031 + name: Performance + friendly_id: vehicle_tire_type__performance +- id: 15032 + name: Run-flat + friendly_id: vehicle_tire_type__run_flat +- id: 15033 + name: Summer + friendly_id: vehicle_tire_type__summer +- id: 15034 + name: Touring + friendly_id: vehicle_tire_type__touring +- id: 15035 + name: Winter + friendly_id: vehicle_tire_type__winter +- id: 15036 + name: Adventure + friendly_id: motorcycle_tire_type__adventure +- id: 15037 + name: Cruiser + friendly_id: motorcycle_tire_type__cruiser +- id: 15038 + name: Dirt + friendly_id: motorcycle_tire_type__dirt +- id: 15039 + name: Dual sport + friendly_id: motorcycle_tire_type__dual_sport +- id: 15040 + name: Racing + friendly_id: motorcycle_tire_type__racing +- id: 15041 + name: Scooter + friendly_id: motorcycle_tire_type__scooter +- id: 15042 + name: Sport + friendly_id: motorcycle_tire_type__sport +- id: 15043 + name: Touring + friendly_id: motorcycle_tire_type__touring +- id: 15044 + name: ATV + friendly_id: atv_off_road_tire_type__atv +- id: 15045 + name: Mud + friendly_id: atv_off_road_tire_type__mud +- id: 15046 + name: Off-road truck + friendly_id: atv_off_road_tire_type__off_road_truck +- id: 15047 + name: Racing + friendly_id: atv_off_road_tire_type__racing +- id: 15048 + name: Rock crawling + friendly_id: atv_off_road_tire_type__rock_crawling +- id: 15049 + name: Sand + friendly_id: atv_off_road_tire_type__sand +- id: 15050 + name: Snow + friendly_id: atv_off_road_tire_type__snow +- id: 15051 + name: UTV + friendly_id: atv_off_road_tire_type__utv +- id: 15052 + name: Wheel bearing + friendly_id: wheel_part_type__wheel_bearing +- id: 15053 + name: Wheel hub + friendly_id: wheel_part_type__wheel_hub +- id: 15054 + name: Lug nut + friendly_id: wheel_part_type__lug_nut +- id: 15055 + name: Wheel spacer + friendly_id: wheel_part_type__wheel_spacer +- id: 15056 + name: Wheel stud + friendly_id: wheel_part_type__wheel_stud +- id: 15057 + name: Wheel weight + friendly_id: wheel_part_type__wheel_weight +- id: 15058 + name: Wheel center cap + friendly_id: wheel_part_type__wheel_center_cap +- id: 15059 + name: Wheel lock + friendly_id: wheel_part_type__wheel_lock +- id: 15060 + name: Car + friendly_id: vehicle_type__car +- id: 15061 + name: Golf cart + friendly_id: vehicle_type__golf_cart +- id: 15062 + name: Motorcycle + friendly_id: vehicle_type__motorcycle +- id: 15063 + name: Recreational vehicle + friendly_id: vehicle_type__recreational_vehicle +- id: 15064 + name: SUV + friendly_id: vehicle_type__suv +- id: 15065 + name: Truck + friendly_id: vehicle_type__truck +- id: 15066 + name: Van + friendly_id: vehicle_type__van +- id: 15067 + name: Watercraft + friendly_id: vehicle_type__watercraft +- id: 15068 + name: Exterior + friendly_id: vehicle_application_area__exterior +- id: 15069 + name: Interior + friendly_id: vehicle_application_area__interior +- id: 15070 + name: Leather + friendly_id: vehicle_application_area__leather +- id: 15071 + name: Metal + friendly_id: vehicle_application_area__metal +- id: 15072 + name: Plastic + friendly_id: vehicle_application_area__plastic +- id: 15073 + name: Rubber + friendly_id: vehicle_application_area__rubber +- id: 15074 + name: Upholstery + friendly_id: vehicle_application_area__upholstery +- id: 15075 + name: Vinyl + friendly_id: vehicle_application_area__vinyl +- id: 15076 + name: Wheels + friendly_id: vehicle_application_area__wheels +- id: 15077 + name: Dip brush + friendly_id: brush_type__dip_brush +- id: 15078 + name: Flow-thru + friendly_id: brush_type__flow_thru +- id: 15079 + name: Scrub + friendly_id: brush_type__scrub +- id: 15080 + name: Wheel + friendly_id: brush_type__wheel +- id: 15081 + name: Spray bottle + friendly_id: package_type__spray_bottle +- id: 15082 + name: Full cover + friendly_id: cover_type__full_cover +- id: 15083 + name: Top cover + friendly_id: cover_type__top_cover +- id: 15084 + name: Roll-up + friendly_id: cover_type__roll_up +- id: 15085 + name: Folding + friendly_id: cover_type__folding +- id: 15086 + name: Retractable + friendly_id: cover_type__retractable +- id: 15087 + name: Cards + friendly_id: air_freshener_form__cards +- id: 15088 + name: Gel + friendly_id: air_freshener_form__gel +- id: 15089 + name: Oil + friendly_id: air_freshener_form__oil +- id: 15090 + name: Spray + friendly_id: air_freshener_form__spray +- id: 15091 + name: Vent clip + friendly_id: air_freshener_form__vent_clip +- id: 15092 + name: Apple + friendly_id: car_freshener_fragrance__apple +- id: 15093 + name: Cherry + friendly_id: car_freshener_fragrance__cherry +- id: 15094 + name: Citrus + friendly_id: car_freshener_fragrance__citrus +- id: 15095 + name: Coconut + friendly_id: car_freshener_fragrance__coconut +- id: 15096 + name: Fresh linen + friendly_id: car_freshener_fragrance__fresh_linen +- id: 15097 + name: Lavender + friendly_id: car_freshener_fragrance__lavender +- id: 15098 + name: Lemon + friendly_id: car_freshener_fragrance__lemon +- id: 15099 + name: New car + friendly_id: car_freshener_fragrance__new_car +- id: 15100 + name: Pine + friendly_id: car_freshener_fragrance__pine +- id: 15101 + name: Strawberry + friendly_id: car_freshener_fragrance__strawberry +- id: 15102 + name: Vanilla + friendly_id: car_freshener_fragrance__vanilla +- id: 15103 + name: Unscented + friendly_id: car_freshener_fragrance__unscented +- id: 15104 + name: Other + friendly_id: car_freshener_fragrance__other +- id: 15105 + name: Concentrate + friendly_id: antifreeze_type__concentrate +- id: 15106 + name: Prediluted + friendly_id: antifreeze_type__prediluted +- id: 15107 + name: 0W-16 + friendly_id: viscosity__0w_16 +- id: 15108 + name: 0W-20 + friendly_id: viscosity__0w_20 +- id: 15109 + name: 0W-30 + friendly_id: viscosity__0w_30 +- id: 15110 + name: 0W-40 + friendly_id: viscosity__0w_40 +- id: 15111 + name: 5W-20 + friendly_id: viscosity__5w_20 +- id: 15112 + name: 5W-30 + friendly_id: viscosity__5w_30 +- id: 15113 + name: 5W-40 + friendly_id: viscosity__5w_40 +- id: 15114 + name: 5W-50 + friendly_id: viscosity__5w_50 +- id: 15115 + name: 10W-30 + friendly_id: viscosity__10w_30 +- id: 15116 + name: 10W-40 + friendly_id: viscosity__10w_40 +- id: 15117 + name: 10W-50 + friendly_id: viscosity__10w_50 +- id: 15118 + name: 10W-60 + friendly_id: viscosity__10w_60 +- id: 15119 + name: 15W-40 + friendly_id: viscosity__15w_40 +- id: 15120 + name: 15W-50 + friendly_id: viscosity__15w_50 +- id: 15121 + name: 15W-60 + friendly_id: viscosity__15w_60 +- id: 15122 + name: 20W-50 + friendly_id: viscosity__20w_50 +- id: 15123 + name: 20W-60 + friendly_id: viscosity__20w_60 +- id: 15124 + name: Other + friendly_id: viscosity__other +- id: 15125 + name: Gloss + friendly_id: paint_finish__gloss +- id: 15126 + name: Matte + friendly_id: paint_finish__matte +- id: 15127 + name: Metallic + friendly_id: paint_finish__metallic +- id: 15128 + name: Pearl + friendly_id: paint_finish__pearl +- id: 15129 + name: Satin + friendly_id: paint_finish__satin +- id: 15130 + name: Paint kit + friendly_id: vehicle_paint_type__paint_kit +- id: 15131 + name: Spray paint + friendly_id: vehicle_paint_type__spray_paint +- id: 15132 + name: Touch-up paint + friendly_id: vehicle_paint_type__touch_up_paint +- id: 15133 + name: Trickle + friendly_id: charger_type__trickle +- id: 15134 + name: Smart + friendly_id: charger_type__smart +- id: 15135 + name: Manual + friendly_id: charger_type__manual +- id: 15136 + name: Lightweight + friendly_id: filler_type__lightweight +- id: 15137 + name: Fiberglass + friendly_id: filler_type__fiberglass +- id: 15138 + name: Metal + friendly_id: filler_type__metal +- id: 15139 + name: Plastic + friendly_id: filler_type__plastic +- id: 15140 + name: Summer + friendly_id: motorcycle_glove_purpose__summer +- id: 15141 + name: Winter + friendly_id: motorcycle_glove_purpose__winter +- id: 15142 + name: Racing + friendly_id: motorcycle_glove_purpose__racing +- id: 15143 + name: Touring + friendly_id: motorcycle_glove_purpose__touring +- id: 15144 + name: Off-road + friendly_id: motorcycle_glove_purpose__off_road +- id: 15145 + name: Vehicle electrical system + friendly_id: power_source__vehicle_electrical_system +- id: 15146 + name: Class I + friendly_id: hitch_class__class_i +- id: 15147 + name: Class II + friendly_id: hitch_class__class_ii +- id: 15148 + name: Class III + friendly_id: hitch_class__class_iii +- id: 15149 + name: Class IV + friendly_id: hitch_class__class_iv +- id: 15150 + name: Class V + friendly_id: hitch_class__class_v +- id: 15151 + name: Steering wheel lock + friendly_id: immobilizer_type__steering_wheel_lock +- id: 15152 + name: Pedal lock + friendly_id: immobilizer_type__pedal_lock +- id: 15153 + name: Tire lock + friendly_id: immobilizer_type__tire_lock +- id: 15154 + name: Fiberglass + friendly_id: safety_equipment_material__fiberglass +- id: 15155 + name: Leather + friendly_id: safety_equipment_material__leather +- id: 15156 + name: Metal + friendly_id: safety_equipment_material__metal +- id: 15157 + name: Nylon + friendly_id: safety_equipment_material__nylon +- id: 15158 + name: Plastic + friendly_id: safety_equipment_material__plastic +- id: 15159 + name: Polyester + friendly_id: safety_equipment_material__polyester +- id: 15160 + name: Rubber + friendly_id: safety_equipment_material__rubber +- id: 15161 + name: Traditional + friendly_id: flare_type__traditional +- id: 15162 + name: LED + friendly_id: flare_type__led +- id: 15163 + name: Full cage + friendly_id: cage_type__full_cage +- id: 15164 + name: Half-cage + friendly_id: cage_type__half_cage +- id: 15165 + name: Roll bar + friendly_id: cage_type__roll_bar +- id: 15166 + name: Lap + friendly_id: belt_type__lap +- id: 15167 + name: Three-point + friendly_id: belt_type__three_point +- id: 15168 + name: Five-point + friendly_id: belt_type__five_point +- id: 15169 + name: Roof + friendly_id: rack_type__roof +- id: 15170 + name: Hitch + friendly_id: rack_type__hitch +- id: 15171 + name: Trunk + friendly_id: rack_type__trunk +- id: 15172 + name: Spare tire + friendly_id: rack_type__spare_tire +- id: 15173 + name: Back window + friendly_id: rack_type__back_window +- id: 15174 + name: Floor mount + friendly_id: rack_type__floor_mount +- id: 15175 + name: Single + friendly_id: loading_ramp_type__single +- id: 15176 + name: Pair + friendly_id: loading_ramp_type__pair +- id: 15177 + name: Tri-fold + friendly_id: loading_ramp_type__tri_fold +- id: 15178 + name: Bumper pull + friendly_id: trailer_type__bumper_pull +- id: 15179 + name: Conventional + friendly_id: trailer_type__conventional +- id: 15180 + name: Enclosed + friendly_id: trailer_type__enclosed +- id: 15181 + name: Expandable + friendly_id: trailer_type__expandable +- id: 15182 + name: Fifth-wheel + friendly_id: trailer_type__fifth_wheel +- id: 15183 + name: Gooseneck + friendly_id: trailer_type__gooseneck +- id: 15184 + name: Living quarters + friendly_id: trailer_type__living_quarters +- id: 15185 + name: Open + friendly_id: trailer_type__open +- id: 15186 + name: Single axle + friendly_id: trailer_type__single_axle +- id: 15187 + name: Tandem axle + friendly_id: trailer_type__tandem_axle +- id: 15188 + name: Teardrop + friendly_id: trailer_type__teardrop +- id: 15189 + name: Saddlebag + friendly_id: bag_type__saddlebag +- id: 15190 + name: Tank bag + friendly_id: bag_type__tank_bag +- id: 15191 + name: Tail bag + friendly_id: bag_type__tail_bag +- id: 15192 + name: Tool bag + friendly_id: bag_type__tool_bag +- id: 15193 + name: Chest + friendly_id: box_type__chest +- id: 15194 + name: Crossover + friendly_id: box_type__crossover +- id: 15195 + name: Drawer + friendly_id: box_type__drawer +- id: 15196 + name: Side mount + friendly_id: box_type__side_mount +- id: 15197 + name: Backseat + friendly_id: organizer_type__backseat +- id: 15198 + name: Console + friendly_id: organizer_type__console +- id: 15199 + name: Cup holder + friendly_id: organizer_type__cup_holder +- id: 15200 + name: Glove box + friendly_id: organizer_type__glove_box +- id: 15201 + name: Visor + friendly_id: organizer_type__visor +- id: 15202 + name: Boat + friendly_id: vehicle_type__boat +- id: 15203 + name: Jet ski + friendly_id: vehicle_type__jet_ski +- id: 15204 + name: Sailboat + friendly_id: vehicle_type__sailboat +- id: 15205 + name: Yacht + friendly_id: vehicle_type__yacht +- id: 15206 + name: BBB + friendly_id: chain_type__bbb +- id: 15207 + name: High test (HT) + friendly_id: chain_type__high_test_ht +- id: 15208 + name: Proof coil + friendly_id: chain_type__proof_coil +- id: 15209 + name: Stainless steel (SS) + friendly_id: chain_type__stainless_steel_ss +- id: 15210 + name: Three-strand + friendly_id: line_rope_type__three_strand +- id: 15211 + name: Double braid + friendly_id: line_rope_type__double_braid +- id: 15212 + name: Single braid + friendly_id: line_rope_type__single_braid +- id: 15213 + name: Vertical + friendly_id: windlass_design__vertical +- id: 15214 + name: Horizontal + friendly_id: windlass_design__horizontal +- id: 15215 + name: Claw + friendly_id: anchor_type__claw +- id: 15216 + name: Fixed + friendly_id: hook_type__fixed +- id: 15217 + name: Telescoping + friendly_id: hook_type__telescoping +- id: 15218 + name: Fixed + friendly_id: ladder_type__fixed +- id: 15219 + name: Telescoping + friendly_id: ladder_type__telescoping +- id: 15220 + name: Under-platform + friendly_id: ladder_type__under_platform +- id: 15221 + name: Over-platform + friendly_id: ladder_type__over_platform +- id: 15222 + name: Open base + friendly_id: cleat_type__open_base +- id: 15223 + name: Closed base + friendly_id: cleat_type__closed_base +- id: 15224 + name: Flip-up + friendly_id: cleat_type__flip_up +- id: 15225 + name: Single + friendly_id: step_type__single +- id: 15226 + name: Double + friendly_id: step_type__double +- id: 15227 + name: Triple + friendly_id: step_type__triple +- id: 15228 + name: All-purpose + friendly_id: cleaner_purpose__all_purpose +- id: 15229 + name: Hull + friendly_id: cleaner_purpose__hull +- id: 15230 + name: Deck + friendly_id: cleaner_purpose__deck +- id: 15231 + name: Vinyl + friendly_id: cleaner_purpose__vinyl +- id: 15232 + name: Metal + friendly_id: cleaner_purpose__metal +- id: 15233 + name: All-purpose + friendly_id: polish_type__all_purpose +- id: 15234 + name: Hull + friendly_id: polish_type__hull +- id: 15235 + name: Deck + friendly_id: polish_type__deck +- id: 15236 + name: Vinyl + friendly_id: polish_type__vinyl +- id: 15237 + name: Metal + friendly_id: polish_type__metal +- id: 15238 + name: Shift + friendly_id: watercraft_engine_control_type__shift +- id: 15239 + name: Steering + friendly_id: watercraft_engine_control_type__steering +- id: 15240 + name: Throttle + friendly_id: watercraft_engine_control_type__throttle +- id: 15241 + name: Outboard + friendly_id: lock_placement__outboard +- id: 15242 + name: Inboard + friendly_id: lock_placement__inboard +- id: 15243 + name: Transom + friendly_id: watercraft_motor_mounting_type__transom +- id: 15244 + name: Bow + friendly_id: watercraft_motor_mounting_type__bow +- id: 15245 + name: Stern + friendly_id: watercraft_motor_mounting_type__stern +- id: 15246 + name: 3-blade + friendly_id: propeller_blade_design__3_blade +- id: 15247 + name: 4-blade + friendly_id: propeller_blade_design__4_blade +- id: 15248 + name: 5-blade + friendly_id: propeller_blade_design__5_blade +- id: 15249 + name: Analog + friendly_id: meter_type__analog +- id: 15250 + name: Digital + friendly_id: meter_type__digital +- id: 15251 + name: Navigation + friendly_id: light_type__navigation +- id: 15252 + name: Deck + friendly_id: light_type__deck +- id: 15253 + name: Cabin + friendly_id: light_type__cabin +- id: 15254 + name: Underwater + friendly_id: light_type__underwater +- id: 15255 + name: Power + friendly_id: watercraft_steering_wheel_type__power +- id: 15256 + name: Sport + friendly_id: watercraft_steering_wheel_type__sport +- id: 15257 + name: Standard + friendly_id: watercraft_steering_wheel_type__standard +- id: 15258 + name: FWD + friendly_id: drive_type__fwd +- id: 15259 + name: RWD + friendly_id: drive_type__rwd +- id: 15260 + name: AWD + friendly_id: drive_type__awd +- id: 15261 + name: Sedan + friendly_id: car_type__sedan +- id: 15262 + name: Coupe + friendly_id: car_type__coupe +- id: 15263 + name: Convertible + friendly_id: car_type__convertible +- id: 15264 + name: Hatchback + friendly_id: car_type__hatchback +- id: 15265 + name: Wagon + friendly_id: car_type__wagon +- id: 15266 + name: SUV + friendly_id: car_type__suv +- id: 15267 + name: Crossover + friendly_id: car_type__crossover +- id: 15268 + name: Pickup + friendly_id: truck_type__pickup +- id: 15269 + name: Box truck + friendly_id: truck_type__box_truck +- id: 15270 + name: Dump truck + friendly_id: truck_type__dump_truck +- id: 15271 + name: Flatbed truck + friendly_id: truck_type__flatbed_truck +- id: 15272 + name: Minivan + friendly_id: van_type__minivan +- id: 15273 + name: Cargo van + friendly_id: van_type__cargo_van +- id: 15274 + name: Passenger van + friendly_id: van_type__passenger_van +- id: 15275 + name: Conversion van + friendly_id: van_type__conversion_van +- id: 15276 + name: Electric + friendly_id: cart_type__electric +- id: 15277 + name: Gas + friendly_id: cart_type__gas +- id: 15278 + name: Belt + friendly_id: motorcycle_drive_type__belt +- id: 15279 + name: Chain + friendly_id: motorcycle_drive_type__chain +- id: 15280 + name: Shaft + friendly_id: motorcycle_drive_type__shaft +- id: 15281 + name: Cruiser + friendly_id: motorcycle_scooter_type__cruiser +- id: 15282 + name: Dual-sport + friendly_id: motorcycle_scooter_type__dual_sport +- id: 15283 + name: Maxi-scooter + friendly_id: motorcycle_scooter_type__maxi_scooter +- id: 15284 + name: Moped + friendly_id: motorcycle_scooter_type__moped +- id: 15285 + name: Off-road + friendly_id: motorcycle_scooter_type__off_road +- id: 15286 + name: Sport + friendly_id: motorcycle_scooter_type__sport +- id: 15287 + name: Three-wheel + friendly_id: motorcycle_scooter_type__three_wheel +- id: 15288 + name: Touring + friendly_id: motorcycle_scooter_type__touring +- id: 15289 + name: Other + friendly_id: motorcycle_scooter_type__other +- id: 15290 + name: Class A + friendly_id: recreational_vehicle_type__class_a +- id: 15291 + name: Class B + friendly_id: recreational_vehicle_type__class_b +- id: 15292 + name: Class C + friendly_id: recreational_vehicle_type__class_c +- id: 15293 + name: Travel trailer + friendly_id: recreational_vehicle_type__travel_trailer +- id: 15294 + name: Fifth wheel + friendly_id: recreational_vehicle_type__fifth_wheel +- id: 15295 + name: Pop-up camper + friendly_id: recreational_vehicle_type__pop_up_camper +- id: 15296 + name: Truck camper + friendly_id: recreational_vehicle_type__truck_camper +- id: 15297 + name: Performance + friendly_id: snowmobile_type__performance +- id: 15298 + name: Touring + friendly_id: snowmobile_type__touring +- id: 15299 + name: Mountain + friendly_id: snowmobile_type__mountain +- id: 15300 + name: Utility + friendly_id: snowmobile_type__utility +- id: 15301 + name: Youth + friendly_id: snowmobile_type__youth +- id: 15302 + name: Bowrider + friendly_id: boat_type__bowrider +- id: 15303 + name: Center console + friendly_id: boat_type__center_console +- id: 15304 + name: Cuddy cabin + friendly_id: boat_type__cuddy_cabin +- id: 15305 + name: Pontoon + friendly_id: boat_type__pontoon +- id: 15306 + name: Deck boat + friendly_id: boat_type__deck_boat +- id: 15307 + name: Stand-up + friendly_id: watercraft_type__stand_up +- id: 15308 + name: Sit-down + friendly_id: watercraft_type__sit_down +- id: 15309 + name: Sport + friendly_id: watercraft_type__sport +- id: 15310 + name: Luxury + friendly_id: watercraft_type__luxury +- id: 15311 + name: Sloop + friendly_id: sailboat_type__sloop +- id: 15312 + name: Cutter + friendly_id: sailboat_type__cutter +- id: 15313 + name: Catamaran + friendly_id: sailboat_type__catamaran +- id: 15314 + name: Trimaran + friendly_id: sailboat_type__trimaran +- id: 15315 + name: Yawl + friendly_id: sailboat_type__yawl +- id: 15316 + name: Explorer + friendly_id: yacht_type__explorer +- id: 15317 + name: Motor + friendly_id: yacht_type__motor +- id: 15318 + name: Sailing + friendly_id: yacht_type__sailing +- id: 15319 + name: Sport + friendly_id: yacht_type__sport diff --git a/db/schema.rb b/db/schema.rb index e85d0b72..5e6c3f3a 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -15,6 +15,9 @@ end create_table :property_values, force: :cascade do |t| t.string(:name, null: false) + t.string(:friendly_id, null: false) + + t.index(:friendly_id, unique: true) end create_table :categories_properties, id: false, force: :cascade do |t| @@ -26,9 +29,9 @@ end create_table :properties_property_values, id: false, force: :cascade do |t| t.integer(:property_id, null: false) - t.integer(:property_value_id, null: false) + t.string(:property_value_friendly_id, null: false) - t.index([:property_id, :property_value_id], unique: true) - t.index(:property_value_id) + t.index([:property_id, :property_value_friendly_id], unique: true) + t.index(:property_value_friendly_id) end end diff --git a/db/seed.rb b/db/seed.rb index 39e39c11..59a91a3f 100644 --- a/db/seed.rb +++ b/db/seed.rb @@ -8,21 +8,27 @@ def initialize(verbose: false) @verbose = verbose end - def attributes_from(data) + def values_from(data) vputs("Importing values") - raw_values = data.flat_map { _1.fetch("values") } - values = SourceData::PropertyValueSerializer.deserialize_for_insert_all(raw_values) - PropertyValue.insert_all(values) + property_values = SourceData::PropertyValueSerializer.deserialize_for_insert_all(data) + PropertyValue.insert_all(property_values) vputs("✓ Imported #{PropertyValue.count} values") + end + def attributes_from(data) vputs("Importing properties") properties = SourceData::PropertySerializer.deserialize_for_insert_all(data) Property.insert_all(properties) vputs("✓ Imported #{Property.count} properties") vputs("Importing property ↔ value relationships") - joins = SourceData::PropertySerializer.deserialize_for_join_insert_all(data) - PropertiesPropertyValue.insert_all(joins) + standard_attributes, reference_attributes = data.partition { _1["values_from"].nil? } + standard_attribute_joins = SourceData::PropertySerializer.deserialize_for_join_insert_all(standard_attributes) + PropertiesPropertyValue.insert_all!(standard_attribute_joins) + + reference_attribute_joins = SourceData::PropertySerializer.deserialize_for_join_insert_all(reference_attributes) + PropertiesPropertyValue.insert_all(reference_attribute_joins) + vputs("✓ Imported #{PropertiesPropertyValue.count} property ↔ value relationships") end diff --git a/test/integration/all_data_files_import_test.rb b/test/integration/all_data_files_import_test.rb index ce18a3b4..b7a86c40 100644 --- a/test/integration/all_data_files_import_test.rb +++ b/test/integration/all_data_files_import_test.rb @@ -7,14 +7,13 @@ class AllDataFilesImportTest < ActiveSupport::TestCase include Minitest::Hooks def before_all - @raw_attributes_data = YAML.load_file("#{Application.root}/data/attributes/attributes.yml") seed = DB::Seed.new - seed.attributes_from(@raw_attributes_data) - # this will be replaced by values.yml - @unique_raw_values_data = @raw_attributes_data - .flat_map { _1.fetch("values") } - .uniq { _1.fetch("id") } + @raw_values_data = YAML.load_file("#{Application.root}/data/values.yml") + seed.values_from(@raw_values_data) + + @raw_attributes_data = YAML.load_file("#{Application.root}/data/attributes.yml") + seed.attributes_from(@raw_attributes_data) # Categories are only successfully parseable if attributes are already present category_files = Dir.glob("#{Application.root}/data/categories/*.yml") @@ -22,12 +21,12 @@ def before_all seed.categories_from(@raw_verticals_data) end - test "AttributeValues are correctly imported from attributes.yml" do - assert_equal @unique_raw_values_data.size, PropertyValue.count + test "AttributeValues are correctly imported from values.yml" do + assert_equal @raw_values_data.size, PropertyValue.count end - test "AttributeValues are consistent with attributes.yml" do - @unique_raw_values_data.each do |raw_value| + test "AttributeValues are consistent with values.yml" do + @raw_values_data.each do |raw_value| deserialized_value = SourceData::PropertyValueSerializer.deserialize(raw_value) real_value = PropertyValue.find(raw_value.fetch("id")) @@ -92,16 +91,47 @@ def before_all end end - test "Attribute ↔ Value relationships are consistent with attributes.yml" do + test "Attribute ↔ Value relationships are consistent with attributes.yml when values are listed" do @raw_attributes_data.each do |raw_attribute| property = Property.find(raw_attribute.fetch("id")) - raw_attribute.fetch("values").each do |raw_property_value| - property_value = PropertyValue.find(raw_property_value.fetch("id")) + + next unless raw_attribute.fetch("values_from", nil).nil? + + raw_value_friendly_ids = raw_attribute.fetch("values", []) + refute raw_value_friendly_ids.empty? + + raw_value_friendly_ids.each do |property_value_friendly_id| + property_value = PropertyValue.find_by(friendly_id: property_value_friendly_id) assert_includes property.property_values, property_value end end end + test "Attribute ↔ Value relationships are consistent with attributes.yml when values are inherited" do + @raw_attributes_data.each do |raw_attribute| + property = Property.find(raw_attribute.fetch("id")) + + next unless raw_attribute.fetch("values", nil).nil? + + values_from_property_friendly_id = raw_attribute.fetch("values_from", nil) + refute values_from_property_friendly_id.nil? + + values_from_property = Property.find_by(friendly_id: values_from_property_friendly_id) + + assert_equal values_from_property.property_values.size, property.property_values.size + + property.property_values.each do |property_values| + assert_includes values_from_property.property_values, property_values + end + end + end + + test "Attributes in yaml either have values or inherit values" do + @raw_attributes_data.each do |raw_attribute| + assert raw_attribute.key?("values") ^ raw_attribute.key?("values_from") + end + end + # more fragile, but easier sanity check test "Snowboards category is fully imported and modeled correctly" do snowboard = Category.find("sg-4-17-2-17") @@ -109,7 +139,7 @@ def before_all assert_equal "Snowboards", snowboard.name assert_empty snowboard.children - real_property_friendly_ids = snowboard.properties.pluck(:friendly_id) + real_property_friendly_ids = snowboard.property_friendly_ids assert_equal 8, real_property_friendly_ids.size assert_includes real_property_friendly_ids, "age_group" assert_includes real_property_friendly_ids, "color" @@ -128,11 +158,11 @@ def before_all assert_equal "Snowboard construction", snowboard_construction.name assert_equal "snowboard_construction", snowboard_construction.friendly_id - real_value_ids = snowboard_construction.property_value_ids - assert_equal 4, real_value_ids.size - assert_includes real_value_ids, 1363 # Flat - assert_includes real_value_ids, 7083 # Hybrid - assert_includes real_value_ids, 7236 # Camber - assert_includes real_value_ids, 7237 # Rocker + real_value_friendly_ids = snowboard_construction.property_value_friendly_ids + assert_equal 4, real_value_friendly_ids.size + assert_includes real_value_friendly_ids, "snowboard_construction__camber" + assert_includes real_value_friendly_ids, "snowboard_construction__flat" + assert_includes real_value_friendly_ids, "snowboard_construction__hybrid" + assert_includes real_value_friendly_ids, "snowboard_construction__rocker" end end diff --git a/test/unit/property_value_test.rb b/test/unit/property_value_test.rb index aa49872c..7cae2403 100644 --- a/test/unit/property_value_test.rb +++ b/test/unit/property_value_test.rb @@ -12,20 +12,20 @@ def teardown end test "default ordering is alphabetical with 'other' last" do - red = value!(id: 11, name: "Red") - zoo = value!(id: 12, name: "Zoo") - other = value!(id: 10, name: "Other") + red = value!(id: 11, name: "Red", friendly_id: "test__red") + zoo = value!(id: 12, name: "Zoo", friendly_id: "test__zoo") + other = value!(id: 10, name: "Other", friendly_id: "test__other") assert_equal [red, zoo, other], PropertyValue.all.to_a end private - def value(id: 1, name: "Foo") - PropertyValue.new(id: id, name: name) + def value(id: 1, name: "Foo", friendly_id: "test__foo") + PropertyValue.new(id: id, name: name, friendly_id: friendly_id) end - def value!(id: 1, name: "Foo") - PropertyValue.create(id: id, name: name) + def value!(id: 1, name: "Foo", friendly_id: "test__foo") + PropertyValue.create(id: id, name: name, friendly_id: friendly_id) end end