Award Number

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

Federal award record for PIID N0001924C0025 under Agency ID 9700, showing obligations and action history over the last 10 years.

This award page summarizes obligation and action activity for award number N0001924C0025 during the last 10 years. The record shows 12 award actions and total obligated amount of 2.74 billion.

Generated at 03/20/2026

Analysis period: Last 10 years

Amounts shown here reflect the provided total obligated exact value of 2,739,718,834 and the average action value of 228,309,902.83.

Agency ID
9700
PIID
N0001924C0025
Type
Award
Total Obligated
2.74 billion
2,739,718,834.00
Actions
12
Average Action Value
228,309,902.83

Overview

The award record for PIID N0001924C0025 covers a 10-year analysis window and includes 12 recorded actions. Total obligated funding is 2,739,718,834, with an average action value of 228,309,902.83. The page is intended to support review of obligation volume and action cadence for this award.

How to use this page

Use this page to assess the scale of obligated funding tied to award N0001924C0025 and compare it with other awards in Agency ID 9700. The action count and average action value provide a compact view of how funding has been distributed across recorded actions.

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 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,739,718,834.00 2.74 billion 10
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 2

Insight

Obligations for this award are highly concentrated in the DEPT OF THE NAVY, which accounts for $2.74 billion across 10 awards. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears only marginally, with 2 awards and no obligated dollars. This distribution indicates that the award’s financial activity is driven almost entirely by Navy obligations, with DCMA involvement limited to non-obligating actions.

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 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
THE BOEING COMPANY 81205 2,739,718,834.00 2.74 billion 12

Insight

Obligations under PIID N0001924C0025 are entirely concentrated with a single vendor, THE BOEING COMPANY (CAGE 81205), which received $2.74 billion across 12 awards over the 10-year window. This indicates a highly concentrated vendor profile with no observable diversification among top vendors in the provided data. The award pattern suggests sustained reliance on the same contractor for this requirement.

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 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
336411 AIRCRAFT MANUFACTURING 2,739,718,834.00 2.74 billion 12

Insight

Obligations for this award are entirely concentrated in NAICS 336411, Aircraft Manufacturing, with $2.74 billion across 12 awards over the 10-year window. This indicates a highly focused procurement profile tied to aircraft manufacturing activities rather than a broadly distributed set of industry codes. The concentration suggests the award is narrowly aligned to a single industrial classification, with no evidence in the provided data of meaningful NAICS diversification.

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 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
1510 AIRCRAFT, FIXED WING 2,739,718,834.00 2.74 billion 12

Insight

Obligations are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with $2.74 billion across 12 awards over the 10-year window. This indicates a narrow procurement profile for PIID N0001924C0025, with all reported activity in a single PSC rather than a diversified mix. The award pattern suggests sustained emphasis on fixed-wing aircraft acquisition or related support within the observed period.

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 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2024 1,827,948,928.00 1.83 billion 8
2025 911,769,906.00 911.77 million 4

Insight

Obligations for PIID N0001924C0025 are concentrated in 2024 and 2025, with 1.83 billion across 8 awards in 2024 and 911.77 million across 4 awards in 2025. The 2025 total is roughly half of the 2024 level, indicating a lower annual obligation volume and fewer awards in the current period. Over the two years reported, activity is moderate in count but highly concentrated in obligated dollars.

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.