Ah, let me clarify: This is what I have: [ { "plan_type": "Medical", "provider_type": "Facility", "provider_group_affiliation": "Group ABC", "provider_group_website": "", "TIN": 123456789, "clinic_name": "Medical Clinic", "clinic_address": "123 Fake St", "clinic_city": "Orange", "clinic_state": "CA", "clinic_zipcode": 92539, "clinic_phone_number": 8008881000, "provider_name": "", "providerNPI": 1234567890, "provider_category": "Other", "specialties": "Cardiology", "languages_spoken": "", "accepting": "", "telehealth_available": "", "accessibility": "", "auxiliary_aids_and_services": "", "cultural_competency_training": "", "provider_ethnicity": "", "provider_race": "", "last_credential_dt": null }, And this is what I want: [ { "plan_type": "Medical", "provider_type": "Facility", "provider_group_affiliation": "Group ABC", "provider_group_website": "", "TIN": 123456789, "clinic_name": "Medical Clinic", "clinic_address": "123 Fake St", "clinic_city": "Orange", "clinic_state": "CA", "clinic_zipcode": 92539, "clinic_phone_number": 8008881000, "provider_name": "", "providerNPI": 1234567890, "provider_category": "Other", "specialties": ["Cardiology"], "languages_spoken": [""], "accepting": "", "telehealth_available": "", "accessibility": "", "auxiliary_aids_and_services": "", "cultural_competency_training": "", "provider_ethnicity": [""], "provider_race": [""], "last_credential_dt": null },
... View more