This page presents award-level FPDS analysis for PIID N0001916C0048 across the last 10 years. The award shows 107 actions and total obligated spending of 2.66 billion dollars.
Award Number
Award Number 9700 / N0001916C0048 Federal Contract Action Summary (Last 10 Years)
Federal procurement award page for award number N0001916C0048 under Agency ID 9700, summarizing obligations and action activity over the last 10 years.
Totals shown here use the provided analysis window and may differ from broader lifetime or system-level views.
Overview
For Agency ID 9700, award number N0001916C0048 accumulated 2,657,312,745.68 dollars in obligated value across 107 award actions. The average action value is 24,834,698.56 dollars, indicating substantial activity at the action level within the selected 10-year window.
How to use this page
Use this page to review award-level obligation totals and action frequency for N0001916C0048 within the last 10 years. The figures support basic trend review, comparison with other awards, and quick validation of award activity 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 = 'N0001916C0048'
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,661,026,547.34 | 2.66 billion | 100 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | -3,713,801.66 | -3.71 million | 7 |
Insight
Obligations for PIID N0001916C0048 are highly concentrated in the DEPT OF THE NAVY, which accounts for 2.66 billion across 100 awards over the 10-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) shows a comparatively small negative obligated amount of -3.71 million across 7 awards, indicating minimal offset relative to Navy funding. Overall, the award is overwhelmingly associated with Navy obligations, with DCMA representing a minor and negative adjustment in the funding profile.
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 = 'N0001916C0048'
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,627,312,745.68 | 2.63 billion | 105 |
| SIKORSKY AIRCRAFT CORPORATION | 30,000,000.00 | 30.00 million | 2 |
Insight
Obligations are highly concentrated with SIKORSKY AIRCRAFT CORPORATION, which accounts for the vast majority of award activity in this 10-year window. The vendor appears in two rows: one associated with CAGE 78286 totaling $2.63 billion across 105 awards, and a second row without a CAGE code totaling $30.00 million across 2 awards. This pattern indicates the award is primarily sustained by a single vendor relationship, with a smaller amount recorded under an uncoded entry.
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 = 'N0001916C0048'
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,657,312,745.68 | 2.66 billion | 107 |
Insight
For PIID N0001916C0048 under agency 9700 over the 10-year window, obligations are fully concentrated in NAICS 336411, Aircraft Manufacturing. This account records 107 awards totaling $2.66 billion, indicating a highly focused industrial base with no diversification across other NAICS codes in the provided data. The distribution suggests the award activity is materially tied 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 = 'N0001916C0048'
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,657,312,745.68 | 2.66 billion | 107 |
Insight
Obligations for this award are fully concentrated in PSC 1520, Aircraft, Rotary Wing, at $2.66 billion across 107 awards. This indicates a highly focused procurement profile with no evidence of PSC diversification in the provided data. The volume of awards suggests repeated activity within the same product/service category over the 10-year window.
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 = 'N0001916C0048'
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 | 30,000,000.00 | 30.00 million | 2 |
| 2017 | 365,960,485.00 | 365.96 million | 5 |
| 2018 | 141,828,110.00 | 141.83 million | 10 |
| 2019 | 1,259,797,806.53 | 1.26 billion | 17 |
| 2020 | 835,171,562.17 | 835.17 million | 16 |
| 2021 | 30,013,930.13 | 30.01 million | 17 |
| 2022 | 15,581,879.00 | 15.58 million | 11 |
| 2023 | 5,872,750.00 | 5.87 million | 11 |
| 2024 | 2,927,418.34 | 2.93 million | 9 |
| 2025 | -29,841,195.49 | -29.84 million | 9 |
Insight
Obligations for PIID N0001916C0048 are highly concentrated in 2017–2020, with the largest annual amount in 2019 at $1.26 billion and another elevated year in 2020 at $835.17 million. Award activity also peaked during this period, rising from 2 awards in 2016 to 17 awards in 2019 and remaining high in 2020–2021. From 2021 forward, obligated amounts declined sharply each year to $2.93 million in 2024, followed by a negative obligation of $29.84 million in 2025, indicating a reversal through deobligation or adjustment activity.
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.