Award Number

Award Number 9700 / N0001916C0048 Federal Contract Action Summary (Last 5 Years)

Award number N0001916C0048 for agency ID 9700 shows 57 recorded actions over the last 5 years with $24.55 million obligated.

This award page summarizes procurement activity for award number N0001916C0048 under agency ID 9700. Over the last 5 years, the award reflects $24,554,781.98 in total obligated dollars across 57 actions.

Generated at 03/20/2026

Analysis period: Last 5 years

Dollar figures are shown for the last 5 years and the readable total obligated amount is rounded from the exact value.

Agency ID
9700
PIID
N0001916C0048
Type
Award
Total Obligated
24.55 million
24,554,781.98
Actions
57
Average Action Value
430,785.65

Overview

The award record for N0001916C0048 includes 57 action entries in the last 5 years. Total obligated value is $24,554,781.98, with an average action value of $430,785.65. These figures describe the recorded obligation activity tied to this award number.

How to use this page

Use this page to review overall obligation volume, action frequency, and average action value for award N0001916C0048. The data supports quick comparison of this award against other records in the same analysis window.

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 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 28,268,583.64 28.27 million 53
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -3,713,801.66 -3.71 million 4

Insight

Obligations for PIID N0001916C0048 over the 5-year window are concentrated in the Department of the Navy, which accounts for $28.27 million across 53 awards. DCMA shows a smaller but material negative obligated amount of $3.71 million across 4 awards, indicating downward adjustment activity relative to the Navy total. Overall, the award history is heavily skewed toward Navy funding, with limited activity attributed to DCMA.

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 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 24,554,781.98 24.55 million 57

Insight

Over the 5-year window, SIKORSKY AIRCRAFT CORPORATION (CAGE 78286) accounts for all reported obligation in this award record, with $24.55 million across 57 awards. This indicates a fully concentrated vendor profile for PIID N0001916C0048, with no distribution across additional vendors in the provided data. The award activity is repetitive but limited to a single supplier relationship, suggesting sustained reliance on the same contractor over time.

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 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 24,554,781.98 24.55 million 57

Insight

Obligations under PIID N0001916C0048 are fully concentrated in NAICS 336411, Aircraft Manufacturing, with $24.55 million across 57 awards over the 5-year window. This indicates a narrow industrial focus with no evidence of NAICS diversification in the provided data. The repeated award activity within a single NAICS suggests the procurement is consistently aligned to aircraft manufacturing requirements.

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 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 24,554,781.98 24.55 million 57

Insight

Obligations are fully concentrated in PSC 1520, Aircraft, Rotary Wing, with $24.55 million across 57 awards over the 5-year window. This pattern indicates a narrow product scope and repeated procurement activity centered on rotary-wing aircraft requirements under PIID N0001916C0048. The award mix suggests sustained emphasis on a single PSC rather than a diversified procurement 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 = 'N0001916C0048'
    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
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 on PIID N0001916C0048 decline steadily across the five-year window, falling from $30.01 million in 2021 to $2.93 million in 2024 before turning negative in 2025 at -$29.84 million. Award activity is relatively stable at 9 to 17 awards per year, indicating the change is driven more by obligation value than by large shifts in award count. The 2025 negative obligation level suggests substantial deobligations or adjustments and is the primary driver of the period’s contraction.

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.