This page summarizes the award history for PIID N0001914C0067 across the last 10 years. The record shows 695 award actions and total obligations of 16.40 billion dollars.
Award Number
Award Number 9700 / N0001914C0067 Federal Contract Action Summary (Last 10 Years)
Federal award record for award number N0001914C0067 under agency ID 9700, showing obligation and action history over the last 10 years.
Obligation totals are based on the provided readable and exact values for the 10-year analysis window.
Overview
The award record for PIID N0001914C0067 under agency ID 9700 reflects 695 actions in the last 10 years. Total obligated amount is 16,401,756,917.79, with an average action value of 23,599,650.24. This view is limited to the provided analysis window and award-level summary fields.
How to use this page
Use this page to review the scale and activity of the award over time, including total obligation and action volume. The figures can support procurement analysis, award tracking, and comparison with other FPDS award records in the same agency context.
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 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 | 16,422,163,734.08 | 16.42 billion | 280 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | -20,406,816.29 | -20.41 million | 415 |
Insight
Award obligations are highly concentrated in the DEPT OF THE NAVY, which accounts for $16.42 billion across 280 awards in the 10-year window. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears as a secondary funding/administrative counterpart with 415 awards but a net negative obligated value of $20.41 million, indicating offsetting deobligations or adjustments rather than positive net funding. Overall, the obligation profile is dominated by Navy activity, with DCMA contributing a comparatively small negative balance.
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 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 | 13,175,227,329.79 | 13.18 billion | 614 |
| THE BOEING COMPANY | 3,226,529,588.00 | 3.23 billion | 81 |
Insight
Award activity under PIID N0001914C0067 is highly concentrated in THE BOEING COMPANY, which accounts for the entire top-vendor listing across the 10-year window. The same vendor appears in two entries, one tied to CAGE 81205 with 614 awards and $13.18 billion obligated, and another uncoded entry with 81 awards and $3.23 billion obligated, indicating substantial obligation volume is concentrated with a single supplier despite split vendor coding. This pattern suggests vendor identity normalization may affect how obligations are distributed across FPDS records for this award.
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 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 | 16,401,756,917.79 | 16.40 billion | 695 |
Insight
Over the 10-year window, obligations for award N0001914C0067 are fully concentrated in NAICS 336411, Aircraft Manufacturing. This single NAICS accounts for $16.40 billion across 695 awards, indicating a highly concentrated procurement profile with no observable distribution across other NAICS codes in the provided data. The volume and value suggest sustained acquisition activity centered on aircraft manufacturing.
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 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 | 16,401,756,917.79 | 16.40 billion | 695 |
Insight
Obligations under PIID N0001914C0067 are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with $16.40 billion obligated across 695 awards over the 10-year window. This indicates a highly focused procurement profile with no diversification across other product or service categories in the provided data. The volume of awards alongside the very large obligated amount suggests sustained funding activity in a single PSC 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 = 'N0001914C0067'
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 | 3,226,529,588.00 | 3.23 billion | 73 |
| 2017 | 3,663,538,168.41 | 3.66 billion | 81 |
| 2018 | 1,363,586,377.97 | 1.36 billion | 68 |
| 2019 | 3,191,565,371.25 | 3.19 billion | 36 |
| 2020 | 2,445,830,680.36 | 2.45 billion | 42 |
| 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 heavily concentrated in 2016–2021, with annual totals ranging from about $1.36 billion to $3.66 billion and 36 to 81 awards per year. Funding then dropped sharply in 2022–2025 to below $260.1 million annually, including only $22.0 million in 2024 and $37.3 million in 2025, even as award counts rose to 119 in both 2024 and 2025. This indicates a shift from a small number of high-dollar awards to a much larger volume of lower-obligation 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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.