Loading

Grants Management Tax Status Verification Upgrade

Publiceringsdatum: Feb 5, 2026
Beskrivning

1. Structural Changes

The JSON payload structure is moving from a deeply nested, internal schema to a standardized API response.

  • Old Path: Data was located deep within sourcesorg.guidestar.main.v1record.

  • New Path: Data is now organized into logical blocks: data.summary, data.financials, data.operations, and data.charitycheck.

Visual Comparison:

Old "Internal" Structure:

{
  "sources": {
    "org.guidestar.main.v1": [
      {
        "record": {
           "organization_name": "Candid",
           "ein": "13-1837418"
        }
      }
    ]
  }
}

New "Candid Premier API" Structure:

{
  "data": {
    "summary": {
       "organization_name": "Candid",
       "ein": "13-1837418"
    },
    "charitycheck": {
       "pub78_verified": "True"
    }
  }
}

2. Field Mapping Guide

The following table outlines where common data points have moved.

Data Point

Old JSON Path

New JSON Path

Notes

Org Name

record.organization_name

data.summary.organization_name

EIN

record.ein

data.summary.ein

Address

record.address_line_1

data.summary.address_line_1

Also available in data.summary.addresses array.

City/State

record.city

data.summary.city

Subsection Code

record.subsection_code (e.g., "501(c)(3)")

data.summary.subsection_code (e.g., "03")

Format Change: Now returns a 2-digit code.

Tax Status

record.subsection_description

data.charitycheck.subsection_description

Returns "501(c)(3) Public Charity"

Pub78 Status

record.pub78_verified ("Y")

data.charitycheck.pub78_verified ("True")

Format Change: "Y" vs "True"

NTEE Code

record.ntee_code

data.summary.ntee_code

New format includes description string.

Foundation Code

record.foundation_code

data.charitycheck.foundation_code

3. New Data Available

The new payload provides significantly richer data that was previously unavailable. You may wish to parse these new nodes for your records:

  • Demographics: Located in data.operations.organization_demographics. Includes breakdowns for staff/board by gender, race, and disability status.

  • Financials: Located in data.financials.most_recent_year_financials. Includes total_revenue, total_expenses, assets_total, etc.

  • People: Located in data.operations. Includes leader_name, board_chair_name, and a board_of_directors array.

4. JSON File Attachment Logic (New)

To ensure data integrity, we have introduced a file-based fail-safe.

  1. Primary Write: The system will attempt to write the JSON payload to the RawTaxStatusSearchResults__c long text field.

  2. Size Check: If the payload exceeds 131,072 characters (Salesforce Long Text limit), the system will skip writing to the Raw Tax Status Search Results text field entirely (leaving it blank). It does not truncate the data.

  3. Attachment: The full JSON is now always attached to the Verification Check record as a .json file.

    • Recommendation: For robust automation (especially when parsing the new Financial or Demographic arrays), we recommend updating your scripts to read the attached file content rather than the text field.

Appendix: Full JSON Payload Comparison

To assist developers in updating parsing logic, we have provided the complete, raw JSON responses for both the legacy internal database and the new Candid Premier API below.

Legacy Payload (Internal Database) 

Note: This structure is being deprecated.

{
	"sources": {
		"org.guidestar.main.v1": [
			{
				"hash": "a1a35081f1939a7ecbcc05f1fb0557cf",
				"record": {
					"ein": "94-3347800",
					"zip": "94105",
					"city": "San Francisco",
					"state": "CA",
					"country": "",
					"mission": "The Salesforce Foundation funds education and workforce development programs that equip young people with the skills, opportunities, and support to reach their full potential. Together with our partners, we are committed to creating a world where equitable futures are available to everyone.",
					"bridge_id": "3460080067",
					"ntee_code": "T30",
					"parent_org": "",
					"ofac_status": "N",
					"ruling_year": "2000",
					"website_url": "https://www.salesforce.com/company/philanthropy/salesforce-foundation/",
					"509_a_status": "Only applies to 501(c)(3) public charities",
					"assets_total": "395528825",
					"MostRecentIRB": "2026-01-12 00:00:00",
					"also_known_as": "Salesforce.com Foundation",
					"revenue_total": "37717252",
					"address_line_1": "Salesforce West",
					"address_line_2": "50 Fremont Street, Suite 300",
					"expenses_total": "37722798",
					"pub78_verified": "Y",
					"fiscal_year_end": "2024-01-31 00:00:00",
					"foundation_code": "04",
					"most_recent_bmf": "2025-12-10 00:00:00",
					"no_of_employees": "",
					"organization_id": "8424440",
					"subsection_code": "501(c)(3)",
					"impact_statement": "",
					"no_of_volunteers": "",
					"charity_check_aka": "Salesforce.com Foundation",
					"doing_business_as": "Salesforce.com Foundation",
					"fiscal_year_start": "2023-02-01 00:00:00",
					"irb_last_modified": "",
					"liabilities_total": "870787",
					"most_recent_pub78": "2025-12-12 00:00:00",
					"organization_name": "Salesforce.com/Foundation",
					"total_grants_made": "27",
					"year_incorporated": "1999",
					"bmf_pub78_conflict": "0",
					"incorporation_year": "1999",
					"reinstatement_date": "",
					"revenue_govt_grants": "",
					"revenue_investments": "",
					"sum_of_grant_amounts": "36145900",
					"ntee_code_description": "Public Foundations",
					"racial_social_justice": "",
					"revenue_contributions": "34009105",
					"areas_served_narrative": "",
					"subsection_description": "Private Foundations and Public Charities",
					"fundraising_contact_email": "",
					"fundraising_contact_title": "",
					"fundraising_contact_prefix": "",
					"charity_check_last_modified": "2025-09-22 10:10:50.893000000",
					"foundation_code_description": "Private nonoperating foundation",
					"affiliation_code_description": "Independent - This code is used if the organization is an indepenedent organization or an independent auxiliary (i.e., not affiliated with a a National, Regional, or Geographic grouping of organizations).",
					"fundraising_contact_last_name": "",
					"fundraising_contact_first_name": ""
				},
				"create_timestamp": 1768232224,
				"update_timestamp": 1768232224
			}
		]
	},
	"metadata": {
		"create_timestamp": 1682332011000,
		"update_timestamp": 1768898980000
	},
	"identifiers": [
		{
			"id": "org.guidestar.main.v1.organization_id",
			"type": "unique_identifier",
			"value": "8424440",
			"dataset": "org.guidestar.main.v1",
			"is_unique": true,
			"country_code": "US"
		},
		{
			"id": "gov.us.ein",
			"type": "common_identifier",
			"value": "94-3347800",
			"dataset": "org.guidestar.main.v1",
			"is_unique": false,
			"country_code": "US"
		},
		{
			"id": "organization_name",
			"value": "Salesforce.com/Foundation",
			"type": "common_identifier",
			"dataset": "_all"
		}
	]
}

New Payload (Candid Premier API) 

Note: This is the active format effective immediately upon upgrade.

{
   "code":200,
   "message":"Request was processed successfully!",
   "took":79,
   "errors":[
      
   ],
   "data":{
      "summary":{
         "organization_id":8424440,
         "organization_name":"Salesforce Foundation",
         "ein":"94-3347800",
         "bridge_id":"",
         "address_line_1":"Salesforce West 50 Fremont Street Suite 300",
         "address_line_2":"",
         "city":"San Francisco",
         "state":"CA",
         "zip":"94105",
         "county":"San Francisco",
         "latitude":"37.791071",
         "longitude":"-122.397456",
         "fax":"(415)901-8501",
         "govt_registered_name":"Salesforce Com Foundation",
         "also_known_as":"Salesforce.com Foundation",
         "fiscal_year_end":" ",
         "fiscal_year_start":" ",
         "affiliation_code":"3",
         "affiliation_description":"Independent - This code is used if the organization is an indepenedent organization or an independent auxiliary (i.e., not affiliated with a a National, Regional, or Geographic grouping of organizations).",
         "contact_name":" ",
         "contact_title":"",
         "contact_email":"",
         "contact_phone":"866-924-0450",
         "contact_fax":"415-901-8501",
         "gs_profile_update_level":"None",
         "gs_profile_update_level_logo":"Not found",
         "deductibility_code":"1",
         "deductibility_description":"Contributions are deductible, as provided by law",
         "donation_to_ein":"",
         "donation_to_name":"",
         "donation_page":"",
         "areas_served_narrative":"",
         "ruling_year":"2000",
         "gs_public_report":"https://www.guidestar.org/profile/94-3347800",
         "gs_pro_pdf":"https://apidata.guidestar.org/premier/v1/propdf/94-3347800",
         "gs_financial_trends_analysis_pdf":"https://apidata.guidestar.org/premier/v1/ftapdf/94-3347800",
         "impact_statement":"",
         "subsection_code":"03",
         "subsection_description":"501(c)(3) Private Nonoperating Foundation",
         "keywords":"Salesforce, Foundation, Education, Workforce Development, Communities, Equity, Philanthropy",
         "logo_url":"https://docs.candid.org/edoc/6261759",
         "mission":"The Salesforce Foundation funds education and workforce development programs that equip young people with the skills, opportunities, and support to reach their full potential. Together with our partners, we are committed to creating a world where equitable futures are available to everyone.",
         "is_national_hq":false,
         "demographics_status":"This organization has provided Candid Demographics Data on 10/20/2025",
         "demographics_status_nonprofit":"Your organization has provided Candid Demographics Data on 10/20/2025",
         "ntee_code":"T30 -  Public Foundations",
         "sdg":{
            "id":17,
            "description":"Partnerships for the Goals"
         },
         "website_url":"http://WWW.SALESFORCE.COM/COMPANY/PHI",
         "year_founded":"",
         "year_incorporated":"1999",
         "is_non_bmf_org":false,
         "first_on_bmf_date":"2002-06-13T14:49:00Z",
         "last_on_bmf_date":"2025-12-10T00:00:00Z",
         "profile_data_change_dates":{
            "primary_address_last_modified":"2020-11-04T17:04:47Z",
            "payment_address_last_modified":null,
            "primary_contact_email_last_modified":null,
            "fundraising_contact_email_last_modified":null,
            "org_website_last_modified":"2020-11-30T13:42:20Z",
            "seal_last_modified":null,
            "dei_last_modified":"2025-10-20T17:20:08Z"
         },
         "addresses":[
            {
               "address_line_1":"Salesforce West 50 Fremont Street Suite 300",
               "address_line_2":"",
               "city":"San Francisco",
               "state":"CA",
               "postal_code":"94105",
               "country":"USA",
               "address_type":"Main Address"
            },
            {
               "address_line_1":"50 Fremont St Ste 300",
               "address_line_2":"",
               "city":"San Francisco",
               "state":"CA",
               "postal_code":"94105-2231",
               "country":"USA",
               "address_type":"Physical Address"
            }
         ],
         "affiliations":null,
         "awards":null,
         "formerly_known_as":[
            {
               "former_name":"",
               "year":""
            }
         ],
         "forms_1023_1024":null,
         "letters_of_determination":null,
         "letters_of_dissolution":null,
         "ntee_codes":[
            {
               "ntee_code":"T30",
               "primary_code":"T",
               "primary_description":"Philanthropy, Voluntarism, and Grantmaking Foundations",
               "sub_code":"30",
               "sub_description":" Public Foundations"
            }
         ],
         "naics_code":{
            "naics_code":"813211",
            "naics_description":"Grantmaking Foundations"
         },
         "sic_codes":[
            {
               "sic_code":"6732",
               "sic_description":"TRUSTS: EDUCATIONAL, RELIGIOUS, ETC."
            }
         ],
         "platinum_evaluation_documents":[
            {
               "document_name":"",
               "document_year":"2020",
               "document_url":"https://docs.candid.org/edoc/6261758/document.pdf",
               "document_type":"audited financials"
            }
         ],
         "other_documents":[
            
         ],
         "photos":[
            
         ],
         "social_media_urls":[
            "https://www.facebook.com/Salesforce.comFoundation",
            "https://twitter.com/SFDCFoundation",
            "http://www.youtube.com/salesforcefoundation"
         ],
         "telephone_numbers":[
            {
               "telephone_number":"866-924-0450",
               "telephone_type":"Preferred"
            }
         ],
         "videos":[
            
         ],
         "org_collect_feedback":false,
         "org_feedback_example":"",
         "org_quiz_interest":null,
         "org_learn_more":null,
         "feedback_responses":[
            
         ],
         "pcs_codes":[
            {
               "pcs_facet":"Subject",
               "pcs_code":"SB000000",
               "pcs_description":"Education",
               "pcs_parent_code":"",
               "pcs_parent_description":""
            },
            {
               "pcs_facet":"Support",
               "pcs_code":"UF0200",
               "pcs_description":"Equipment",
               "pcs_parent_code":"UF0000",
               "pcs_parent_description":"Capital and infrastructure"
            },
            {
               "pcs_facet":"Support",
               "pcs_code":"UN0000",
               "pcs_description":"Program support",
               "pcs_parent_code":"",
               "pcs_parent_description":""
            },
            {
               "pcs_facet":"Support",
               "pcs_code":"UD0100",
               "pcs_description":"Technical assistance",
               "pcs_parent_code":"UD0000",
               "pcs_parent_description":"Capacity-building and technical assistance"
            },
            {
               "pcs_facet":"Transaction",
               "pcs_code":"TD00",
               "pcs_description":"Employee matching gifts",
               "pcs_parent_code":"",
               "pcs_parent_description":""
            },
            {
               "pcs_facet":"Transaction",
               "pcs_code":"TK00",
               "pcs_description":"Grants to individuals",
               "pcs_parent_code":"",
               "pcs_parent_description":""
            },
            {
               "pcs_facet":"Population",
               "pcs_code":"PG030200",
               "pcs_description":"Low-income people",
               "pcs_parent_code":"PG030000",
               "pcs_parent_description":"Economically disadvantaged people"
            },
            {
               "pcs_facet":"Organization",
               "pcs_code":"EA030100",
               "pcs_description":"Company-sponsored foundations",
               "pcs_parent_code":"EA030000",
               "pcs_parent_description":"Foundations"
            }
         ],
         "profile_sdg_codes":[
            {
               "id":4,
               "description":"Quality Education"
            },
            {
               "id":8,
               "description":"Decent Work and Economic Growth"
            },
            {
               "id":11,
               "description":"Sustainable Cities and Communities"
            }
         ]
      },
      "programs":{
         "programs":[
            {
               "name":"Technology Grants for Youth Development",
               "description":"These grants are awarded to visionary nonprofit organizations, which focus on youth development, for technology projects or solutions that advance their organization's core mission. Grants are awarded in a range between $5,000 and $15,000, and are funded in $5,000 increments",
               "target_population":"",
               "target_population2":"",
               "budget":"",
               "areas_served":[
                  
               ]
            },
            {
               "name":"Turn It Up Grants",
               "description":"These $10,000 grants are awarded to visionary nonprofit organizations to enable them to develop their use of salesforce.com applications. Successful applicants show that customization and enhanced use of salesforce.com technology support their ability to implement their social change mission. Eligible applicants must be active (at least one login per week for at least one year) users of the salesforce.com application, and be based in Africa, Australia, Europe, Hong Kong, India, Japan, Middle East, New Zealand, Singapore, or Thailand",
               "target_population":"",
               "target_population2":"",
               "budget":"",
               "areas_served":[
                  
               ]
            },
            {
               "name":"Development Grants",
               "description":"This program provides one application development grant to a nonprofit customer or partner to develop a replicable application for salesforce.com's AppExchange, that is specifically designed for the nonprofit sector and provided at no cost. Proposals must address a specific need that prevails in the nonprofit sector, is not currently being addressed by existing salesforce.com solution partners, and has the ability to be shared via the AppExchange to the nonprofit community with minimal associated costs to nonprofit organizations for implementation and maintenance",
               "target_population":"",
               "target_population2":"",
               "budget":"",
               "areas_served":[
                  
               ]
            },
            {
               "name":"Community Action Team (CAT) Grants",
               "description":"These grants, open only to salesforce.com employees, are inspired and led by employees who partner with local charitable organizations to identify needs, plan activities, and participate in volunteer activities",
               "target_population":"",
               "target_population2":"",
               "budget":"",
               "areas_served":[
                  
               ]
            },
            {
               "name":"Dollars for Doers",
               "description":"Salesforce.com employees who have volunteered a minimum of ten hours with an organization in any given year are eligible for a grant. For every ten hours volunteered, the foundation will donate $100, with an annual donation cap of $500 per employee",
               "target_population":"",
               "target_population2":"",
               "budget":"",
               "areas_served":[
                  
               ]
            }
         ],
         "platinum_metrics":[
            
         ],
         "charting_impact_answers":[
            {
               "question":"How would you summarize the problem or need your organization is working to address?",
               "answer":"We are committed to: providing students with the resources and educational experiences they need to realize their potential; ensuring that young people—regardless of background, circumstance, or postal code—have the skills, networks, and opportunities to thrive in the careers of today and tomorrow; and ending homelessness and disrupting the cycle of poverty so that all children, families, and communities have an equal shot at success."
            }
         ]
      },
      "financials":{
         "most_recent_year_financials":{
            "period_begin":"2024-02-01T00:00:00Z",
            "period_end":"2025-01-31T00:00:00Z",
            "fiscal_year":2025,
            "form_type":"990PF",
            "data_source":"IRS Form 990",
            "assets_total":397888517,
            "total_liabilities":535093,
            "revenue_contributions":0,
            "revenue_govt_grants":0,
            "revenue_program_services":0,
            "revenue_investments":22851156,
            "revenue_special_events":0,
            "revenue_sales":0,
            "revenue_other":0,
            "total_revenue":0,
            "expense_administration":0,
            "expense_program_services":0,
            "expense_fundraising":0,
            "expense_accounting":59220,
            "expense_advertising_promotion":0,
            "expense_info_technology":0,
            "expense_insurance":0,
            "expense_interest":0,
            "expense_investment_management":0,
            "expense_legal":3291,
            "expense_pension_plan":0,
            "expense_professional_fundraising":0,
            "unrestricted_net_assets":0,
            "net_fixed_assets_LBE":0,
            "notes_payable_mortgages":0,
            "months_of_cash":"",
            "expense_professional_fees":1406000,
            "expense_publications":0,
            "expense_operating_admin":1959590,
            "expense_gifts_grants_paid":35938600,
            "total_expense_disbursements":37898190,
            "expenses_total":37898190,
            "net_gain_loss":-23763381,
            "expense_salaries_employee_benefits":0,
            "cash_and_equivalent_assets":2015120,
            "investments_us_government":0,
            "investments_stock":0,
            "investments_bonds":0,
            "investments_other":395873397,
            "land_buildings_equipment":0,
            "other_assets":0
         },
         "f990_financials":null,
         "pf990_financials":[
            {
               "period_begin":"2024-02-01T00:00:00Z",
               "period_end":"2025-01-31T00:00:00Z",
               "cash_equivalent_investible_assets":2015120,
               "net_investment_income":22851156,
               "adjusted_net_income":0,
               "total_operating_expenses":1959590,
               "contributions":35938600,
               "total_expenses":37898190,
               "expense_accounting":59220,
               "expense_interest":0,
               "expense_legal":3291,
               "expense_professional_fees":1406000,
               "expense_pension_plans":0,
               "expense_publications":0,
               "investments_us_state_govt":0,
               "investments_stocks":0,
               "investments_bonds":0,
               "investments_other":395873397,
               "land_buildings_equipment":0,
               "other_assets":0,
               "total_assets":397888517,
               "total_liabilities":535093,
               "net_assets":397353424,
               "income_total":14134809
            },
            {
               "period_begin":"2023-02-01T00:00:00Z",
               "period_end":"2024-01-31T00:00:00Z",
               "cash_equivalent_investible_assets":20026679,
               "net_investment_income":14539459,
               "adjusted_net_income":0,
               "total_operating_expenses":1576898,
               "contributions":36145900,
               "total_expenses":37722798,
               "expense_accounting":56900,
               "expense_interest":0,
               "expense_legal":2430,
               "expense_professional_fees":1270000,
               "expense_pension_plans":0,
               "expense_publications":0,
               "investments_us_state_govt":0,
               "investments_stocks":0,
               "investments_bonds":0,
               "investments_other":375502146,
               "land_buildings_equipment":0,
               "other_assets":0,
               "total_assets":395528825,
               "total_liabilities":870787,
               "net_assets":394658038,
               "income_total":37717252
            },
            {
               "period_begin":"2022-02-01T00:00:00Z",
               "period_end":"2023-01-31T00:00:00Z",
               "cash_equivalent_investible_assets":21973172,
               "net_investment_income":7673713,
               "adjusted_net_income":0,
               "total_operating_expenses":1705003,
               "contributions":36172950,
               "total_expenses":37877953,
               "expense_accounting":52600,
               "expense_interest":0,
               "expense_legal":16119,
               "expense_professional_fees":1610000,
               "expense_pension_plans":0,
               "expense_publications":0,
               "investments_us_state_govt":0,
               "investments_stocks":0,
               "investments_bonds":0,
               "investments_other":354462908,
               "land_buildings_equipment":0,
               "other_assets":0,
               "total_assets":376436080,
               "total_liabilities":632243,
               "net_assets":375803837,
               "income_total":22816250
            },
            {
               "period_begin":"2021-02-01T00:00:00Z",
               "period_end":"2022-01-31T00:00:00Z",
               "cash_equivalent_investible_assets":1212836,
               "net_investment_income":9540420,
               "adjusted_net_income":0,
               "total_operating_expenses":1872381,
               "contributions":32666460,
               "total_expenses":34538841,
               "expense_accounting":51900,
               "expense_interest":0,
               "expense_legal":6688,
               "expense_professional_fees":1405063,
               "expense_pension_plans":0,
               "expense_publications":0,
               "investments_us_state_govt":0,
               "investments_stocks":0,
               "investments_bonds":145468271,
               "investments_other":269993035,
               "land_buildings_equipment":0,
               "other_assets":0,
               "total_assets":419674142,
               "total_liabilities":910663,
               "net_assets":418763479,
               "income_total":105083193
            },
            {
               "period_begin":"2020-02-01T00:00:00Z",
               "period_end":"2021-01-31T00:00:00Z",
               "cash_equivalent_investible_assets":1489822,
               "net_investment_income":2133879,
               "adjusted_net_income":0,
               "total_operating_expenses":1414286,
               "contributions":32080000,
               "total_expenses":33494286,
               "expense_accounting":50450,
               "expense_interest":0,
               "expense_legal":7313,
               "expense_professional_fees":796842,
               "expense_pension_plans":0,
               "expense_publications":0,
               "investments_us_state_govt":0,
               "investments_stocks":0,
               "investments_bonds":111545641,
               "investments_other":209442000,
               "land_buildings_equipment":0,
               "other_assets":0,
               "total_assets":330477463,
               "total_liabilities":545522,
               "net_assets":329931941,
               "income_total":23288237
            }
         ],
         "f990ez_financials":null,
         "financial_trends_analysis":[
            
         ],
         "financial_documents":[
            {
               "form990_name":"2025 Form 990",
               "form990_year":"2025",
               "form990_url":"https://pdf.guidestar.org/PDF_Images/2025/943/347/2025-943347800-202543499349100119-F.pdf",
               "form990_source":"US IRS"
            },
            {
               "form990_name":"2024 Form 990",
               "form990_year":"2024",
               "form990_url":"https://pdf.guidestar.org/PDF_Images/2024/943/347/2024-943347800-202413479349100016-.pdf",
               "form990_source":"US IRS"
            },
            {
               "form990_name":"2023 Form 990",
               "form990_year":"2023",
               "form990_url":"https://pdf.guidestar.org/PDF_Images/2023/943/347/2023-943347800-202343489349100119-F.pdf",
               "form990_source":"US IRS"
            },
            {
               "form990_name":"2022 Form 990",
               "form990_year":"2022",
               "form990_url":"https://pdf.guidestar.org/PDF_Images/2022/943/347/2022-943347800-202223479349100217-F.pdf",
               "form990_source":"US IRS"
            },
            {
               "form990_name":"2021 Form 990",
               "form990_year":"2021",
               "form990_url":"https://pdf.guidestar.org/PDF_Images/2021/943/347/2021-943347800-19911818-F.pdf",
               "form990_source":"US IRS"
            },
            {
               "form990_name":"2021 Form 990",
               "form990_year":"2021",
               "form990_url":"https://pdf.guidestar.org/PDF_Images/2021/943/347/2021-943347800-202113019349100131-F.pdf",
               "form990_source":"US IRS"
            },
            {
               "form990_name":"2020 Form 990",
               "form990_year":"2020",
               "form990_url":"https://pdf.guidestar.org/PDF_Images/2020/943/347/2020-943347800-18358630-F.pdf",
               "form990_source":"US IRS"
            },
            {
               "form990_name":"2018 Form 990",
               "form990_year":"2018",
               "form990_url":"https://pdf.guidestar.org/PDF_Images/2018/943/347/2018-943347800-10474238-F.pdf",
               "form990_source":"US IRS"
            },
            {
               "form990_name":"2017 Form 990",
               "form990_year":"2017",
               "form990_url":"https://pdf.guidestar.org/PDF_Images/2017/943/347/2017-943347800-0ecd1081-F.pdf",
               "form990_source":"US IRS"
            },
            {
               "form990_name":"2016 Form 990",
               "form990_year":"2016",
               "form990_url":"https://pdf.guidestar.org/PDF_Images/2016/943/347/2016-943347800-0d56ed97-F.pdf",
               "form990_source":"US IRS"
            },
            {
               "form990_name":"2015 Form 990",
               "form990_year":"2015",
               "form990_url":"https://pdf.guidestar.org/PDF_Images/2015/943/347/2015-943347800-0c2f4f42-9.pdf",
               "form990_source":"US IRS"
            },
            {
               "form990_name":"2014 Form 990",
               "form990_year":"2014",
               "form990_url":"https://pdf.guidestar.org/PDF_Images/2014/943/347/2014-943347800-0ac375fd-9.pdf",
               "form990_source":"US IRS"
            },
            {
               "form990_name":"2013 Form 990",
               "form990_year":"2013",
               "form990_url":"https://pdf.guidestar.org/PDF_Images/2013/943/347/2013-943347800-0960bcb9-9.pdf",
               "form990_source":"US IRS"
            },
            {
               "form990_name":"2012 Form 990",
               "form990_year":"2012",
               "form990_url":"https://pdf.guidestar.org/PDF_Images/2012/943/347/2012-943347800-091d5e63-9.pdf",
               "form990_source":"US IRS"
            },
            {
               "form990_name":"2011 Form 990",
               "form990_year":"2011",
               "form990_url":"https://pdf.guidestar.org/PDF_Images/2011/943/347/2011-943347800-0874a851-9.pdf",
               "form990_source":"US IRS"
            },
            {
               "form990_name":"2010 Form 990",
               "form990_year":"2010",
               "form990_url":"https://pdf.guidestar.org/PDF_Images/2010/943/347/2010-943347800-077b65f0-9.pdf",
               "form990_source":"US IRS"
            },
            {
               "form990_name":"2009 Form 990",
               "form990_year":"2009",
               "form990_url":"https://pdf.guidestar.org/PDF_Images/2009/943/347/2009-943347800-066a7fa8-9.pdf",
               "form990_source":"US IRS"
            },
            {
               "form990_name":"2008 Form 990",
               "form990_year":"2008",
               "form990_url":"https://pdf.guidestar.org/PDF_Images/2008/943/347/2008-943347800-051d4268-9.pdf",
               "form990_source":"US IRS"
            },
            {
               "form990_name":"2007 Form 990",
               "form990_year":"2007",
               "form990_url":"https://pdf.guidestar.org/PDF_Images/2007/943/347/2007-943347800-040d82b7-9.pdf",
               "form990_source":"US IRS"
            },
            {
               "form990_name":"2006 Form 990",
               "form990_year":"2006",
               "form990_url":"https://pdf.guidestar.org/PDF_Images/2006/943/347/2006-943347800-02d7a3c7-9.pdf",
               "form990_source":"US IRS"
            },
            {
               "form990_name":"2005 Form 990",
               "form990_year":"2005",
               "form990_url":"https://pdf.guidestar.org/PDF_Images/2005/943/347/2005-943347800-021024cb-9.pdf",
               "form990_source":"US IRS"
            },
            {
               "form990_name":"2004 Form 990",
               "form990_year":"2004",
               "form990_url":"https://pdf.guidestar.org/PDF_Images/2004/943/347/2004-943347800-1-9.pdf",
               "form990_source":"US IRS"
            },
            {
               "form990_name":"2002 Form 990",
               "form990_year":"2002",
               "form990_url":"https://pdf.guidestar.org/PDF_Images/2002/943/347/2002-943347800-1-9.pdf",
               "form990_source":"US IRS"
            },
            {
               "form990_name":"2001 Form 990",
               "form990_year":"2001",
               "form990_url":"https://pdf.guidestar.org/PDF_Images/2001/943/347/2001-943347800-1-9.pdf",
               "form990_source":"US IRS"
            },
            {
               "form990_name":"2000 Form 990",
               "form990_year":"2000",
               "form990_url":"https://pdf.guidestar.org/PDF_Images/2000/943/347/2000-943347800-1-9.pdf",
               "form990_source":"US IRS"
            }
         ],
         "forms_990T":[
            
         ],
         "funding_needs":null,
         "funding_sources":[
            {
               "funding_source":"",
               "funding_amount":""
            },
            {
               "funding_source":"",
               "funding_amount":""
            },
            {
               "funding_source":"",
               "funding_amount":""
            }
         ],
         "financial_statements":[
            {
               "fiscal_year_begin":"",
               "fiscal_year_end":"2020",
               "auditing_company":"",
               "doc_name":"",
               "document_url":"https://docs.candid.org/edoc/6261758/document.pdf"
            }
         ],
         "annual_reports":[
            
         ],
         "accounting_ratios":[
            {
               "year":2015,
               "months_of_cash":"1.27",
               "liquidity":"0.35",
               "fringe_rate":"0.00",
               "net_gain_loss":"3372706.00"
            },
            {
               "year":2014,
               "months_of_cash":"0.19",
               "liquidity":"0.03",
               "fringe_rate":"0.00",
               "net_gain_loss":"-10939688.00"
            },
            {
               "year":2013,
               "months_of_cash":"0.42",
               "liquidity":"0.04",
               "fringe_rate":"0.00",
               "net_gain_loss":"-6771244.00"
            },
            {
               "year":2012,
               "months_of_cash":"0.84",
               "liquidity":"0.23",
               "fringe_rate":"0.16",
               "net_gain_loss":"-2311056.00"
            },
            {
               "year":2011,
               "months_of_cash":"1.83",
               "liquidity":"0.88",
               "fringe_rate":"0.23",
               "net_gain_loss":"-4061223.00"
            },
            {
               "year":2010,
               "months_of_cash":"12.50",
               "liquidity":"6.40",
               "fringe_rate":"0.17",
               "net_gain_loss":"-1946184.00"
            },
            {
               "year":2009,
               "months_of_cash":"22.71",
               "liquidity":"14.54",
               "fringe_rate":"0.18",
               "net_gain_loss":"-426449.00"
            }
         ]
      },
      "operations":{
         "leader_name":"",
         "leader_profile":"",
         "co_leader_name":" ",
         "co_leader_profile":"",
         "no_of_employees":null,
         "no_of_volunteers":null,
         "organization_email":"",
         "organization_details_year":2025,
         "officers_directors_key_employees":[
            {
               "name":"Marc Benioff",
               "title":"CHAIRMAN",
               "type":[
                  "Officer"
               ],
               "compensation":0,
               "related_compensation":0,
               "other_compensation":0,
               "hours":"",
               "benefits":""
            },
            {
               "name":"Ronald Conway",
               "title":"DIRECTOR",
               "type":[
                  "Officer"
               ],
               "compensation":0,
               "related_compensation":0,
               "other_compensation":0,
               "hours":"",
               "benefits":""
            },
            {
               "name":"Laura Scher",
               "title":"DIRECTOR",
               "type":[
                  "Officer"
               ],
               "compensation":0,
               "related_compensation":0,
               "other_compensation":0,
               "hours":"",
               "benefits":""
            },
            {
               "name":"Rebecca Ferguson",
               "title":"CEO",
               "type":[
                  "Officer"
               ],
               "compensation":0,
               "related_compensation":0,
               "other_compensation":0,
               "hours":"",
               "benefits":""
            },
            {
               "name":"Samuel Chung",
               "title":"CFO & TREASURER THROUGH 1/2025",
               "type":[
                  "Officer"
               ],
               "compensation":0,
               "related_compensation":0,
               "other_compensation":0,
               "hours":"",
               "benefits":""
            },
            {
               "name":"Joachim Wettermark",
               "title":"CFO & TREASURER START 1/2025",
               "type":[
                  "Officer"
               ],
               "compensation":0,
               "related_compensation":0,
               "other_compensation":0,
               "hours":"",
               "benefits":""
            },
            {
               "name":"Sarah Dods",
               "title":"SECRETARY",
               "type":[
                  "Officer"
               ],
               "compensation":0,
               "related_compensation":0,
               "other_compensation":0,
               "hours":"",
               "benefits":""
            },
            {
               "name":"Michael Butler",
               "title":"ASSISTANT TREASURER",
               "type":[
                  "Officer"
               ],
               "compensation":0,
               "related_compensation":0,
               "other_compensation":0,
               "hours":"",
               "benefits":""
            },
            {
               "name":"Lara Mouritsen",
               "title":"ASSISTANT SECRETARY",
               "type":[
                  "Officer"
               ],
               "compensation":0,
               "related_compensation":0,
               "other_compensation":0,
               "hours":"",
               "benefits":""
            },
            {
               "name":"Maggie Tan",
               "title":"FINANCE DIRECTOR",
               "type":[
                  "Officer"
               ],
               "compensation":0,
               "related_compensation":0,
               "other_compensation":0,
               "hours":"",
               "benefits":""
            }
         ],
         "highest_paid_employees":[
            
         ],
         "employees_greater_than_100K":0,
         "board_chair_name":" ",
         "board_chair_affiliation":"",
         "board_chair_term_start":"",
         "board_chair_term_end":"",
         "board_co_chair_name":" ",
         "board_co_chair_affiliation":"",
         "board_co_chair_term_start":"",
         "board_co_chair_term_end":"",
         "board_of_directors":[
            {
               "name":"Laura Scher",
               "title":"SECRETARY/TREASURER",
               "company":""
            },
            {
               "name":"Marc Benioff",
               "title":"CHAIRMAN",
               "company":""
            }
         ],
         "board_leadership_practices":[
            {
               "question":"Does the board conduct a formal orientation for new board members and require all board members to sign a written agreement regarding their roles, responsibilities, and expectations? ",
               "answer":"n/a"
            },
            {
               "question":"Has the board conducted a formal, written assessment of the chief executive within the past year?",
               "answer":"n/a"
            },
            {
               "question":"Have the board and senior staff reviewed the conflict-of-interest policy and completed and signed disclosure statements within the past year?",
               "answer":"n/a"
            },
            {
               "question":"Does the board ensure an inclusive board member recruitment process that results in diversity of thought and leadership?",
               "answer":"n/a"
            },
            {
               "question":"Does the board conducted a formal, written self-assessment of its performance within the past three years?",
               "answer":"n/a"
            }
         ],
         "organization_demographics":{
            "total_board_members":null,
            "total_fulltime_staff":null,
            "total_parttime_staff":null,
            "total_staff":0,
            "total_senior_staff":null,
            "tracks_staffboardvol_retention":false,
            "tracks_staffboard_income":false,
            "tracks_staffboard_age":false,
            "tracks_vendor_diversity":false,
            "has_diversity_committee":false,
            "has_diversity_manager":false,
            "diversity_manager_fulltime":false,
            "diversity_plan":false,
            "supports_diversity_via_other_methods":false,
            "equity_strategies":{
               "data_compensation":null,
               "data_disparities":null,
               "data_root_cause":null,
               "data_programming_goals":null,
               "data_feedback":null,
               "data_demographics":null,
               "data_strategic_plan":null,
               "policy_standards":null,
               "policy_promotion":null,
               "policy_evaluation":null,
               "policy_community":null,
               "policy_leadership":null,
               "policy_satisfaction":null,
               "policy_equity":null,
               "equity_strategy_last_modified":""
            },
            "categories":[
               {
                  "category":"Gender Identity",
                  "org_does_not_collect_for":{
                     "board_members":false,
                     "full_time_staff":false,
                     "part_time_staff":false,
                     "all_staff":false,
                     "senior_staff":false,
                     "executive_director":false
                  },
                  "subcategories":[
                     {
                        "subcategory":"10",
                        "staff_levels":[
                           {
                              "staff_level":"board_members",
                              "count":null
                           },
                           {
                              "staff_level":"full_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"part_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"all_staff",
                              "count":null
                           },
                           {
                              "staff_level":"senior_staff",
                              "count":null
                           },
                           {
                              "staff_level":"executive_director",
                              "count":null
                           }
                        ]
                     },
                     {
                        "subcategory":"11",
                        "staff_levels":[
                           {
                              "staff_level":"board_members",
                              "count":null
                           },
                           {
                              "staff_level":"full_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"part_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"all_staff",
                              "count":null
                           },
                           {
                              "staff_level":"senior_staff",
                              "count":null
                           },
                           {
                              "staff_level":"executive_director",
                              "count":null
                           }
                        ]
                     },
                     {
                        "subcategory":"12",
                        "staff_levels":[
                           {
                              "staff_level":"board_members",
                              "count":null
                           },
                           {
                              "staff_level":"full_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"part_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"all_staff",
                              "count":null
                           },
                           {
                              "staff_level":"senior_staff",
                              "count":null
                           },
                           {
                              "staff_level":"executive_director",
                              "count":null
                           }
                        ]
                     },
                     {
                        "subcategory":"29",
                        "staff_levels":[
                           {
                              "staff_level":"board_members",
                              "count":null
                           },
                           {
                              "staff_level":"full_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"part_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"all_staff",
                              "count":null
                           },
                           {
                              "staff_level":"senior_staff",
                              "count":null
                           },
                           {
                              "staff_level":"executive_director",
                              "count":null
                           }
                        ]
                     },
                     {
                        "subcategory":"13",
                        "staff_levels":[
                           {
                              "staff_level":"board_members",
                              "count":null
                           },
                           {
                              "staff_level":"full_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"part_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"all_staff",
                              "count":null
                           },
                           {
                              "staff_level":"senior_staff",
                              "count":null
                           },
                           {
                              "staff_level":"executive_director",
                              "count":null
                           }
                        ]
                     },
                     {
                        "subcategory":"14",
                        "staff_levels":[
                           {
                              "staff_level":"board_members",
                              "count":null
                           },
                           {
                              "staff_level":"full_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"part_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"all_staff",
                              "count":null
                           },
                           {
                              "staff_level":"senior_staff",
                              "count":null
                           },
                           {
                              "staff_level":"executive_director",
                              "count":null
                           }
                        ]
                     }
                  ]
               },
               {
                  "category":"Race and Ethnicity",
                  "org_does_not_collect_for":{
                     "board_members":false,
                     "full_time_staff":false,
                     "part_time_staff":false,
                     "all_staff":false,
                     "senior_staff":false,
                     "executive_director":false
                  },
                  "subcategories":[
                     {
                        "subcategory":"1",
                        "staff_levels":[
                           {
                              "staff_level":"board_members",
                              "count":null
                           },
                           {
                              "staff_level":"full_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"part_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"all_staff",
                              "count":null
                           },
                           {
                              "staff_level":"senior_staff",
                              "count":null
                           },
                           {
                              "staff_level":"executive_director",
                              "count":null
                           }
                        ]
                     },
                     {
                        "subcategory":"2",
                        "staff_levels":[
                           {
                              "staff_level":"board_members",
                              "count":null
                           },
                           {
                              "staff_level":"full_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"part_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"all_staff",
                              "count":null
                           },
                           {
                              "staff_level":"senior_staff",
                              "count":null
                           },
                           {
                              "staff_level":"executive_director",
                              "count":null
                           }
                        ]
                     },
                     {
                        "subcategory":"3",
                        "staff_levels":[
                           {
                              "staff_level":"board_members",
                              "count":null
                           },
                           {
                              "staff_level":"full_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"part_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"all_staff",
                              "count":null
                           },
                           {
                              "staff_level":"senior_staff",
                              "count":null
                           },
                           {
                              "staff_level":"executive_director",
                              "count":null
                           }
                        ]
                     },
                     {
                        "subcategory":"27",
                        "staff_levels":[
                           {
                              "staff_level":"board_members",
                              "count":null
                           },
                           {
                              "staff_level":"full_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"part_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"all_staff",
                              "count":null
                           },
                           {
                              "staff_level":"senior_staff",
                              "count":null
                           },
                           {
                              "staff_level":"executive_director",
                              "count":null
                           }
                        ]
                     },
                     {
                        "subcategory":"4",
                        "staff_levels":[
                           {
                              "staff_level":"board_members",
                              "count":null
                           },
                           {
                              "staff_level":"full_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"part_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"all_staff",
                              "count":null
                           },
                           {
                              "staff_level":"senior_staff",
                              "count":null
                           },
                           {
                              "staff_level":"executive_director",
                              "count":null
                           }
                        ]
                     },
                     {
                        "subcategory":"28",
                        "staff_levels":[
                           {
                              "staff_level":"board_members",
                              "count":null
                           },
                           {
                              "staff_level":"full_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"part_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"all_staff",
                              "count":null
                           },
                           {
                              "staff_level":"senior_staff",
                              "count":null
                           },
                           {
                              "staff_level":"executive_director",
                              "count":null
                           }
                        ]
                     },
                     {
                        "subcategory":"5",
                        "staff_levels":[
                           {
                              "staff_level":"board_members",
                              "count":null
                           },
                           {
                              "staff_level":"full_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"part_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"all_staff",
                              "count":null
                           },
                           {
                              "staff_level":"senior_staff",
                              "count":null
                           },
                           {
                              "staff_level":"executive_director",
                              "count":null
                           }
                        ]
                     },
                     {
                        "subcategory":"6",
                        "staff_levels":[
                           {
                              "staff_level":"board_members",
                              "count":null
                           },
                           {
                              "staff_level":"full_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"part_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"all_staff",
                              "count":null
                           },
                           {
                              "staff_level":"senior_staff",
                              "count":null
                           },
                           {
                              "staff_level":"executive_director",
                              "count":null
                           }
                        ]
                     },
                     {
                        "subcategory":"7",
                        "staff_levels":[
                           {
                              "staff_level":"board_members",
                              "count":null
                           },
                           {
                              "staff_level":"full_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"part_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"all_staff",
                              "count":null
                           },
                           {
                              "staff_level":"senior_staff",
                              "count":null
                           },
                           {
                              "staff_level":"executive_director",
                              "count":null
                           }
                        ]
                     },
                     {
                        "subcategory":"8",
                        "staff_levels":[
                           {
                              "staff_level":"board_members",
                              "count":null
                           },
                           {
                              "staff_level":"full_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"part_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"all_staff",
                              "count":null
                           },
                           {
                              "staff_level":"senior_staff",
                              "count":null
                           },
                           {
                              "staff_level":"executive_director",
                              "count":null
                           }
                        ]
                     }
                  ]
               },
               {
                  "category":"Sexual Orientation",
                  "org_does_not_collect_for":{
                     "board_members":false,
                     "full_time_staff":false,
                     "part_time_staff":false,
                     "all_staff":false,
                     "senior_staff":false,
                     "executive_director":false
                  },
                  "subcategories":[
                     {
                        "subcategory":"19",
                        "staff_levels":[
                           {
                              "staff_level":"board_members",
                              "count":null
                           },
                           {
                              "staff_level":"full_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"part_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"all_staff",
                              "count":null
                           },
                           {
                              "staff_level":"senior_staff",
                              "count":null
                           },
                           {
                              "staff_level":"executive_director",
                              "count":null
                           }
                        ]
                     },
                     {
                        "subcategory":"20",
                        "staff_levels":[
                           {
                              "staff_level":"board_members",
                              "count":null
                           },
                           {
                              "staff_level":"full_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"part_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"all_staff",
                              "count":null
                           },
                           {
                              "staff_level":"senior_staff",
                              "count":null
                           },
                           {
                              "staff_level":"executive_director",
                              "count":null
                           }
                        ]
                     },
                     {
                        "subcategory":"31",
                        "staff_levels":[
                           {
                              "staff_level":"board_members",
                              "count":null
                           },
                           {
                              "staff_level":"full_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"part_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"all_staff",
                              "count":null
                           },
                           {
                              "staff_level":"senior_staff",
                              "count":null
                           },
                           {
                              "staff_level":"executive_director",
                              "count":null
                           }
                        ]
                     },
                     {
                        "subcategory":"21",
                        "staff_levels":[
                           {
                              "staff_level":"board_members",
                              "count":null
                           },
                           {
                              "staff_level":"full_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"part_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"all_staff",
                              "count":null
                           },
                           {
                              "staff_level":"senior_staff",
                              "count":null
                           },
                           {
                              "staff_level":"executive_director",
                              "count":null
                           }
                        ]
                     },
                     {
                        "subcategory":"22",
                        "staff_levels":[
                           {
                              "staff_level":"board_members",
                              "count":null
                           },
                           {
                              "staff_level":"full_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"part_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"all_staff",
                              "count":null
                           },
                           {
                              "staff_level":"senior_staff",
                              "count":null
                           },
                           {
                              "staff_level":"executive_director",
                              "count":null
                           }
                        ]
                     }
                  ]
               },
               {
                  "category":"Disability Status",
                  "org_does_not_collect_for":{
                     "board_members":false,
                     "full_time_staff":false,
                     "part_time_staff":false,
                     "senior_staff":false,
                     "executive_director":false
                  },
                  "subcategories":[
                     {
                        "subcategory":"23",
                        "staff_levels":[
                           {
                              "staff_level":"board_members",
                              "count":null
                           },
                           {
                              "staff_level":"full_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"part_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"all_staff",
                              "count":null
                           },
                           {
                              "staff_level":"senior_staff",
                              "count":null
                           },
                           {
                              "staff_level":"executive_director",
                              "count":null
                           }
                        ]
                     },
                     {
                        "subcategory":"24",
                        "staff_levels":[
                           {
                              "staff_level":"board_members",
                              "count":null
                           },
                           {
                              "staff_level":"full_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"part_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"all_staff",
                              "count":null
                           },
                           {
                              "staff_level":"senior_staff",
                              "count":null
                           },
                           {
                              "staff_level":"executive_director",
                              "count":null
                           }
                        ]
                     },
                     {
                        "subcategory":"25",
                        "staff_levels":[
                           {
                              "staff_level":"board_members",
                              "count":null
                           },
                           {
                              "staff_level":"full_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"part_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"all_staff",
                              "count":null
                           },
                           {
                              "staff_level":"senior_staff",
                              "count":null
                           },
                           {
                              "staff_level":"executive_director",
                              "count":null
                           }
                        ]
                     },
                     {
                        "subcategory":"26",
                        "staff_levels":[
                           {
                              "staff_level":"board_members",
                              "count":null
                           },
                           {
                              "staff_level":"full_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"part_time_staff",
                              "count":null
                           },
                           {
                              "staff_level":"all_staff",
                              "count":null
                           },
                           {
                              "staff_level":"senior_staff",
                              "count":null
                           },
                           {
                              "staff_level":"executive_director",
                              "count":null
                           }
                        ]
                     }
                  ]
               }
            ]
         },
         "demographics":null,
         "contractors":[
            {
               "name":"Russel Investments",
               "address":"1301 SECOND AVENUE  SEATTLE WA  98101  ",
               "compensation":"1220000",
               "service_type":"INVESTMENT MANAGEMENT SERVICES"
            },
            {
               "name":"Moss Adams Llp",
               "address":"101 SECOND STREET SUITE 900  SAN FRANCISCO CA  94105  ",
               "compensation":"59220",
               "service_type":"AUDIT & TAX SERVICES"
            }
         ],
         "blog_url":"",
         "fundraising_contact_name":"",
         "fundraising_contact_title":"",
         "fundraising_contact_email":"",
         "fundraising_contact_phone":"",
         "preparer_firm_name":"",
         "preparer_firm_address":"",
         "preparer_firm_ein":"",
         "preparer_firm_phone":"",
         "senior_staff":[
            
         ],
         "other_staff":[
            {
               "name":" ",
               "title":"",
               "type":""
            }
         ],
         "accreditations":[
            
         ]
      },
      "charitycheck":{
         "organization_id":"8424440",
         "organization_info_last_modified":"2/11/2025 3:30:39 PM",
         "ein":"94-3347800",
         "organization_name":"Salesforce Foundation",
         "organization_name_aka":"Salesforce.com Foundation",
         "address_line1":"50 Fremont St Ste 300",
         "address_line2":"",
         "city":"San Francisco",
         "state":"CA",
         "state_name":"California",
         "zip":"94105-2231",
         "filing_req_code":"001",
         "charity_check_last_modified":"9/22/2025 10:10:50 AM",
         "pub78_church_message":null,
         "pub78_organization_name":"Salesforce Com Foundation",
         "pub78_ein":"94-3347800",
         "pub78_verified":"True",
         "pub78_city":"San Francisco",
         "pub78_state":"CA",
         "pub78_indicator":"0",
         "organization_types":[
            {
               "organization_type":"A private foundation (30% deductibility limitation, generally).",
               "deductibility_limitation":"30% (generally)",
               "deductibility_status_description":"PF"
            }
         ],
         "most_recent_pub78":"12/12/2025 12:00:00 AM",
         "most_recent_irb":"2/2/2026 12:00:00 AM",
         "bmf_church_message":null,
         "bmf_organization_name":"SALESFORCE COM FOUNDATION",
         "bmf_ein":"94-3347800",
         "bmf_status":"True",
         "most_recent_bmf":"12/10/2025 12:00:00 AM",
         "bmf_subsection":"03",
         "subsection_description":"501(c)(3) Private Nonoperating Foundation",
         "foundation_code":"04",
         "foundation_code_description":"Private nonoperating foundation",
         "ruling_month":"05",
         "ruling_year":"2000",
         "adv_ruling_month":"09",
         "adv_ruling_year":"2004",
         "group_exemption":"0000",
         "exempt_status_code":"01",
         "ofac_status":"This organization was not included in the Office of Foreign Assets Control Specially Designated Nationals(SDN) list.",
         "revocation_code":"",
         "revocation_date":"",
         "reinstatement_date":"",
         "irs_bmf_pub78_conflict":"False",
         "foundation_509a_status":"Only applies to 501(c)(3) public charities",
         "irb_organization_id":"",
         "bulletin_number":"",
         "bulletin_url":"",
         "effective_date":"",
         "irb_last_modified":"",
         "report_date":"2/4/2026 10:30:03 PM",
         "foundation_type_code":"PF",
         "foundation_type_description":"Private non-operating foundation (section 509(a))",
         "parent_organizations":[
            
         ]
      }
   }
}

 

How can I get more information?

If you have any questions, open a case with support via Salesforce Help or contact your Salesforce account team.

Knowledge-artikelnummer

005313655

 
Laddar
Salesforce Help | Article