{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Hollister Ranch Analysis\n", "\n", "By [Ben Welsh](https://palewi.re/who-is-ben-welsh/)\n", "\n", "The _Los Angeles Times_ conducted an analysis of agricultural property tax breaks issued by Santa Barbara County for Steve Lopez's Oct. 20, 2018, column [\"At Hollister Ranch, homeowners enjoy private beaches — and hefty tax breaks, too.\"](http://www.latimes.com/local/california/la-me-lopez-hollister-taxes-20181020-story.html)\n", "\n", "It found that Hollister Ranch owners — including celebrities and wealthy business moguls — had their property tax trimmed by roughly 50% this year, reducing the county's revenue by about $2 million." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Here's how we did it" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Gather Hollister Ranch parcels" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "A map of all parcels in Santa Barbara County was filtered down to only those in Hollister Ranch using two publically available map files. They were then filtered again to include only parcels that received a property-tax break given to agricultural lands under California's Williamson Act. The names of parcel owners were acquired via a California Public Records Act request with the Santa Barbara County Assessor and merged with the maps.\n", "\n", "This was done in consultation with Santa Barbara County officials as well as a lawyer for Hollister Ranch." ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "%run ./src/parcels.ipynb" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Gather Santa Barbara County property tax records\n", "\n", "The list of Hollister Ranch parcels was used to scrape property tax records published by the county assessor. They include the property tax each owner was [billed](http://taxes.co.santa-barbara.ca.us/propertytax/taxbill.asp?FiscalYear=2018&ParcelNumber=083-660-002) in the most recent year. Also harvested was a \"value notice\" detailing each property's reduced assessment under the Williamson Act, as well as what it would have been assessed at without the break under Proposition 13, the state's reigning property tax law. Comparing these two values is the core of the analysis that follows. The data were gathered in consultation with Santa Barbara County officials.\n", "\n", "Here is [an example of a value notice](http://sbcassessor.com/assessor/ValueNotices.aspx?APN=083660002) with the two key values highlighted:\n", "\n", "![A value notice](https://i.imgur.com/nXEX9O2.png)" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "%run ./src/download.ipynb" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [], "source": [ "%run ./src/parse.ipynb" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Import Python tools" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [], "source": [ "import pandas as pd\n", "import altair as alt\n", "from src import settings" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "A little configuration" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [], "source": [ "pd.options.display.float_format = '${:,.0f}'.format" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "A few helpers" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [], "source": [ "printmoney = lambda s: print(f'${s:,.0f}')" ] }, { "cell_type": "code", "execution_count": 8, "metadata": {}, "outputs": [], "source": [ "printpctchange = lambda new, old: print(f'{((new - old) / old)*100:0.2f}%')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Execute analysis" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The scraped data is read in." ] }, { "cell_type": "code", "execution_count": 9, "metadata": {}, "outputs": [], "source": [ "williamson_df = pd.read_csv(f\"{settings.output_dir}/parsed.csv\")" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### How many parcels in Hollister Ranch benefited from the Williamson Act?" ] }, { "cell_type": "code", "execution_count": 10, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "136" ] }, "execution_count": 10, "metadata": {}, "output_type": "execute_result" } ], "source": [ "len(williamson_df)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### What is the total assessed value of all of the properties under the Williamson Act?" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [], "source": [ "total_williamson_value = williamson_df.williamson_assessment.sum()" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "$182,204,442\n" ] } ], "source": [ "printmoney(total_williamson_value)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### What would be the total assessed value of those same properties without the benefit?" ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [], "source": [ "total_prop13_value = williamson_df.prop13_assessment.sum()" ] }, { "cell_type": "code", "execution_count": 14, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "$371,160,842\n" ] } ], "source": [ "printmoney(total_prop13_value)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### What's the difference between those two numbers?" ] }, { "cell_type": "code", "execution_count": 15, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "$188,956,400\n" ] } ], "source": [ "printmoney(total_prop13_value - total_williamson_value)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### What's that as a percentage?" ] }, { "cell_type": "code", "execution_count": 16, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "-50.91%\n" ] } ], "source": [ "printpctchange(total_williamson_value, total_prop13_value)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### How much property tax was paid under the Williamson rules?" ] }, { "cell_type": "code", "execution_count": 17, "metadata": {}, "outputs": [], "source": [ "total_williamson_tax = williamson_df.williamson_tax.sum()" ] }, { "cell_type": "code", "execution_count": 18, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "$2,016,049\n" ] } ], "source": [ "printmoney(total_williamson_tax)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### The typical home pays roughly 1.1% of its value in property taxes. How much would have been paid at Hollister under typical rules?" ] }, { "cell_type": "code", "execution_count": 19, "metadata": {}, "outputs": [], "source": [ "estimated_prop13_tax = total_prop13_value * 0.011" ] }, { "cell_type": "code", "execution_count": 20, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "$4,082,769\n" ] } ], "source": [ "printmoney(estimated_prop13_tax)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### What's the difference between the two?" ] }, { "cell_type": "code", "execution_count": 21, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "$2,066,720\n" ] } ], "source": [ "printmoney(estimated_prop13_tax - total_williamson_tax)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### What's that as a percentage?" ] }, { "cell_type": "code", "execution_count": 22, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "-50.62%\n" ] } ], "source": [ "printpctchange(total_williamson_tax, estimated_prop13_tax)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Who got the biggest assessment breaks?" ] }, { "cell_type": "code", "execution_count": 23, "metadata": {}, "outputs": [], "source": [ "williamson_df['assessment_break'] = williamson_df.williamson_assessment - williamson_df.prop13_assessment" ] }, { "cell_type": "code", "execution_count": 24, "metadata": {}, "outputs": [ { "data": { "application/vnd.vegalite.v2+json": { "$schema": "https://vega.github.io/schema/vega-lite/v2.6.0.json", "config": { "view": { "height": 300, "width": 400 } }, "data": { "name": "data-7c2bab52c1d547825be0dc37c31ad1e3" }, "datasets": { "data-7c2bab52c1d547825be0dc37c31ad1e3": [ { "apn": 83690019, "assessment_break": -2257887, "contract_owner": null, "is_williamson": "72AP108", "primary_owner": "PARCEL 101 PARTNERSHIP", "prop13_assessment": 2820176, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "williamson_assessment": 562289, "williamson_tax": 6224.2 }, { "apn": 83690021, "assessment_break": -290337, "contract_owner": null, "is_williamson": "72AP110", "primary_owner": "BEHUNIN TIM TRUSTEE (for) BEHUNIN FAM TR", "prop13_assessment": 3892512, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "williamson_assessment": 3602175, "williamson_tax": 39873.92 }, { "apn": 83700001, "assessment_break": -643894, "contract_owner": null, "is_williamson": "72AP111", "primary_owner": "CONNELLY FAMILY TRUST 9/1/88", "prop13_assessment": 1939400, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "williamson_assessment": 1295506, "williamson_tax": 14263 }, { "apn": 83700002, "assessment_break": -4430521, "contract_owner": null, "is_williamson": "72AP112", "primary_owner": "HAYDEN PROPERTIES, LLC", "prop13_assessment": 6746081, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "williamson_assessment": 2315560, "williamson_tax": 25631.86 }, { "apn": 83700003, "assessment_break": -114360, "contract_owner": null, "is_williamson": "72AP113", "primary_owner": "H & J #1 LP", "prop13_assessment": 2961352, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "williamson_assessment": 2846992, "williamson_tax": 31514.5 }, { "apn": 83700004, "assessment_break": -4030596, "contract_owner": null, "is_williamson": "72AP114", "primary_owner": "KELLY, BRIAN J LIVING TRUST", "prop13_assessment": 7903360, "secondary_owner": "KELLY, SUE LIVING TRUST", "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "williamson_assessment": 3872764, "williamson_tax": 42869.18 }, { "apn": 83700005, "assessment_break": -2397504, "contract_owner": null, "is_williamson": "72AP115", "primary_owner": "EVERETT, RICHARD E 1998 TRUST 1/24/98", "prop13_assessment": 3061762, "secondary_owner": "MARSH, EDWIN C", "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "williamson_assessment": 664258, "williamson_tax": 7275.46 }, { "apn": 83700006, "assessment_break": -1101092, "contract_owner": null, "is_williamson": "72AP116", "primary_owner": "MOUNTAIN HOME PROPERTIES LLC (DE)", "prop13_assessment": 3321293, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "williamson_assessment": 2220201, "williamson_tax": 24576.3 }, { "apn": 83700007, "assessment_break": -4019421, "contract_owner": null, "is_williamson": "72AP117", "primary_owner": "EDINGTON LIVING TRUST 12/21/98", "prop13_assessment": 8455900, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "williamson_assessment": 4436479, "williamson_tax": 49109.16 }, { "apn": 83700008, "assessment_break": -490561, "contract_owner": null, "is_williamson": "72AP118", "primary_owner": "BUENA VISTA RANCH", "prop13_assessment": 496578, "secondary_owner": "ABONDOLO, NICO", "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "williamson_assessment": 6017, "williamson_tax": 66.6 }, { "apn": 83700009, "assessment_break": -1761893, "contract_owner": null, "is_williamson": "72AP119", "primary_owner": "MALLOY TRUST 2/18/14", "prop13_assessment": 1771319, "secondary_owner": "WARD, LEONADI", "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "williamson_assessment": 9426, "williamson_tax": 104.34 }, { "apn": 83700010, "assessment_break": -2759417, "contract_owner": null, "is_williamson": "72AP120", "primary_owner": "ALEGRIA 114", "prop13_assessment": 6087699, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "williamson_assessment": 3328282, "williamson_tax": 36842.1 }, { "apn": 83700011, "assessment_break": -1372199, "contract_owner": null, "is_williamson": "72AP121", "primary_owner": "HOLLISTER RANCH 115", "prop13_assessment": 3764757, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "williamson_assessment": 2392558, "williamson_tax": 26484.2 }, { "apn": 83700012, "assessment_break": -419443, "contract_owner": null, "is_williamson": "72AP122", "primary_owner": "MCCAFFERTY JAY D/ELLEN M FAM TR 7/25/85", "prop13_assessment": 1239749, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "williamson_assessment": 820306, "williamson_tax": 9080.3 }, { "apn": 83700013, "assessment_break": -3544520, "contract_owner": null, "is_williamson": "72AP123", "primary_owner": "RANCHO SERRANA", "prop13_assessment": 5975526, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "williamson_assessment": 2431006, "williamson_tax": 26909.78 }, { "apn": 83700014, "assessment_break": -4033478, "contract_owner": null, "is_williamson": "72AP124", "primary_owner": "PARCEL 118 PARTNERSHIP", "prop13_assessment": 7074720, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "williamson_assessment": 3041242, "williamson_tax": 33664.72 }, { "apn": 83700015, "assessment_break": -942903, "contract_owner": null, "is_williamson": "72AP125", "primary_owner": "ALEGRIA CANYON, LLC", "prop13_assessment": 2569020, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "williamson_assessment": 1626117, "williamson_tax": 18000.14 }, { "apn": 83700016, "assessment_break": -1279880, "contract_owner": null, "is_williamson": "72AP126", "primary_owner": "FOWLIE-HOLLISTER, LLC", "prop13_assessment": 2226937, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "williamson_assessment": 947057, "williamson_tax": 10483.36 }, { "apn": 83700017, "assessment_break": -864734, "contract_owner": null, "is_williamson": "72AP127", "primary_owner": "CHOMEAU, JAMES & SUSAN FAMILY TRUST APRIL 21, 200", "prop13_assessment": 1888769, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "williamson_assessment": 1024035, "williamson_tax": 11335.46 }, { "apn": 83700018, "assessment_break": -649143, "contract_owner": null, "is_williamson": "72AP128", "primary_owner": "KOFLER MARK TRUSTEE (for) KOFLER MARK TR 12/10/88", "prop13_assessment": 655129, "secondary_owner": "BROADHEAD WILLIAM G REV TR", "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "williamson_assessment": 5986, "williamson_tax": 66.26 }, { "apn": 83700019, "assessment_break": -3505266, "contract_owner": null, "is_williamson": "72AP129", "primary_owner": "PARCEL 123 PARTNERSHIP", "prop13_assessment": 3763111, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "williamson_assessment": 257845, "williamson_tax": 2854.2 }, { "apn": 83700020, "assessment_break": -257491, "contract_owner": null, "is_williamson": "72AP130", "primary_owner": "BRISA DE MAR, LLC", "prop13_assessment": 1143498, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "williamson_assessment": 886007, "williamson_tax": 9807.56 }, { "apn": 83700021, "assessment_break": -308782, "contract_owner": null, "is_williamson": "72AP131", "primary_owner": "OLAS DE ALEGRIA", "prop13_assessment": 2262530, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "williamson_assessment": 1953748, "williamson_tax": 21626.84 }, { "apn": 83700022, "assessment_break": -1650689, "contract_owner": null, "is_williamson": "72AP132", "primary_owner": "RANCHO NUESTRA SENORA DEL REFUGIO, LLC", "prop13_assessment": 4224104, "secondary_owner": "FEITLER 1990 REVOCABLE TRUST", "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "williamson_assessment": 2573415, "williamson_tax": 28486.16 }, { "apn": 83700023, "assessment_break": -1005347, "contract_owner": null, "is_williamson": "72AP133", "primary_owner": "HR 127 PARTNERSHIP GP (CA)", "prop13_assessment": 2802268, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "williamson_assessment": 1796921, "williamson_tax": 19890.84 }, { "apn": 83700024, "assessment_break": -351575, "contract_owner": null, "is_williamson": "72AP134", "primary_owner": "BROWNE CLYDE JACKSON TRUSTEE (for) BROWNE JACKSON TR 9/29/99", "prop13_assessment": 732105, "secondary_owner": "BROWN, ERICH & JANICE L LIVING TRUST04/24/14", "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "williamson_assessment": 380530, "williamson_tax": 4212.24 }, { "apn": 83700025, "assessment_break": -1115345, "contract_owner": null, "is_williamson": "72AP135", "primary_owner": "CULLEN LIVING TRUST 7/15/15", "prop13_assessment": 2049535, "secondary_owner": "MCCANN, MICHAEL W 2005 TRUST", "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "williamson_assessment": 934190, "williamson_tax": 10340.92 }, { "apn": 83700028, "assessment_break": -2855168, "contract_owner": null, "is_williamson": "72AP138", "primary_owner": "NEW TWO SPRINGS GP (CA)", "prop13_assessment": 6422276, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "williamson_assessment": 3567108, "williamson_tax": 39485.76 }, { "apn": 83700029, "assessment_break": -1379577, "contract_owner": null, "is_williamson": "72AP139", "primary_owner": "HARMON FAMILY JOINT REVOCABLE TRUST 1/25/06", "prop13_assessment": 3279279, "secondary_owner": "HR PARCEL 133 LLC", "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "williamson_assessment": 1899702, "williamson_tax": 21028.56 }, { "apn": 83700030, "assessment_break": -2910361, "contract_owner": null, "is_williamson": "72AP140", "primary_owner": "HOLLISTER RANCH PARCEL 134 GP", "prop13_assessment": 6222000, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "williamson_assessment": 3311639, "williamson_tax": 36657.86 }, { "apn": 83700031, "assessment_break": -1961118, "contract_owner": null, "is_williamson": "72AP141", "primary_owner": "CUSHMAN WILLIAM HOLMES/SALLY REESE", "prop13_assessment": 1967151, "secondary_owner": "BROWNE CLYDE JACKSON TRUSTEE (for) BROWNE JACKSON TR 9/29/99", "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "williamson_assessment": 6033, "williamson_tax": 66.78 }, { "apn": 83700032, "assessment_break": -2201814, "contract_owner": null, "is_williamson": "83AP015", "primary_owner": "RANCHO CUARTA", "prop13_assessment": 2317551, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "williamson_assessment": 115737, "williamson_tax": 1281.14 }, { "apn": 83700037, "assessment_break": -892958, "contract_owner": null, "is_williamson": "72AP137", "primary_owner": "HR-2011, LLC", "prop13_assessment": 6968103, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "williamson_assessment": 6075145, "williamson_tax": 67248.2 }, { "apn": 83700038, "assessment_break": -441067, "contract_owner": null, "is_williamson": "72AP136", "primary_owner": "KIRBY ROBERT G/MARVEL BLAKEMAN TRUSTEES (for) KIRBY FAM TR 4/4/93", "prop13_assessment": 2289218, "secondary_owner": "JONES WILLIAM K/TYRENA A TRUSTEES (for) JONES FAM TR 5/6/98", "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "williamson_assessment": 1848151, "williamson_tax": 20457.92 }, { "apn": 83660001, "assessment_break": -353424, "contract_owner": null, "is_williamson": "72AP010", "primary_owner": "TEPITATES PARTNERSHIP", "prop13_assessment": 737511, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 384087, "williamson_tax": 4251.62 }, { "apn": 83660002, "assessment_break": -411876, "contract_owner": null, "is_williamson": "72AP023", "primary_owner": "RANCHO CRESTA", "prop13_assessment": 750019, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 338143, "williamson_tax": 3743.06 }, { "apn": 83660003, "assessment_break": -231321, "contract_owner": null, "is_williamson": "72AP024", "primary_owner": "COJO RIDGE RANCH", "prop13_assessment": 245629, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 14308, "williamson_tax": 158.38 }, { "apn": 83660004, "assessment_break": -1436860, "contract_owner": null, "is_williamson": "72AP011", "primary_owner": "CHAMBERLAIN, NATASHA A & AMBERGER, JERRY", "prop13_assessment": 1451542, "secondary_owner": "COOK, GREGORY", "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 14682, "williamson_tax": 162.52 }, { "apn": 83660005, "assessment_break": -210792, "contract_owner": null, "is_williamson": "72AP025", "primary_owner": "RANCHO VISTA DEL COJO GP", "prop13_assessment": 343909, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 133117, "williamson_tax": 1473.52 }, { "apn": 83660006, "assessment_break": -584100, "contract_owner": null, "is_williamson": "72AP026", "primary_owner": "DAVID A KAY, LP", "prop13_assessment": 1331254, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 747154, "williamson_tax": 8270.56 }, { "apn": 83660007, "assessment_break": -299350, "contract_owner": null, "is_williamson": "72AP027", "primary_owner": "RANCHO SIETE", "prop13_assessment": 308028, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 8678, "williamson_tax": 96.06 }, { "apn": 83660008, "assessment_break": -219139, "contract_owner": null, "is_williamson": "72AP028", "primary_owner": "PRIME 8 PARTNERSHIP THE", "prop13_assessment": 488575, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 269436, "williamson_tax": 2982.5 }, { "apn": 83660009, "assessment_break": -563423, "contract_owner": null, "is_williamson": "72AP029", "primary_owner": "HR NINE", "prop13_assessment": 572561, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 9138, "williamson_tax": 101.16 }, { "apn": 83660010, "assessment_break": -232267, "contract_owner": null, "is_williamson": "72AP030", "primary_owner": "TRES BARRANCA", "prop13_assessment": 1779444, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 1547177, "williamson_tax": 17126.32 }, { "apn": 83660011, "assessment_break": -1860591, "contract_owner": null, "is_williamson": "72AP031", "primary_owner": "RAMSEY, MICHAEL L TRUST 5/13/99", "prop13_assessment": 3275547, "secondary_owner": "MINSHULL, MAX 2012 IRREVOCABLE TRUST", "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 1414956, "williamson_tax": 15585.22 }, { "apn": 83660012, "assessment_break": -324070, "contract_owner": null, "is_williamson": "72AP032", "primary_owner": "BLUE SUN RANCH PRESERVE", "prop13_assessment": 333024, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 8954, "williamson_tax": 99.12 }, { "apn": 83660013, "assessment_break": -554109, "contract_owner": null, "is_williamson": "72AP033", "primary_owner": "KELLER, BARBARA SUSANNE TTEE OF KELLER, BARBARA SUSANNE LIV TR 2/17/05", "prop13_assessment": 584334, "secondary_owner": "MORMANN, KERRY", "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 30225, "williamson_tax": 334.58 }, { "apn": 83660014, "assessment_break": -2009602, "contract_owner": null, "is_williamson": "72AP034", "primary_owner": "BARTHELS, HERBERT E TTEE BARTHELS, HERBERT E TRUST 12/09/85", "prop13_assessment": 2017709, "secondary_owner": "SIMMONS, THEODORE M", "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 8107, "williamson_tax": 89.74 }, { "apn": 83660015, "assessment_break": -1114532, "contract_owner": null, "is_williamson": "72AP035", "primary_owner": "HOLLISTER FAMILY RANCH, LLC", "prop13_assessment": 1758675, "secondary_owner": "JARVIS STEIR 2011 REV TR 12/19/11", "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 644143, "williamson_tax": 7130.28 }, { "apn": 83660016, "assessment_break": -1104244, "contract_owner": null, "is_williamson": "72AP016", "primary_owner": "PANIZZON, ERNEST A", "prop13_assessment": 1797264, "secondary_owner": "BATH, EDWARD & JANE TRUSTEES FOR BATH FAMILY TRUST 9/1/99", "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 693020, "williamson_tax": 7593.84 }, { "apn": 83660017, "assessment_break": -1787625, "contract_owner": null, "is_williamson": "72AP036", "primary_owner": "HOLLISTER LAVENDER FARMS, LLC", "prop13_assessment": 4736624, "secondary_owner": "HUNT FAMILY TRUST 8/22/05", "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 2948999, "williamson_tax": 32643.64 }, { "apn": 83660018, "assessment_break": -1511429, "contract_owner": null, "is_williamson": "72AP037", "primary_owner": "PUTNAM TRUST 1988", "prop13_assessment": 2926656, "secondary_owner": "OLSEN & IRELAND FAMILY TRUST 4-15-92", "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 1415227, "williamson_tax": 15665.72 }, { "apn": 83660019, "assessment_break": -640839, "contract_owner": null, "is_williamson": "72AP018", "primary_owner": "MOORE, DANIEL B SEPARATE PROPERTY TRUST 4/19/93", "prop13_assessment": 1778122, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 1137283, "williamson_tax": 12589.04 }, { "apn": 83660020, "assessment_break": -529118, "contract_owner": null, "is_williamson": "72AP038", "primary_owner": "CROUL, SPENCER BEHR TRUSTEE (for) CROUL, SPENCER B TR 11/13/06", "prop13_assessment": 536772, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 7654, "williamson_tax": 84.74 }, { "apn": 83660023, "assessment_break": -494764, "contract_owner": null, "is_williamson": "72AP039", "primary_owner": "TAYLOR LINDA & ULLMAN DAVID TRUSTEES (for) ULLMAN D & L REV TR 4-27-90", "prop13_assessment": 502419, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 7655, "williamson_tax": 84.74 }, { "apn": 83660024, "assessment_break": -1343773, "contract_owner": null, "is_williamson": "72AP040", "primary_owner": "RANCHO ALTA HONDA", "prop13_assessment": 1349451, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 5678, "williamson_tax": 62.86 }, { "apn": 83660025, "assessment_break": -930983, "contract_owner": null, "is_williamson": "72AP019", "primary_owner": "ALEXANDER, A A FAMILY TRUST 1/16/98", "prop13_assessment": 1306196, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 375213, "williamson_tax": 4075.9 }, { "apn": 83660026, "assessment_break": -211502, "contract_owner": null, "is_williamson": "72AP041", "primary_owner": "RANCHO DE LAS OLAS", "prop13_assessment": 219334, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 7832, "williamson_tax": 86.7 }, { "apn": 83660027, "assessment_break": -822671, "contract_owner": null, "is_williamson": "72AP042", "primary_owner": "HEALEY, ROBERT E", "prop13_assessment": 1571333, "secondary_owner": "HEALEY, AMY K", "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 748662, "williamson_tax": 8287.24 }, { "apn": 83660028, "assessment_break": -362348, "contract_owner": null, "is_williamson": "72AP020", "primary_owner": "VENTANA DEL MAR", "prop13_assessment": 376165, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 13817, "williamson_tax": 152.96 }, { "apn": 83660029, "assessment_break": -452727, "contract_owner": null, "is_williamson": "72AP043", "primary_owner": "HOLLISTER RANCH PCL 46", "prop13_assessment": 461005, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 8278, "williamson_tax": 91.64 }, { "apn": 83660030, "assessment_break": -683252, "contract_owner": null, "is_williamson": "72AP021", "primary_owner": "PARCEL 47 PARTNERSHIP", "prop13_assessment": 1275961, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 592709, "williamson_tax": 6560.94 }, { "apn": 83660031, "assessment_break": -1360390, "contract_owner": null, "is_williamson": "72AP022", "primary_owner": "TANBARK OAK RANCH, LLC", "prop13_assessment": 1370100, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 9710, "williamson_tax": 107.48 }, { "apn": 83660032, "assessment_break": -2316352, "contract_owner": null, "is_williamson": "72AP044", "primary_owner": "SAWYER, RICHARD S", "prop13_assessment": 2324210, "secondary_owner": "WILLGRO PROPERTIES", "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 7858, "williamson_tax": 86.98 }, { "apn": 83660033, "assessment_break": -204470, "contract_owner": null, "is_williamson": "72AP045", "primary_owner": "ROCKVIEW PARTNERS", "prop13_assessment": 303142, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 98672, "williamson_tax": 1092.24 }, { "apn": 83670001, "assessment_break": -1245852, "contract_owner": null, "is_williamson": "72AP046", "primary_owner": "MACHU PICCHU LLC", "prop13_assessment": 1910692, "secondary_owner": "KRUTHERS, JEFFREY", "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 664840, "williamson_tax": 7521.38 }, { "apn": 83670002, "assessment_break": -1951367, "contract_owner": null, "is_williamson": "72AP047", "primary_owner": "WRIGHT, WILLIAM & PESHA", "prop13_assessment": 9017817, "secondary_owner": "CONNER CREDIT SHELTER TRUST 10/04/1996", "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 7066450, "williamson_tax": 78221.36 }, { "apn": 83670003, "assessment_break": -800097, "contract_owner": null, "is_williamson": "72AP048", "primary_owner": "STANWALL CORPORATION", "prop13_assessment": 1105321, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 305224, "williamson_tax": 3378.66 }, { "apn": 83670004, "assessment_break": -1391212, "contract_owner": null, "is_williamson": "72AP049", "primary_owner": "EL RANCHO GRANDE", "prop13_assessment": 2648104, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 1256892, "williamson_tax": 13913.04 }, { "apn": 83670005, "assessment_break": -861271, "contract_owner": null, "is_williamson": "72AP050", "primary_owner": "CHU DAVID/TA-YUNG LI", "prop13_assessment": 881679, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 20408, "williamson_tax": 225.92 }, { "apn": 83670006, "assessment_break": -1257915, "contract_owner": null, "is_williamson": "72AP012", "primary_owner": "WELBORN DAVID/ANN K HUNTER TRUSTEES (for) WELBORN FAM TR", "prop13_assessment": 4838967, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 3581052, "williamson_tax": 39640.1 }, { "apn": 83670007, "assessment_break": -2938754, "contract_owner": null, "is_williamson": "72AP051", "primary_owner": "JJ WHIPPET, LLC", "prop13_assessment": 4058959, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 1120205, "williamson_tax": 12400 }, { "apn": 83670008, "assessment_break": -1262141, "contract_owner": null, "is_williamson": "72AP052", "primary_owner": "CHOUINARD YVON/MALINDA PENNOYER TRUSTEES (for) CHOUINARD FAM REV TR 6-14-79", "prop13_assessment": 3703836, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 2441695, "williamson_tax": 27028.1 }, { "apn": 83670009, "assessment_break": -386164, "contract_owner": null, "is_williamson": "72AP013", "primary_owner": "HUEVOS RANCHEROS INC", "prop13_assessment": 391515, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 5351, "williamson_tax": 59.24 }, { "apn": 83670010, "assessment_break": -918197, "contract_owner": null, "is_williamson": "72AP053", "primary_owner": "KAMINSKAS RIMVYDAS A/LILLIAN D", "prop13_assessment": 1432583, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 514386, "williamson_tax": 5693.96 }, { "apn": 83670011, "assessment_break": -445115, "contract_owner": null, "is_williamson": "72AP014", "primary_owner": "WALL FAMILY TRUST 3/6/03", "prop13_assessment": 3569721, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 3124606, "williamson_tax": 34587.52 }, { "apn": 83670012, "assessment_break": -2891778, "contract_owner": null, "is_williamson": "72AP054", "primary_owner": "HOLLISTER RANCH 37 PARTNERSHIP", "prop13_assessment": 2979449, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 87671, "williamson_tax": 970.48 }, { "apn": 83670013, "assessment_break": -2031003, "contract_owner": null, "is_williamson": "72AP055", "primary_owner": "HOLLISTER RANCH 38", "prop13_assessment": 3770785, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 1739782, "williamson_tax": 19258.34 }, { "apn": 83670014, "assessment_break": -430428, "contract_owner": null, "is_williamson": "72AP015", "primary_owner": "INVESTOGRO INC", "prop13_assessment": 634988, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 204560, "williamson_tax": 2264.36 }, { "apn": 83670015, "assessment_break": -1946976, "contract_owner": null, "is_williamson": "72AP056", "primary_owner": "DOWNES, JOSEPH F TRUST 5/6/09", "prop13_assessment": 3164259, "secondary_owner": "BOOTH, DEBORAH E SHAW", "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 1217283, "williamson_tax": 13474.6 }, { "apn": 83670016, "assessment_break": -408650, "contract_owner": null, "is_williamson": "72AP057", "primary_owner": "BOISE-COSSART FAMILY TRUST 1/23/15", "prop13_assessment": 724422, "secondary_owner": "WALSH, MICHAEL E/BARBARA B TTEES OF WALSH, MICHAEL E/BARBARA B LIV TR 3/18/11", "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 315772, "williamson_tax": 3340.44 }, { "apn": 83670017, "assessment_break": -1577461, "contract_owner": null, "is_williamson": "72AP017", "primary_owner": "LP TRUST 8/28/00", "prop13_assessment": 1587406, "secondary_owner": "MCCARTER-CROWE REVOCABLE LIVING TRUST 7/22/09", "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 9945, "williamson_tax": 110.08 }, { "apn": 83670018, "assessment_break": -148456, "contract_owner": null, "is_williamson": "83AP010", "primary_owner": "HOLLISTER RANCH OWNERS ASSOCIATION", "prop13_assessment": 245603, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 97147, "williamson_tax": 1075.36 }, { "apn": 83680001, "assessment_break": -204505, "contract_owner": null, "is_williamson": "72AP059", "primary_owner": "BULITO NORTE RANCH", "prop13_assessment": 373956, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 169451, "williamson_tax": 1875.74 }, { "apn": 83680002, "assessment_break": -1739993, "contract_owner": null, "is_williamson": "72AP060", "primary_owner": "NEW RANCHO DE LA CRESTA", "prop13_assessment": 4180244, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 2440251, "williamson_tax": 27012.12 }, { "apn": 83680005, "assessment_break": -6324280, "contract_owner": null, "is_williamson": "72AP063", "primary_owner": "HOLLISTER RANCH 54 GP CA", "prop13_assessment": 8147960, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "williamson_assessment": 1823680, "williamson_tax": 20187.04 }, { "apn": 83680003, "assessment_break": -28529, "contract_owner": null, "is_williamson": "72AP061", "primary_owner": "52 PARTNERSHIP", "prop13_assessment": 2477448, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 2448919, "williamson_tax": 27108.06 }, { "apn": 83680004, "assessment_break": -1582821, "contract_owner": null, "is_williamson": "72AP062", "primary_owner": "CEGELSKI RANCH, LLC", "prop13_assessment": 5431026, "secondary_owner": "PARCEL 53 AG, LLC", "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 3848205, "williamson_tax": 42597.34 }, { "apn": 83680006, "assessment_break": -3707050, "contract_owner": null, "is_williamson": "72AP064", "primary_owner": "GAVIOTA I IRREVOCABLE TRUST 12/18/12", "prop13_assessment": 7173769, "secondary_owner": "GAVIOTA II IRREVOCABLE TRUST 12/18/12", "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 3466719, "williamson_tax": 38297.02 }, { "apn": 83680007, "assessment_break": -207334, "contract_owner": null, "is_williamson": "72AP065", "primary_owner": "BANYN RANCH LLC (CA)", "prop13_assessment": 402797, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 195463, "williamson_tax": 2163.66 }, { "apn": 83680008, "assessment_break": -3818637, "contract_owner": null, "is_williamson": "72AP066", "primary_owner": "THATCHER, MARK", "prop13_assessment": 7614847, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 3796210, "williamson_tax": 42021.76 }, { "apn": 83680009, "assessment_break": -470809, "contract_owner": null, "is_williamson": "72AP067", "primary_owner": "CURTIS ROBERT F TRUSTEE (for) CURTIS ROBERT FAM TR 3/13/90", "prop13_assessment": 850760, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 379951, "williamson_tax": 4205.84 }, { "apn": 83680010, "assessment_break": -1261463, "contract_owner": null, "is_williamson": "72AP068", "primary_owner": "BULITO CANYON ESTATE PARTNERSHIP", "prop13_assessment": 2868286, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 1606823, "williamson_tax": 17786.58 }, { "apn": 83680011, "assessment_break": -1363537, "contract_owner": null, "is_williamson": "72AP069", "primary_owner": "HOLLISTER RANCH 60", "prop13_assessment": 4790770, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 3427233, "williamson_tax": 37937.42 }, { "apn": 83680012, "assessment_break": -340194, "contract_owner": null, "is_williamson": "72AP070", "primary_owner": "TALBOT, EDDIE TRUST 5/20/11", "prop13_assessment": 369620, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 29426, "williamson_tax": 325.74 }, { "apn": 83680013, "assessment_break": -1112478, "contract_owner": null, "is_williamson": "72AP071", "primary_owner": "WOOLCOTT, RICHARD RALPH TTEE OF WOOLCOTT, RICHARD", "prop13_assessment": 3759039, "secondary_owner": "BENARON, STEVEN N FAMILY TRUST", "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 2646561, "williamson_tax": 29295.84 }, { "apn": 83680014, "assessment_break": -304241, "contract_owner": null, "is_williamson": "72AP072", "primary_owner": "RANCHO AGUA DULCE", "prop13_assessment": 460798, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 156557, "williamson_tax": 1733 }, { "apn": 83680015, "assessment_break": -272497, "contract_owner": null, "is_williamson": "72AP073", "primary_owner": "RANCHO LA VIDA", "prop13_assessment": 2052837, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 1780340, "williamson_tax": 19707.3 }, { "apn": 83680016, "assessment_break": -463452, "contract_owner": null, "is_williamson": "72AP074", "primary_owner": "FIELD, SUZANNE BENECH", "prop13_assessment": 1413921, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 950469, "williamson_tax": 10521.12 }, { "apn": 83680017, "assessment_break": -418668, "contract_owner": null, "is_williamson": "72AP075", "primary_owner": "HOLLISTER RANCH 66", "prop13_assessment": 1479842, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 1061174, "williamson_tax": 11746.56 }, { "apn": 83680018, "assessment_break": -1347969, "contract_owner": null, "is_williamson": "72AP076", "primary_owner": "VANDERHAVE FAMILY TRUST", "prop13_assessment": 2244372, "secondary_owner": "KWOCK, DANIEL CHRISTOPHER II TRUST 5/16/13", "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 896403, "williamson_tax": 9845.16 }, { "apn": 83680019, "assessment_break": -667206, "contract_owner": null, "is_williamson": "72AP077", "primary_owner": "EL BULITO PARTNERS", "prop13_assessment": 1226630, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 559424, "williamson_tax": 6192.5 }, { "apn": 83680020, "assessment_break": -299420, "contract_owner": null, "is_williamson": "72AP078", "primary_owner": "SWANSON, WILLIAM K & JANETTE I FAMILY TRUST 1/22/04/LIFE ESTATE", "prop13_assessment": 815625, "secondary_owner": "GIUSTA RANDAL R/JUDY ANN/LIFE ESTATE", "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 516205, "williamson_tax": 5636.6 }, { "apn": 83680021, "assessment_break": -324726, "contract_owner": null, "is_williamson": "72AP079", "primary_owner": "HOLLISTER RANCH OWNERS ASSOCIATION", "prop13_assessment": 960238, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 635512, "williamson_tax": 7034.74 }, { "apn": 83680022, "assessment_break": -4378930, "contract_owner": null, "is_williamson": "72AP080", "primary_owner": "HOWARD RANCH LLC", "prop13_assessment": 6788460, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 2409530, "williamson_tax": 26672.06 }, { "apn": 83680023, "assessment_break": -1579076, "contract_owner": null, "is_williamson": "72AP081", "primary_owner": "LOT 72, LLC", "prop13_assessment": 3443457, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 1864381, "williamson_tax": 20637.58 }, { "apn": 83680024, "assessment_break": -5691391, "contract_owner": null, "is_williamson": "72AP082", "primary_owner": "DASH HOLDINGS III, LLC", "prop13_assessment": 10092512, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 4401121, "williamson_tax": 48717.76 }, { "apn": 83680025, "assessment_break": -15048700, "contract_owner": null, "is_williamson": "72AP083", "primary_owner": "HOLLISTER RANCH TRUST 1/5/16", "prop13_assessment": 21848398, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 6799698, "williamson_tax": 75268.58 }, { "apn": 83680026, "assessment_break": -484667, "contract_owner": null, "is_williamson": "72AP084", "primary_owner": "TESORO ANTHONY J/MARY A TRUSTEES (for) TESORO FAM TR 6/12/97", "prop13_assessment": 1481161, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 996494, "williamson_tax": 11030.6 }, { "apn": 83680028, "assessment_break": -1827787, "contract_owner": null, "is_williamson": "72AP086", "primary_owner": "HAMBLETON, ROBERT H & LUCINDA B REVOCABLE FAMILY TRUST 7/30/91", "prop13_assessment": 5872968, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 4045181, "williamson_tax": 44777.72 }, { "apn": 83680029, "assessment_break": -437840, "contract_owner": null, "is_williamson": "72AP087", "primary_owner": "EL RANCHO HERMOSA", "prop13_assessment": 787860, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 350020, "williamson_tax": 3874.5 }, { "apn": 83680030, "assessment_break": -864636, "contract_owner": null, "is_williamson": "72AP088", "primary_owner": "GREENWALD FAMILY TRUST 7/16/12", "prop13_assessment": 875014, "secondary_owner": "DUNAETZ/DENNIS LIVING TRUST 10/15/98", "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 10378, "williamson_tax": 114.88 }, { "apn": 83680031, "assessment_break": -599216, "contract_owner": null, "is_williamson": "72AP089", "primary_owner": "HOLLISTER RANCH NO 81", "prop13_assessment": 1361435, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 762219, "williamson_tax": 8437.32 }, { "apn": 83680032, "assessment_break": -1837643, "contract_owner": null, "is_williamson": "72AP090", "primary_owner": "HCH RANCH GP (CA)", "prop13_assessment": 1847075, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 9432, "williamson_tax": 104.42 }, { "apn": 83680033, "assessment_break": -376577, "contract_owner": null, "is_williamson": "72AP091", "primary_owner": "HOLLISTER RANCH EIGHTY FIVE", "prop13_assessment": 598405, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 221828, "williamson_tax": 2455.5 }, { "apn": 83680034, "assessment_break": -8246, "contract_owner": null, "is_williamson": "83AP010", "primary_owner": "HOLLISTER RANCH OWNERS ASSOCIATION", "prop13_assessment": 115221, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 106975, "williamson_tax": 1184.14 }, { "apn": 83690001, "assessment_break": -776119, "contract_owner": null, "is_williamson": "72AP093", "primary_owner": "TURLEY, MARIE B VACATION RESIDENCE TRUST 12/14/11", "prop13_assessment": 1629226, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 853107, "williamson_tax": 9443.38 }, { "apn": 83690002, "assessment_break": -1343604, "contract_owner": null, "is_williamson": "72AP094", "primary_owner": "EL RANCHO DE DOS GATOS, LLC", "prop13_assessment": 1956975, "secondary_owner": "CHANNEL ISLANDS HOLDING CO, LLC", "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 613371, "williamson_tax": 6712.18 }, { "apn": 83690003, "assessment_break": -557859, "contract_owner": null, "is_williamson": "72AP095", "primary_owner": "TRUBSCHENCK, ERIC W & DIANE W TRUSTEES (for) TRUBSCHENCK FAM LIV TR 4/27/90", "prop13_assessment": 2964590, "secondary_owner": "PELONIS, CHRIS A", "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 2406731, "williamson_tax": 26563.58 }, { "apn": 83690004, "assessment_break": -1062547, "contract_owner": null, "is_williamson": "72AP096", "primary_owner": "HOLLISTER RANCH EIGHTY SIX", "prop13_assessment": 2649067, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 1586520, "williamson_tax": 17561.84 }, { "apn": 83690005, "assessment_break": -2353952, "contract_owner": null, "is_williamson": "72AP097", "primary_owner": "HOLLISTER RANCH 87 GP (CA)", "prop13_assessment": 3571445, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 1217493, "williamson_tax": 13476.92 }, { "apn": 83690006, "assessment_break": -2101433, "contract_owner": null, "is_williamson": "72AP098", "primary_owner": "LONG SIDNE J TRUSTEE (for) LONG SIDNE J TR 12/6/96", "prop13_assessment": 3886295, "secondary_owner": "LONG SIDNE J TRUSTEE (for) LONG LISA K TR 11/21/71", "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 1784862, "williamson_tax": 19757.36 }, { "apn": 83690007, "assessment_break": -2654317, "contract_owner": null, "is_williamson": "72AP099", "primary_owner": "CAMERON, JAMES F LIVING TRUST", "prop13_assessment": 6027958, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 3373641, "williamson_tax": 37344.18 }, { "apn": 83690008, "assessment_break": -540301, "contract_owner": null, "is_williamson": "72AP100", "primary_owner": "MORTASHED, JILLIAN SEPARATE PROPERTY TRUST 4/30/14", "prop13_assessment": 957908, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 417607, "williamson_tax": 4622.66 }, { "apn": 83690009, "assessment_break": -441925, "contract_owner": null, "is_williamson": "72AP101", "primary_owner": "WARD FAMILY TRUST 3/22/12", "prop13_assessment": 785173, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 343248, "williamson_tax": 3799.56 }, { "apn": 83690010, "assessment_break": -792498, "contract_owner": null, "is_williamson": "72AP102", "primary_owner": "CHAPMAN, CORNELIA 1992 TRUST", "prop13_assessment": 3141356, "secondary_owner": "REEPMAKER, ERNEST JOHN JR/LISA M", "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 2348858, "williamson_tax": 26000.46 }, { "apn": 83690011, "assessment_break": -297348, "contract_owner": null, "is_williamson": "72AP103", "primary_owner": "RANCHO DOS RIOS", "prop13_assessment": 1399110, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 1101762, "williamson_tax": 12195.86 }, { "apn": 83690012, "assessment_break": -1414447, "contract_owner": null, "is_williamson": "72AP104", "primary_owner": "ATMOSPHERE PROPERTIES, LLC", "prop13_assessment": 3168119, "secondary_owner": "DUNCAN, ROBERT ALLAN & WONG, NATALIE JO 2002 TRUST 12/14/02", "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 1753672, "williamson_tax": 19412.1 }, { "apn": 83690013, "assessment_break": -248774, "contract_owner": null, "is_williamson": "72AP142", "primary_owner": "RANCHO NOVENTA CINCO", "prop13_assessment": 1989790, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 1741016, "williamson_tax": 19272 }, { "apn": 83690014, "assessment_break": -2376205, "contract_owner": null, "is_williamson": "72AP143", "primary_owner": "STROTHER, STEPHEN M/CATHERINE S TRUSTEES (for) STROTHER 1996 TR", "prop13_assessment": 2434534, "secondary_owner": "VALHOLLISTER, LLC", "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 58329, "williamson_tax": 645.66 }, { "apn": 83690015, "assessment_break": -1911936, "contract_owner": null, "is_williamson": "72AP144", "primary_owner": "ZIEMBA, MARK/LISA FAMILY LIVING TRUST 8/8/08", "prop13_assessment": 1919579, "secondary_owner": "CHRISLIP, RONALD W", "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 7643, "williamson_tax": 84.6 }, { "apn": 83690016, "assessment_break": -141938, "contract_owner": null, "is_williamson": "72AP105", "primary_owner": "RANCHO SACATE", "prop13_assessment": 1823134, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 1681196, "williamson_tax": 18609.84 }, { "apn": 83690017, "assessment_break": -1726954, "contract_owner": null, "is_williamson": "72AP106", "primary_owner": "KRAMER FAMILY 2006 TRUST", "prop13_assessment": 5416505, "secondary_owner": "HR99 LLC (CA)", "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 3689551, "williamson_tax": 40841.12 }, { "apn": 83690018, "assessment_break": -883996, "contract_owner": null, "is_williamson": "72AP107", "primary_owner": "WILLIAMSON, VICTORIA A TRUSTEE (for) WILLIAMSON TR 1/28/92", "prop13_assessment": 889318, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 5322, "williamson_tax": 58.92 }, { "apn": 83690020, "assessment_break": -1414772, "contract_owner": null, "is_williamson": "72AP109", "primary_owner": "OSWALD, WILLIAM H", "prop13_assessment": 3161980, "secondary_owner": "OSWALD, ELLEN S", "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 1747208, "williamson_tax": 19263.06 }, { "apn": 83690022, "assessment_break": -225836, "contract_owner": null, "is_williamson": "83AP010", "primary_owner": "HOLLISTER RANCH OWNERS ASSOCIATION", "prop13_assessment": 408640, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "williamson_assessment": 182804, "williamson_tax": 2023.54 } ] }, "encoding": { "x": { "bin": true, "field": "assessment_break", "type": "quantitative" }, "y": { "aggregate": "count", "type": "quantitative" } }, "mark": "bar" }, "image/png": "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", "text/plain": [ "\n", "\n", "If you see this message, it means the renderer has not been properly enabled\n", "for the frontend that you are using. For more information, see\n", "https://altair-viz.github.io/user_guide/troubleshooting.html\n" ] }, "execution_count": 24, "metadata": {}, "output_type": "execute_result" } ], "source": [ "alt.Chart(williamson_df).mark_bar().encode(\n", " alt.X(\"assessment_break:Q\", bin=True),\n", " y='count()',\n", ")" ] }, { "cell_type": "code", "execution_count": 25, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
indexassessment_break
0count$136
1mean$-1,389,385
2std$1,668,667
3min$-15,048,700
425%$-1,797,666
550%$-924,590
675%$-419,249
7max$-8,246
\n", "
" ], "text/plain": [ " index assessment_break\n", "0 count $136\n", "1 mean $-1,389,385\n", "2 std $1,668,667\n", "3 min $-15,048,700\n", "4 25% $-1,797,666\n", "5 50% $-924,590\n", "6 75% $-419,249\n", "7 max $-8,246" ] }, "execution_count": 25, "metadata": {}, "output_type": "execute_result" } ], "source": [ "williamson_df.assessment_break.describe().reset_index()" ] }, { "cell_type": "code", "execution_count": 26, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
apnprimary_ownerwilliamson_assessmentprop13_assessmentassessment_break
10783680025HOLLISTER RANCH TRUST 1/5/16$6,799,698$21,848,398$-15,048,700
8583680005HOLLISTER RANCH 54 GP CA$1,823,680$8,147,960$-6,324,280
10683680024DASH HOLDINGS III, LLC$4,401,121$10,092,512$-5,691,391
383700002HAYDEN PROPERTIES, LLC$2,315,560$6,746,081$-4,430,521
10483680022HOWARD RANCH LLC$2,409,530$6,788,460$-4,378,930
\n", "
" ], "text/plain": [ " apn primary_owner williamson_assessment \\\n", "107 83680025 HOLLISTER RANCH TRUST 1/5/16 $6,799,698 \n", "85 83680005 HOLLISTER RANCH 54 GP CA $1,823,680 \n", "106 83680024 DASH HOLDINGS III, LLC $4,401,121 \n", "3 83700002 HAYDEN PROPERTIES, LLC $2,315,560 \n", "104 83680022 HOWARD RANCH LLC $2,409,530 \n", "\n", " prop13_assessment assessment_break \n", "107 $21,848,398 $-15,048,700 \n", "85 $8,147,960 $-6,324,280 \n", "106 $10,092,512 $-5,691,391 \n", "3 $6,746,081 $-4,430,521 \n", "104 $6,788,460 $-4,378,930 " ] }, "execution_count": 26, "metadata": {}, "output_type": "execute_result" } ], "source": [ "williamson_df.sort_values(\"assessment_break\").head()[[\n", " 'apn',\n", " 'primary_owner',\n", " 'williamson_assessment',\n", " 'prop13_assessment',\n", " 'assessment_break'\n", "]]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "#### Who got the biggest tax breaks?" ] }, { "cell_type": "code", "execution_count": 27, "metadata": {}, "outputs": [], "source": [ "williamson_df['prop13_tax_estimate'] = williamson_df.prop13_assessment * 0.011" ] }, { "cell_type": "code", "execution_count": 28, "metadata": {}, "outputs": [], "source": [ "williamson_df['tax_break_estimate'] = williamson_df.williamson_tax - williamson_df.prop13_tax_estimate" ] }, { "cell_type": "code", "execution_count": 29, "metadata": {}, "outputs": [ { "data": { "application/vnd.vegalite.v2+json": { "$schema": "https://vega.github.io/schema/vega-lite/v2.6.0.json", "config": { "view": { "height": 300, "width": 400 } }, "data": { "name": "data-29b9bd4983ee8db062a505adb9419406" }, "datasets": { "data-29b9bd4983ee8db062a505adb9419406": [ { "apn": 83690019, "assessment_break": -2257887, "contract_owner": null, "is_williamson": "72AP108", "primary_owner": "PARCEL 101 PARTNERSHIP", "prop13_assessment": 2820176, "prop13_tax_estimate": 31021.935999999998, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "tax_break_estimate": -24797.735999999997, "williamson_assessment": 562289, "williamson_tax": 6224.2 }, { "apn": 83690021, "assessment_break": -290337, "contract_owner": null, "is_williamson": "72AP110", "primary_owner": "BEHUNIN TIM TRUSTEE (for) BEHUNIN FAM TR", "prop13_assessment": 3892512, "prop13_tax_estimate": 42817.632, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "tax_break_estimate": -2943.7119999999995, "williamson_assessment": 3602175, "williamson_tax": 39873.92 }, { "apn": 83700001, "assessment_break": -643894, "contract_owner": null, "is_williamson": "72AP111", "primary_owner": "CONNELLY FAMILY TRUST 9/1/88", "prop13_assessment": 1939400, "prop13_tax_estimate": 21333.399999999998, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "tax_break_estimate": -7070.399999999998, "williamson_assessment": 1295506, "williamson_tax": 14263 }, { "apn": 83700002, "assessment_break": -4430521, "contract_owner": null, "is_williamson": "72AP112", "primary_owner": "HAYDEN PROPERTIES, LLC", "prop13_assessment": 6746081, "prop13_tax_estimate": 74206.89099999999, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "tax_break_estimate": -48575.03099999999, "williamson_assessment": 2315560, "williamson_tax": 25631.86 }, { "apn": 83700003, "assessment_break": -114360, "contract_owner": null, "is_williamson": "72AP113", "primary_owner": "H & J #1 LP", "prop13_assessment": 2961352, "prop13_tax_estimate": 32574.872, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "tax_break_estimate": -1060.3719999999994, "williamson_assessment": 2846992, "williamson_tax": 31514.5 }, { "apn": 83700004, "assessment_break": -4030596, "contract_owner": null, "is_williamson": "72AP114", "primary_owner": "KELLY, BRIAN J LIVING TRUST", "prop13_assessment": 7903360, "prop13_tax_estimate": 86936.95999999999, "secondary_owner": "KELLY, SUE LIVING TRUST", "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "tax_break_estimate": -44067.77999999999, "williamson_assessment": 3872764, "williamson_tax": 42869.18 }, { "apn": 83700005, "assessment_break": -2397504, "contract_owner": null, "is_williamson": "72AP115", "primary_owner": "EVERETT, RICHARD E 1998 TRUST 1/24/98", "prop13_assessment": 3061762, "prop13_tax_estimate": 33679.382, "secondary_owner": "MARSH, EDWIN C", "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "tax_break_estimate": -26403.922, "williamson_assessment": 664258, "williamson_tax": 7275.46 }, { "apn": 83700006, "assessment_break": -1101092, "contract_owner": null, "is_williamson": "72AP116", "primary_owner": "MOUNTAIN HOME PROPERTIES LLC (DE)", "prop13_assessment": 3321293, "prop13_tax_estimate": 36534.223, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "tax_break_estimate": -11957.922999999999, "williamson_assessment": 2220201, "williamson_tax": 24576.3 }, { "apn": 83700007, "assessment_break": -4019421, "contract_owner": null, "is_williamson": "72AP117", "primary_owner": "EDINGTON LIVING TRUST 12/21/98", "prop13_assessment": 8455900, "prop13_tax_estimate": 93014.9, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "tax_break_estimate": -43905.73999999999, "williamson_assessment": 4436479, "williamson_tax": 49109.16 }, { "apn": 83700008, "assessment_break": -490561, "contract_owner": null, "is_williamson": "72AP118", "primary_owner": "BUENA VISTA RANCH", "prop13_assessment": 496578, "prop13_tax_estimate": 5462.357999999999, "secondary_owner": "ABONDOLO, NICO", "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "tax_break_estimate": -5395.757999999999, "williamson_assessment": 6017, "williamson_tax": 66.6 }, { "apn": 83700009, "assessment_break": -1761893, "contract_owner": null, "is_williamson": "72AP119", "primary_owner": "MALLOY TRUST 2/18/14", "prop13_assessment": 1771319, "prop13_tax_estimate": 19484.509, "secondary_owner": "WARD, LEONADI", "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "tax_break_estimate": -19380.168999999998, "williamson_assessment": 9426, "williamson_tax": 104.34 }, { "apn": 83700010, "assessment_break": -2759417, "contract_owner": null, "is_williamson": "72AP120", "primary_owner": "ALEGRIA 114", "prop13_assessment": 6087699, "prop13_tax_estimate": 66964.689, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "tax_break_estimate": -30122.589, "williamson_assessment": 3328282, "williamson_tax": 36842.1 }, { "apn": 83700011, "assessment_break": -1372199, "contract_owner": null, "is_williamson": "72AP121", "primary_owner": "HOLLISTER RANCH 115", "prop13_assessment": 3764757, "prop13_tax_estimate": 41412.327, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "tax_break_estimate": -14928.126999999997, "williamson_assessment": 2392558, "williamson_tax": 26484.2 }, { "apn": 83700012, "assessment_break": -419443, "contract_owner": null, "is_williamson": "72AP122", "primary_owner": "MCCAFFERTY JAY D/ELLEN M FAM TR 7/25/85", "prop13_assessment": 1239749, "prop13_tax_estimate": 13637.239, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "tax_break_estimate": -4556.939, "williamson_assessment": 820306, "williamson_tax": 9080.3 }, { "apn": 83700013, "assessment_break": -3544520, "contract_owner": null, "is_williamson": "72AP123", "primary_owner": "RANCHO SERRANA", "prop13_assessment": 5975526, "prop13_tax_estimate": 65730.786, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "tax_break_estimate": -38821.005999999994, "williamson_assessment": 2431006, "williamson_tax": 26909.78 }, { "apn": 83700014, "assessment_break": -4033478, "contract_owner": null, "is_williamson": "72AP124", "primary_owner": "PARCEL 118 PARTNERSHIP", "prop13_assessment": 7074720, "prop13_tax_estimate": 77821.92, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "tax_break_estimate": -44157.2, "williamson_assessment": 3041242, "williamson_tax": 33664.72 }, { "apn": 83700015, "assessment_break": -942903, "contract_owner": null, "is_williamson": "72AP125", "primary_owner": "ALEGRIA CANYON, LLC", "prop13_assessment": 2569020, "prop13_tax_estimate": 28259.219999999998, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "tax_break_estimate": -10259.079999999998, "williamson_assessment": 1626117, "williamson_tax": 18000.14 }, { "apn": 83700016, "assessment_break": -1279880, "contract_owner": null, "is_williamson": "72AP126", "primary_owner": "FOWLIE-HOLLISTER, LLC", "prop13_assessment": 2226937, "prop13_tax_estimate": 24496.306999999997, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "tax_break_estimate": -14012.946999999996, "williamson_assessment": 947057, "williamson_tax": 10483.36 }, { "apn": 83700017, "assessment_break": -864734, "contract_owner": null, "is_williamson": "72AP127", "primary_owner": "CHOMEAU, JAMES & SUSAN FAMILY TRUST APRIL 21, 200", "prop13_assessment": 1888769, "prop13_tax_estimate": 20776.459, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "tax_break_estimate": -9440.999, "williamson_assessment": 1024035, "williamson_tax": 11335.46 }, { "apn": 83700018, "assessment_break": -649143, "contract_owner": null, "is_williamson": "72AP128", "primary_owner": "KOFLER MARK TRUSTEE (for) KOFLER MARK TR 12/10/88", "prop13_assessment": 655129, "prop13_tax_estimate": 7206.419, "secondary_owner": "BROADHEAD WILLIAM G REV TR", "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "tax_break_estimate": -7140.159, "williamson_assessment": 5986, "williamson_tax": 66.26 }, { "apn": 83700019, "assessment_break": -3505266, "contract_owner": null, "is_williamson": "72AP129", "primary_owner": "PARCEL 123 PARTNERSHIP", "prop13_assessment": 3763111, "prop13_tax_estimate": 41394.221, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "tax_break_estimate": -38540.021, "williamson_assessment": 257845, "williamson_tax": 2854.2 }, { "apn": 83700020, "assessment_break": -257491, "contract_owner": null, "is_williamson": "72AP130", "primary_owner": "BRISA DE MAR, LLC", "prop13_assessment": 1143498, "prop13_tax_estimate": 12578.478, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "tax_break_estimate": -2770.9179999999997, "williamson_assessment": 886007, "williamson_tax": 9807.56 }, { "apn": 83700021, "assessment_break": -308782, "contract_owner": null, "is_williamson": "72AP131", "primary_owner": "OLAS DE ALEGRIA", "prop13_assessment": 2262530, "prop13_tax_estimate": 24887.829999999998, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "tax_break_estimate": -3260.989999999998, "williamson_assessment": 1953748, "williamson_tax": 21626.84 }, { "apn": 83700022, "assessment_break": -1650689, "contract_owner": null, "is_williamson": "72AP132", "primary_owner": "RANCHO NUESTRA SENORA DEL REFUGIO, LLC", "prop13_assessment": 4224104, "prop13_tax_estimate": 46465.144, "secondary_owner": "FEITLER 1990 REVOCABLE TRUST", "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "tax_break_estimate": -17978.984, "williamson_assessment": 2573415, "williamson_tax": 28486.16 }, { "apn": 83700023, "assessment_break": -1005347, "contract_owner": null, "is_williamson": "72AP133", "primary_owner": "HR 127 PARTNERSHIP GP (CA)", "prop13_assessment": 2802268, "prop13_tax_estimate": 30824.947999999997, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "tax_break_estimate": -10934.107999999997, "williamson_assessment": 1796921, "williamson_tax": 19890.84 }, { "apn": 83700024, "assessment_break": -351575, "contract_owner": null, "is_williamson": "72AP134", "primary_owner": "BROWNE CLYDE JACKSON TRUSTEE (for) BROWNE JACKSON TR 9/29/99", "prop13_assessment": 732105, "prop13_tax_estimate": 8053.155, "secondary_owner": "BROWN, ERICH & JANICE L LIVING TRUST04/24/14", "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "tax_break_estimate": -3840.915, "williamson_assessment": 380530, "williamson_tax": 4212.24 }, { "apn": 83700025, "assessment_break": -1115345, "contract_owner": null, "is_williamson": "72AP135", "primary_owner": "CULLEN LIVING TRUST 7/15/15", "prop13_assessment": 2049535, "prop13_tax_estimate": 22544.885, "secondary_owner": "MCCANN, MICHAEL W 2005 TRUST", "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "tax_break_estimate": -12203.964999999998, "williamson_assessment": 934190, "williamson_tax": 10340.92 }, { "apn": 83700028, "assessment_break": -2855168, "contract_owner": null, "is_williamson": "72AP138", "primary_owner": "NEW TWO SPRINGS GP (CA)", "prop13_assessment": 6422276, "prop13_tax_estimate": 70645.036, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "tax_break_estimate": -31159.27599999999, "williamson_assessment": 3567108, "williamson_tax": 39485.76 }, { "apn": 83700029, "assessment_break": -1379577, "contract_owner": null, "is_williamson": "72AP139", "primary_owner": "HARMON FAMILY JOINT REVOCABLE TRUST 1/25/06", "prop13_assessment": 3279279, "prop13_tax_estimate": 36072.068999999996, "secondary_owner": "HR PARCEL 133 LLC", "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "tax_break_estimate": -15043.508999999995, "williamson_assessment": 1899702, "williamson_tax": 21028.56 }, { "apn": 83700030, "assessment_break": -2910361, "contract_owner": null, "is_williamson": "72AP140", "primary_owner": "HOLLISTER RANCH PARCEL 134 GP", "prop13_assessment": 6222000, "prop13_tax_estimate": 68442, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "tax_break_estimate": -31784.14, "williamson_assessment": 3311639, "williamson_tax": 36657.86 }, { "apn": 83700031, "assessment_break": -1961118, "contract_owner": null, "is_williamson": "72AP141", "primary_owner": "CUSHMAN WILLIAM HOLMES/SALLY REESE", "prop13_assessment": 1967151, "prop13_tax_estimate": 21638.661, "secondary_owner": "BROWNE CLYDE JACKSON TRUSTEE (for) BROWNE JACKSON TR 9/29/99", "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "tax_break_estimate": -21571.881, "williamson_assessment": 6033, "williamson_tax": 66.78 }, { "apn": 83700032, "assessment_break": -2201814, "contract_owner": null, "is_williamson": "83AP015", "primary_owner": "RANCHO CUARTA", "prop13_assessment": 2317551, "prop13_tax_estimate": 25493.060999999998, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "tax_break_estimate": -24211.921, "williamson_assessment": 115737, "williamson_tax": 1281.14 }, { "apn": 83700037, "assessment_break": -892958, "contract_owner": null, "is_williamson": "72AP137", "primary_owner": "HR-2011, LLC", "prop13_assessment": 6968103, "prop13_tax_estimate": 76649.133, "secondary_owner": null, "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "tax_break_estimate": -9400.933000000005, "williamson_assessment": 6075145, "williamson_tax": 67248.2 }, { "apn": 83700038, "assessment_break": -441067, "contract_owner": null, "is_williamson": "72AP136", "primary_owner": "KIRBY ROBERT G/MARVEL BLAKEMAN TRUSTEES (for) KIRBY FAM TR 4/4/93", "prop13_assessment": 2289218, "prop13_tax_estimate": 25181.397999999997, "secondary_owner": "JONES WILLIAM K/TYRENA A TRUSTEES (for) JONES FAM TR 5/6/98", "subdivision_description": "Parcel Map of the Hollister Ranch Phase III, neing a division of portions of the Rancho Nuetra Señorea del Refugio Book \"A\" pages 17 & 18 of Patents...11495?", "subdivision_id": "P009/032", "tax_break_estimate": -4723.477999999999, "williamson_assessment": 1848151, "williamson_tax": 20457.92 }, { "apn": 83660001, "assessment_break": -353424, "contract_owner": null, "is_williamson": "72AP010", "primary_owner": "TEPITATES PARTNERSHIP", "prop13_assessment": 737511, "prop13_tax_estimate": 8112.620999999999, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -3861.0009999999993, "williamson_assessment": 384087, "williamson_tax": 4251.62 }, { "apn": 83660002, "assessment_break": -411876, "contract_owner": null, "is_williamson": "72AP023", "primary_owner": "RANCHO CRESTA", "prop13_assessment": 750019, "prop13_tax_estimate": 8250.208999999999, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -4507.148999999999, "williamson_assessment": 338143, "williamson_tax": 3743.06 }, { "apn": 83660003, "assessment_break": -231321, "contract_owner": null, "is_williamson": "72AP024", "primary_owner": "COJO RIDGE RANCH", "prop13_assessment": 245629, "prop13_tax_estimate": 2701.919, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -2543.5389999999998, "williamson_assessment": 14308, "williamson_tax": 158.38 }, { "apn": 83660004, "assessment_break": -1436860, "contract_owner": null, "is_williamson": "72AP011", "primary_owner": "CHAMBERLAIN, NATASHA A & AMBERGER, JERRY", "prop13_assessment": 1451542, "prop13_tax_estimate": 15966.962, "secondary_owner": "COOK, GREGORY", "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -15804.442, "williamson_assessment": 14682, "williamson_tax": 162.52 }, { "apn": 83660005, "assessment_break": -210792, "contract_owner": null, "is_williamson": "72AP025", "primary_owner": "RANCHO VISTA DEL COJO GP", "prop13_assessment": 343909, "prop13_tax_estimate": 3782.999, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -2309.479, "williamson_assessment": 133117, "williamson_tax": 1473.52 }, { "apn": 83660006, "assessment_break": -584100, "contract_owner": null, "is_williamson": "72AP026", "primary_owner": "DAVID A KAY, LP", "prop13_assessment": 1331254, "prop13_tax_estimate": 14643.794, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -6373.234, "williamson_assessment": 747154, "williamson_tax": 8270.56 }, { "apn": 83660007, "assessment_break": -299350, "contract_owner": null, "is_williamson": "72AP027", "primary_owner": "RANCHO SIETE", "prop13_assessment": 308028, "prop13_tax_estimate": 3388.308, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -3292.248, "williamson_assessment": 8678, "williamson_tax": 96.06 }, { "apn": 83660008, "assessment_break": -219139, "contract_owner": null, "is_williamson": "72AP028", "primary_owner": "PRIME 8 PARTNERSHIP THE", "prop13_assessment": 488575, "prop13_tax_estimate": 5374.325, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -2391.825, "williamson_assessment": 269436, "williamson_tax": 2982.5 }, { "apn": 83660009, "assessment_break": -563423, "contract_owner": null, "is_williamson": "72AP029", "primary_owner": "HR NINE", "prop13_assessment": 572561, "prop13_tax_estimate": 6298.170999999999, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -6197.0109999999995, "williamson_assessment": 9138, "williamson_tax": 101.16 }, { "apn": 83660010, "assessment_break": -232267, "contract_owner": null, "is_williamson": "72AP030", "primary_owner": "TRES BARRANCA", "prop13_assessment": 1779444, "prop13_tax_estimate": 19573.884, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -2447.5639999999985, "williamson_assessment": 1547177, "williamson_tax": 17126.32 }, { "apn": 83660011, "assessment_break": -1860591, "contract_owner": null, "is_williamson": "72AP031", "primary_owner": "RAMSEY, MICHAEL L TRUST 5/13/99", "prop13_assessment": 3275547, "prop13_tax_estimate": 36031.017, "secondary_owner": "MINSHULL, MAX 2012 IRREVOCABLE TRUST", "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -20445.797, "williamson_assessment": 1414956, "williamson_tax": 15585.22 }, { "apn": 83660012, "assessment_break": -324070, "contract_owner": null, "is_williamson": "72AP032", "primary_owner": "BLUE SUN RANCH PRESERVE", "prop13_assessment": 333024, "prop13_tax_estimate": 3663.2639999999997, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -3564.144, "williamson_assessment": 8954, "williamson_tax": 99.12 }, { "apn": 83660013, "assessment_break": -554109, "contract_owner": null, "is_williamson": "72AP033", "primary_owner": "KELLER, BARBARA SUSANNE TTEE OF KELLER, BARBARA SUSANNE LIV TR 2/17/05", "prop13_assessment": 584334, "prop13_tax_estimate": 6427.674, "secondary_owner": "MORMANN, KERRY", "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -6093.094, "williamson_assessment": 30225, "williamson_tax": 334.58 }, { "apn": 83660014, "assessment_break": -2009602, "contract_owner": null, "is_williamson": "72AP034", "primary_owner": "BARTHELS, HERBERT E TTEE BARTHELS, HERBERT E TRUST 12/09/85", "prop13_assessment": 2017709, "prop13_tax_estimate": 22194.799, "secondary_owner": "SIMMONS, THEODORE M", "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -22105.058999999997, "williamson_assessment": 8107, "williamson_tax": 89.74 }, { "apn": 83660015, "assessment_break": -1114532, "contract_owner": null, "is_williamson": "72AP035", "primary_owner": "HOLLISTER FAMILY RANCH, LLC", "prop13_assessment": 1758675, "prop13_tax_estimate": 19345.425, "secondary_owner": "JARVIS STEIR 2011 REV TR 12/19/11", "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -12215.145, "williamson_assessment": 644143, "williamson_tax": 7130.28 }, { "apn": 83660016, "assessment_break": -1104244, "contract_owner": null, "is_williamson": "72AP016", "primary_owner": "PANIZZON, ERNEST A", "prop13_assessment": 1797264, "prop13_tax_estimate": 19769.904, "secondary_owner": "BATH, EDWARD & JANE TRUSTEES FOR BATH FAMILY TRUST 9/1/99", "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -12176.063999999998, "williamson_assessment": 693020, "williamson_tax": 7593.84 }, { "apn": 83660017, "assessment_break": -1787625, "contract_owner": null, "is_williamson": "72AP036", "primary_owner": "HOLLISTER LAVENDER FARMS, LLC", "prop13_assessment": 4736624, "prop13_tax_estimate": 52102.863999999994, "secondary_owner": "HUNT FAMILY TRUST 8/22/05", "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -19459.223999999995, "williamson_assessment": 2948999, "williamson_tax": 32643.64 }, { "apn": 83660018, "assessment_break": -1511429, "contract_owner": null, "is_williamson": "72AP037", "primary_owner": "PUTNAM TRUST 1988", "prop13_assessment": 2926656, "prop13_tax_estimate": 32193.215999999997, "secondary_owner": "OLSEN & IRELAND FAMILY TRUST 4-15-92", "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -16527.496, "williamson_assessment": 1415227, "williamson_tax": 15665.72 }, { "apn": 83660019, "assessment_break": -640839, "contract_owner": null, "is_williamson": "72AP018", "primary_owner": "MOORE, DANIEL B SEPARATE PROPERTY TRUST 4/19/93", "prop13_assessment": 1778122, "prop13_tax_estimate": 19559.342, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -6970.302, "williamson_assessment": 1137283, "williamson_tax": 12589.04 }, { "apn": 83660020, "assessment_break": -529118, "contract_owner": null, "is_williamson": "72AP038", "primary_owner": "CROUL, SPENCER BEHR TRUSTEE (for) CROUL, SPENCER B TR 11/13/06", "prop13_assessment": 536772, "prop13_tax_estimate": 5904.491999999999, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -5819.7519999999995, "williamson_assessment": 7654, "williamson_tax": 84.74 }, { "apn": 83660023, "assessment_break": -494764, "contract_owner": null, "is_williamson": "72AP039", "primary_owner": "TAYLOR LINDA & ULLMAN DAVID TRUSTEES (for) ULLMAN D & L REV TR 4-27-90", "prop13_assessment": 502419, "prop13_tax_estimate": 5526.6089999999995, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -5441.869, "williamson_assessment": 7655, "williamson_tax": 84.74 }, { "apn": 83660024, "assessment_break": -1343773, "contract_owner": null, "is_williamson": "72AP040", "primary_owner": "RANCHO ALTA HONDA", "prop13_assessment": 1349451, "prop13_tax_estimate": 14843.961, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -14781.100999999999, "williamson_assessment": 5678, "williamson_tax": 62.86 }, { "apn": 83660025, "assessment_break": -930983, "contract_owner": null, "is_williamson": "72AP019", "primary_owner": "ALEXANDER, A A FAMILY TRUST 1/16/98", "prop13_assessment": 1306196, "prop13_tax_estimate": 14368.155999999999, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -10292.256, "williamson_assessment": 375213, "williamson_tax": 4075.9 }, { "apn": 83660026, "assessment_break": -211502, "contract_owner": null, "is_williamson": "72AP041", "primary_owner": "RANCHO DE LAS OLAS", "prop13_assessment": 219334, "prop13_tax_estimate": 2412.674, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -2325.974, "williamson_assessment": 7832, "williamson_tax": 86.7 }, { "apn": 83660027, "assessment_break": -822671, "contract_owner": null, "is_williamson": "72AP042", "primary_owner": "HEALEY, ROBERT E", "prop13_assessment": 1571333, "prop13_tax_estimate": 17284.663, "secondary_owner": "HEALEY, AMY K", "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -8997.423, "williamson_assessment": 748662, "williamson_tax": 8287.24 }, { "apn": 83660028, "assessment_break": -362348, "contract_owner": null, "is_williamson": "72AP020", "primary_owner": "VENTANA DEL MAR", "prop13_assessment": 376165, "prop13_tax_estimate": 4137.815, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -3984.8549999999996, "williamson_assessment": 13817, "williamson_tax": 152.96 }, { "apn": 83660029, "assessment_break": -452727, "contract_owner": null, "is_williamson": "72AP043", "primary_owner": "HOLLISTER RANCH PCL 46", "prop13_assessment": 461005, "prop13_tax_estimate": 5071.054999999999, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -4979.414999999999, "williamson_assessment": 8278, "williamson_tax": 91.64 }, { "apn": 83660030, "assessment_break": -683252, "contract_owner": null, "is_williamson": "72AP021", "primary_owner": "PARCEL 47 PARTNERSHIP", "prop13_assessment": 1275961, "prop13_tax_estimate": 14035.571, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -7474.631, "williamson_assessment": 592709, "williamson_tax": 6560.94 }, { "apn": 83660031, "assessment_break": -1360390, "contract_owner": null, "is_williamson": "72AP022", "primary_owner": "TANBARK OAK RANCH, LLC", "prop13_assessment": 1370100, "prop13_tax_estimate": 15071.099999999999, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -14963.619999999999, "williamson_assessment": 9710, "williamson_tax": 107.48 }, { "apn": 83660032, "assessment_break": -2316352, "contract_owner": null, "is_williamson": "72AP044", "primary_owner": "SAWYER, RICHARD S", "prop13_assessment": 2324210, "prop13_tax_estimate": 25566.309999999998, "secondary_owner": "WILLGRO PROPERTIES", "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -25479.329999999998, "williamson_assessment": 7858, "williamson_tax": 86.98 }, { "apn": 83660033, "assessment_break": -204470, "contract_owner": null, "is_williamson": "72AP045", "primary_owner": "ROCKVIEW PARTNERS", "prop13_assessment": 303142, "prop13_tax_estimate": 3334.562, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -2242.322, "williamson_assessment": 98672, "williamson_tax": 1092.24 }, { "apn": 83670001, "assessment_break": -1245852, "contract_owner": null, "is_williamson": "72AP046", "primary_owner": "MACHU PICCHU LLC", "prop13_assessment": 1910692, "prop13_tax_estimate": 21017.611999999997, "secondary_owner": "KRUTHERS, JEFFREY", "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -13496.231999999996, "williamson_assessment": 664840, "williamson_tax": 7521.38 }, { "apn": 83670002, "assessment_break": -1951367, "contract_owner": null, "is_williamson": "72AP047", "primary_owner": "WRIGHT, WILLIAM & PESHA", "prop13_assessment": 9017817, "prop13_tax_estimate": 99195.987, "secondary_owner": "CONNER CREDIT SHELTER TRUST 10/04/1996", "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -20974.626999999993, "williamson_assessment": 7066450, "williamson_tax": 78221.36 }, { "apn": 83670003, "assessment_break": -800097, "contract_owner": null, "is_williamson": "72AP048", "primary_owner": "STANWALL CORPORATION", "prop13_assessment": 1105321, "prop13_tax_estimate": 12158.530999999999, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -8779.871, "williamson_assessment": 305224, "williamson_tax": 3378.66 }, { "apn": 83670004, "assessment_break": -1391212, "contract_owner": null, "is_williamson": "72AP049", "primary_owner": "EL RANCHO GRANDE", "prop13_assessment": 2648104, "prop13_tax_estimate": 29129.143999999997, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -15216.103999999996, "williamson_assessment": 1256892, "williamson_tax": 13913.04 }, { "apn": 83670005, "assessment_break": -861271, "contract_owner": null, "is_williamson": "72AP050", "primary_owner": "CHU DAVID/TA-YUNG LI", "prop13_assessment": 881679, "prop13_tax_estimate": 9698.469, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -9472.548999999999, "williamson_assessment": 20408, "williamson_tax": 225.92 }, { "apn": 83670006, "assessment_break": -1257915, "contract_owner": null, "is_williamson": "72AP012", "primary_owner": "WELBORN DAVID/ANN K HUNTER TRUSTEES (for) WELBORN FAM TR", "prop13_assessment": 4838967, "prop13_tax_estimate": 53228.636999999995, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -13588.536999999997, "williamson_assessment": 3581052, "williamson_tax": 39640.1 }, { "apn": 83670007, "assessment_break": -2938754, "contract_owner": null, "is_williamson": "72AP051", "primary_owner": "JJ WHIPPET, LLC", "prop13_assessment": 4058959, "prop13_tax_estimate": 44648.549, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -32248.549, "williamson_assessment": 1120205, "williamson_tax": 12400 }, { "apn": 83670008, "assessment_break": -1262141, "contract_owner": null, "is_williamson": "72AP052", "primary_owner": "CHOUINARD YVON/MALINDA PENNOYER TRUSTEES (for) CHOUINARD FAM REV TR 6-14-79", "prop13_assessment": 3703836, "prop13_tax_estimate": 40742.195999999996, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -13714.095999999998, "williamson_assessment": 2441695, "williamson_tax": 27028.1 }, { "apn": 83670009, "assessment_break": -386164, "contract_owner": null, "is_williamson": "72AP013", "primary_owner": "HUEVOS RANCHEROS INC", "prop13_assessment": 391515, "prop13_tax_estimate": 4306.665, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -4247.425, "williamson_assessment": 5351, "williamson_tax": 59.24 }, { "apn": 83670010, "assessment_break": -918197, "contract_owner": null, "is_williamson": "72AP053", "primary_owner": "KAMINSKAS RIMVYDAS A/LILLIAN D", "prop13_assessment": 1432583, "prop13_tax_estimate": 15758.412999999999, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -10064.452999999998, "williamson_assessment": 514386, "williamson_tax": 5693.96 }, { "apn": 83670011, "assessment_break": -445115, "contract_owner": null, "is_williamson": "72AP014", "primary_owner": "WALL FAMILY TRUST 3/6/03", "prop13_assessment": 3569721, "prop13_tax_estimate": 39266.931, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -4679.411, "williamson_assessment": 3124606, "williamson_tax": 34587.52 }, { "apn": 83670012, "assessment_break": -2891778, "contract_owner": null, "is_williamson": "72AP054", "primary_owner": "HOLLISTER RANCH 37 PARTNERSHIP", "prop13_assessment": 2979449, "prop13_tax_estimate": 32773.939, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -31803.459, "williamson_assessment": 87671, "williamson_tax": 970.48 }, { "apn": 83670013, "assessment_break": -2031003, "contract_owner": null, "is_williamson": "72AP055", "primary_owner": "HOLLISTER RANCH 38", "prop13_assessment": 3770785, "prop13_tax_estimate": 41478.634999999995, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -22220.294999999995, "williamson_assessment": 1739782, "williamson_tax": 19258.34 }, { "apn": 83670014, "assessment_break": -430428, "contract_owner": null, "is_williamson": "72AP015", "primary_owner": "INVESTOGRO INC", "prop13_assessment": 634988, "prop13_tax_estimate": 6984.8679999999995, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -4720.508, "williamson_assessment": 204560, "williamson_tax": 2264.36 }, { "apn": 83670015, "assessment_break": -1946976, "contract_owner": null, "is_williamson": "72AP056", "primary_owner": "DOWNES, JOSEPH F TRUST 5/6/09", "prop13_assessment": 3164259, "prop13_tax_estimate": 34806.848999999995, "secondary_owner": "BOOTH, DEBORAH E SHAW", "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -21332.248999999996, "williamson_assessment": 1217283, "williamson_tax": 13474.6 }, { "apn": 83670016, "assessment_break": -408650, "contract_owner": null, "is_williamson": "72AP057", "primary_owner": "BOISE-COSSART FAMILY TRUST 1/23/15", "prop13_assessment": 724422, "prop13_tax_estimate": 7968.642, "secondary_owner": "WALSH, MICHAEL E/BARBARA B TTEES OF WALSH, MICHAEL E/BARBARA B LIV TR 3/18/11", "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -4628.201999999999, "williamson_assessment": 315772, "williamson_tax": 3340.44 }, { "apn": 83670017, "assessment_break": -1577461, "contract_owner": null, "is_williamson": "72AP017", "primary_owner": "LP TRUST 8/28/00", "prop13_assessment": 1587406, "prop13_tax_estimate": 17461.466, "secondary_owner": "MCCARTER-CROWE REVOCABLE LIVING TRUST 7/22/09", "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -17351.386, "williamson_assessment": 9945, "williamson_tax": 110.08 }, { "apn": 83670018, "assessment_break": -148456, "contract_owner": null, "is_williamson": "83AP010", "primary_owner": "HOLLISTER RANCH OWNERS ASSOCIATION", "prop13_assessment": 245603, "prop13_tax_estimate": 2701.633, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -1626.273, "williamson_assessment": 97147, "williamson_tax": 1075.36 }, { "apn": 83680001, "assessment_break": -204505, "contract_owner": null, "is_williamson": "72AP059", "primary_owner": "BULITO NORTE RANCH", "prop13_assessment": 373956, "prop13_tax_estimate": 4113.516, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -2237.776, "williamson_assessment": 169451, "williamson_tax": 1875.74 }, { "apn": 83680002, "assessment_break": -1739993, "contract_owner": null, "is_williamson": "72AP060", "primary_owner": "NEW RANCHO DE LA CRESTA", "prop13_assessment": 4180244, "prop13_tax_estimate": 45982.683999999994, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -18970.563999999995, "williamson_assessment": 2440251, "williamson_tax": 27012.12 }, { "apn": 83680005, "assessment_break": -6324280, "contract_owner": null, "is_williamson": "72AP063", "primary_owner": "HOLLISTER RANCH 54 GP CA", "prop13_assessment": 8147960, "prop13_tax_estimate": 89627.56, "secondary_owner": null, "subdivision_description": "being a division of a portion of Ro. Nuestra Senora Del Refugio", "subdivision_id": "P008/045", "tax_break_estimate": -69440.51999999999, "williamson_assessment": 1823680, "williamson_tax": 20187.04 }, { "apn": 83680003, "assessment_break": -28529, "contract_owner": null, "is_williamson": "72AP061", "primary_owner": "52 PARTNERSHIP", "prop13_assessment": 2477448, "prop13_tax_estimate": 27251.928, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -143.86799999999857, "williamson_assessment": 2448919, "williamson_tax": 27108.06 }, { "apn": 83680004, "assessment_break": -1582821, "contract_owner": null, "is_williamson": "72AP062", "primary_owner": "CEGELSKI RANCH, LLC", "prop13_assessment": 5431026, "prop13_tax_estimate": 59741.286, "secondary_owner": "PARCEL 53 AG, LLC", "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -17143.946000000004, "williamson_assessment": 3848205, "williamson_tax": 42597.34 }, { "apn": 83680006, "assessment_break": -3707050, "contract_owner": null, "is_williamson": "72AP064", "primary_owner": "GAVIOTA I IRREVOCABLE TRUST 12/18/12", "prop13_assessment": 7173769, "prop13_tax_estimate": 78911.459, "secondary_owner": "GAVIOTA II IRREVOCABLE TRUST 12/18/12", "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -40614.439000000006, "williamson_assessment": 3466719, "williamson_tax": 38297.02 }, { "apn": 83680007, "assessment_break": -207334, "contract_owner": null, "is_williamson": "72AP065", "primary_owner": "BANYN RANCH LLC (CA)", "prop13_assessment": 402797, "prop13_tax_estimate": 4430.767, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -2267.107, "williamson_assessment": 195463, "williamson_tax": 2163.66 }, { "apn": 83680008, "assessment_break": -3818637, "contract_owner": null, "is_williamson": "72AP066", "primary_owner": "THATCHER, MARK", "prop13_assessment": 7614847, "prop13_tax_estimate": 83763.317, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -41741.55699999999, "williamson_assessment": 3796210, "williamson_tax": 42021.76 }, { "apn": 83680009, "assessment_break": -470809, "contract_owner": null, "is_williamson": "72AP067", "primary_owner": "CURTIS ROBERT F TRUSTEE (for) CURTIS ROBERT FAM TR 3/13/90", "prop13_assessment": 850760, "prop13_tax_estimate": 9358.359999999999, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -5152.519999999999, "williamson_assessment": 379951, "williamson_tax": 4205.84 }, { "apn": 83680010, "assessment_break": -1261463, "contract_owner": null, "is_williamson": "72AP068", "primary_owner": "BULITO CANYON ESTATE PARTNERSHIP", "prop13_assessment": 2868286, "prop13_tax_estimate": 31551.145999999997, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -13764.565999999995, "williamson_assessment": 1606823, "williamson_tax": 17786.58 }, { "apn": 83680011, "assessment_break": -1363537, "contract_owner": null, "is_williamson": "72AP069", "primary_owner": "HOLLISTER RANCH 60", "prop13_assessment": 4790770, "prop13_tax_estimate": 52698.469999999994, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -14761.049999999996, "williamson_assessment": 3427233, "williamson_tax": 37937.42 }, { "apn": 83680012, "assessment_break": -340194, "contract_owner": null, "is_williamson": "72AP070", "primary_owner": "TALBOT, EDDIE TRUST 5/20/11", "prop13_assessment": 369620, "prop13_tax_estimate": 4065.8199999999997, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -3740.08, "williamson_assessment": 29426, "williamson_tax": 325.74 }, { "apn": 83680013, "assessment_break": -1112478, "contract_owner": null, "is_williamson": "72AP071", "primary_owner": "WOOLCOTT, RICHARD RALPH TTEE OF WOOLCOTT, RICHARD", "prop13_assessment": 3759039, "prop13_tax_estimate": 41349.429, "secondary_owner": "BENARON, STEVEN N FAMILY TRUST", "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -12053.588999999996, "williamson_assessment": 2646561, "williamson_tax": 29295.84 }, { "apn": 83680014, "assessment_break": -304241, "contract_owner": null, "is_williamson": "72AP072", "primary_owner": "RANCHO AGUA DULCE", "prop13_assessment": 460798, "prop13_tax_estimate": 5068.777999999999, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -3335.7779999999993, "williamson_assessment": 156557, "williamson_tax": 1733 }, { "apn": 83680015, "assessment_break": -272497, "contract_owner": null, "is_williamson": "72AP073", "primary_owner": "RANCHO LA VIDA", "prop13_assessment": 2052837, "prop13_tax_estimate": 22581.207, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -2873.9069999999992, "williamson_assessment": 1780340, "williamson_tax": 19707.3 }, { "apn": 83680016, "assessment_break": -463452, "contract_owner": null, "is_williamson": "72AP074", "primary_owner": "FIELD, SUZANNE BENECH", "prop13_assessment": 1413921, "prop13_tax_estimate": 15553.131, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -5032.010999999999, "williamson_assessment": 950469, "williamson_tax": 10521.12 }, { "apn": 83680017, "assessment_break": -418668, "contract_owner": null, "is_williamson": "72AP075", "primary_owner": "HOLLISTER RANCH 66", "prop13_assessment": 1479842, "prop13_tax_estimate": 16278.261999999999, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -4531.701999999999, "williamson_assessment": 1061174, "williamson_tax": 11746.56 }, { "apn": 83680018, "assessment_break": -1347969, "contract_owner": null, "is_williamson": "72AP076", "primary_owner": "VANDERHAVE FAMILY TRUST", "prop13_assessment": 2244372, "prop13_tax_estimate": 24688.091999999997, "secondary_owner": "KWOCK, DANIEL CHRISTOPHER II TRUST 5/16/13", "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -14842.931999999997, "williamson_assessment": 896403, "williamson_tax": 9845.16 }, { "apn": 83680019, "assessment_break": -667206, "contract_owner": null, "is_williamson": "72AP077", "primary_owner": "EL BULITO PARTNERS", "prop13_assessment": 1226630, "prop13_tax_estimate": 13492.929999999998, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -7300.4299999999985, "williamson_assessment": 559424, "williamson_tax": 6192.5 }, { "apn": 83680020, "assessment_break": -299420, "contract_owner": null, "is_williamson": "72AP078", "primary_owner": "SWANSON, WILLIAM K & JANETTE I FAMILY TRUST 1/22/04/LIFE ESTATE", "prop13_assessment": 815625, "prop13_tax_estimate": 8971.875, "secondary_owner": "GIUSTA RANDAL R/JUDY ANN/LIFE ESTATE", "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -3335.2749999999996, "williamson_assessment": 516205, "williamson_tax": 5636.6 }, { "apn": 83680021, "assessment_break": -324726, "contract_owner": null, "is_williamson": "72AP079", "primary_owner": "HOLLISTER RANCH OWNERS ASSOCIATION", "prop13_assessment": 960238, "prop13_tax_estimate": 10562.617999999999, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -3527.877999999999, "williamson_assessment": 635512, "williamson_tax": 7034.74 }, { "apn": 83680022, "assessment_break": -4378930, "contract_owner": null, "is_williamson": "72AP080", "primary_owner": "HOWARD RANCH LLC", "prop13_assessment": 6788460, "prop13_tax_estimate": 74673.06, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -48001, "williamson_assessment": 2409530, "williamson_tax": 26672.06 }, { "apn": 83680023, "assessment_break": -1579076, "contract_owner": null, "is_williamson": "72AP081", "primary_owner": "LOT 72, LLC", "prop13_assessment": 3443457, "prop13_tax_estimate": 37878.026999999995, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -17240.446999999993, "williamson_assessment": 1864381, "williamson_tax": 20637.58 }, { "apn": 83680024, "assessment_break": -5691391, "contract_owner": null, "is_williamson": "72AP082", "primary_owner": "DASH HOLDINGS III, LLC", "prop13_assessment": 10092512, "prop13_tax_estimate": 111017.632, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -62299.871999999996, "williamson_assessment": 4401121, "williamson_tax": 48717.76 }, { "apn": 83680025, "assessment_break": -15048700, "contract_owner": null, "is_williamson": "72AP083", "primary_owner": "HOLLISTER RANCH TRUST 1/5/16", "prop13_assessment": 21848398, "prop13_tax_estimate": 240332.378, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -165063.798, "williamson_assessment": 6799698, "williamson_tax": 75268.58 }, { "apn": 83680026, "assessment_break": -484667, "contract_owner": null, "is_williamson": "72AP084", "primary_owner": "TESORO ANTHONY J/MARY A TRUSTEES (for) TESORO FAM TR 6/12/97", "prop13_assessment": 1481161, "prop13_tax_estimate": 16292.770999999999, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -5262.1709999999985, "williamson_assessment": 996494, "williamson_tax": 11030.6 }, { "apn": 83680028, "assessment_break": -1827787, "contract_owner": null, "is_williamson": "72AP086", "primary_owner": "HAMBLETON, ROBERT H & LUCINDA B REVOCABLE FAMILY TRUST 7/30/91", "prop13_assessment": 5872968, "prop13_tax_estimate": 64602.647999999994, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -19824.927999999993, "williamson_assessment": 4045181, "williamson_tax": 44777.72 }, { "apn": 83680029, "assessment_break": -437840, "contract_owner": null, "is_williamson": "72AP087", "primary_owner": "EL RANCHO HERMOSA", "prop13_assessment": 787860, "prop13_tax_estimate": 8666.46, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -4791.959999999999, "williamson_assessment": 350020, "williamson_tax": 3874.5 }, { "apn": 83680030, "assessment_break": -864636, "contract_owner": null, "is_williamson": "72AP088", "primary_owner": "GREENWALD FAMILY TRUST 7/16/12", "prop13_assessment": 875014, "prop13_tax_estimate": 9625.153999999999, "secondary_owner": "DUNAETZ/DENNIS LIVING TRUST 10/15/98", "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -9510.274, "williamson_assessment": 10378, "williamson_tax": 114.88 }, { "apn": 83680031, "assessment_break": -599216, "contract_owner": null, "is_williamson": "72AP089", "primary_owner": "HOLLISTER RANCH NO 81", "prop13_assessment": 1361435, "prop13_tax_estimate": 14975.785, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -6538.465, "williamson_assessment": 762219, "williamson_tax": 8437.32 }, { "apn": 83680032, "assessment_break": -1837643, "contract_owner": null, "is_williamson": "72AP090", "primary_owner": "HCH RANCH GP (CA)", "prop13_assessment": 1847075, "prop13_tax_estimate": 20317.824999999997, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -20213.405, "williamson_assessment": 9432, "williamson_tax": 104.42 }, { "apn": 83680033, "assessment_break": -376577, "contract_owner": null, "is_williamson": "72AP091", "primary_owner": "HOLLISTER RANCH EIGHTY FIVE", "prop13_assessment": 598405, "prop13_tax_estimate": 6582.455, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -4126.955, "williamson_assessment": 221828, "williamson_tax": 2455.5 }, { "apn": 83680034, "assessment_break": -8246, "contract_owner": null, "is_williamson": "83AP010", "primary_owner": "HOLLISTER RANCH OWNERS ASSOCIATION", "prop13_assessment": 115221, "prop13_tax_estimate": 1267.431, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -83.29099999999994, "williamson_assessment": 106975, "williamson_tax": 1184.14 }, { "apn": 83690001, "assessment_break": -776119, "contract_owner": null, "is_williamson": "72AP093", "primary_owner": "TURLEY, MARIE B VACATION RESIDENCE TRUST 12/14/11", "prop13_assessment": 1629226, "prop13_tax_estimate": 17921.485999999997, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -8478.105999999998, "williamson_assessment": 853107, "williamson_tax": 9443.38 }, { "apn": 83690002, "assessment_break": -1343604, "contract_owner": null, "is_williamson": "72AP094", "primary_owner": "EL RANCHO DE DOS GATOS, LLC", "prop13_assessment": 1956975, "prop13_tax_estimate": 21526.725, "secondary_owner": "CHANNEL ISLANDS HOLDING CO, LLC", "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -14814.544999999998, "williamson_assessment": 613371, "williamson_tax": 6712.18 }, { "apn": 83690003, "assessment_break": -557859, "contract_owner": null, "is_williamson": "72AP095", "primary_owner": "TRUBSCHENCK, ERIC W & DIANE W TRUSTEES (for) TRUBSCHENCK FAM LIV TR 4/27/90", "prop13_assessment": 2964590, "prop13_tax_estimate": 32610.489999999998, "secondary_owner": "PELONIS, CHRIS A", "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -6046.909999999996, "williamson_assessment": 2406731, "williamson_tax": 26563.58 }, { "apn": 83690004, "assessment_break": -1062547, "contract_owner": null, "is_williamson": "72AP096", "primary_owner": "HOLLISTER RANCH EIGHTY SIX", "prop13_assessment": 2649067, "prop13_tax_estimate": 29139.736999999997, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -11577.896999999997, "williamson_assessment": 1586520, "williamson_tax": 17561.84 }, { "apn": 83690005, "assessment_break": -2353952, "contract_owner": null, "is_williamson": "72AP097", "primary_owner": "HOLLISTER RANCH 87 GP (CA)", "prop13_assessment": 3571445, "prop13_tax_estimate": 39285.895, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -25808.975, "williamson_assessment": 1217493, "williamson_tax": 13476.92 }, { "apn": 83690006, "assessment_break": -2101433, "contract_owner": null, "is_williamson": "72AP098", "primary_owner": "LONG SIDNE J TRUSTEE (for) LONG SIDNE J TR 12/6/96", "prop13_assessment": 3886295, "prop13_tax_estimate": 42749.244999999995, "secondary_owner": "LONG SIDNE J TRUSTEE (for) LONG LISA K TR 11/21/71", "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -22991.884999999995, "williamson_assessment": 1784862, "williamson_tax": 19757.36 }, { "apn": 83690007, "assessment_break": -2654317, "contract_owner": null, "is_williamson": "72AP099", "primary_owner": "CAMERON, JAMES F LIVING TRUST", "prop13_assessment": 6027958, "prop13_tax_estimate": 66307.538, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -28963.358, "williamson_assessment": 3373641, "williamson_tax": 37344.18 }, { "apn": 83690008, "assessment_break": -540301, "contract_owner": null, "is_williamson": "72AP100", "primary_owner": "MORTASHED, JILLIAN SEPARATE PROPERTY TRUST 4/30/14", "prop13_assessment": 957908, "prop13_tax_estimate": 10536.988, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -5914.3279999999995, "williamson_assessment": 417607, "williamson_tax": 4622.66 }, { "apn": 83690009, "assessment_break": -441925, "contract_owner": null, "is_williamson": "72AP101", "primary_owner": "WARD FAMILY TRUST 3/22/12", "prop13_assessment": 785173, "prop13_tax_estimate": 8636.903, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -4837.343000000001, "williamson_assessment": 343248, "williamson_tax": 3799.56 }, { "apn": 83690010, "assessment_break": -792498, "contract_owner": null, "is_williamson": "72AP102", "primary_owner": "CHAPMAN, CORNELIA 1992 TRUST", "prop13_assessment": 3141356, "prop13_tax_estimate": 34554.916, "secondary_owner": "REEPMAKER, ERNEST JOHN JR/LISA M", "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -8554.455999999998, "williamson_assessment": 2348858, "williamson_tax": 26000.46 }, { "apn": 83690011, "assessment_break": -297348, "contract_owner": null, "is_williamson": "72AP103", "primary_owner": "RANCHO DOS RIOS", "prop13_assessment": 1399110, "prop13_tax_estimate": 15390.21, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -3194.3499999999985, "williamson_assessment": 1101762, "williamson_tax": 12195.86 }, { "apn": 83690012, "assessment_break": -1414447, "contract_owner": null, "is_williamson": "72AP104", "primary_owner": "ATMOSPHERE PROPERTIES, LLC", "prop13_assessment": 3168119, "prop13_tax_estimate": 34849.309, "secondary_owner": "DUNCAN, ROBERT ALLAN & WONG, NATALIE JO 2002 TRUST 12/14/02", "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -15437.209000000003, "williamson_assessment": 1753672, "williamson_tax": 19412.1 }, { "apn": 83690013, "assessment_break": -248774, "contract_owner": null, "is_williamson": "72AP142", "primary_owner": "RANCHO NOVENTA CINCO", "prop13_assessment": 1989790, "prop13_tax_estimate": 21887.69, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -2615.6899999999987, "williamson_assessment": 1741016, "williamson_tax": 19272 }, { "apn": 83690014, "assessment_break": -2376205, "contract_owner": null, "is_williamson": "72AP143", "primary_owner": "STROTHER, STEPHEN M/CATHERINE S TRUSTEES (for) STROTHER 1996 TR", "prop13_assessment": 2434534, "prop13_tax_estimate": 26779.874, "secondary_owner": "VALHOLLISTER, LLC", "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -26134.214, "williamson_assessment": 58329, "williamson_tax": 645.66 }, { "apn": 83690015, "assessment_break": -1911936, "contract_owner": null, "is_williamson": "72AP144", "primary_owner": "ZIEMBA, MARK/LISA FAMILY LIVING TRUST 8/8/08", "prop13_assessment": 1919579, "prop13_tax_estimate": 21115.369, "secondary_owner": "CHRISLIP, RONALD W", "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -21030.769, "williamson_assessment": 7643, "williamson_tax": 84.6 }, { "apn": 83690016, "assessment_break": -141938, "contract_owner": null, "is_williamson": "72AP105", "primary_owner": "RANCHO SACATE", "prop13_assessment": 1823134, "prop13_tax_estimate": 20054.474, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -1444.6339999999982, "williamson_assessment": 1681196, "williamson_tax": 18609.84 }, { "apn": 83690017, "assessment_break": -1726954, "contract_owner": null, "is_williamson": "72AP106", "primary_owner": "KRAMER FAMILY 2006 TRUST", "prop13_assessment": 5416505, "prop13_tax_estimate": 59581.55499999999, "secondary_owner": "HR99 LLC (CA)", "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -18740.43499999999, "williamson_assessment": 3689551, "williamson_tax": 40841.12 }, { "apn": 83690018, "assessment_break": -883996, "contract_owner": null, "is_williamson": "72AP107", "primary_owner": "WILLIAMSON, VICTORIA A TRUSTEE (for) WILLIAMSON TR 1/28/92", "prop13_assessment": 889318, "prop13_tax_estimate": 9782.498, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -9723.578, "williamson_assessment": 5322, "williamson_tax": 58.92 }, { "apn": 83690020, "assessment_break": -1414772, "contract_owner": null, "is_williamson": "72AP109", "primary_owner": "OSWALD, WILLIAM H", "prop13_assessment": 3161980, "prop13_tax_estimate": 34781.78, "secondary_owner": "OSWALD, ELLEN S", "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -15518.719999999998, "williamson_assessment": 1747208, "williamson_tax": 19263.06 }, { "apn": 83690022, "assessment_break": -225836, "contract_owner": null, "is_williamson": "83AP010", "primary_owner": "HOLLISTER RANCH OWNERS ASSOCIATION", "prop13_assessment": 408640, "prop13_tax_estimate": 4495.04, "secondary_owner": null, "subdivision_description": "Hollister Ranch Phase 2", "subdivision_id": "P009/009", "tax_break_estimate": -2471.5, "williamson_assessment": 182804, "williamson_tax": 2023.54 } ] }, "encoding": { "x": { "bin": true, "field": "tax_break_estimate", "type": "quantitative" }, "y": { "aggregate": "count", "type": "quantitative" } }, "mark": "bar" }, "image/png": "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", "text/plain": [ "\n", "\n", "If you see this message, it means the renderer has not been properly enabled\n", "for the frontend that you are using. For more information, see\n", "https://altair-viz.github.io/user_guide/troubleshooting.html\n" ] }, "execution_count": 29, "metadata": {}, "output_type": "execute_result" } ], "source": [ "alt.Chart(williamson_df).mark_bar().encode(\n", " alt.X(\"tax_break_estimate:Q\", bin=True),\n", " y='count()',\n", ")" ] }, { "cell_type": "code", "execution_count": 30, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
indextax_break_estimate
0count$136
1mean$-15,196
2std$18,302
3min$-165,064
425%$-19,551
550%$-10,162
675%$-4,610
7max$-83
\n", "
" ], "text/plain": [ " index tax_break_estimate\n", "0 count $136\n", "1 mean $-15,196\n", "2 std $18,302\n", "3 min $-165,064\n", "4 25% $-19,551\n", "5 50% $-10,162\n", "6 75% $-4,610\n", "7 max $-83" ] }, "execution_count": 30, "metadata": {}, "output_type": "execute_result" } ], "source": [ "williamson_df['tax_break_estimate'].describe().reset_index()" ] }, { "cell_type": "code", "execution_count": 31, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
apnprimary_ownerwilliamson_taxprop13_tax_estimatetax_break_estimate
10783680025HOLLISTER RANCH TRUST 1/5/16$75,269$240,332$-165,064
8583680005HOLLISTER RANCH 54 GP CA$20,187$89,628$-69,441
10683680024DASH HOLDINGS III, LLC$48,718$111,018$-62,300
383700002HAYDEN PROPERTIES, LLC$25,632$74,207$-48,575
10483680022HOWARD RANCH LLC$26,672$74,673$-48,001
\n", "
" ], "text/plain": [ " apn primary_owner williamson_tax \\\n", "107 83680025 HOLLISTER RANCH TRUST 1/5/16 $75,269 \n", "85 83680005 HOLLISTER RANCH 54 GP CA $20,187 \n", "106 83680024 DASH HOLDINGS III, LLC $48,718 \n", "3 83700002 HAYDEN PROPERTIES, LLC $25,632 \n", "104 83680022 HOWARD RANCH LLC $26,672 \n", "\n", " prop13_tax_estimate tax_break_estimate \n", "107 $240,332 $-165,064 \n", "85 $89,628 $-69,441 \n", "106 $111,018 $-62,300 \n", "3 $74,207 $-48,575 \n", "104 $74,673 $-48,001 " ] }, "execution_count": 31, "metadata": {}, "output_type": "execute_result" } ], "source": [ "williamson_df.sort_values(\"tax_break_estimate\").head()[[\n", " 'apn',\n", " 'primary_owner',\n", " 'williamson_tax',\n", " 'prop13_tax_estimate',\n", " 'tax_break_estimate'\n", "]]" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Output the results" ] }, { "cell_type": "code", "execution_count": 32, "metadata": {}, "outputs": [], "source": [ "williamson_df.to_csv(f\"{settings.output_dir}/analyzed.csv\", index=False, encoding=\"utf-8\")" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.6.5" } }, "nbformat": 4, "nbformat_minor": 2 }