Award Number

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

Award number N0001906C0081 for agency ID 9700 shows 51 award actions over the last 5 years with $622.36 million obligated.

This page summarizes procurement activity for award N0001906C0081 under agency ID 9700 across the last 5 years. The record shows 51 actions and $622,360,001.34 in total obligated value.

Generated at 03/20/2026

Analysis period: Last 5 years

Dollar figures are shown in both readable and exact form; average action value is $12,203,137.28.

Agency ID
9700
PIID
N0001906C0081
Type
Award
Total Obligated
622.36 million
622,360,001.34
Actions
51
Average Action Value
12,203,137.28

Overview

In the last 5 years, award N0001906C0081 has accumulated 51 actions and $622,360,001.34 in total obligated value. The average action value is $12,203,137.28, indicating a high-value award history over the analysis window.

How to use this page

Use this page to review the volume and value of procurement activity associated with award N0001906C0081. The figures support quick comparison across awards, action counts, and obligated totals for agency ID 9700.

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 = 'N0001906C0081'
    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
1700 DEPT OF THE NAVY 623,049,826.14 623.05 million 47
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -689,824.80 -689.82 thousand 4

Insight

Obligations for PIID N0001906C0081 are highly concentrated in the Department of the Navy, which accounts for 623.05 million across 47 awards. Defense Contract Management Agency activity is limited and negative at -689.82 thousand across 4 awards, indicating small downward adjustments relative to the Navy’s obligation total. Overall, the award history is overwhelmingly Navy-driven with minimal support activity from DCMA.

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 = 'N0001906C0081'
        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
SIKORSKY AIRCRAFT CORPORATION 78286 622,360,001.34 622.36 million 51

Insight

Obligations under PIID N0001906C0081 are fully concentrated with a single vendor, SIKORSKY AIRCRAFT CORPORATION (CAGE 78286), over the 5-year window. This vendor accounts for $622.36 million across 51 awards, indicating a high degree of award and obligation concentration rather than a distributed vendor base. The recurring award activity suggests sustained reliance on the same contractor for this requirement.

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 = 'N0001906C0081'
    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
336411 AIRCRAFT MANUFACTURING 622,360,001.34 622.36 million 51

Insight

Obligations for PIID N0001906C0081 over the 5-year window are fully concentrated in NAICS 336411, Aircraft Manufacturing. This category accounts for $622.36 million across 51 awards, indicating a high degree of procurement focus within a single industry. The absence of additional NAICS codes in the provided rows suggests no observable distribution across other sectors for this award.

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 = 'N0001906C0081'
    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
AC15 NATIONAL DEFENSE R&D SVCS; DEPARTMENT OF DEFENSE - MILITARY; R&D FACILITIES & MAJ EQUIP 622,360,001.34 622.36 million 51

Insight

Over the 5-year window, obligations for this award are fully concentrated in PSC AC15, with $622.36 million across 51 awards. This indicates a highly focused procurement profile centered on National Defense R&D services, Department of Defense military R&D facilities, and major equipment. The repeated award activity suggests sustained funding in a single product/service category rather than a diversified obligation pattern.

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 = 'N0001906C0081'
    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 253,010,844.78 253.01 million 14
2022 199,900,927.66 199.90 million 15
2023 119,816,372.59 119.82 million 12
2024 58,858,859.03 58.86 million 6
2025 -9,227,002.72 -9.23 million 4

Insight

Obligations under PIID N0001906C0081 decline steadily across the 5-year window, falling from $253.01 million in 2021 to $58.86 million in 2024, with a negative obligation of $9.23 million in 2025. Award activity also contracts over the period, moving from 14–15 awards in 2021–2022 to 6 in 2024 and 4 in 2025. This pattern indicates both reduced funding concentration and lower transaction volume in the later years of 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.