Award Number

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

Award number N0001922C0004 for agency ID 9700 shows 27 actions over the last 5 years with $3.42 billion obligated.

This award record for PIID N0001922C0004 is tied to agency ID 9700 and covers activity in the last 5 years. The award totals $3,422,749,298.96 across 27 actions, for an average action value of $126,768,492.55.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals reflect the provided analysis window and the exact obligated amount reported for this award.

Agency ID
9700
PIID
N0001922C0004
Type
Award
Total Obligated
3.42 billion
3,422,749,298.96
Actions
27
Average Action Value
126,768,492.55

Overview

Over the last 5 years, award number N0001922C0004 recorded 27 actions and $3,422,749,298.96 in total obligated value. The average action value was $126,768,492.55, indicating a high-dollar award with repeated activity across the period.

How to use this page

Use this page to review the award’s obligation history, action count, and average action value in one place. The record is useful for tracking activity patterns tied to agency ID 9700 and for comparing this award against other FPDS entries in the same analysis 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 = 'N0001922C0004'
    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 3,422,749,298.96 3.42 billion 22
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 5

Insight

Obligations for PIID N0001922C0004 are highly concentrated in DEPT OF THE NAVY, which accounts for $3.42 billion across 22 awards over the 5-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears in five awards but with $0 obligated, indicating administrative presence without recorded funding impact in this view. Overall, obligated activity is concentrated in a single agency rather than broadly distributed.

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 = 'N0001922C0004'
        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 3,422,749,298.96 3.42 billion 27

Insight

Obligations for PIID N0001922C0004 over the 5-year window are fully concentrated with a single vendor, SIKORSKY AIRCRAFT CORPORATION (CAGE 78286). This vendor accounts for $3.42 billion across 27 awards, indicating a highly concentrated award pattern with no other vendors represented in the provided data. The distribution suggests this award is entirely vendor-specific rather than dispersed across multiple suppliers.

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 = 'N0001922C0004'
    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 3,422,749,298.96 3.42 billion 27

Insight

Obligations for this award are entirely concentrated in NAICS 336411, Aircraft Manufacturing, with 3.42 billion obligated across 27 awards in the 5-year window. This indicates a highly focused procurement profile tied to aircraft production activities rather than a diversified industrial mix. The volume of awards, combined with the full dollar concentration in a single NAICS, suggests recurring obligations within the same manufacturing category.

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 = 'N0001922C0004'
    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
1520 AIRCRAFT, ROTARY WING 3,422,749,298.96 3.42 billion 27

Insight

For PIID N0001922C0004 over the 5-year window, obligations are fully concentrated in PSC 1520, Aircraft, Rotary Wing, with $3.42 billion across 27 awards. This indicates a highly focused procurement profile with no visible PSC diversification in the provided data. The concentration suggests rotary-wing aircraft obligations are the dominant driver of contract activity for this award.

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 = 'N0001922C0004'
    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 35,288,184.00 35.29 million 1
2022 445,401,619.74 445.40 million 4
2023 1,366,290,510.50 1.37 billion 5
2024 1,452,063,499.11 1.45 billion 7
2025 123,705,485.61 123.71 million 10

Insight

Obligations for PIID N0001922C0004 are heavily concentrated in FY 2023 and FY 2024, which together account for the vast majority of the 5-year obligated dollars. FY 2021 is comparatively small at 35.29 million, followed by a sharp increase in FY 2022, a peak in FY 2024 at 1.45 billion, and a decline to 123.71 million in FY 2025. Award counts rise steadily from 1 in FY 2021 to 10 in FY 2025, indicating increasing award activity even as obligated dollars became more uneven across years.

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.