This page presents the award-level record for PIID N0001919C0010 over the last 10 years. The award shows 124 actions with total obligated value of 4.15 billion dollars, or 4,146,736,223.37 in exact dollars.
Award Number
Award Number 9700 / N0001919C0010 Federal Contract Action Summary (Last 10 Years)
Federal procurement summary for award number N0001919C0010 under agency ID 9700, covering the last 10 years of recorded actions and obligations.
Average action value for this award is 33,441,421.16, based on the 124 recorded actions in the analysis window.
Overview
The award record for N0001919C0010 covers 124 actions in the last 10 years and totals 4,146,736,223.37 in obligated dollars. This provides a compact view of award activity, spending volume, and action frequency for agency ID 9700.
How to use this page
Use this page to review the award-level obligation history and the pace of activity across the analysis window. The figures support basic procurement review, trend screening, and comparison against other awards in the same agency context.
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 = 'N0001919C0010'
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 | 4,146,736,223.37 | 4.15 billion | 123 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 1 |
Insight
Obligations for PIID N0001919C0010 over the 10-year window are highly concentrated in DEPT OF THE NAVY, which accounts for 4.15 billion across 123 awards. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears only once and shows no obligated value. This distribution indicates that essentially all financial activity for this award is tied to the Navy, with DCMA limited to a non-obligating record.
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 = 'N0001919C0010'
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 |
|---|---|---|---|---|
| LOCKHEED MARTIN CORPORATION | 81755 | 4,146,736,223.37 | 4.15 billion | 124 |
Insight
LOCKHEED MARTIN CORPORATION is the only vendor listed for this award over the 10-year window, indicating full vendor concentration in the observed data. The vendor accounts for $4.15 billion across 124 awards, which suggests a sustained and highly concentrated obligation pattern tied to this PIID. No other vendors are reflected in this section for comparison or distribution analysis.
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 = 'N0001919C0010'
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 | 4,146,736,223.37 | 4.15 billion | 124 |
Insight
Over the 10-year window, obligations under PIID N0001919C0010 are fully concentrated in NAICS 336411, Aircraft Manufacturing. This single industry code accounts for $4.15 billion across 124 awards, indicating a highly focused procurement profile with no observed distribution across other NAICS codes in the provided data. The concentration suggests this award activity is dominated by aircraft manufacturing-related work.
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 = 'N0001919C0010'
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 | 4,146,736,223.37 | 4.15 billion | 124 |
Insight
Obligations are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with $4.15 billion obligated across 124 awards. This indicates the award portfolio is heavily focused on fixed-wing aircraft procurement rather than being distributed across multiple product/service categories. The award count suggests repeated activity within the same PSC, but no diversification within this section is evident.
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 = 'N0001919C0010'
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 | 24,080,000.00 | 24.08 million | 1 |
| 2019 | 275,250,591.75 | 275.25 million | 7 |
| 2020 | 522,061,819.82 | 522.06 million | 24 |
| 2021 | 897,750,677.25 | 897.75 million | 30 |
| 2022 | 871,611,580.76 | 871.61 million | 22 |
| 2023 | 726,013,647.48 | 726.01 million | 14 |
| 2024 | 499,780,585.50 | 499.78 million | 13 |
| 2025 | 330,187,320.81 | 330.19 million | 13 |
Insight
Obligations for PIID N0001919C0010 increased sharply from $24.08 million in 2018 to a peak of $897.75 million in 2021, alongside a rise in award count from 1 to 30, indicating a period of concentrated growth in both value and activity. After 2021, obligated dollars declined each year, falling to $330.19 million in 2025, while award counts also eased from 30 to 13, suggesting a contraction from the earlier peak. The 10-year pattern is heavily weighted toward 2019–2023, when annual obligations remained above $275 million and reached their highest concentration in 2021–2022.
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.