Award Number

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

Award 0009 for agency 9700 shows -$4.39 million in obligations across 43 actions in the last full year.

This award page summarizes procurement activity for award number 0009 under agency ID 9700 during the last full year. The record shows total obligated dollars of -$4,390,299.25 across 43 award actions.

Generated at 03/20/2026

Analysis period: Last full year

Figures reflect the provided analysis window and may include deobligations or other downward obligation adjustments.

Agency ID
9700
PIID
0009
Type
Award
Total Obligated
-4.39 million
-4,390,299.25
Actions
43
Average Action Value
-102,099.98

Overview

In the last full year, award 0009 under agency ID 9700 recorded total obligations of -$4,390,299.25. The award action count of 43 produces an average action value of -$102,099.98, indicating repeated downward obligation activity over the period.

How to use this page

Use this page to review the award-level obligation trend for PIID 0009 within agency 9700. The summary provides a concise view of total obligated amount, action volume, and average action value for the selected 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 = '0009'
    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 148,126.03 148.13 thousand 4
1700 DEPT OF THE NAVY -65,032.39 -65.03 thousand 6
97AS DEFENSE LOGISTICS AGENCY -77,877.61 -77.88 thousand 2
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) -111,865.94 -111.87 thousand 4
9761 DEFENSE THREAT REDUCTION AGENCY (DTRA) -129,749.20 -129.75 thousand 1
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -1,318,470.96 -1.32 million 12
2100 DEPT OF THE ARMY -2,835,429.18 -2.84 million 14

Insight

Obligations for PIID 0009 are concentrated in a small number of defense agencies, with the DEPT OF THE ARMY carrying the largest net amount at -$2.84 million across 14 awards and DCMA next at -$1.32 million across 12 awards. Smaller positive obligation is limited to the DEPT OF THE AIR FORCE at $148.13 thousand across 4 awards, while the remaining listed agencies are net negative, ranging from -$65.03 thousand for the DEPT OF THE NAVY to -$129.75 thousand for DTRA. This pattern indicates predominantly downward net adjustments across the award family, offset only marginally by Air Force obligations.

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 = '0009'
        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 205,152.63 205.15 thousand 2
SIEMENS GOVERNMENT SERVICES, INC. 0DZG1 79,464.00 79.46 thousand 3
ULTISAT, INC. 3H9E0 3,328.95 3.33 thousand 1
GENERAL DYNAMICS INFORMATION TECHNOLOGY, INC. 07MU1 0.00 0.00 1
BOEING COMPANY, THE 48T42 0.00 0.00 1
DCS CORPORATION 1P418 0.00 0.00 1
RAYTHEON TECHNICAL SERVICES CO 9F358 0.00 0.00 1
PARSONS GOVERNMENT SERVICES INC. 1BVK6 0.00 0.00 1
UNIVERSITY OF ALABAMA IN HUNTSVILLE 9B944 0.00 0.00 1
ELBITAMERICA, INC. 0WEC9 0.00 0.00 1

Insight

Obligations over the last year are concentrated among a small number of vendors, led by Massachusetts Institute of Technology ($205.15K across 2 awards) and Siemens Government Services, Inc. ($79.46K across 3 awards). The remaining vendors received one award each, but only Ultisat, Inc. has positive obligated value ($3.33K); the others reflect zero obligated amounts. This indicates a narrow spend distribution for PIID 0009, with most activity tied to two vendors and limited funded follow-on activity among the rest.

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 = '0009'
    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
541330 ENGINEERING SERVICES 16,438.71 16.44 thousand 11
517919 ALL OTHER TELECOMMUNICATIONS 3,328.95 3.33 thousand 1
332994 SMALL ARMS, ORDNANCE, AND ORDNANCE ACCESSORIES MANUFACTURING 0.00 0.00 1
333319 OTHER COMMERCIAL AND SERVICE INDUSTRY MACHINERY MANUFACTURING 0.00 0.00 1
541711 RESEARCH AND DEVELOPMENT IN BIOTECHNOLOGY 0.00 0.00 1
212312 CRUSHED AND BROKEN LIMESTONE MINING AND QUARRYING -93.60 -93.60 1
327910 ABRASIVE PRODUCT MANUFACTURING -327.61 -327.61 1
541519 OTHER COMPUTER RELATED SERVICES -5,748.35 -5.75 thousand 1
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) -6,937.28 -6.94 thousand 8
339999 ALL OTHER MISCELLANEOUS MANUFACTURING -24,376.65 -24.38 thousand 1

Insight

Obligations for PIID 0009 over the past year are concentrated in NAICS 541330 (Engineering Services), which accounts for the largest positive obligated amount at 16.44 thousand across 11 awards. The remaining activity is dispersed across several smaller NAICS codes, with three codes showing zero obligated amounts and four codes showing negative obligations. Overall, the net total is driven downward by a few offsets, led by NAICS 339999 (-24.38 thousand) and NAICS 541712 (-6.94 thousand), which outweigh the positive obligations.

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 = '0009'
    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) 205,152.63 205.15 thousand 2
1290 MISCELLANEOUS FIRE CONTROL EQUIPMENT 0.00 0.00 1
C211 ARCHITECT AND ENGINEERING- GENERAL: LANDSCAPING, INTERIOR LAYOUT, AND DESIGNING 0.00 0.00 1
J020 MAINT/REPAIR/REBUILD OF EQUIPMENT- SHIP AND MARINE EQUIPMENT 0.00 0.00 1
6910 TRAINING AIDS 0.00 0.00 1
R414 SYSTEMS ENGINEERING SERVICES 0.00 0.00 1
5610 MINERAL CONSTRUCTION MATERIALS, BULK -93.60 -93.60 1
5350 ABRASIVE MATERIALS -327.61 -327.61 1
K069 MODIFICATION OF EQUIPMENT- TRAINING AIDS AND DEVICES -5,748.35 -5.75 thousand 1
AD92 R&D- DEFENSE OTHER: OTHER (APPLIED RESEARCH/EXPLORATORY DEVELOPMENT) -8,467.21 -8.47 thousand 3

Insight

Obligations for PIID 0009 over the last year are concentrated in PSC AC61, which accounts for $205.15 thousand across 2 awards and materially exceeds all other PSCs listed. The remaining PSCs are fragmented across low-value or zero-obligation awards, indicating a broad but shallow distribution of activity. Several PSCs carry negative obligations, led by AD92 at -$8.47 thousand across 3 awards and K069 at -$5.75 thousand, suggesting deobligations or downward adjustments in those categories.

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 = '0009'
    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 -4,390,299.25 -4.39 million 43

Insight

In FY 2025, award PIID 0009 under Agency 9700 recorded net obligations of -$4.39 million across 43 awards. The negative total indicates deobligations or net downward adjustments during the period, suggesting obligation activity was concentrated in reductions rather than new funding. With only one year of data in this window, no multi-year trend can be inferred.

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.