Award Number

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

Analysis of award number N0001924C0009 for agency 9700 during the last full year, showing 3 award actions and $1.80 billion obligated.

This page summarizes award number N0001924C0009 for agency ID 9700 over the last full year. The record shows 3 award actions with total obligations of $1,802,591,721.45 and an average action value of $600,863,907.15.

Generated at 03/20/2026

Analysis period: Last full year

Obligation totals are shown in readable and exact form; the readable value is rounded from the exact amount.

Agency ID
9700
PIID
N0001924C0009
Type
Award
Total Obligated
1.80 billion
1,802,591,721.45
Actions
3
Average Action Value
600,863,907.15

Overview

For the last full year, award number N0001924C0009 under agency ID 9700 recorded 3 actions. Total obligated funding was $1,802,591,721.45, with an average action value of $600,863,907.15.

How to use this page

Use this page to review the award-level obligation pattern for N0001924C0009 within the selected analysis window. The figures support quick comparison of total obligations, action count, and average action value without adding assumptions beyond the reported record.

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 = 'N0001924C0009'
    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 1,802,591,721.45 1.80 billion 3

Insight

Over the past 1 year, obligation activity for PIID N0001924C0009 is fully concentrated in the Department of the Navy, which accounts for $1.80 billion across 3 awards. This indicates a highly concentrated award profile with no visible distribution across other agencies in the provided data. The limited award count suggests the obligation base is driven by a small number of transactions rather than broad agency participation.

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 = 'N0001924C0009'
        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 1,802,591,721.45 1.80 billion 3

Insight

Obligations for PIID N0001924C0009 over the last year are fully concentrated with SIKORSKY AIRCRAFT CORPORATION (CAGE 78286), which accounts for the entire listed total of $1.80 billion across 3 awards. This indicates a highly concentrated award distribution with no other vendors represented in the provided rows.

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 = 'N0001924C0009'
    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 1,802,591,721.45 1.80 billion 3

Insight

Obligations for this award over the 1-year window are fully concentrated in NAICS 336411, Aircraft Manufacturing. The single NAICS category accounts for $1.80 billion across 3 awards, indicating a highly concentrated obligation pattern with no distribution across other NAICS codes in the provided data. This suggests the award activity is narrowly aligned to aircraft manufacturing.

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 = 'N0001924C0009'
    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 1,802,591,721.45 1.80 billion 3

Insight

Obligations for this award are fully concentrated in PSC 1520, Aircraft, Rotary Wing, with $1.80 billion obligated across 3 awards in the 1-year window. This indicates a highly focused procurement profile with no evidence of PSC diversification in the provided data. The concentration in a single PSC suggests rotary-wing aircraft is the dominant acquisition 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 = 'N0001924C0009'
    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 1,802,591,721.45 1.80 billion 3

Insight

For PIID N0001924C0009 within the 1-year window, reported obligations are concentrated entirely in FY2025, with $1.80 billion obligated across 3 awards. This indicates a highly concentrated obligation pattern in the observed period rather than a distributed annual trend. The limited award count suggests the activity is driven by a small number of award actions.

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.