This award page summarizes federal procurement activity tied to award number N0001918C1037 under agency ID 9700. Over the last 5 years, the award recorded 126 actions and $4,831,010,954.67 in total obligations.
Award Number
Award Number 9700 / N0001918C1037 Federal Contract Action Summary (Last 5 Years)
Award number N0001918C1037 for agency 9700 shows 126 actions over the last 5 years with $4.83 billion obligated.
Amounts reflect the last 5 years of reported activity and the average action value is $38,341,356.78.
Overview
Award number N0001918C1037 is associated with agency ID 9700 and shows sustained procurement activity in the last 5 years. The award has 126 recorded actions, with total obligated dollars of $4,831,010,954.67 and an average action value of $38,341,356.78. These figures provide a compact view of volume and dollar activity for this award record.
How to use this page
Use this page to review the scale of obligation activity associated with award number N0001918C1037. The action count and obligated total can help frame deeper review of procurement trends, while the average action value gives a simple measure of transaction size across the analysis window. For more detailed analysis, compare this award against other records for agency ID 9700.
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 = 'N0001918C1037'
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 | 4,831,010,954.67 | 4.83 billion | 98 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 28 |
Insight
Within the 5-year window for PIID N0001918C1037, obligations are highly concentrated in the DEPT OF THE NAVY, which accounts for $4.83 billion across 98 awards. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears as a secondary awarding agency by count, with 28 awards, but those awards carry no obligated dollars. This pattern indicates that obligated funding for this action is driven almost entirely by the Navy, while DCMA activity is administrative or non-obligating in nature.
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 = 'N0001918C1037'
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 |
|---|---|---|---|---|
| NORTHROP GRUMMAN SYSTEMS CORPORATION | 70974 | 4,831,010,954.67 | 4.83 billion | 126 |
Insight
All reported obligations in the 5-year window are concentrated with NORTHROP GRUMMAN SYSTEMS CORPORATION (CAGE 70974), which accounts for $4.83 billion across 126 awards. This indicates a highly concentrated vendor pattern with no other top-vendor rows provided for comparison in this view. The award volume suggests repeated contractual activity with the same vendor over the period.
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 = 'N0001918C1037'
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 | 4,831,010,954.67 | 4.83 billion | 126 |
Insight
For award N0001918C1037 over the 5-year window, obligations are fully concentrated in NAICS 336411, Aircraft Manufacturing. The single reported NAICS accounts for $4.83 billion across 126 awards, indicating a high degree of activity and no observed diversification in the provided data. This concentration suggests the award is strongly aligned to aircraft manufacturing work within the reported period.
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 = 'N0001918C1037'
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 | 4,831,010,954.67 | 4.83 billion | 126 |
Insight
Obligations for PIID N0001918C1037 are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with $4.83 billion obligated across 126 awards/actions in the 5-year window. This indicates a highly focused procurement profile with no diversification across other PSCs in the provided data. The volume of actions alongside the dollar concentration suggests sustained activity within a single aircraft category rather than a broad mix of supplies or services.
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 = 'N0001918C1037'
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,158,533,458.00 | 1.16 billion | 15 |
| 2022 | 690,739,578.00 | 690.74 million | 25 |
| 2023 | 1,142,286,098.00 | 1.14 billion | 33 |
| 2024 | 1,547,051,617.00 | 1.55 billion | 26 |
| 2025 | 292,400,203.67 | 292.40 million | 27 |
Insight
Obligations for PIID N0001918C1037 were highest in 2024 at 1.55 billion, after recovering from a 2022 low of 690.74 million; 2021 and 2023 were both above 1.1 billion, indicating a relatively strong but uneven funding profile over the period. Award volume increased from 15 in 2021 to a peak of 33 in 2023, then remained elevated at 26-27 awards in 2024-2025, suggesting broader distribution even as obligated dollars fluctuated. FY2025 obligations are substantially below prior-year levels at 292.40 million, which may indicate partial-year activity or a reduction in funding intensity.
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.