module Multiwoven::Integrations::Destination::Airtable::SchemaHelper
def get_json_schema(table)
def get_json_schema(table) fields = table["fields"] || {} properties = fields.each_with_object({}) do |field, props| name, schema = process_field(field) props[name] = schema end build_schema(properties) end