In the last full year, THE REGENTS OF THE UNIVERSITY OF CALIFORNIA recorded 63 award actions with total obligations of 1,278,236,162.49 and an average action value of 20,289,462.89. Most obligations came from the Department of Energy, with smaller amounts from NASA, NOAA, and NIH, and the largest NAICS category was research and development in the physical, engineering, and life sciences.
Federal Contractor
THE REGENTS OF THE UNIVERSITY OF CALIFORNIA Federal Contract Obligations (Last Year)
Federal procurement summary for THE REGENTS OF THE UNIVERSITY OF CALIFORNIA, CAGE 1GGD0, UEI PKK5TD16N4H1, covering the last full year of awards and obligations.
Figures reflect the last full year analysis window and are based on obligated amounts and award actions reported in the provided data.
About THE REGENTS OF THE UNIVERSITY OF CALIFORNIA federal contract activity
THE REGENTS OF THE UNIVERSITY OF CALIFORNIA recorded $1.28 billion in obligated federal awards across 63 actions during the last full year, for an average award value of $20.29 million. The profile is highly concentrated, with most obligations flowing through a small number of awards tied to research-intensive federal work.
Agency mix and customer concentration
The Department of Energy dominated the vendor’s funding profile, accounting for $1.27 billion and 51 awards, or nearly all observed obligated value in the period. NASA was a distant second at $5.69 million across 10 awards, while NOAA and NIH contributed only small residual obligations, indicating limited multi-agency diversification.
Industry profile based on NAICS activity
Award activity was overwhelmingly concentrated in NAICS 541710, Research and Development in the Physical, Engineering, and Life Sciences, which represented $1.25 billion across 48 awards. Smaller but meaningful activity appeared under 611310 for colleges and universities at $25.49 million, while the remaining NAICS codes reflected niche support in space vehicle parts, computer facilities management, and software publishing.
Annual contract trend over the analysis window
The annual trend shows all recorded obligations in 2025, totaling $1.28 billion across 63 awards. With only one year in scope, the data supports a point-in-time assessment rather than a multi-year growth or volatility analysis.
How to interpret this page
This summary uses FPDS award records for the vendor identified by CAGE 1GGD0 and UEI PKK5TD16N4H1 over the last full year. Totals reflect obligated dollars and award counts aggregated by agency, NAICS code, and year; no adjustments were made beyond the provided dataset, and values not present in the source were not 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 = '1GGD0'
AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 | 1,272,499,179.49 | 1.27 billion | 51 |
| 8000 | NATIONAL AERONAUTICS AND SPACE ADMINISTRATION | 5,687,496.00 | 5.69 million | 10 |
| 1330 | NATIONAL OCEANIC AND ATMOSPHERIC ADMINISTRATION | 29,780.00 | 29.78 thousand | 1 |
| 7529 | NATIONAL INSTITUTES OF HEALTH | 19,707.00 | 19.71 thousand | 1 |
Insight
Over the last full year, THE REGENTS OF THE UNIVERSITY OF CALIFORNIA (CAGE 1GGD0) received 1.28 billion across 63 awards, with obligations heavily concentrated at the Department of Energy. DOE accounted for 1.27 billion and 51 awards, representing nearly all obligated value in this window. NASA was a distant second at 5.69 million across 10 awards, while NOAA and NIH each accounted for only one award and less than 30 thousand combined, indicating a highly concentrated agency mix.
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 = '1GGD0'
AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
AND content__award__productOrServiceInformation__principalNAICSCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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 | 1,247,007,097.49 | 1.25 billion | 48 |
| 611310 | COLLEGES, UNIVERSITIES, AND PROFESSIONAL SCHOOLS | 25,492,082.00 | 25.49 million | 3 |
| 336419 | OTHER GUIDED MISSILE AND SPACE VEHICLE PARTS AND AUXILIARY EQUIPMENT MANUFACTURING | 5,687,496.00 | 5.69 million | 10 |
| 541513 | COMPUTER FACILITIES MANAGEMENT SERVICES | 29,780.00 | 29.78 thousand | 1 |
| 513210 | SOFTWARE PUBLISHERS | 19,707.00 | 19.71 thousand | 1 |
Insight
Obligations for THE REGENTS OF THE UNIVERSITY OF CALIFORNIA are highly concentrated in NAICS 541710, Research and Development in the Physical, Engineering, and Life Sciences, which accounts for $1.25 billion of the $1.28 billion obligated over the last full year across 48 of 63 awards. A distant second, NAICS 611310, Colleges, Universities, and Professional Schools, represents $25.49 million across 3 awards, while NAICS 336419 contributes $5.69 million across 10 awards. The remaining NAICS codes are immaterial in value, indicating a procurement profile dominated by research and development activities.
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 = '1GGD0'
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
)
ORDER BY year DESC
| Year | Total Obligated | Readable | Award Actions |
|---|---|---|---|
| 2025 | 1,278,236,162.49 | 1.28 billion | 63 |
Insight
During the last full year, THE REGENTS OF THE UNIVERSITY OF CALIFORNIA (CAGE 1GGD0) obligated $1.28 billion across 63 awards, with an average award value of about $20.3 million. Obligation activity is fully concentrated in FY 2025 for the 1-year window provided, indicating a single-year snapshot rather than a multi-year trend. The award pattern suggests relatively high-value obligations distributed across a moderate number of actions.
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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.