This award page summarizes federal procurement activity tied to award number N0001924C0009 for agency 9700. Over the last 10 years, the award records $2,091,056,030.16 in total obligated value across 5 actions.
Award Number
Award Number 9700 / N0001924C0009 Federal Contract Action Summary (Last 10 Years)
Award number N0001924C0009 for agency 9700 shows $2.09 billion in obligated value across 5 actions over the last 10 years.
Values shown here use the provided analysis window and obligation totals for award number N0001924C0009.
Overview
Award number N0001924C0009 is associated with agency 9700 and shows 5 recorded award actions in the last 10 years. The total obligated value is $2,091,056,030.16, with an average action value of $418,211,206.03. This page presents the award-level summary for procurement analysis and review.
How to use this page
Use this page to review the scale and activity pattern of award number N0001924C0009 within the selected 10-year window. The obligation total and action count provide a concise starting point for comparing this award against other federal procurement records tied to agency 9700.
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 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,091,056,030.16 | 2.09 billion | 5 |
Insight
Over the 10-year window, obligations for PIID N0001924C0009 are fully concentrated in the DEPT OF THE NAVY. The agency accounts for the entirety of the provided obligation total, at $2.09 billion across 5 awards, indicating a highly concentrated award distribution. This pattern suggests the contract activity is narrowly associated with a single agency rather than dispersed across multiple 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 = '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 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,091,056,030.16 | 2.09 billion | 5 |
Insight
Obligations for PIID N0001924C0009 are fully concentrated with a single vendor over the 10-year window. SIKORSKY AIRCRAFT CORPORATION (CAGE 78286) received $2.09 billion across 5 awards, indicating a highly concentrated award distribution with limited vendor diversification for this action.
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 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,091,056,030.16 | 2.09 billion | 5 |
Insight
The award’s obligated dollars are fully concentrated in NAICS 336411, Aircraft Manufacturing, with 5 awards totaling $2.09 billion over the 10-year window. This indicates a narrow procurement profile and strong specialization in aircraft manufacturing for PIID N0001924C0009. No other NAICS codes are present in the provided rows, so there is no observable diversification within this section.
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 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,091,056,030.16 | 2.09 billion | 5 |
Insight
Obligations for this award are entirely concentrated in PSC 1520, Aircraft, Rotary Wing, with $2.09 billion across 5 awards over the 10-year window. This indicates a highly focused procurement profile with no evidence of broader PSC diversification in the provided rows. The small award count relative to the obligated dollars suggests a limited number of large-value actions driving the award’s funding profile.
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 10 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 are concentrated in 2025, which accounts for 1.80 billion across 3 awards, far exceeding prior years. By contrast, 2023 and 2024 each reflect a single award with materially lower obligations of 168.20 million and 120.27 million, respectively. This pattern indicates a sharp year-over-year increase in both funding volume and award activity in the latest year.
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.