Award Number

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

Federal procurement analysis for award number N0001923C0030 under agency ID 9700 shows obligations of 2.19 billion across the last full year.

This page summarizes award-level activity for PIID N0001923C0030 during the last full year. The award recorded 8 actions with total obligated dollars of 2,187,651,224.26.

Generated at 03/20/2026

Analysis period: Last full year

Amounts reflect the provided analysis window and may differ from rounded displays because the exact total is 2,187,651,224.26.

Agency ID
9700
PIID
N0001923C0030
Type
Award
Total Obligated
2.19 billion
2,187,651,224.26
Actions
8
Average Action Value
273,456,403.03

Overview

In the last full year, award number N0001923C0030 was associated with 8 award actions and total obligations of 2,187,651,224.26. The average action value was 273,456,403.03, indicating large-dollar activity across the period. These figures describe the award record for agency ID 9700 as provided.

How to use this page

Use this page to review award-level obligation totals, action volume, and average action value for N0001923C0030. It is suitable for tracking year-over-year award activity and for locating the underlying procurement record 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 = 'N0001923C0030'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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,187,651,224.26 2.19 billion 8

Insight

For PIID N0001923C0030 over the past 1 year, obligations are fully concentrated in a single top agency: the Department of the Navy (agency 1700). The Navy accounts for $2.19 billion across 8 awards, indicating that funding activity for this award is concentrated within one agency rather than distributed across multiple agencies. This pattern suggests the award is strongly agency-specific with limited cross-agency obligation diversity.

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 1 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,187,651,224.26 2.19 billion 8

Insight

RTX CORPORATION is the sole listed top vendor for this award within the 1-year window, with $2.19 billion in total obligated value across 8 awards. Obligation is fully concentrated with this vendor, indicating a highly concentrated vendor profile for PIID N0001923C0030.

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 1 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,187,651,224.26 2.19 billion 8

Insight

For award PIID N0001923C0030 over the last 1 year, obligations are fully concentrated in NAICS 336412, Aircraft Engine and Engine Parts Manufacturing. This category accounts for $2.19 billion across 8 awards, indicating a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The award activity is therefore concentrated in 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 1 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,187,651,224.26 2.19 billion 8

Insight

Within the 1-year window for award N0001923C0030, obligations are fully concentrated in PSC 2840, Gas Turbines and Jet Engines, Aircraft, Prime Moving; and Components. This category accounts for $2.19 billion across 8 awards, indicating a highly focused obligation profile with no diversification across other PSCs in the provided data.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 2,187,651,224.26 2.19 billion 8

Insight

In the 1-year window, obligations are fully concentrated in FY 2025, with $2.19 billion obligated across 8 awards under PIID N0001923C0030. This indicates a high degree of funding concentration in a single fiscal year rather than a multi-year distribution. With no other years present in the provided rows, no year-over-year trend can be assessed.

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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.