Award Number

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

Award number 0004 for agency ID 9700 shows 142 recorded actions in the last full year, with total obligations of 10.42 million.

This award record summarizes activity for PIID 0004 under agency ID 9700 during the last full year. The award has 142 actions and total obligated value of $10,415,631.47, for an average action value of $73,349.52.

Generated at 03/20/2026

Analysis period: Last full year

Totals reflect the provided analysis window and may differ from rounded display values.

Agency ID
9700
PIID
0004
Type
Award
Total Obligated
10.42 million
10,415,631.47
Actions
142
Average Action Value
73,349.52

Overview

In the last full year, award number 0004 for agency ID 9700 recorded 142 actions and $10,415,631.47 in obligated amounts. That places the average action value at $73,349.52 across the analysis window. The page reflects the award-level totals only and does not add any unprovided contract detail.

How to use this page

Use this page to review award-level activity for PIID 0004 and compare the total obligated amount, action count, and average action value. The figures can support basic FPDS review, trend screening, and record matching for this award during the last full year.

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 = '0004'
    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
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) 10,944,577.09 10.94 million 13
5700 DEPT OF THE AIR FORCE 7,946,922.14 7.95 million 29
9761 DEFENSE THREAT REDUCTION AGENCY (DTRA) 206,440.80 206.44 thousand 3
97ZS U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) 123,609.83 123.61 thousand 2
97AS DEFENSE LOGISTICS AGENCY -13,419.60 -13.42 thousand 4
2100 DEPT OF THE ARMY -635,795.89 -635.80 thousand 49
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -3,947,029.12 -3.95 million 18
1700 DEPT OF THE NAVY -4,209,673.78 -4.21 million 24

Insight

Obligations for PIID 0004 over the past year are concentrated in two agencies: DISA accounts for $10.94 million across 13 awards and the Air Force accounts for $7.95 million across 29 awards. These positive obligations are offset by substantial negative obligations at the Navy (-$4.21 million), DCMA (-$3.95 million), and the Army (-$635.80 thousand), indicating material downward adjustments or deobligations across multiple components. Smaller positive activity is present at DTRA, USSOCOM, and DLA, but it is not large enough to change the overall concentration pattern.

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 = '0004'
        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
GENERAL DYNAMICS INFORMATION TECHNOLOGY, INC. 07MU1 11,735,224.97 11.74 million 10
MASSACHUSETTS INSTITUTE OF TECHNOLOGY 3G050 8,951,105.44 8.95 million 11
AECOM USA, INC. 0CXR6 4,925,177.58 4.93 million 1
JOHNSON CONTROLS GOVERNMENT SYSTEMS LIMITED LIABILITY COMPANY 1MN13 723,609.96 723.61 thousand 2
NORESCO, LLC 0R7F1 467,302.50 467.30 thousand 3
SELECT ENERGY SERVICES, INC 1EYD9 311,906.35 311.91 thousand 1
BLACK & VEATCH SPECIAL PROJECTS CORP 03JT9 206,440.80 206.44 thousand 1
OTAK GROUP, INC 3DXZ4 189,977.97 189.98 thousand 1
NTT DATA SERVICES FEDERAL GOVERNMENT, INC. 4T952 123,687.83 123.69 thousand 1
KUNJ CONSTRUCTION CORPORATION 65EU8 26,699.00 26.70 thousand 1

Insight

Obligations are concentrated among the top two vendors: GENERAL DYNAMICS INFORMATION TECHNOLOGY, INC. ($11.74M across 10 awards) and MASSACHUSETTS INSTITUTE OF TECHNOLOGY ($8.95M across 11 awards) together account for the majority of the listed spend. AECOM USA, INC. is a distant third at $4.93M with a single award, indicating a sharp drop after the leading vendors. The remaining vendors each received less than $1.0M, mostly through one award apiece, suggesting a long tail of comparatively small obligations.

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 = '0004'
    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 14,330,000.52 14.33 million 39
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 5,319,237.24 5.32 million 42
221122 ELECTRIC POWER DISTRIBUTION 723,609.96 723.61 thousand 2
541990 ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES 206,440.80 206.44 thousand 2
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 182,851.34 182.85 thousand 3
541519 OTHER COMPUTER RELATED SERVICES 75,633.61 75.63 thousand 3
238120 STRUCTURAL STEEL AND PRECAST CONCRETE CONTRACTORS 26,699.00 26.70 thousand 1
517919 ALL OTHER TELECOMMUNICATIONS 3,328.95 3.33 thousand 1
237120 OIL AND GAS PIPELINE AND RELATED STRUCTURES CONSTRUCTION 0.00 0.00 1
333611 TURBINE AND TURBINE GENERATOR SET UNITS MANUFACTURING 0.00 0.00 1

Insight

Award activity under PIID 0004 over the last year is concentrated in professional and technical services NAICS codes, led by 541330 Engineering Services ($14.33 million across 39 awards) and 541712 R&D in the physical, engineering, and life sciences ($5.32 million across 42 awards). Together, these two codes account for the vast majority of obligated value in the listed rows, indicating a strong emphasis on engineering and research support. Other NAICS codes appear at much lower dollar levels, with several single- or low-award categories contributing only marginal obligation amounts, including two zero-obligation awards.

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 = '0004'
    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
D316 IT AND TELECOM- TELECOMMUNICATIONS NETWORK MANAGEMENT 10,167,428.69 10.17 million 12
AC61 R&D- DEFENSE SYSTEM: ELECTRONICS/COMMUNICATION EQUIPMENT (BASIC RESEARCH) 8,237,126.83 8.24 million 19
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 3,525,708.51 3.53 million 18
B543 SPECIAL STUDIES/ANALYSIS- ENERGY 723,609.96 723.61 thousand 2
C121 CONSERVATION AND DEVELOPMENT 311,906.35 311.91 thousand 1
R799 SUPPORT- MANAGEMENT: OTHER 206,440.80 206.44 thousand 1
Y1JZ CONSTRUCTION OF MISCELLANEOUS BUILDINGS 182,973.65 182.97 thousand 2
D307 IT AND TELECOM- IT STRATEGY AND ARCHITECTURE 123,687.83 123.69 thousand 1
S202 HOUSEKEEPING- FIRE PROTECTION 26,699.00 26.70 thousand 1
C219 ARCHITECT AND ENGINEERING- GENERAL: OTHER 11,248.00 11.25 thousand 1

Insight

Obligations under PIID 0004 in the past year are concentrated in three PSCs: D316 (10.17 million across 12 awards), AC61 (8.24 million across 19 awards), and R425 (3.53 million across 18 awards). These categories account for the clear majority of obligated dollars and indicate a portfolio weighted toward telecommunications network management, basic research in defense electronics/communications, and engineering/technical support. The remaining PSCs are much smaller and dispersed, with each contributing less than 1 million and most appearing on only one or two awards.

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 = '0004'
    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 10,415,631.47 10.42 million 142

Insight

For award 0004 under agency 9700, the 1-year annual trend is concentrated in FY 2025, with $10.42 million obligated across 142 awards. This indicates a relatively broad distribution of obligations across multiple awards rather than reliance on a small number of transactions. No year-over-year trend can be assessed from the provided window because only one fiscal year is present.

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.