Award Number

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

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

This award record summarizes obligation activity for PIID N0001923C0030 within agency ID 9700 across the last 10 years. The award totals $2,803,077,022.26 in obligations across 13 actions, for an average action value of $215,621,309.40.

Generated at 03/20/2026

Analysis period: Last 10 years

Amounts reflect the provided analysis window and may differ from other summaries due to rounding or reporting timing.

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 record for PIID N0001923C0030 shows $2,803,077,022.26 in total obligated amount across 13 award actions in the last 10 years. The readable total is $2.80 billion, and the average action value is $215,621,309.40. This page is focused on the award-level obligation history tied to agency ID 9700.

How to use this page

Use this page to review the scale and frequency of obligation activity associated with award number N0001923C0030. The figures are useful for quick comparison across awards, checking action volume, and understanding the average size of recorded actions within the 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 = 'N0001923C0030'
    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,803,077,022.26 2.80 billion 13

Insight

Within the 10-year window for PIID N0001923C0030, obligations are fully concentrated in one top agency: the Department of the Navy, with $2.80 billion across 13 awards. This indicates a highly concentrated award distribution with no evidence of obligation spread across other agencies in the provided rows. The concentration suggests this entity’s activity is primarily tied to Navy procurement actions over the 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 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
RTX CORPORATION 52661 2,803,077,022.26 2.80 billion 13

Insight

RTX CORPORATION is the sole top vendor associated with this award, accounting for the full observed obligated amount of $2.80 billion across 13 awards in the 10-year window. This indicates a highly concentrated vendor distribution with no other vendors represented in the provided results. The pattern suggests sustained reliance on a single contractor for this procurement.

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

Insight

Over the 10-year window, obligations for award N0001923C0030 are entirely concentrated in NAICS 336412, Aircraft Engine and Engine Parts Manufacturing. This NAICS accounts for $2.80 billion across 13 awards, indicating a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The volume and dollar concentration suggest this award is consistently aligned to a single industrial base segment.

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

Insight

Obligations for PIID N0001923C0030 are fully concentrated in PSC 2840, which accounts for $2.80 billion across 13 awards over the 10-year window. This indicates a narrow procurement profile centered on gas turbines and jet engines, with no evidence of PSC diversification in the provided data. The award count suggests repeated actions within the same product/service category rather than a broad mix of requirements.

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 10 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 for PIID N0001923C0030 were relatively flat in 2023 and 2024, at $305.61 million and $309.81 million, respectively, before increasing sharply to $2.19 billion in 2025. Award activity also broadened over the period, rising from 1 award in 2023 to 4 in 2024 and 8 in 2025. The 2025 increase indicates a pronounced concentration of obligation growth in the most recent 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.