This award page summarizes procurement activity tied to award number N0001918C1037 for agency ID 9700. Over the last 10 years, the award records 148 actions and $8,457,894,780.67 in total obligated amount.
Award Number
Award Number 9700 / N0001918C1037 Federal Contract Action Summary (Last 10 Years)
Award number N0001918C1037 for agency 9700 shows 148 recorded actions over the last 10 years with $8.46 billion obligated.
Totals reflect the last 10 years of available data for this award and use the exact obligated amount of $8,457,894,780.67.
Overview
The award record for N0001918C1037 shows sustained procurement activity within agency 9700 across the last decade. The average action value is $57,147,937.71, which indicates a high-dollar award with repeated modification or obligation activity over time.
How to use this page
Use this page to review award-level obligation totals, action count, and average action value for N0001918C1037. It is useful for identifying the scale of funding associated with the award and for comparing this award against other records in the same agency set.
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 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 | 8,457,894,780.67 | 8.46 billion | 119 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 29 |
Insight
Obligations under PIID N0001918C1037 are highly concentrated in the Department of the Navy, which accounts for $8.46 billion across 119 awards over the 10-year window. The only other agency listed, the Defense Contract Management Agency (DCMA), has 29 awards but no obligated dollars, indicating administrative or oversight activity rather than funded obligation. Overall, the award profile is dominated by Navy funding with no material obligation contribution from 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 = '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 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 |
|---|---|---|---|---|
| NORTHROP GRUMMAN SYSTEMS CORPORATION | 70974 | 8,457,894,780.67 | 8.46 billion | 148 |
Insight
Over the 10-year window, obligations for PIID N0001918C1037 are entirely concentrated with NORTHROP GRUMMAN SYSTEMS CORPORATION (CAGE 70974), which received all reported funding in the provided rows. The vendor received 148 awards totaling $8.46 billion, indicating a sustained and highly concentrated award relationship.
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 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 | 8,457,894,780.67 | 8.46 billion | 148 |
Insight
For award PIID N0001918C1037 under agency 9700 over the 10-year window, obligations are fully concentrated in NAICS 336411, Aircraft Manufacturing. This single NAICS accounts for $8.46 billion across 148 awards, indicating a highly focused procurement pattern with no diversification across other industries in the provided data. The concentration suggests the award activity is overwhelmingly tied to 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 = 'N0001918C1037'
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 | 8,457,894,780.67 | 8.46 billion | 148 |
Insight
Obligations on this award are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with $8.46 billion obligated across 148 actions over the 10-year window. This indicates a highly focused procurement profile centered on fixed-wing aircraft rather than a diversified product mix. The volume of actions relative to the obligated dollars suggests repeated contracting activity within 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 = 'N0001918C1037'
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 |
|---|---|---|---|
| 2018 | 182,388,003.00 | 182.39 million | 5 |
| 2019 | 2,410,073,155.00 | 2.41 billion | 7 |
| 2020 | 1,034,422,668.00 | 1.03 billion | 10 |
| 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 are highly concentrated in 2019, which accounts for the largest annual total at 2.41 billion across 7 awards. After that peak, annual obligated amounts declined and then fluctuated between roughly 690.74 million and 1.55 billion from 2020 through 2024, while award counts generally increased from 10 to 33 before easing to 26 in 2024. The 2025 total of 292.40 million across 27 awards indicates lower obligated value year-to-date relative to prior full years, with obligations spread across a comparatively high number of actions.
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.