Award Number

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

Federal procurement record for award number N0001914C0067 under agency ID 9700, showing last-5-year obligation and action activity.

This page summarizes award number N0001914C0067 for agency ID 9700 over the last 5 years. The record shows 395 actions with total obligated amount of 2.51 billion, or 2,510,706,731.8 exact.

Generated at 03/20/2026

Analysis period: Last 5 years

Amounts reflect the analysis window provided and may not represent the full life of the award outside that period.

Agency ID
9700
PIID
N0001914C0067
Type
Award
Total Obligated
2.51 billion
2,510,706,731.80
Actions
395
Average Action Value
6,356,219.57

Overview

Award number N0001914C0067 is associated with agency ID 9700 and shows substantial action activity in the selected 5-year window. The record totals 395 actions and 2,510,706,731.8 in obligated amount, with an average action value of 6,356,219.57. These figures provide a concise view of the award’s recent procurement activity.

How to use this page

Use this page to review obligation volume and action frequency for award N0001914C0067 during the last 5 years. The average action value and total obligated amount can help with procurement analysis, trend review, and record comparison across awards. The data is limited to the inputs provided and should be interpreted within the stated 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 = 'N0001914C0067'
    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,531,113,548.09 2.53 billion 109
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -20,406,816.29 -20.41 million 286

Insight

Obligations are highly concentrated in the DEPT OF THE NAVY, which accounts for $2.53 billion across 109 awards. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) is the only other agency listed and shows a net negative obligation of $20.41 million across 286 awards, indicating materially different funding impact despite a higher award count. Overall, the award is dominated by Navy-funded obligations within the 5-year window.

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 = 'N0001914C0067'
        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
THE BOEING COMPANY 81205 2,510,706,731.80 2.51 billion 395

Insight

Over the 5-year window for award N0001914C0067, obligations are fully concentrated with a single vendor, THE BOEING COMPANY (CAGE 81205). Boeing accounts for $2.51 billion across 395 awards, indicating a highly concentrated vendor profile with repeated obligation activity to the same contractor. This pattern suggests limited vendor distribution for this award and sustained reliance on one supplier.

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 = 'N0001914C0067'
    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
336411 AIRCRAFT MANUFACTURING 2,510,706,731.80 2.51 billion 395

Insight

Over the 5-year window, obligations for award N0001914C0067 are fully concentrated in NAICS 336411, Aircraft Manufacturing. This category accounts for $2.51 billion across 395 awards, indicating a sustained and highly focused procurement profile with no diversification across other NAICS codes in the provided data. The volume of awards combined with the obligation level suggests recurring activity within 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 = 'N0001914C0067'
    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
1510 AIRCRAFT, FIXED WING 2,510,706,731.80 2.51 billion 395

Insight

Over the 5-year window, award PIID N0001914C0067 is entirely concentrated in PSC 1510, Aircraft, Fixed Wing. The award reflects 395 obligations totaling $2.51 billion, indicating sustained funding within a single product service category rather than a diversified PSC distribution. This concentration suggests the award is highly focused on fixed-wing aircraft procurement or support activities.

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 = 'N0001914C0067'
    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
2021 2,147,471,640.54 2.15 billion 49
2022 260,066,972.43 260.07 million 46
2023 43,897,309.80 43.90 million 62
2024 22,006,412.84 22.01 million 119
2025 37,264,396.19 37.26 million 119

Insight

Obligations for PIID N0001914C0067 were highly concentrated in 2021 at $2.15 billion, followed by a sharp drop to $260.07 million in 2022 and continued decline through 2024. Award counts remained relatively stable in 2021–2023, then increased to 119 in both 2024 and 2025 even as obligated dollars stayed comparatively low at $22.01 million and $37.26 million, respectively. This pattern indicates a shift from very large-dollar activity to a much broader set of lower-dollar awards in the most recent years.

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.