This page summarizes federal procurement activity for award number N0001917C0003 over the last 10 years. The record shows 110 award actions and total obligated amounts of 2.44 billion dollars.
Award Number
Award Number 9700 / N0001917C0003 Federal Contract Action Summary (Last 10 Years)
Federal award page for award number N0001917C0003 under agency ID 9700, showing obligation and action data for the last 10 years.
Dollar figures reflect the provided total obligated exact value of 2444992704.44 and the readable total obligated amount of 2.44 billion.
Overview
The award number N0001917C0003 is associated with agency ID 9700 and shows procurement activity across the last 10 years. The dataset includes 110 award actions and a total obligated amount of 2,444,992,704.44 dollars, with an average action value of 22,227,206.4 dollars. These figures provide a compact view of the award’s documented activity in the analysis window.
How to use this page
Use this page to review the scale and cadence of obligations tied to award number N0001917C0003. The action count and average action value help distinguish a high-activity award record from smaller or less frequent awards. For exact comparisons, use the provided obligated total of 2,444,992,704.44 dollars.
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 = 'N0001917C0003'
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,444,992,704.44 | 2.44 billion | 64 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 46 |
Insight
Obligations are highly concentrated under the Department of the Navy, which accounts for $2.44 billion across 64 awards. The Defense Contract Management Agency (DCMA) appears as a high-count but zero-obligation agency in this window, with 46 awards and no obligated dollars recorded. This pattern indicates that funding is concentrated with the Navy while DCMA is associated with administrative or oversight activity rather than direct obligation under this PIID.
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 = 'N0001917C0003'
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 |
|---|---|---|---|---|
| BOEING COMPANY, THE | 76301 | 2,444,992,704.44 | 2.44 billion | 110 |
Insight
Obligations for PIID N0001917C0003 over the 10-year window are fully concentrated with a single vendor, BOEING COMPANY, THE (CAGE 76301). Boeing received $2.44 billion across 110 awards, indicating a highly concentrated vendor distribution for this award. This level of concentration suggests the obligation history is dominated by one contractor rather than dispersed across multiple vendors.
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 = 'N0001917C0003'
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,444,992,704.44 | 2.44 billion | 110 |
Insight
Obligations for PIID N0001917C0003 in the 10-year window are fully concentrated in NAICS 336411, Aircraft Manufacturing. This NAICS accounts for $2.44 billion across 110 awards, indicating a highly focused procurement pattern with no diversification across other NAICS codes in the provided data. The distribution suggests the award activity is centered on aircraft manufacturing 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 = 'N0001917C0003'
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,444,992,704.44 | 2.44 billion | 110 |
Insight
Obligations for PIID N0001917C0003 are fully concentrated in PSC 1510, Aircraft, Fixed Wing, totaling $2.44 billion across 110 awards. This indicates a highly focused procurement profile with no observed PSC diversification in the provided 10-year window. The concentration in a single PSC suggests the award activity is driven primarily by fixed-wing aircraft requirements.
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 = 'N0001917C0003'
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 |
|---|---|---|---|
| 2017 | 1,423,952,036.63 | 1.42 billion | 22 |
| 2018 | 955,855,935.93 | 955.86 million | 39 |
| 2019 | 5,526,482.52 | 5.53 million | 13 |
| 2020 | 1,120,211.84 | 1.12 million | 16 |
| 2021 | 40,687,689.15 | 40.69 million | 4 |
| 2022 | 0.00 | 0.00 | 4 |
| 2023 | 17,850,348.37 | 17.85 million | 8 |
| 2024 | 0.00 | 0.00 | 2 |
| 2025 | 0.00 | 0.00 | 2 |
Insight
Obligations for PIID N0001917C0003 are highly concentrated in 2017 and 2018, which together account for nearly all obligated dollars in the 10-year window, including a peak of 1.42 billion in 2017 and 955.86 million in 2018. After 2018, obligated amounts drop sharply and remain comparatively low, with only modest activity in 2019, 2020, 2021, and 2023, and no obligated dollars recorded in 2022, 2024, or 2025. Award counts remain dispersed across the period, but they do not correspond to sustained dollar obligation levels after the initial surge.
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.