Award Number

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

Federal procurement analysis for award number N0001922C0004 under agency ID 9700, covering the last full year of obligation activity.

This award record summarizes obligation activity tied to PIID N0001922C0004 for agency ID 9700 during the last full year. It shows $123.71 million in total obligated across 10 award actions, for an average action value of $12.37 million.

Generated at 03/20/2026

Analysis period: Last full year

Totals reflect the provided readable and exact obligated amounts for the analysis window and may differ due to rounding.

Agency ID
9700
PIID
N0001922C0004
Type
Award
Total Obligated
123.71 million
123,705,485.61
Actions
10
Average Action Value
12,370,548.56

Overview

The award number page centers on PIID N0001922C0004 and its obligation activity within agency ID 9700. In the last full year, the award totaled $123,705,485.61 in obligated value across 10 actions, with an average action value of $12,370,548.56.

How to use this page

Use this page to review the award’s obligation scale and action frequency over the selected period. The figures provide a compact view of how much value was obligated and how that amount was distributed across recorded actions.

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 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
1700 DEPT OF THE NAVY 123,705,485.61 123.71 million 9
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 1

Insight

Obligations are highly concentrated in the DEPT OF THE NAVY, which accounts for $123.71 million across 9 awards in the 1-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears with 1 award but no obligated value, indicating negligible financial distribution outside the Navy. Overall, the award activity under PIID N0001922C0004 is dominated by a single agency with minimal spillover to other agencies.

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 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
SIKORSKY AIRCRAFT CORPORATION 78286 123,705,485.61 123.71 million 10

Insight

Obligations for PIID N0001922C0004 in the 1-year window are fully concentrated with a single vendor, SIKORSKY AIRCRAFT CORPORATION (CAGE 78286). This vendor received 10 awards totaling $123.71 million, indicating all reported obligation activity in this section is concentrated with one supplier rather than distributed across multiple vendors.

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 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
336411 AIRCRAFT MANUFACTURING 123,705,485.61 123.71 million 10

Insight

Obligations for PIID N0001922C0004 over the 1-year window are fully concentrated in NAICS 336411, Aircraft Manufacturing. This NAICS accounts for $123.71 million across 10 awards, indicating a narrow industrial distribution within the observed period. The concentration suggests the award activity is entirely aligned to aircraft manufacturing with no diversification across other NAICS codes in the provided data.

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 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
1520 AIRCRAFT, ROTARY WING 123,705,485.61 123.71 million 10

Insight

Obligations for PIID N0001922C0004 are concentrated in PSC 1520, Aircraft, Rotary Wing, with $123.71 million across 10 awards in the 1-year window. This indicates a highly focused procurement profile within this action, with all provided obligation activity attributable to a single PSC category. The distribution suggests the award is centered on rotary-wing aircraft requirements rather than a diversified mix of product services.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 123,705,485.61 123.71 million 10

Insight

Within the 1-year window, obligations for PIID N0001922C0004 are fully concentrated in FY2025, with $123.71 million obligated across 10 awards. This indicates activity is present but limited to a single fiscal year in the provided data, so no multi-year trend can be assessed here. The average obligation level is substantial, suggesting relatively high-value award activity rather than broad distribution across many awards.

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.