Award Number

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

Award number 0011 for Agency ID 9700 shows obligation activity over the last 5 years.

This page summarizes award number 0011 for Agency ID 9700 using a 5-year analysis window. The award records 860 actions with total obligated amount of $9.55 million and an average action value of $11,107.98.

Generated at 03/20/2026

Analysis period: Last 5 years

Amounts are based on the provided exact total obligated value of 9,552,859.89 and the stated analysis window.

Agency ID
9700
PIID
0011
Type
Award
Total Obligated
9.55 million
9,552,859.89
Actions
860
Average Action Value
11,107.98

Overview

Award number 0011 under Agency ID 9700 shows 860 recorded actions across the last 5 years. Total obligated dollars equal 9,552,859.89, which is about $9.55 million, with an average action value of $11,107.98. This profile reflects a high-action award with relatively small average obligations per action.

How to use this page

Use this page to review obligation volume, action frequency, and average action value for award number 0011. The figures support basic procurement analysis for activity level and spending concentration within the stated 5-year 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 = '0011'
    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 7,154,049.98 7.15 million 130
1700 DEPT OF THE NAVY 6,431,916.83 6.43 million 245
97ZS U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) 1,749,236.72 1.75 million 2
9761 DEFENSE THREAT REDUCTION AGENCY (DTRA) 1,237,819.63 1.24 million 17
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) 828,810.17 828.81 thousand 29
2100 DEPT OF THE ARMY 72,653.04 72.65 thousand 292
97AS DEFENSE LOGISTICS AGENCY 27,245.79 27.25 thousand 24
97F5 WASHINGTON HEADQUARTERS SERVICES (WHS) 27,189.80 27.19 thousand 6
97F2 DEPT OF DEFENSE EDUCATION ACTIVITY (DODEA) -1,757.51 -1.76 thousand 1
9748 DEFENSE HUMAN RESOURCES ACTIVITY -18,103.07 -18.10 thousand 1

Insight

Obligations under PIID 0011 over the last 5 years are concentrated in a few agencies, led by the Department of the Air Force ($7.15 million across 130 awards) and the Department of the Navy ($6.43 million across 245 awards). USSOCOM, DTRA, and DISA account for the next tier of spending, but at materially lower levels, indicating a steep drop-off after the top two agencies. The Department of the Army has the highest award count in the group (292) but comparatively low obligated value ($72.65 thousand), suggesting many small-value actions. Minor negative obligations for DODEA and DHRA indicate limited deobligation activity within the period.

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 = '0011'
        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
JOHNSON CONTROLS GOVERNMENT SYSTEMS LLC 1MN13 16,273,830.73 16.27 million 54
CACI TECHNOLOGIES, LLC 8D014 6,871,659.73 6.87 million 70
LEIDOS, INC. 5UTE1 6,130,101.89 6.13 million 6
NORTHROP GRUMMAN SYSTEMS CORPORATION 1W025 5,849,194.83 5.85 million 34
LOCKHEED MARTIN CORPORATION 64059 4,318,080.03 4.32 million 13
SOLUTIONS DEVELOPMENT CORPORAT 1GGR6 2,589,379.12 2.59 million 40
TMC DESIGN CORPORATION 09SQ9 1,522,867.73 1.52 million 8
SES GOVERNMENT SOLUTIONS, INC. 1VKQ6 1,205,948.70 1.21 million 8
BONNEVILLE POWER ADMINISTRATION 0CNP5 1,140,493.90 1.14 million 7
POND-JMWALLER, LLC 5HVJ3 1,098,649.41 1.10 million 5

Insight

Over the 5-year window for PIID 0011 under agency 9700, obligated dollars are concentrated among a small set of vendors, led by JOHNSON CONTROLS GOVERNMENT SYSTEMS LLC at $16.27M across 54 awards. CACI TECHNOLOGIES, LLC recorded the highest award count (70) but a lower obligated total of $6.87M, indicating a more fragmented spend pattern than Johnson Controls. The remaining vendors each received less than $6.0M, with obligations tapering to about $1.10M at the tenth-ranked vendor, suggesting a long tail of smaller suppliers alongside a few higher-value incumbents.

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 = '0011'
    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
541330 ENGINEERING SERVICES 17,502,273.95 17.50 million 266
541712 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) 5,612,537.49 5.61 million 89
336414 GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING 4,679,445.00 4.68 million 10
334220 RADIO AND TELEVISION BROADCASTING AND WIRELESS COMMUNICATIONS EQUIPMENT MANUFACTURING 1,450,867.73 1.45 million 13
561210 FACILITIES SUPPORT SERVICES 1,420,066.05 1.42 million 45
517410 SATELLITE TELECOMMUNICATIONS 1,205,948.70 1.21 million 8
238990 ALL OTHER SPECIALTY TRADE CONTRACTORS 1,140,493.90 1.14 million 7
541611 ADMINISTRATIVE MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES 990,581.39 990.58 thousand 11
561621 SECURITY SYSTEMS SERVICES (EXCEPT LOCKSMITHS) 644,738.34 644.74 thousand 18
336212 TRUCK TRAILER MANUFACTURING 414,228.72 414.23 thousand 7

Insight

Obligations under PIID 0011 are concentrated in a small set of NAICS codes, led by 541330 Engineering Services at $17.50 million across 266 awards and 541712 R&D in the physical, engineering, and life sciences at $5.61 million across 89 awards. These two codes account for the majority of obligated dollars in the provided top 10, indicating a clear emphasis on engineering and technical R&D activities over the 5-year window. The remaining obligations are distributed across manufacturing, communications, facilities support, consulting, and security services, with no single code approaching the top two in dollar volume.

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 = '0011'
    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
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 6,883,515.65 6.88 million 98
AD26 R&D- DEFENSE OTHER: SERVICES (MANAGEMENT/SUPPORT) 6,836,636.40 6.84 million 71
AD93 R&D- DEFENSE OTHER: OTHER (ADVANCED DEVELOPMENT) 6,091,259.78 6.09 million 8
1410 GUIDED MISSILES 4,475,193.58 4.48 million 5
1510 AIRCRAFT, FIXED WING 2,734,560.21 2.73 million 58
B541 SPECIAL STUDIES/ANALYSIS- DEFENSE 2,586,819.15 2.59 million 41
5999 MISCELLANEOUS ELECTRICAL AND ELECTRONIC COMPONENTS 1,522,867.73 1.52 million 8
R499 SUPPORT- PROFESSIONAL: OTHER 1,312,952.53 1.31 million 34
D304 IT AND TELECOM- TELECOMMUNICATIONS AND TRANSMISSION 1,199,888.04 1.20 million 9
R706 SUPPORT- MANAGEMENT: LOGISTICS SUPPORT 1,152,649.03 1.15 million 28

Insight

Over the past 5 years, obligations for PIID 0011 are concentrated in professional support and R&D-related PSCs, led by R425 ($6.88M across 98 awards) and AD26 ($6.84M across 71 awards), with AD93 adding another $6.09M despite only 8 awards. High-dollar materiel categories also appear among the top PSCs, including 1410 Guided Missiles ($4.48M) and 1510 Aircraft, Fixed Wing ($2.73M), indicating a mixed portfolio of services, development, and equipment. Award activity is more dispersed than dollars: several PSCs have relatively high award counts but lower obligated amounts, suggesting many smaller transactions alongside a few larger-value obligations.

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 = '0011'
    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 23,504,520.95 23.50 million 396
2022 -5,650,979.15 -5.65 million 201
2023 -5,144,660.53 -5.14 million 121
2024 -3,032,335.05 -3.03 million 88
2025 -123,686.33 -123.69 thousand 54

Insight

Obligations for PIID 0011 were highly concentrated in 2021, with $23.50 million across 396 awards, followed by four consecutive years of net deobligations. The largest negative obligation occurred in 2022 at -$5.65 million across 201 awards, and both obligation magnitude and award volume declined further in 2023 and 2024. In 2025, activity remained limited at 54 awards and -$123.69 thousand, indicating a sustained contraction in both transaction count and net funding over the period.

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.