Award Number

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

Award number N0001923C0030 under agency ID 9700 shows 13 actions over the last 5 years with $2.80 billion obligated.

This award record covers PIID N0001923C0030 for agency ID 9700 during the last 5 years. Total obligated funding is $2,803,077,022.26 across 13 award actions, with an average action value of $215,621,309.40.

Generated at 03/20/2026

Analysis period: Last 5 years

Amounts reflect the analysis window provided and the obligated totals shown for this award record.

Agency ID
9700
PIID
N0001923C0030
Type
Award
Total Obligated
2.80 billion
2,803,077,022.26
Actions
13
Average Action Value
215,621,309.40

Overview

The award number N0001923C0030 is associated with agency ID 9700 and records 13 award actions in the last 5 years. Across that period, total obligated funding reaches $2,803,077,022.26, or $2.80 billion when rounded for readability. The average action value is $215,621,309.40.

How to use this page

Use this page to review the award-level obligation history for PIID N0001923C0030 within the stated analysis window. The totals and action count provide a compact view of activity volume and obligated value for this 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 = 'N0001923C0030'
    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,803,077,022.26 2.80 billion 13

Insight

Over the 5-year window for PIID N0001923C0030, obligations are fully concentrated in a single agency: the Department of the Navy. That agency accounts for $2.80 billion across 13 awards, indicating that the activity is narrowly distributed rather than spread across multiple agencies. This concentration suggests the award’s funding and execution history has been driven entirely by Navy demand within the reviewed period.

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 = 'N0001923C0030'
        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
RTX CORPORATION 52661 2,803,077,022.26 2.80 billion 13

Insight

Over the 5-year window for award N0001923C0030, obligations are concentrated entirely with RTX CORPORATION (CAGE 52661). RTX accounts for the full 2.80 billion obligated across 13 awards, indicating a highly concentrated vendor base for this action. This distribution suggests sustained reliance on a single contractor rather than a diversified award pattern.

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 = 'N0001923C0030'
    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
336412 AIRCRAFT ENGINE AND ENGINE PARTS MANUFACTURING 2,803,077,022.26 2.80 billion 13

Insight

The award is fully concentrated in NAICS 336412, Aircraft Engine and Engine Parts Manufacturing, with 13 awards totaling $2.80 billion over the 5-year window. This indicates a highly focused procurement profile centered on aircraft engine-related requirements rather than a diversified NAICS mix. The concentration across a relatively small number of awards suggests sustained reliance on this industrial base for the referenced PIID.

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 = 'N0001923C0030'
    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
2840 GAS TURBINES AND JET ENGINES, AIRCRAFT, PRIME MOVING; AND COMPONENTS 2,803,077,022.26 2.80 billion 13

Insight

Over the 5-year window, obligations for award N0001923C0030 are fully concentrated in PSC 2840, Gas Turbines and Jet Engines, Aircraft, Prime Moving; and Components. This PSC accounts for $2.80 billion across 13 awards, indicating a highly focused procurement profile with no other PSCs represented in the provided data. The pattern suggests sustained emphasis on aircraft propulsion-related requirements rather than a diversified mix of product categories.

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 = 'N0001923C0030'
    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 305,612,870.00 305.61 million 1
2024 309,812,928.00 309.81 million 4
2025 2,187,651,224.26 2.19 billion 8

Insight

Obligations are heavily concentrated in 2025, which accounts for 2.19 billion across 8 awards, far exceeding prior years in the 5-year window. By contrast, 2023 and 2024 were relatively stable at 305.61 million and 309.81 million, with award counts of 1 and 4, respectively. The pattern indicates a sharp increase in both funding level and award activity in 2025 after two years of comparatively steady, lower-volume obligations.

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.