This page summarizes procurement activity tied to award number N0001924C0009 for agency ID 9700. In the last 5 years, the award recorded 5 actions and total obligated amounts of 2.09 billion, with an average action value of 418,211,206.03.
Award Number
Award Number 9700 / N0001924C0009 Federal Contract Action Summary (Last 5 Years)
Federal award record for award number N0001924C0009 under agency ID 9700, showing obligation activity over the last 5 years.
Totals reflect the provided 5-year analysis window and the exact obligated amount of 2,091,056,030.16.
Overview
The award number N0001924C0009 is associated with agency ID 9700 and shows obligation activity within the last 5 years. Across 5 award actions, total obligated dollars reached 2,091,056,030.16, with an average action value of 418,211,206.03.
How to use this page
Use this page to review high-level obligation trends for the award and to compare the total and average action values over the selected period. It is suitable for quick reference when checking how much funding was obligated and how many actions are included in the 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 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 | 2,091,056,030.16 | 2.09 billion | 5 |
Insight
Over the 5-year window, obligations tied to PIID N0001924C0009 are fully concentrated in a single top agency: the Department of the Navy. The Navy accounts for $2.09 billion across 5 awards, indicating that activity for this award is highly centralized rather than broadly distributed across multiple agencies. This pattern suggests the award’s obligation profile is driven entirely by Navy-managed funding and requirements.
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 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 | 2,091,056,030.16 | 2.09 billion | 5 |
Insight
Obligations for PIID N0001924C0009 are fully concentrated with SIKORSKY AIRCRAFT CORPORATION (CAGE 78286), which accounted for $2.09 billion across 5 awards over the 5-year window. This indicates a highly concentrated vendor distribution with no diversification among top vendors for this award. The pattern suggests the award’s obligated dollars are sustained through a single contractor relationship rather than spread 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 = 'N0001924C0009'
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 | 2,091,056,030.16 | 2.09 billion | 5 |
Insight
Over the 5-year window, obligations for PIID N0001924C0009 are fully concentrated in NAICS 336411, Aircraft Manufacturing. This NAICS accounts for $2.09 billion across 5 awards, indicating a highly concentrated award profile with no distribution across other industries 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 = 'N0001924C0009'
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 | 2,091,056,030.16 | 2.09 billion | 5 |
Insight
Obligations for this award are fully concentrated in PSC 1520, Aircraft, Rotary Wing, with $2.09 billion obligated across 5 awards/actions in the 5-year window. This indicates a highly focused procurement profile with no visible diversification across PSCs in the provided data. The limited award count combined with the large obligated amount suggests a small number of high-dollar rotary-wing aircraft transactions drive the award’s activity.
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 5 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2023 | 168,199,285.71 | 168.20 million | 1 |
| 2024 | 120,265,023.00 | 120.27 million | 1 |
| 2025 | 1,802,591,721.45 | 1.80 billion | 3 |
Insight
Obligations for PIID N0001924C0009 were concentrated in 2025, when funding rose to $1.80 billion across 3 awards, far exceeding prior years. In comparison, 2023 and 2024 each had a single award at $168.20 million and $120.27 million, respectively. This indicates a sharp upward shift in both dollar value and award volume in the most recent year within the 5-year window.
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.