Thank you for the ved_decoder!
It'd be nice to have a mapping of decoded ved -> serp feature type. Wdyt about VedDecode#decoded_serp_feature?
VED_TYPES_TO_SERP_FEATURES = {
22: :organic_results,
39116: :organic_result_questions,
# ...
}
# lib/ved_decoder.rb
module VedDecode
# ...
def decoded_serp_feature
VED_TYPES_TO_SERP_FEATURES[type]
end
end