Award Number

Award Number 9700 / N0001920C0047 Federal Contract Action Summary (Last 10 Years)

Federal procurement record for award number N0001920C0047 under agency ID 9700, summarizing obligations and action history over the last 10 years.

This page presents the award-level FPDS profile for PIID N0001920C0047. Over the last 10 years, the award shows 29 actions and total obligated funding of $2.31 billion.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals reflect the provided analysis window and may differ by reporting date or source reconciliation.

Agency ID
9700
PIID
N0001920C0047
Type
Award
Total Obligated
2.31 billion
2,309,393,185.75
Actions
29
Average Action Value
79,634,247.78

Overview

The award record for PIID N0001920C0047 shows 29 recorded actions within the last 10 years. Total obligated amount is 2,309,393,185.75, with an average action value of 79,634,247.78. This view is tied to agency ID 9700 and is intended to support award-level procurement review.

How to use this page

Use this page to review the award’s obligation level, action count, and average action value in one place. It is useful for tracking award activity over time and for comparing this award against other FPDS records within the same agency context.

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 = 'N0001920C0047'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 2,309,393,185.75 2.31 billion 26
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 3

Insight

Obligations for PIID N0001920C0047 are highly concentrated in the Department of the Navy, which accounts for 2.31 billion across 26 awards over the 10-year window. The only other recorded agency is DCMA, with 3 awards and no obligated dollars, indicating administrative or non-obligated activity rather than funding concentration. Overall, the award history is overwhelmingly centered on the Navy, with no meaningful obligated distribution across other agencies in the provided data.

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 = 'N0001920C0047'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 2,309,393,185.75 2.31 billion 29

Insight

Obligations for PIID N0001920C0047 are fully concentrated with SIKORSKY AIRCRAFT CORPORATION (CAGE 78286), which accounts for the entirety of the reported 10-year obligations at $2.31 billion across 29 awards. This indicates a single-vendor award profile with no diversification among top vendors in the provided data. The award volume suggests repeated contractual activity with the same contractor over the period.

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 = 'N0001920C0047'
    AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__award__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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 2,309,393,185.75 2.31 billion 29

Insight

Over the 10-year window, obligations on this award are fully concentrated in NAICS 336411, Aircraft Manufacturing, with $2.31 billion across 29 actions. This indicates a narrow industrial scope and sustained reliance on a single NAICS classification rather than a diversified award profile. The distribution suggests the requirement is highly specialized and tied to aircraft manufacturing activity.

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 = 'N0001920C0047'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
1520 AIRCRAFT, ROTARY WING 2,309,393,185.75 2.31 billion 29

Insight

Obligations for PIID N0001920C0047 are fully concentrated in PSC 1520, Aircraft, Rotary Wing, with $2.31 billion obligated across 29 awards. This indicates a highly focused procurement profile with no diversification across other PSCs in the provided data. The award count suggests repeated obligation activity within the same product category over the 10-year window.

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 = 'N0001920C0047'
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2020 125,424,833.00 125.42 million 3
2021 908,417,616.46 908.42 million 4
2022 1,250,133,506.54 1.25 billion 9
2023 3,039,388.00 3.04 million 4
2024 22,686,107.00 22.69 million 5
2025 -308,265.25 -308.27 thousand 4

Insight

Obligations for PIID N0001920C0047 are highly concentrated in 2021 and 2022, which account for the bulk of the 10-year activity at 908.42 million and 1.25 billion across 4 and 9 awards, respectively. By comparison, 2020 was materially lower at 125.42 million, and annual obligations fell sharply after 2022 to 3.04 million in 2023 and 22.69 million in 2024. In 2025, obligations are slightly negative at -308.27 thousand across 4 awards, indicating net deobligation activity rather than new funding.

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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.