Award Number

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

FPDS award page for award number 0010 under agency ID 9700, covering the last full year of obligation activity.

This page summarizes award number 0010 for agency ID 9700 during the last full year. The award shows 72 actions and total obligated amount of 84.00 million.

Generated at 03/20/2026

Analysis period: Last full year

Total obligated is shown as 83,999,526.52, with an average action value of 1,166,660.09.

Agency ID
9700
PIID
0010
Type
Award
Total Obligated
84.00 million
83,999,526.52
Actions
72
Average Action Value
1,166,660.09

Overview

Award number 0010 for agency ID 9700 has 72 recorded award actions in the last full year. The total obligated amount is 83,999,526.52, which rounds to 84.00 million. The average action value is 1,166,660.09.

How to use this page

Use this page to review recent obligation activity for award number 0010 and compare the overall volume of actions with the average value per action. The figures here provide a concise reference for last full year procurement analysis.

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 1 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 102,342,855.89 102.34 million 25
9761 DEFENSE THREAT REDUCTION AGENCY (DTRA) 6,898.37 6.90 thousand 1
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) 5,187.25 5.19 thousand 2
97JC MISSILE DEFENSE AGENCY (MDA) -1,814.36 -1.81 thousand 1
97AS DEFENSE LOGISTICS AGENCY -63,492.16 -63.49 thousand 5
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -364,756.56 -364.76 thousand 17
1700 DEPT OF THE NAVY -530,624.88 -530.62 thousand 6
2100 DEPT OF THE ARMY -17,394,727.03 -17.39 million 15

Insight

Obligations for PIID 0010 over the past year are highly concentrated in the Department of the Air Force, which accounts for $102.34 million across 25 awards and far exceeds all other listed agencies. All other agencies are relatively small in comparison and, taken together, show net negative obligated amounts driven by downward adjustments or deobligations, led by the Department of the Army (-$17.39 million) and the Department of the Navy (-$530.62 thousand). The remaining agencies each have limited activity, with only minor positive obligations at DTRA, DISA, and the parent agency group.

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 1 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 102,466,920.37 102.47 million 20
FLUOR INTERCONTINENTAL, INC 1CZV4 3,132,255.86 3.13 million 1
JOHNSON CONTROLS GOVERNMENT SYSTEMS LLC 1MN13 1,872,540.62 1.87 million 4
GENERAL DYNAMICS INFORMATION TECHNOLOGY, INC. 07MU1 698,858.63 698.86 thousand 3
CH2M HILL INC 0D0X4 6,898.37 6.90 thousand 1
ULTISAT, INC. 3H9E0 5,187.25 5.19 thousand 1
AECOM TECHNICAL SERVICES, INC. 4L767 1,138.62 1.14 thousand 1
DRS ADVANCED ISR, LLC 0CDN3 0.00 0.00 1
DRS ICAS, LLC 0CDN3 0.00 0.00 1
THE BOEING COMPANY 77272 0.00 0.00 2

Insight

Obligations under PIID 0010 are highly concentrated in MASSACHUSETTS INSTITUTE OF TECHNOLOGY, which received $102.47 million across 20 awards in the 1-year window. The remaining obligated amounts are much smaller, led by FLUOR INTERCONTINENTAL, INC. ($3.13 million) and JOHNSON CONTROLS GOVERNMENT SYSTEMS LLC ($1.87 million), with all other vendors each below $700,000. Three vendors—DRS ADVANCED ISR, LLC, DRS ICAS, LLC, and THE BOEING COMPANY—received awards but recorded no obligations, indicating some award activity without current spending.

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 1 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) 102,358,203.78 102.36 million 24
221119 OTHER ELECTRIC POWER GENERATION 3,132,255.86 3.13 million 1
541330 ENGINEERING SERVICES 1,823,426.75 1.82 million 12
541512 COMPUTER SYSTEMS DESIGN SERVICES 698,858.63 698.86 thousand 2
541990 ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES 6,898.37 6.90 thousand 1
517919 ALL OTHER TELECOMMUNICATIONS 5,187.25 5.19 thousand 1
611710 EDUCATIONAL SUPPORT SERVICES 0.00 0.00 1
561499 ALL OTHER BUSINESS SUPPORT SERVICES 0.00 0.00 1
517110 WIRED TELECOMMUNICATIONS CARRIERS 0.00 0.00 1
332994 SMALL ARMS, ORDNANCE, AND ORDNANCE ACCESSORIES MANUFACTURING 0.00 0.00 1

Insight

Obligations under PIID 0010 are highly concentrated in NAICS 541712, which accounts for $102.36 million across 24 awards and far exceeds all other categories. The next largest NAICS, 221119, totals $3.13 million in a single award, followed by 541330 at $1.82 million across 12 awards and 541512 at $698.86 thousand across 2 awards. Several additional NAICS codes appear only once and carry minimal or zero obligations, indicating a narrow spend distribution dominated by R&D services.

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 1 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) 102,466,920.37 102.47 million 20
S112 UTILITIES- ELECTRIC 3,132,255.86 3.13 million 1
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 2,457,399.25 2.46 million 9
Y1AZ CONSTRUCTION OF OTHER ADMINISTRATIVE FACILITIES AND SERVICE BUILDINGS 6,898.37 6.90 thousand 1
D316 IT AND TELECOM- TELECOMMUNICATIONS NETWORK MANAGEMENT 5,187.25 5.19 thousand 2
C219 ARCHITECT AND ENGINEERING- GENERAL: OTHER 1,138.62 1.14 thousand 1
1336 GUIDED MISSILE WARHEADS AND EXPLOSIVE COMPONENTS 0.00 0.00 1
J020 MAINT/REPAIR/REBUILD OF EQUIPMENT- SHIP AND MARINE EQUIPMENT 0.00 0.00 1
6605 NAVIGATIONAL INSTRUMENTS 0.00 0.00 2
6695 COMBINATION AND MISCELLANEOUS INSTRUMENTS 0.00 0.00 1

Insight

Obligations for award PIID 0010 over the past year are heavily concentrated in PSC AC61, which accounts for $102.47 million across 20 awards and far exceeds all other PSCs. The next largest categories, S112 and R425, are much smaller at $3.13 million and $2.46 million, indicating a steep drop-off after the primary research-related code. The remaining PSCs are immaterial in dollar value, including several with zero obligated amounts, suggesting a narrow obligation profile dominated by AC61.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 83,999,526.52 84.00 million 72

Insight

For PIID 0010 within Agency 9700, FY 2025 shows $84.0 million in obligated value across 72 awards. Obligations are concentrated in a single year in the 1-year window, so the observed activity reflects all available annual volume rather than a multi-year trend. The average obligation per award is about $1.17 million, indicating moderate dispersion across the award population.

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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.