module ActiveModelSerializers::Adapter::JsonApi::Deserialization

def parse_attributes(attributes, options)

Other tags:
    Api: - private
def parse_attributes(attributes, options)
  transform_keys(attributes, options)
    .map { |(k, v)| { field_key(k, options) => v } }
    .reduce({}, :merge)
end