Award Number

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

Award-level procurement summary for PIID N0001924C0025 under agency ID 9700, covering obligations in the last full year.

This page summarizes the award identified by PIID N0001924C0025 for agency ID 9700 over the last full year. The award has 4 actions with total obligated value of $911.77 million and an average action value of $227.94 million.

Generated at 03/20/2026

Analysis period: Last full year

Obligation totals are based on the exact amount of 911769906 across 4 recorded actions.

Agency ID
9700
PIID
N0001924C0025
Type
Award
Total Obligated
911.77 million
911,769,906.00
Actions
4
Average Action Value
227,942,476.50

Overview

The award record for PIID N0001924C0025 shows 4 actions during the last full year. Total obligated amount was 911769906, or $911.77 million, which yields an average action value of $227.94 million. This page is limited to the provided award and obligation data for agency ID 9700.

How to use this page

Use this page to review award-level spending concentration and action volume for PIID N0001924C0025. The figures support quick comparison of total obligated value and average action size within the selected 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 = 'N0001924C0025'
    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 911,769,906.00 911.77 million 3
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 1

Insight

Obligations for PIID N0001924C0025 are highly concentrated in the DEPT OF THE NAVY, which accounts for 911.77 million across 3 awards in the 1-year window. DCMA appears once in the same period but with no obligated amount, indicating minimal financial distribution outside the Navy. Overall, the award activity is dominated by a single agency with no meaningful obligated value recorded for the secondary agency.

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 = 'N0001924C0025'
        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
THE BOEING COMPANY 81205 911,769,906.00 911.77 million 4

Insight

Obligations for this award are fully concentrated with THE BOEING COMPANY (CAGE 81205), which accounts for 911.77 million across 4 awards in the 1-year window. This indicates a highly concentrated vendor profile with no evidence of broader distribution among additional suppliers in the provided data. The award structure suggests continued reliance on a single prime contractor for the observed period.

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 = 'N0001924C0025'
    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
336411 AIRCRAFT MANUFACTURING 911,769,906.00 911.77 million 4

Insight

Over the past 1 year, obligations for PIID N0001924C0025 are fully concentrated in NAICS 336411, Aircraft Manufacturing. The award reflects 4 actions totaling $911.77 million, indicating a highly concentrated procurement profile with no diversification across other NAICS codes in the provided data. This concentration suggests the award is driven by a single industrial category rather than a distributed set of 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 = 'N0001924C0025'
    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
1510 AIRCRAFT, FIXED WING 911,769,906.00 911.77 million 4

Insight

Obligations for PIID N0001924C0025 over the 1-year window are concentrated entirely in PSC 1510, Aircraft, Fixed Wing, with $911.77 million obligated across 4 awards. This indicates a highly focused procurement profile with no distribution across other PSCs in the provided data. The concentration suggests the award activity is centered on a single product category rather than a broad mix of supplies or services.

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 = 'N0001924C0025'
    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 911,769,906.00 911.77 million 4

Insight

For FY 2025, this award recorded $911.77 million in obligated funding across 4 actions, indicating a highly concentrated funding profile over the 1-year window. The obligation volume is driven by a small number of actions, suggesting limited distribution across the period and substantial reliance on this single award for annual funding 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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.