Award Number

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

Federal award number 0006 for agency 9700 shows 101 actions and $57.81 million obligated in the last full year.

This award page summarizes procurement activity for award number 0006 under agency ID 9700 during the last full year. The award recorded 101 actions with total obligated amount of $57,813,286.60.

Generated at 03/20/2026

Analysis period: Last full year

Total obligated values are shown in both readable and exact form, and the average action value is $572,408.78.

Agency ID
9700
PIID
0006
Type
Award
Total Obligated
57.81 million
57,813,286.60
Actions
101
Average Action Value
572,408.78

Overview

The award record for PIID 0006 reflects procurement activity within agency ID 9700 over the last full year. Across 101 award actions, the total obligated amount reached $57,813,286.60, with an average action value of $572,408.78.

How to use this page

Use this page to review the award-level activity summary for PIID 0006 and compare obligation totals with action volume over the analysis window. The figures provide a concise view of how this award performed in dollar terms and transaction count 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 = '0006'
    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 70,998,664.92 71.00 million 29
97AS DEFENSE LOGISTICS AGENCY -6,548.13 -6.55 thousand 3
1700 DEPT OF THE NAVY -1,994,452.29 -1.99 million 11
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) -3,036,860.05 -3.04 million 2
2100 DEPT OF THE ARMY -3,511,896.39 -3.51 million 45
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -4,635,621.46 -4.64 million 11

Insight

Obligations for PIID 0006 over the last 1 year are highly concentrated in the Department of the Air Force, which accounts for $71.0 million across 29 awards. The remaining agencies show relatively small and mostly negative obligations, with the largest downward adjustments at DCMA (-$4.64 million), the Army (-$3.51 million), DISA (-$3.04 million), the Navy (-$1.99 million), and DLA (-$6.55 thousand). This distribution indicates that current funding activity is driven primarily by Air Force obligations, while other components are net deobligations or minor adjustments.

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 = '0006'
        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 71,473,324.21 71.47 million 23
JOHNSON CONTROLS GOVERNMENT SYSTEMS LLC 1MN13 2,465,656.27 2.47 million 5
RDC CIRCLE, A SDVOSB, LLC 6U9P8 743,333.00 743.33 thousand 1
ECC CENTCOM CONSTRUCTORS LLC 65AW8 433,857.00 433.86 thousand 1
SIEMENS GOVERNMENT SERVICES, INC. 0DZG1 177,266.00 177.27 thousand 3
MOFFATT & NICHOL 538V5 76,301.00 76.30 thousand 2
APTIM FEDERAL SERVICES, LLC 1YQ36 5,165.68 5.17 thousand 1
ELS, INC 3X287 0.00 0.00 1
GENERAL DYNAMICS GOVERNMENT SY 0.00 0.00 1
CIVIL WORKS CONTRACTING LLC 6BXH9 0.00 0.00 1

Insight

Over the past year, obligations under PIID 0006 are highly concentrated, with Massachusetts Institute of Technology accounting for $71.47 million across 23 awards and far exceeding all other vendors. The next largest recipient, Johnson Controls Government Systems LLC, received $2.47 million across 5 awards, while the remaining vendors each received less than $1 million, indicating a steep drop-off after the top two suppliers. Several vendors have single-award, low-dollar obligations, and three vendors show $0 obligated, suggesting a broad but uneven distribution of activity.

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 = '0006'
    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) 68,512,139.39 68.51 million 33
541330 ENGINEERING SERVICES 2,194,299.89 2.19 million 21
237990 OTHER HEAVY AND CIVIL ENGINEERING CONSTRUCTION 743,333.00 743.33 thousand 1
236220 COMMERCIAL AND INSTITUTIONAL BUILDING CONSTRUCTION 433,857.00 433.86 thousand 1
562998 ALL OTHER MISCELLANEOUS WASTE MANAGEMENT SERVICES 5,165.68 5.17 thousand 1
238220 PLUMBING, HEATING, AND AIR-CONDITIONING CONTRACTORS 0.00 0.00 1
541620 ENVIRONMENTAL CONSULTING SERVICES 0.00 0.00 1
335311 POWER, DISTRIBUTION, AND SPECIALTY TRANSFORMER MANUFACTURING 0.00 0.00 1
212312 CRUSHED AND BROKEN LIMESTONE MINING AND QUARRYING -25.80 -25.80 1
561499 ALL OTHER BUSINESS SUPPORT SERVICES -375.54 -375.54 1

Insight

Obligations under PIID 0006 for the 1-year window are heavily concentrated in NAICS 541712, which accounts for 68.51 million across 33 awards and dominates the activity profile. The next largest NAICS, 541330, is much smaller at 2.19 million across 21 awards, while the remaining categories each represent less than 1 million and are largely isolated single-award entries. Several NAICS lines carry zero or negative obligated amounts, indicating minimal or corrective activity rather than material funded work in those categories.

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 = '0006'
    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) 71,268,560.31 71.27 million 30
Y1PZ CONSTRUCTION OF OTHER NON-BUILDING FACILITIES 743,333.00 743.33 thousand 1
Y1JZ CONSTRUCTION OF MISCELLANEOUS BUILDINGS 433,857.00 433.86 thousand 1
H935 OTHER QC/TEST/INSPECT- SERVICE AND TRADE EQUIPMENT 177,266.00 177.27 thousand 3
C219 ARCHITECT AND ENGINEERING- GENERAL: OTHER 75,459.98 75.46 thousand 3
1040 CHEMICAL WEAPONS AND EQUIPMENT 5,165.68 5.17 thousand 1
B599 SPECIAL STUDIES/ANALYSIS- OTHER 0.00 0.00 1
Z2PD REPAIR OR ALTERATION OF WASTE TREATMENT AND STORAGE FACILITIES 0.00 0.00 1
J020 MAINT/REPAIR/REBUILD OF EQUIPMENT- SHIP AND MARINE EQUIPMENT 0.00 0.00 1
6150 MISCELLANEOUS ELECTRIC POWER AND DISTRIBUTION EQUIPMENT 0.00 0.00 1

Insight

Obligations for PIID 0006 are highly concentrated in PSC AC61, which accounts for 71.27 million across 30 awards and dominates the 1-year profile. All other PSCs are comparatively minor, with the next largest being Y1PZ at 743.33 thousand and Y1JZ at 433.86 thousand, each on a single award. The remaining PSCs are limited to small dollar amounts or zero-obligation awards, indicating a narrowly concentrated mix with one primary R&D category and only isolated activity in construction, engineering, inspection, and other support codes.

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 = '0006'
    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 57,813,286.60 57.81 million 101

Insight

In the 1-year window, FY 2025 accounts for $57.81 million in total obligated funding across 101 awards under PIID 0006 for Agency ID 9700. Because only one year is present, the annual trend is not distributed across multiple periods and therefore indicates a single-period concentration of obligation activity rather than a multi-year pattern. The observed level suggests substantial award volume and funding in the reported year, but no year-over-year change can be assessed from the available data.

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.