LOCKHEED MARTIN CORPORATION recorded 608 award actions and 1.14 billion in obligated dollars in the last 5 years, with an average action value of 1.87 million. Most obligations came from the Department of the Navy, and the largest NAICS concentrations were engineering services and search, detection, navigation, guidance, aeronautical, and nautical system and instrument manufacturing.
Federal Contractor
LOCKHEED MARTIN CORPORATION Federal Contract Obligations (Last 5 Years)
Federal procurement profile for LOCKHEED MARTIN CORPORATION (CAGE 56232, UEI Z9B5HQ9HSTM5) covering obligations, awards, agencies, NAICS, and annual trends over the last 5 years.
Amounts reflect FPDS obligations for the selected 5-year analysis window and may include zero-obligation rows where actions were recorded without dollars.
About LOCKHEED MARTIN CORPORATION federal contract activity
LOCKHEED MARTIN CORPORATION (CAGE 56232, UEI Z9B5HQ9HSTM5) recorded 1.14 billion in obligated value across 608 awards over the last 5 years, for an average award value of 1.87 million. The award profile indicates sustained federal contracting activity at meaningful scale rather than dependence on a small number of very large actions.
Agency mix and customer concentration
The DEPT OF THE NAVY accounts for nearly all obligated value in the period, with 1.14 billion across 498 awards, making it the dominant customer by a wide margin. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) contributed a small secondary share at 2.30 million across 108 awards, while DEFENSE LOGISTICS AGENCY shows 2 awards with no obligated value recorded in the provided data.
Industry profile based on NAICS activity
Contracting is concentrated in engineering and advanced defense-related manufacturing. NAICS 541330 ENGINEERING SERVICES leads with 659.68 million across 260 awards, followed by NAICS 334511 SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING with 479.02 million across 346 awards; NAICS 332510 HARDWARE MANUFACTURING appears only as 2 awards with no obligated value recorded.
Annual contract trend over the analysis window
Annual obligations peaked in 2021 at 304.02 million, declined to 175.80 million in 2022, then rebounded to 273.59 million in 2023 before easing to 183.32 million in 2024. Through 2025, obligated value stands at 201.96 million across 88 awards, indicating continued activity but below the 2021 high point.
How to interpret this page
This summary uses the provided FPDS Query analysis window of the last 5 years and reflects only the supplied obligation, award-count, agency, NAICS, and annual trend fields. Values are reported as given and no additional award-level or descriptive facts were inferred beyond the supplied data.
Top Agencies
SELECT
agency_id,
agency_name,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
anyHeavy(content__award__purchaserInformation__contractingOfficeAgencyID__name) AS agency_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '56232'
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
)
ORDER BY total_obligated DESC
LIMIT 10
| Agency ID | Agency Name | Total Obligated | Readable | Award Actions |
|---|---|---|---|---|
| 1700 | DEPT OF THE NAVY | 1,136,408,579.98 | 1.14 billion | 498 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 2,295,689.39 | 2.30 million | 108 |
| 97AS | DEFENSE LOGISTICS AGENCY | 0.00 | 0.00 | 2 |
Insight
Over the last 5 years, Lockheed Martin Corporation (CAGE 56232) received $1.14 billion across 608 awards, with activity highly concentrated in the Department of the Navy. The Navy accounted for $1.14 billion of obligations and 498 awards, representing the clear dominant funding source for this vendor. DCMA provided a much smaller share at $2.30 million across 108 awards, while DLA recorded 2 awards with no obligated value, indicating limited diversification beyond the Navy.
Top NAICS
SELECT
naics_code,
naics_name,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
anyHeavy(content__award__productOrServiceInformation__principalNAICSCode__description) AS naics_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '56232'
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
)
ORDER BY total_obligated DESC
LIMIT 10
| NAICS Code | Description | Total Obligated | Readable | Award Actions |
|---|---|---|---|---|
| 541330 | ENGINEERING SERVICES | 659,683,077.27 | 659.68 million | 260 |
| 334511 | SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING | 479,021,192.10 | 479.02 million | 346 |
| 332510 | HARDWARE MANUFACTURING | 0.00 | 0.00 | 2 |
Insight
Over the last 5 years, LOCKHEED MARTIN CORPORATION’s obligations in the Top NAICS are concentrated in two primary codes: 541330 Engineering Services and 334511 Search, Detection, Navigation, Guidance, Aeronautical, and Nautical System and Instrument Manufacturing. These two NAICS account for virtually all reported obligated dollars in this view, with 659.68 million across 260 awards in 541330 and 479.02 million across 346 awards in 334511, indicating a balanced mix of higher-dollar engineering work and a larger volume of manufacturing awards. A small number of awards under 332510 Hardware Manufacturing were recorded, but with no obligated dollars, suggesting minimal dollar concentration in that category.
Annual Trend
SELECT
year,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
contract_type = 1
AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '56232'
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 DESC
| Year | Total Obligated | Readable | Award Actions |
|---|---|---|---|
| 2025 | 201,963,642.34 | 201.96 million | 88 |
| 2024 | 183,321,990.20 | 183.32 million | 107 |
| 2023 | 273,591,247.42 | 273.59 million | 106 |
| 2022 | 175,803,994.96 | 175.80 million | 157 |
| 2021 | 304,023,394.45 | 304.02 million | 150 |
Insight
Over the last 5 years, LOCKHEED MARTIN CORPORATION (CAGE 56232) obligated $1.14 billion across 608 awards, averaging $1.87 million per award. Annual obligations were uneven, peaking in 2021 at $304.02 million, rising again in 2023 to $273.59 million, and then moderating to $183.32 million in 2024 before increasing to $201.96 million in 2025. Award volume also varied, with the highest count in 2022 (157 awards) and lower counts in 2025 (88 awards), indicating that obligation levels were not driven solely by award frequency.
Use FPDS Query for deeper contractor analysis
Explore federal procurement data with custom SQL, fast filtering, and deeper contractor analysis across buying agencies, NAICS, 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.