Award Number

Award Number 9700 / 0010 Federal Contract Action Summary (Last 5 Years)

Federal award record for agency 9700, award number 0010, summarizing obligations and actions over the last 5 years.

This page summarizes the federal award identified by award number 0010 for agency 9700 across the last 5 years. It shows 983 award actions with total obligated amounts of $453.42 million.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals reflect the provided analysis window and the exact obligated amount of $453,420,504.99.

Agency ID
9700
PIID
0010
Type
Award
Total Obligated
453.42 million
453,420,504.99
Actions
983
Average Action Value
461,261.96

Overview

The award record for PIID 0010 shows activity across 983 actions in the last 5 years. Total obligations reached $453,420,504.99, with an average action value of $461,261.96.

How to use this page

Use this page to review the award’s obligation profile and action volume within the selected analysis window. The figures support quick comparison across related awards, agencies, or periods using the same FPDS query structure.

Top Agencies

SELECT
    content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
    content__award__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = '0010'
    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,
    agency_name
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Actions
5700 DEPT OF THE AIR FORCE 545,002,157.44 545.00 million 191
97ZS U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) 1,282,609.66 1.28 million 8
97F5 WASHINGTON HEADQUARTERS SERVICES (WHS) 465,628.76 465.63 thousand 9
97F2 DEPT OF DEFENSE EDUCATION ACTIVITY (DODEA) -433.82 -433.82 1
97JC MISSILE DEFENSE AGENCY (MDA) -13,932.58 -13.93 thousand 3
9748 DEFENSE HUMAN RESOURCES ACTIVITY -20,749.89 -20.75 thousand 1
9761 DEFENSE THREAT REDUCTION AGENCY (DTRA) -265,852.17 -265.85 thousand 10
97AS DEFENSE LOGISTICS AGENCY -325,299.35 -325.30 thousand 36
9776 USTRANSCOM -344,069.41 -344.07 thousand 5
97DH DEFENSE HEALTH AGENCY (DHA) -583,650.12 -583.65 thousand 7

Insight

Award activity for PIID 0010 is highly concentrated in DEPT OF THE AIR FORCE, which accounts for 545.0 million across 191 awards and far exceeds all other agencies in the 5-year window. The next highest positive obligations are USSOCOM at 1.28 million over 8 awards and WHS at 465.63 thousand over 9 awards, indicating a steep drop-off after the primary funding agency. Several other listed agencies show small negative obligated amounts, suggesting downward adjustments or deobligations rather than new positive funding.

Top Vendors

SELECT
    vendor_name,
    cage_code,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__vendor__vendorHeader__vendorName AS vendor_name,
        ifNull(content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode, '') AS cage_code,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = '0010'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY
        vendor_name,
        cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Actions
MASSACHUSETTS INSTITUTE OF TECHNOLOGY 3G050 549,852,686.33 549.85 million 116
JOHNSON CONTROLS GOVERNMENT SYSTEMS LLC 1MN13 19,711,600.26 19.71 million 44
INTUITIVE RESEARCH AND TECHNOLOGY CORPORATION 1MQC1 18,408,244.70 18.41 million 111
PPD DEVELOPMENT, L.P. 3FAW2 3,566,559.19 3.57 million 8
FLUOR INTERCONTINENTAL, INC 1CZV4 3,132,255.86 3.13 million 1
CACI TECHNOLOGIES, LLC 8D014 2,716,712.08 2.72 million 47
PIKA-ARCADIS JV 6GRJ2 2,556,261.38 2.56 million 13
OSHKOSH DEFENSE, LLC 75Q65 1,690,413.36 1.69 million 8
UNIVERSITY OF SOUTHERN CALIFORNIA 1B729 1,645,594.39 1.65 million 13
ST. MICHAEL'S INC. 4LZB8 1,282,609.66 1.28 million 1

Insight

Over the past 5 years, obligations under PIID 0010 for agency 9700 are highly concentrated with the Massachusetts Institute of Technology accounting for $549.85 million across 116 awards, far exceeding all other vendors. The remaining vendors are distributed across a much lower obligation range, with Johnson Controls Government Systems LLC and Intuitive Research and Technology Corporation next at $19.71 million and $18.41 million, respectively. Award activity is broader than obligation share, as some vendors such as Intuitive Research and Technology Corporation and CACI Technologies, LLC have many awards but relatively modest total obligations, indicating a dispersed lower-dollar award pattern outside the top vendor.

Top NAICS

SELECT
    content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
    content__award__productOrServiceInformation__principalNAICSCode__description AS naics_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = '0010'
    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,
    naics_name
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Actions
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 572,532,409.94 572.53 million 300
541330 ENGINEERING SERVICES 9,774,911.97 9.77 million 190
221119 OTHER ELECTRIC POWER GENERATION 3,132,255.86 3.13 million 1
562910 REMEDIATION SERVICES 2,332,935.01 2.33 million 25
336212 TRUCK TRAILER MANUFACTURING 1,690,413.36 1.69 million 8
541611 ADMINISTRATIVE MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES 1,483,650.62 1.48 million 12
517410 SATELLITE TELECOMMUNICATIONS 496,422.67 496.42 thousand 4
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 306,489.46 306.49 thousand 15
517919 ALL OTHER TELECOMMUNICATIONS 168,501.41 168.50 thousand 10
237130 POWER AND COMMUNICATION LINE AND RELATED STRUCTURES CONSTRUCTION 48,609.00 48.61 thousand 1

Insight

Obligations are highly concentrated in NAICS 541712, which accounts for $572.53 million across 300 awards and far exceeds every other category in the 5-year window. NAICS 541330 is a distant second by count, with 190 awards but only $9.77 million, indicating a much smaller average obligation per award than 541712. The remaining NAICS codes each represent limited funding, with only one additional code above $3 million and all others below $2.34 million, suggesting a long tail of relatively minor activity.

Top PSC Codes

SELECT
    content__award__productOrServiceInformation__productOrServiceCode AS psc_code,
    content__award__productOrServiceInformation__productOrServiceCode__description AS psc_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = '0010'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    psc_code,
    psc_name
ORDER BY total_obligated DESC
LIMIT 10
PSC Code Description Total Obligated Readable Actions
AC61 R&D- DEFENSE SYSTEM: ELECTRONICS/COMMUNICATION EQUIPMENT (BASIC RESEARCH) 549,852,686.33 549.85 million 116
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 27,991,488.79 27.99 million 217
H935 OTHER QC/TEST/INSPECT- SERVICE AND TRADE EQUIPMENT 8,672,952.15 8.67 million 17
AJ53 R&D- GENERAL SCIENCE/TECHNOLOGY: LIFE SCIENCES (ADVANCED DEVELOPMENT) 3,566,559.19 3.57 million 8
S112 UTILITIES- ELECTRIC 3,132,255.86 3.13 million 1
AC34 NATIONAL DEFENSE R&D SERVICES; DEFENSE-RELATED ACTIVITIES; R&D ADMINISTRATIVE EXPENSES 2,684,675.73 2.68 million 51
F999 OTHER ENVIRONMENTAL SERVICES 2,556,261.38 2.56 million 15
2305 GROUND EFFECT VEHICLES 1,690,413.36 1.69 million 7
AZ11 R&D- OTHER RESEARCH AND DEVELOPMENT (BASIC RESEARCH) 1,645,594.39 1.65 million 13
R423 SUPPORT- PROFESSIONAL: INTELLIGENCE 500,152.85 500.15 thousand 3

Insight

Over the 5-year window, obligations are highly concentrated in PSC AC61, which accounts for $549.85 million across 116 awards and far exceeds every other code. The next largest PSC, R425, totals $27.99 million across 217 awards, indicating a much larger award count but materially lower obligated value; together, the top two PSCs dominate the profile by value while remaining differentiated by award structure. The remaining PSCs each contribute comparatively small shares, with a mix of R&D, support, environmental, utilities, and equipment-related codes that suggests a broad but secondary distribution of spending.

Annual Trend

SELECT
    toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable,
    count() AS award_count
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = '0010'
    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 ASC
Year Total Obligated Readable Actions
2021 129,969,820.51 129.97 million 403
2022 103,648,592.15 103.65 million 236
2023 96,647,894.63 96.65 million 162
2024 39,154,671.18 39.15 million 110
2025 83,999,526.52 84.00 million 72

Insight

Obligations under PIID 0010 declined from 129.97 million across 403 awards in 2021 to 39.15 million across 110 awards in 2024, indicating a marked reduction in both value and award volume over the period. The highest award count occurred in 2021, while 2025 reflects a partial-year or less distributed obligation profile with 84.00 million obligated across 72 awards. Overall, the five-year pattern shows decreasing award frequency and lower annual obligation totals after 2021, with a modest rebound in obligated dollars in 2025.

Use FPDS Query for deeper award and vehicle analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contract action analysis across agencies, vendors, NAICS, PSC, 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.