Federal Contractor

THE REGENTS OF THE UNIVERSITY OF CALIFORNIA (1741) Federal Contract Obligations (Last 5 Years)

Federal procurement profile for THE REGENTS OF THE UNIVERSITY OF CALIFORNIA (1741), CAGE 1V9S8, UEI ENBLDJUN4N73, covering obligations in the last 5 years.

Over the last 5 years, THE REGENTS OF THE UNIVERSITY OF CALIFORNIA recorded 71 award actions totaling $2,689,810,029.94 in obligated funding, with an average action value of $37,884,648.30. All observed obligations were awarded by the Department of Energy and classified under NAICS 541710 for research and development in the physical, engineering, and life sciences.

Generated at 03/21/2026

Analysis period: Last 5 years

Annual obligations in the available window were $1,196,245,250.93 in 2021, $1,278,286,262.20 in 2022, and $215,278,516.81 in 2023.

CAGE Code
1V9S8
UEI
ENBLDJUN4N73
Total Obligated
2.69 billion
2,689,810,029.94
Award Actions
71
Average Action Value
37,884,648.30

About THE REGENTS OF THE UNIVERSITY OF CALIFORNIA (1741) federal contract activity

THE REGENTS OF THE UNIVERSITY OF CALIFORNIA (CAGE 1V9S8, UEI ENBLDJUN4N73) received 71 awards totaling 2.69 billion over the last 5 years, with an average award value of 37.88 million. The obligation profile indicates a concentrated federal relationship centered on a single awarding agency and a narrow set of research activities.

Agency mix and customer concentration

All recorded obligations came from the Department of Energy, which accounted for the full 2.69 billion across 71 awards. This indicates complete agency concentration in the observed period and suggests the vendor’s federal portfolio is driven by DOE-funded work rather than a diversified agency base.

Industry profile based on NAICS activity

All recorded obligations are classified under NAICS 541710, Research and Development in the Physical, Engineering, and Life Sciences, matching the vendor’s role as a research institution. The mix is fully concentrated in one NAICS category, indicating that the contract history in this window is aligned entirely with scientific and technical R&D activity.

Annual contract trend over the analysis window

Annual obligations were highest in 2022 at 1.28 billion across 41 awards, followed by 2021 at 1.20 billion across 23 awards, then 2023 at 215.28 million across 7 awards. The pattern shows a sharp contraction after 2022, though the award volume remains within the same DOE/R&D profile.

How to interpret this page

This summary is based on FPDS award records associated with CAGE 1V9S8 and UEI ENBLDJUN4N73 for the last 5 years. Obligated dollars are aggregated by award date and grouped by agency, NAICS code, and fiscal year; no values beyond the provided dataset are inferred.

Top Agencies

SELECT
    agency_id,
    agency_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
        anyHeavy(content__award__purchaserInformation__contractingOfficeAgencyID__name) AS agency_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '1V9S8'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY agency_id
)
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Award Actions
8900 ENERGY, DEPARTMENT OF 2,689,810,029.94 2.69 billion 71

Insight

Over the last 5 years, all reported obligations for THE REGENTS OF THE UNIVERSITY OF CALIFORNIA (CAGE 1V9S8) are concentrated in a single agency: the Department of Energy. DOE accounts for the full $2.69 billion in obligated value across 71 awards, indicating complete agency concentration in this period. The average award value of about $37.9 million suggests a portfolio dominated by relatively high-dollar obligations rather than a broad distribution across multiple agencies.

Top NAICS

SELECT
    naics_code,
    naics_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
        anyHeavy(content__award__productOrServiceInformation__principalNAICSCode__description) AS naics_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '1V9S8'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY naics_code
)
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Award Actions
541710 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES 2,689,810,029.94 2.69 billion 71

Insight

Over the last 5 years, THE REGENTS OF THE UNIVERSITY OF CALIFORNIA (CAGE 1V9S8) received 2.69 billion across 71 awards, all categorized under NAICS 541710, Research and Development in the Physical, Engineering, and Life Sciences. This indicates complete concentration in a single NAICS, with no diversification across other industry codes in the observed period. The average award value of about 37.9 million suggests a portfolio dominated by relatively large obligations within that R&D category.

Annual Trend

SELECT
    year,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '1V9S8'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2023 215,278,516.81 215.28 million 7
2022 1,278,286,262.20 1.28 billion 41
2021 1,196,245,250.93 1.20 billion 23

Insight

Over the last 5 years, THE REGENTS OF THE UNIVERSITY OF CALIFORNIA (CAGE 1V9S8) obligated $2.69 billion across 71 awards, with an average award value of $37.9 million. Obligations are highly concentrated in 2021 and 2022, which together account for $2.47 billion and 64 awards, or most of both total obligations and award volume. Activity declined sharply in 2023 to $215.3 million across 7 awards, indicating a substantial year-over-year reduction after the prior two-year peak.

Use FPDS Query for deeper contractor analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contractor analysis across buying agencies, NAICS, and annual trends.

Continue from this last 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.