This page presents the award number record for agency ID 9700, identified by PIID N0001916C0033, across the last 10 years. It shows 204 award actions with total obligated amounts of $11.35 billion and an average action value of $55,659,938.35.
Award Number
Award Number 9700 / N0001916C0033 Federal Contract Action Summary (Last 10 Years)
Federal award record for agency 9700 and PIID N0001916C0033, summarizing obligations and action history over the last 10 years.
Obligation totals are shown as both readable and exact values: $11.35 billion and $11,354,627,423.23.
Overview
The award record covers 204 actions over the last 10 years for agency ID 9700 under PIID N0001916C0033. Total obligated amount is $11,354,627,423.23, with a readable total of $11.35 billion and an average action value of $55,659,938.35.
How to use this page
Use this page to review the award’s action count and obligation totals for the selected analysis window. The figures support basic procurement review, trend checks, and cross-reference against other FPDS records using the same award identifier.
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 = 'N0001916C0033'
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 | 11,354,627,423.23 | 11.35 billion | 165 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 39 |
Insight
Obligations for PIID N0001916C0033 are concentrated in the DEPT OF THE NAVY, which accounts for $11.35 billion across 165 awards. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears in 39 awards but shows no obligated dollars, indicating administrative or oversight-related activity rather than direct funding. Over the 10-year window, the obligation profile is therefore highly concentrated with a single funding agency dominating award value.
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 = 'N0001916C0033'
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 | 10,971,865,904.23 | 10.97 billion | 187 |
| LOCKHEED MARTIN CORPORATION | 382,761,519.00 | 382.76 million | 17 |
Insight
Obligations under PIID N0001916C0033 are highly concentrated in LOCKHEED MARTIN CORPORATION, which accounts for 10.97 billion across 187 awards. A second set of awards is also attributed to LOCKHEED MARTIN CORPORATION without a CAGE code and totals 382.76 million across 17 awards, indicating a smaller but related obligation stream. Overall, the award history for this PIID is dominated by a single vendor name, with limited distribution beyond that contractor 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 = 'N0001916C0033'
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 | 11,354,627,423.23 | 11.35 billion | 204 |
Insight
Obligations for PIID N0001916C0033 are concentrated in NAICS 336411, Aircraft Manufacturing, which accounts for $11.35 billion across 204 awards over the 10-year window. This indicates a strong procurement emphasis within a single industry category rather than a broad distribution across multiple NAICS codes. The volume of awards alongside the obligation total suggests sustained contracting activity in aircraft manufacturing under this award.
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 = 'N0001916C0033'
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 | 11,354,627,423.23 | 11.35 billion | 204 |
Insight
Obligations for PIID N0001916C0033 are fully concentrated in PSC 1510, Aircraft, Fixed Wing, with $11.35 billion across 204 awards over the 10-year window. This indicates a highly focused procurement profile with no observed distribution across other PSCs in the provided data. The award count suggests repeated activity in the same product category rather than a broad mix of supply or service classifications.
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 = 'N0001916C0033'
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 |
|---|---|---|---|
| 2016 | 636,477,519.00 | 636.48 million | 24 |
| 2017 | 6,687,107,704.00 | 6.69 billion | 24 |
| 2018 | 4,032,794,603.10 | 4.03 billion | 37 |
| 2019 | 75,278,288.70 | 75.28 million | 64 |
| 2020 | -29,051,657.20 | -29.05 million | 37 |
| 2021 | -4,168,960.00 | -4.17 million | 4 |
| 2022 | -44,656,028.00 | -44.66 million | 5 |
| 2023 | 845,953.63 | 845.95 thousand | 6 |
| 2024 | 0.00 | 0.00 | 2 |
| 2025 | 0.00 | 0.00 | 1 |
Insight
Obligations are heavily concentrated in 2017 and 2018, which together account for the overwhelming share of the 10-year obligated value, with 2017 peaking at $6.69 billion and 2018 at $4.03 billion. After 2018, annual obligations fell sharply to $75.28 million in 2019 and then shifted to negative values in 2020 through 2022, indicating downward adjustments or deobligations in those years. Award counts do not track obligated value consistently: counts rose to 64 in 2019 despite low obligations, then declined to single digits in 2021-2025.
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.