Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

Summary

This table is used to track identifying data for Accountable Care Organizations (ACOs) nationally.  
The unique entity_id links to the entities, entity_aco_attributes, and entity_aco_overrides tables.

Table Creation

CREATE TABLE IF NOT EXISTS `entity_acos` (
`entity_id` int(10) NOT NULL DEFAULT '0',
`local_id` varchar(10) DEFAULT NULL,
`name` varchar(255) DEFAULT NULL,
`aka` varchar(255) DEFAULT NULL,
`entity_type` varchar(255) DEFAULT NULL,
`classification` varchar(255) DEFAULT NULL,
`date_start` date DEFAULT NULL,
`counties_served` varchar(255) DEFAULT NULL,
`address` varchar(255) DEFAULT NULL,
`city` varchar(255) DEFAULT NULL,
`state` varchar(2) DEFAULT NULL,
`state_fips` varchar(10) DEFAULT NULL,
`zipcode` varchar(5) DEFAULT NULL,
`county_name` varchar(30) DEFAULT NULL,
`county_fips` varchar(10) DEFAULT NULL,
`phonenumber` varchar(46) DEFAULT NULL,
`geo_lat` float DEFAULT NULL,
`geo_long` float DEFAULT NULL,
`website` varchar(255) DEFAULT NULL,
`contact_ipro` varchar(255) DEFAULT NULL,
`contact_cmwf` varchar(255) DEFAULT NULL,
`summary_detail` varchar(255) DEFAULT NULL,
`estimated_members` varchar(255) DEFAULT NULL,
`estimated_physicians` varchar(255) DEFAULT NULL,
`physician_details` varchar(255) DEFAULT NULL,
`closed_date` date DEFAULT NULL,
`created` datetime DEFAULT NULL,
`modified` datetime DEFAULT NULL,
PRIMARY KEY (`entity_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

 

Fields

fieldtypeattributesnotesexample
entity_idint(10)UNSIGNED NOT NULL AUTO_INCREMENTProvided by Pellucid, same as entities table1219198502
local_idvarchar(10)DEFAULT NULLAssigned by data provider, ex: state 0012
namevarchar(255)DEFAULT NULL Ted's ACO
akavarchar(255)DEFAULT NULL Ted Jr's ACO
entity_typevarchar(255)DEFAULT NULL Medicare Shared Savings
classificationvarchar(255)DEFAULT NULLDetails on the Operating status of the entityPartnership of Hospitals
date_startdate YYYY-MM-DD2014-08-04
counties_servedvarchar(255)DEFAULT NULLList of counties that are part of the ACONassau
addressvarchar(255)DEFAULT NULLPhysical Location123 Fake St
cityvarchar(255)DEFAULT NULL Lake Success
statevarchar(2)DEFAULT NULLTwo-letter state abbreviationNY
state_fipsvarchar(10)DEFAULT NULL 09
zipcodevarchar(5)DEFAULT NULL 11042
county_namevarchar(30)DEFAULT NULL Nassau
county_fipsvarchar(10)DEFAULT NULL 056
phone_numbervarchar(46)DEFAULT NULL 5165550123
geo_latfloatDEFAULT NULLlatitude location-45.00032
geo_longfloatDEFAULT NULLlongitude location101.12345
websitevarchar(255)DEFAULT NULLurlwww.site.com
contact_iprovarchar(255)DEFAULT NULLcontact through IPRO

jim@ipro.us

contact_cmwfvarchar(255)DEFAULT NULLcontact through Common Wealth Fundsjim@fake.org
summary_detailvarchar(255)DEFAULT NULLa description of who runs the ACO and what locations it servesCEO James Bond is the contact
estimated_membersvarchar(255)DEFAULT NULLapproximate number of members600
estimated_physiciansvarchar(255)DEFAULT NULLapproximate number of physicians6
physician_detailsvarchar(255)DEFAULT NULLindicates the number of primary care physicians and specialistsPCPs = 12; Specialists = 4
closed_datedateDEFAULT NULL 2011-01-12
createddatetime when the row was created2000-01-01 11:11:11
modifieddatetime when the row was most recently changed2014-08-01 01:12:12

 


  • No labels