Award Number

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

FPDS analysis for award N0001912C2001 under agency ID 9700 over the last 10 years.

This award record shows 151 actions across the last 10 years with total obligated funding of 1.61 billion dollars. The average action value is 10,635,791.97.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals reflect the provided analysis window and should be interpreted as obligated amounts for this award number only.

Agency ID
9700
PIID
N0001912C2001
Type
Award
Total Obligated
1.61 billion
1,606,004,586.80
Actions
151
Average Action Value
10,635,791.97

Overview

Award number N0001912C2001 is associated with agency ID 9700 and has 151 recorded actions in the last 10 years. Total obligated funding is 1,606,004,586.8, with an average action value of 10,635,791.97.

How to use this page

Use this page to review obligation activity tied to award N0001912C2001 and compare action-level volume with total funding. The figures summarize the provided award-level record for the selected 10-year 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 = 'N0001912C2001'
    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 1,606,004,586.80 1.61 billion 74
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 77

Insight

Obligations for PIID N0001912C2001 over the 10-year window are concentrated under the DEPT OF THE NAVY, which accounts for $1.61 billion across 74 awards. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears with 77 awards but $0 obligated, indicating administrative or non-obligating action volume rather than funded value. Overall, obligated value is highly concentrated in a single agency despite a similar award count at DCMA.

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 = 'N0001912C2001'
        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
BELL BOEING JOINT PROJECT OFFICE 1,383,401,091.97 1.38 billion 15
BELL BOEING JOINT PROJECT OFFICE 3B1R2 222,603,494.83 222.60 million 136

Insight

Obligations for PIID N0001912C2001 are highly concentrated in BELL BOEING JOINT PROJECT OFFICE, which accounts for 1.38 billion across 15 awards under an unspecified CAGE code. The same vendor also appears under CAGE 3B1R2 with 222.60 million across 136 awards, indicating a broader distribution of lower-value awards alongside the larger obligated base. Together, these two entries show that most obligations are concentrated in one vendor identity, with a secondary tranche spread across a higher number of awards.

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 = 'N0001912C2001'
    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 1,606,004,586.80 1.61 billion 151

Insight

Obligations for PIID N0001912C2001 are fully concentrated in NAICS 336411, Aircraft Manufacturing, over the 10-year window. This category accounts for $1.61 billion across 151 awards, indicating a highly concentrated procurement profile with no visible diversification across other NAICS codes in the provided data.

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 = 'N0001912C2001'
    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 1,606,004,586.80 1.61 billion 151

Insight

Over the 10-year window, obligations for this award are fully concentrated in PSC 1510, Aircraft, Fixed Wing, totaling $1.61 billion across 151 actions. This indicates the award is narrowly focused on fixed-wing aircraft requirements rather than a diversified mix of product or service categories. The volume of actions suggests repeated funding activity within the same PSC, consistent with sustained program execution in this category.

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 = 'N0001912C2001'
    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
2016 1,383,401,091.97 1.38 billion 14
2017 315,973,148.34 315.97 million 17
2018 -43,679,387.85 -43.68 million 21
2019 -660,935.29 -660.94 thousand 15
2020 -27,148,875.41 -27.15 million 20
2021 -5,180,344.22 -5.18 million 6
2022 -12,522,745.61 -12.52 million 23
2023 -4,108,940.54 -4.11 million 23
2024 -68,424.59 -68.42 thousand 5
2025 0.00 0.00 7

Insight

Obligations for PIID N0001912C2001 were highly concentrated in 2016 and 2017, totaling about $1.70 billion before turning negative in subsequent years. From 2018 through 2024, annual net obligations were consistently below zero, with the largest negative annual values in 2018 and 2020, indicating recurring deobligations or downward adjustments rather than new funding growth. Award activity remained distributed across the period, ranging from 5 to 23 awards per year, with the highest counts in 2018, 2022, and 2023. In 2025, obligations were flat at zero despite 7 awards.

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.