This page summarizes award number N0001919C0008 for agency ID 9700 over the last 10 years. The award shows 83 actions and total obligated dollars of 1.80 billion.
Award Number
Award Number 9700 / N0001919C0008 Federal Contract Action Summary (Last 10 Years)
Federal procurement summary for award number N0001919C0008 at agency ID 9700, covering the last 10 years of obligation and action activity.
Totals reflect the provided analysis window and may include multiple action records tied to the same award number.
Overview
Award number N0001919C0008 at agency ID 9700 records 83 actions in the last 10 years. Total obligated value is 1,799,930,319.44, with an average action value of 21,685,907.46. The page is centered on the award-level record and its action history.
How to use this page
Use this page to review the award’s obligation total, action count, and average action value within the stated time window. It is suitable for procurement analysis that needs a concise award-level snapshot tied to PIID N0001919C0008.
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 = 'N0001919C0008'
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 | 1,799,930,319.44 | 1.80 billion | 81 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 2 |
Insight
Obligations for PIID N0001919C0008 are highly concentrated in the DEPT OF THE NAVY, which accounts for $1.80 billion across 81 awards in the 10-year window. DCMA appears only twice and shows no obligated value, indicating minimal funding activity relative to the Navy. This distribution suggests the award’s financial activity is overwhelmingly associated with a single agency.
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 = 'N0001919C0008'
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 | 78022 | 1,799,930,319.44 | 1.80 billion | 83 |
Insight
Over the 10-year window, obligations for PIID N0001919C0008 are fully concentrated with a single vendor, NORTHROP GRUMMAN SYSTEMS CORPORATION (CAGE 78022). This vendor accounts for 1.80 billion across 83 awards, indicating a sustained, high-volume award relationship rather than a distributed vendor base. The absence of other vendors in the provided data suggests no meaningful vendor diversification for this award identifier.
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 = 'N0001919C0008'
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 | 1,799,930,319.44 | 1.80 billion | 83 |
Insight
Obligations for PIID N0001919C0008 are fully concentrated in NAICS 336411, Aircraft Manufacturing, with $1.80 billion obligated across 83 awards over the 10-year window. This indicates a highly concentrated industrial profile with no diversification across other NAICS codes in the provided data. The award activity is consistent with a sustained aircraft manufacturing procurement pattern.
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 = 'N0001919C0008'
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 |
|---|---|---|---|---|
| 1550 | UNMANNED AIRCRAFT | 1,799,930,319.44 | 1.80 billion | 83 |
Insight
For award N0001919C0008, obligations over the 10-year window are fully concentrated in PSC 1550, Unmanned Aircraft, with $1.80 billion across 83 awards. This indicates a highly focused procurement profile centered on unmanned aircraft requirements rather than a diversified product mix. The volume of awards suggests repeated or incremental contracting within the same 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 = 'N0001919C0008'
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 |
|---|---|---|---|
| 2019 | 65,173,723.00 | 65.17 million | 4 |
| 2020 | 229,110,559.00 | 229.11 million | 10 |
| 2021 | 203,580,825.00 | 203.58 million | 12 |
| 2022 | 332,279,590.33 | 332.28 million | 9 |
| 2023 | 599,325,042.42 | 599.33 million | 17 |
| 2024 | 84,954,756.22 | 84.95 million | 13 |
| 2025 | 285,505,823.47 | 285.51 million | 18 |
Insight
Obligations for PIID N0001919C0008 are uneven across the period, rising from $65.17 million in 2019 to a peak of $599.33 million in 2023, then falling to $84.95 million in 2024 before rebounding to $285.51 million in 2025. Award activity also concentrated in the later years, increasing from 4 awards in 2019 to 17 in 2023 and 18 in 2025. Overall, the series indicates significant year-to-year volatility rather than a steady obligation pattern.
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.