This page summarizes the federal procurement record for award number N0001917C0015 under agency ID 9700. The analysis window covers the last 5 years and reflects $2.11 billion in total obligated value across 138 actions.
Award Number
Award Number 9700 / N0001917C0015 Federal Contract Action Summary (Last 5 Years)
Federal award number N0001917C0015 for agency ID 9700 shows 138 award actions and $2,113,707,034.29 obligated over the last 5 years.
Dollar values are shown as obligated totals for the last 5 years, with an average action value of $15,316,717.64.
Overview
Award number N0001917C0015 is associated with agency ID 9700 and records 138 award actions in the last 5 years. Total obligated amount is $2,113,707,034.29, with an average action value of $15,316,717.64.
How to use this page
Use this page to review the scale and activity of the award record by action count and obligated value. The figures support quick comparison across awards and provide a concise starting point for procurement analysis.
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 = 'N0001917C0015'
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,111,319,234.29 | 2.11 billion | 53 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 2,387,800.00 | 2.39 million | 85 |
Insight
Obligations for PIID N0001917C0015 are highly concentrated in the DEPT OF THE NAVY, which accounts for $2.11 billion across 53 awards over the 5-year window. DCMA appears as a secondary recipient with 85 awards but only $2.39 million obligated, indicating a much lower dollar concentration despite a higher award count. This distribution suggests the award’s financial activity is overwhelmingly Navy-centric, with DCMA involvement limited to relatively small-value 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 = 'N0001917C0015'
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 |
|---|---|---|---|---|
| BELL BOEING JOINT PROJECT OFFICE | 3B1R2 | 2,113,707,034.29 | 2.11 billion | 138 |
Insight
Obligations for PIID N0001917C0015 over the past 5 years are fully concentrated with BELL BOEING JOINT PROJECT OFFICE (CAGE 3B1R2), which accounts for the full reported total of $2.11 billion across 138 awards. This indicates a highly concentrated vendor distribution with no other top-vendor recipients reflected in the provided data. The volume of awards suggests repeated funding activity with the same vendor rather than broad supplier dispersion.
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 = 'N0001917C0015'
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,113,707,034.29 | 2.11 billion | 138 |
Insight
The award’s obligations are concentrated in NAICS 336411, Aircraft Manufacturing, which accounts for the full reported 5-year obligated amount of $2.11 billion across 138 awards. This indicates a highly focused procurement profile tied to aircraft manufacturing rather than a diversified NAICS mix. The volume of awards alongside the large dollar value suggests repeated activity within a single industrial category.
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 = 'N0001917C0015'
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,113,707,034.29 | 2.11 billion | 138 |
Insight
Obligations for this award are fully concentrated in PSC 1510, Aircraft, Fixed Wing, totaling $2.11 billion across 138 awards. This indicates a highly focused procurement profile with no visible diversification across PSCs in the provided 5-year window. The volume of awards suggests recurring fixed-wing aircraft-related activity rather than a single isolated obligation.
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 = 'N0001917C0015'
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 | 1,104,182,058.21 | 1.10 billion | 20 |
| 2022 | 348,271,296.01 | 348.27 million | 37 |
| 2023 | 232,943,889.26 | 232.94 million | 38 |
| 2024 | 12,736,114.97 | 12.74 million | 16 |
| 2025 | 415,573,675.84 | 415.57 million | 27 |
Insight
Obligations for PIID N0001917C0015 were heavily concentrated in 2021 at $1.10 billion across 20 awards, then fell sharply in 2022 and 2023 to $348.27 million and $232.94 million, respectively. Award volume increased in 2022 and 2023 to 37 and 38 awards despite lower obligated dollars, indicating a broader distribution of smaller obligations. Funding dropped to $12.74 million in 2024 with 16 awards, then rebounded to $415.57 million in 2025 across 27 awards, showing renewed activity but still below the 2021 peak.
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.