module Multiwoven::Integrations::Destination::Airtable::SchemaHelper

def determine_schema(original_type, options)

def determine_schema(original_type, options)
  if COMPLEX_AIRTABLE_TYPES.keys.include?(original_type)
    complex_type = deep_copy(COMPLEX_AIRTABLE_TYPES[original_type])
    adjust_complex_type(original_type, complex_type, options)
  elsif SIMPLE_AIRTABLE_TYPES.keys.include?(original_type)
    simple_type_schema(original_type, options)
  else
    SCHEMA_TYPES[:STRING]
  end
end