This page summarizes obligation activity for award N0001914C0050 over the last 10 years. The award shows 161 actions and total obligations of 2.70 billion dollars.
Award Number
Award Number 9700 / N0001914C0050 Federal Contract Action Summary (Last 10 Years)
Federal procurement award page for award number N0001914C0050 under agency ID 9700, covering the last 10 years of recorded action data.
Totals reflect the exact obligated amount of 2,700,968,653.88 and an average action value of 16,776,202.82 across 161 actions.
Overview
Award N0001914C0050 is the procurement record identified for agency ID 9700 in the last 10 years of action data. The award totals 2,700,968,653.88 in obligated dollars across 161 actions, for an average action value of 16,776,202.82. These figures provide a compact view of activity volume and obligation concentration on the award.
How to use this page
Use this page to review the award-level obligation history for N0001914C0050 and to compare action counts, totals, and average values across the recorded period. The data is useful for basic trend review, award identification, and cross-checking FPDS query results tied to agency ID 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 = 'N0001914C0050'
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,700,968,653.88 | 2.70 billion | 158 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 3 |
Insight
Obligations are highly concentrated in the Department of the Navy, which accounts for $2.70 billion across 158 awards. The only other agency listed, DCMA, has 3 awards with no obligated dollars, indicating limited secondary activity. Overall, the award history for PIID N0001914C0050 is overwhelmingly tied to the Navy, with negligible obligated value outside that agency.
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 = 'N0001914C0050'
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,315,392,929.88 | 2.32 billion | 147 |
| SIKORSKY AIRCRAFT CORPORATION | 385,575,724.00 | 385.58 million | 14 |
Insight
Obligations are heavily concentrated with SIKORSKY AIRCRAFT CORPORATION, which accounts for 2.32 billion across 147 awards under CAGE 78286. An additional 385.58 million is recorded under the same vendor name without a CAGE code across 14 awards, suggesting the award history is split across vendor identifiers in the queried period. Overall, the data indicate sustained reliance on a single vendor name for this PIID over the 10-year window.
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 = 'N0001914C0050'
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,700,968,653.88 | 2.70 billion | 161 |
Insight
The award is fully concentrated in NAICS 336411, Aircraft Manufacturing, with $2.70 billion obligated across 161 awards over the 10-year window. This indicates a highly focused procurement profile tied to aircraft manufacturing requirements rather than a diversified industrial mix. The volume of awards suggests repeated procurement activity within the same NAICS, but all observed obligations remain within a single industry 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 = 'N0001914C0050'
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 |
|---|---|---|---|---|
| AC14 | R&D- DEFENSE SYSTEM: AIRCRAFT (ENGINEERING DEVELOPMENT) | 2,120,821,381.30 | 2.12 billion | 80 |
| AC14 | NATIONAL DEFENSE R&D SERVICES; DEPARTMENT OF DEFENSE - MILITARY; R&D ADMINISTRATIVE EXPENSES | 580,147,272.58 | 580.15 million | 81 |
Insight
Obligations are heavily concentrated in PSC AC14 across the 10-year window, indicating that this PIID is dominated by aircraft-related defense R&D activity. The largest AC14 entry accounts for 2.12 billion across 80 awards, while the second AC14 entry adds 580.15 million across 81 awards, suggesting sustained but segmented funding within the same PSC family. Together, these rows represent the primary obligation drivers 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 = 'N0001914C0050'
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 |
|---|---|---|---|
| 2016 | 288,277,000.00 | 288.28 million | 12 |
| 2017 | 277,211,820.00 | 277.21 million | 15 |
| 2018 | 343,554,903.00 | 343.55 million | 18 |
| 2019 | 589,039,357.48 | 589.04 million | 19 |
| 2020 | 632,933,916.63 | 632.93 million | 19 |
| 2021 | 502,635,401.44 | 502.64 million | 23 |
| 2022 | 37,934,417.65 | 37.93 million | 23 |
| 2023 | 28,316,000.68 | 28.32 million | 17 |
| 2024 | 1,065,837.00 | 1.07 million | 12 |
| 2025 | 0.00 | 0.00 | 3 |
Insight
Obligations for PIID N0001914C0050 were concentrated in 2019–2021, when annual obligated amounts ranged from $502.64 million to $632.93 million and award counts held at 19 to 23. Prior to that period, obligations were lower but generally increasing from $277.21 million in 2017 to $589.04 million in 2019, with award counts rising from 12 to 19. Activity then fell sharply in 2022–2024, dropping to $37.93 million, $28.32 million, and $1.07 million respectively, while 2025 shows 3 awards with no obligated dollars reported.
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.