Award Number

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

FPDS award page for award number 0007 under agency ID 9700, summarizing obligations and action history over the last 5 years.

This page summarizes procurement activity for award number 0007 within agency ID 9700 over the last 5 years. Reported obligations total $593.29 million across 1,505 award actions.

Generated at 03/20/2026

Analysis period: Last 5 years

Amounts are shown as reported in FPDS; total obligated exact is $593,288,441.97 and average action value is $394,211.59.

Agency ID
9700
PIID
0007
Type
Award
Total Obligated
593.29 million
593,288,441.97
Actions
1,505
Average Action Value
394,211.59

Overview

In the last 5 years, award number 0007 under agency ID 9700 recorded 1,505 award actions and $593,288,441.97 in total obligated value. The average action value was $394,211.59, indicating a large volume of smaller-to-mid-sized actions within the award record. This page presents the award-level history in a concise format for procurement review.

How to use this page

Use this page to review the scale and activity level associated with award number 0007, including total obligations and action count. The figures support basic tracking, comparison, and follow-up analysis for the award within agency ID 9700. All values reflect the stated 5-year analysis window.

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 = '0007'
    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 559,850,481.43 559.85 million 229
97ZS U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) 44,295,902.24 44.30 million 29
1700 DEPT OF THE NAVY 38,099,838.49 38.10 million 254
97JC MISSILE DEFENSE AGENCY (MDA) 1,279,577.69 1.28 million 23
97F2 DEPT OF DEFENSE EDUCATION ACTIVITY (DODEA) -51,609.61 -51.61 thousand 3
97AS DEFENSE LOGISTICS AGENCY -97,934.08 -97.93 thousand 34
9761 DEFENSE THREAT REDUCTION AGENCY (DTRA) -101,339.02 -101.34 thousand 12
97DH DEFENSE HEALTH AGENCY (DHA) -221,308.20 -221.31 thousand 6
9776 USTRANSCOM -1,409,736.22 -1.41 million 5
97F5 WASHINGTON HEADQUARTERS SERVICES (WHS) -1,533,840.87 -1.53 million 11

Insight

Over the last 5 years, obligations under PIID 0007 are highly concentrated in the Department of the Air Force, which accounts for $559.85 million across 229 awards. U.S. Special Operations Command is a distant second at $44.30 million across 29 awards, followed by the Department of the Navy at $38.10 million across 254 awards, indicating a broad but much smaller distribution outside the Air Force. Remaining agencies each represent relatively minor activity, with MDA at $1.28 million and several agencies showing net negative obligations, suggesting post-award adjustments or deobligations in those records.

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 = '0007'
        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 538,903,178.57 538.90 million 95
THE BOEING COMPANY 77272 43,124,857.95 43.12 million 24
GENERAL ATOMICS AERONAUTICAL SYSTEMS, INC. 0YJB5 23,921,974.74 23.92 million 3
DYNCORP INTERNATIONAL LIMITED LIABILITY COMPANY (7126) 1SMB2 21,047,525.65 21.05 million 15
CAE USA INC. 50237 20,793,147.81 20.79 million 43
SIEMENS GOVERNMENT SERVICES, INC. 0DZG1 20,426,013.65 20.43 million 20
RAYTHEON COMPANY 04071 16,787,584.38 16.79 million 21
TECHNICA LLC 3NQD9 16,153,233.13 16.15 million 52
L B & B ASSOCIATES INC. 0V349 14,235,380.55 14.24 million 10
WESTAR AEROSPACE & DEFENSE GROUP, INC. 67285 10,792,898.89 10.79 million 81

Insight

Over the last 5 years, obligations under PIID 0007 are highly concentrated in MASSACHUSETTS INSTITUTE OF TECHNOLOGY, which received $538.90 million across 95 awards and far exceeds every other vendor in both value and volume. The remaining top vendors are much smaller by obligation, led by THE BOEING COMPANY at $43.12 million, with the rest clustered between about $10.79 million and $23.92 million. Award counts are more distributed, ranging from 3 to 81 among the non-MIT vendors, indicating a mix of high-frequency, lower-value awards and fewer larger awards.

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 = '0007'
    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) 540,652,410.46 540.65 million 396
541330 ENGINEERING SERVICES 73,954,037.77 73.95 million 286
333319 OTHER COMMERCIAL AND SERVICE INDUSTRY MACHINERY MANUFACTURING 20,421,026.17 20.42 million 48
334511 SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING 15,812,164.04 15.81 million 47
213112 SUPPORT ACTIVITIES FOR OIL AND GAS OPERATIONS 5,415,900.30 5.42 million 8
562910 REMEDIATION SERVICES 3,344,724.38 3.34 million 39
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 2,944,471.25 2.94 million 26
517110 WIRED TELECOMMUNICATIONS CARRIERS 1,879,820.45 1.88 million 14
221122 ELECTRIC POWER DISTRIBUTION 1,861,470.00 1.86 million 6
334111 ELECTRONIC COMPUTER MANUFACTURING 1,318,569.04 1.32 million 6

Insight

Obligations are highly concentrated in NAICS 541712, which accounts for $540.65 million across 396 awards and far exceeds every other category in the 5-year period. NAICS 541330 is the only other material area, with $73.95 million across 286 awards, while the remaining NAICS codes each receive $20.42 million or less, indicating a steep drop-off after the top two sectors. Award activity is more dispersed than dollars, with several smaller NAICS codes posting modest counts but comparatively low obligated amounts.

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 = '0007'
    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) 535,863,774.09 535.86 million 121
R498 SUPPORT- PROFESSIONAL: PATENT AND TRADEMARK 43,124,857.95 43.12 million 20
1550 UNMANNED AIRCRAFT 23,921,974.74 23.92 million 2
6910 TRAINING AIDS 20,202,445.70 20.20 million 49
R499 SUPPORT- PROFESSIONAL: OTHER 18,615,965.64 18.62 million 59
J069 MAINT/REPAIR/REBUILD OF EQUIPMENT- TRAINING AIDS AND DEVICES 13,923,081.95 13.92 million 13
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 7,490,721.84 7.49 million 283
Z1NA MAINTENANCE OF FUEL SUPPLY FACILITIES 5,415,900.30 5.42 million 8
Z299 MAINT, REP/ALTER/ALL OTHER 2,809,766.00 2.81 million 2
AZ11 R&D- OTHER RESEARCH AND DEVELOPMENT (BASIC RESEARCH) 2,614,889.00 2.61 million 11

Insight

Obligations over the past 5 years are highly concentrated in PSC AC61, which accounts for $535.86 million across 121 awards and far exceeds all other categories. The next largest PSCs are R498 at $43.12 million and 1550 at $23.92 million, indicating a steep drop-off after the leading R&D category. Award counts are more dispersed, with R425 reporting 283 awards but only $7.49 million obligated, suggesting a large number of relatively small actions in that service category. Overall, the profile combines a dominant R&D obligation base with smaller but recurring obligations across professional support, training, maintenance, and equipment PSCs.

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 = '0007'
    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 284,064,173.32 284.06 million 636
2022 186,235,768.97 186.24 million 353
2023 167,794,448.58 167.79 million 254
2024 -31,122,054.82 -31.12 million 169
2025 -13,683,894.08 -13.68 million 93

Insight

Award activity under PIID 0007 declined steadily over the five-year window, with obligated amounts falling from $284.06 million in 2021 to $167.79 million in 2023 before turning negative in 2024 and 2025. Award counts also contracted sharply, from 636 in 2021 to 93 in 2025, indicating a substantial reduction in transaction volume. The negative obligated amounts in the last two years suggest net deobligations or downward adjustments, which materially changed the funding profile of this award over time.

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.