This repository has been archived by the owner on Dec 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Healthleads Data Mapping
kdondziak edited this page Feb 6, 2020
·
5 revisions
Healthleads data are provided in 11 .csv files. Files should be named as follows:
- eligibility.csv
- languages.csv
- locations.csv
- organizations.csv
- phones.csv
- physical_addresses.csv
- required_documents.csv
- services.csv
- services_at_location.csv
- services_taxonomy.csv
- taxonomy.csv
- metadata.csv
Data can be provided in .json files as well.
Healthleads field (type) | Example value | Mapped to (type) |
---|---|---|
eligibility (string) | Description of eligibility | eligibility (string) |
Healthleads field (type) | Example value | Mapped to (type) |
---|---|---|
language (string) | English;Spanish | Each language separated by ';' is saved as distinct Language entity |
Healthleads field (type) | Example value | Mapped to (type) |
---|---|---|
name (string) | Location Name | name (string) |
alternate_name (string) | Loca | alternateName (string) |
description (string) | Description of location | description (string) |
transportation (string) | Transportation | transportation (string) |
latitude (double) | 37.23932 | latitude (double) |
longitude (double) | 12.3242342 | longitude (double) |
x_schedule (string) | Monday - Friday: 8 am - 4 pm Saturday: 8 am - 3 pm Sunday: CLOSED Community Produce Program: 1st and 3rd Thursday of each month, 12pm-1 pm Food Assistance Program: 3rd Tuesday of each month, 10am-12pm 9 am- 5pm |
ignored |
Healthleads field (type) | Example value | Mapped to (type) |
---|---|---|
name (string) | Organization Name | name (string) |
alternate_name (string) | Org | alternateName (string) |
email (string) | email@mail.com | email (string) |
url (string) | www.url.com | url (string) |
description (string) | Description of organization | description (string) |
tax_status (string) | Status | taxStatus (string) |
tax_id (string) | tax-123 | taxId (string) |
year_incorporated (string) | 2018-01-02 | yearIncorporated (LocalDate) |
legal_status (string) | Legal status | legalStatus (string) |
Healthleads field (type) | Example value | Mapped to (type) |
---|---|---|
number (string) | (123)-123-2222 | number (string) |
extension (string) | 123 | extensions (Integer) |
type (string) | Voice | type (string) |
language (string) | English | language (string) |
description (string) | Description of phone | description (string) |
Healthleads field (type) | Example value | Mapped to (type) |
---|---|---|
attention (string) | Attention | attention (string) |
address_1 (string) | Street 12 | address1 (string) |
city (string) | San Francisco | city (string) |
region (string) | Region | region (string) |
state_province (string) | California | stateProvince (string) |
postal_code (string) | 12345 | postalCode (string) |
country (string) | USA | country (string) |
Healthleads field (type) | Example value | Mapped to (type) |
---|---|---|
document (string) | Document | document (string) |
Healthleads field (type) | Example value | Mapped to (type) |
---|---|---|
name (string) | Service Name | name (string) |
alternate_name (string) | Serv | alternateName (string) |
email (string) | email@mail.com | email (string) |
url (string) | www.url.com | url (string) |
description (string) | Description of service | description (string) |
status (string) | Available | status (string) |
interpretation_services (string) | Interpretation services | interpretationServices (string) |
application_process (string) | Application process | applicationProcess (string) |
wait_time (string) | One day | waitTime (string) |
fees (string) | No fees | fees (string) |
accreditations (string) | Accreditations | accreditations (string) |
licenses (string) | Licenses | licenses (string) |
x_target_population (string) | Target population | ignored |
Healthleads field (type) | Example value | Mapped to (type) |
---|---|---|
description (string) | Description | description (string) |
Healthleads field (type) | Example value | Mapped to (type) |
---|---|---|
taxonomy_detail (string) | Taonomy detail | taxonomyDetails (string) |
Healthleads field (type) | Example value | Mapped to (type) |
---|---|---|
name (sring) | Taxonomy Name | name (string) |
vocabulary (string) | Vocabulary | vocabulary (string) |
parent_name (string) | Parent Name | ignored |
Healthleads field (type) | Example value | Mapped to (type) |
---|---|---|
resource_id (sring) | a0jA000000CFbUAAAA | resourceId (string) |
last_action_date (string) | 2019-05-05T00:11:02.000Z | lastActionDate (ZonedDateTime) |
updated_by (string) | John Doe johndoe@mail.org | updatedBy (string) |
sn_primary_source (string) | "" | ignored |
last_action_type (string) | Partial Update | lastActionType (ActionType) |
- Organization is related to Locaton (but it can be empty)
- Each Language is related to Service and Location
- Physical Address is related to Location
- Service is related to Organization
- Each Phone is related to Service and Location
- Service At Location is related to Serive and Location
- Taxonomy is not related to parent Taxonomy
- ServiceTaxonomy is related to Taxonomy and Service
- Eigibility is related to Service
- Required Document is related to Service