LOCKHEED MARTIN CORPORATION recorded 593 award actions and $9,089,577,219.88 in obligated value over the last 10 years, for an average action value of $15,328,123.47. Activity is concentrated with the Department of the Navy and in NAICS 336414, Guided Missile and Space Vehicle Manufacturing, with additional work in engineering services.
Federal Contractor
LOCKHEED MARTIN CORPORATION Federal Contract Obligations (Last 10 Years)
Federal procurement summary for LOCKHEED MARTIN CORPORATION (CAGE 7X6A9, UEI KMEVRAKJVBD3) covering the last 10 years of FPDS award activity.
Totals reflect the provided 10-year analysis window and may include awards with zero obligated value; agency and NAICS totals are shown as reported in the source data.
About LOCKHEED MARTIN CORPORATION federal contract activity
LOCKHEED MARTIN CORPORATION recorded 593 FPDS awards over the last 10 years, with $9.09 billion in total obligated value and an average award value of $15.33 million. The activity profile indicates a large, defense-focused vendor with substantial contract value concentrated in a relatively small number of awards.
Agency mix and customer concentration
Obligations are overwhelmingly concentrated at the DEPT OF THE NAVY, which accounts for the full $9.09 billion and 539 awards in the provided agency data. The only other listed customer is the DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA), which shows 54 awards but $0 obligated, suggesting administrative or oversight activity rather than funded procurement volume in this extract.
Industry profile based on NAICS activity
The NAICS profile is dominated by 336414, Guided Missile and Space Vehicle Manufacturing, with $8.25 billion across 411 awards, confirming that core business is centered on aerospace and defense manufacturing. Engineering Services (541330) is the secondary category at $837.00 million across 175 awards, while Repair and Maintenance (811310) is immaterial at $1.16 million across 7 awards.
Annual contract trend over the analysis window
Annual obligations remain elevated throughout the period shown, ranging from $1.03 billion in 2022 to $2.09 billion in 2025, with a particularly strong finish in 2024 and 2025. The pattern shows sustained, multi-year funding rather than a single spike, and the award counts broadly track the obligation levels with the highest volume in 2025.
How to interpret this page
This page summarizes FPDS award data associated with CAGE 7X6A9 and UEI KMEVRAKJVBD3 for the last 10 years. Totals, counts, agency mix, NAICS mix, and annual trend figures are derived from the provided FPDS aggregation and should be interpreted as reported obligations within the stated analysis window.
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 = '7X6A9'
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
)
ORDER BY total_obligated DESC
LIMIT 10
| Agency ID | Agency Name | Total Obligated | Readable | Award Actions |
|---|---|---|---|---|
| 1700 | DEPT OF THE NAVY | 9,089,577,219.88 | 9.09 billion | 539 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 54 |
Insight
Over the last 10 years, LOCKHEED MARTIN CORPORATION’s obligations under CAGE 7X6A9 are highly concentrated with the DEPT OF THE NAVY, which accounts for $9.09 billion across 539 awards. The only other recorded awarding agency is DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA), with 54 awards but no obligated dollars. This indicates that essentially all obligated value in this period is tied to Navy activity, with DCMA providing award count volume without corresponding obligation value.
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 = '7X6A9'
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
)
ORDER BY total_obligated DESC
LIMIT 10
| NAICS Code | Description | Total Obligated | Readable | Award Actions |
|---|---|---|---|---|
| 336414 | GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING | 8,251,412,781.70 | 8.25 billion | 411 |
| 541330 | ENGINEERING SERVICES | 837,003,789.18 | 837.00 million | 175 |
| 811310 | COMMERCIAL AND INDUSTRIAL MACHINERY AND EQUIPMENT (EXCEPT AUTOMOTIVE AND ELECTRONIC) REPAIR AND MAINTENANCE | 1,160,649.00 | 1.16 million | 7 |
Insight
Over the last 10 years, obligations for LOCKHEED MARTIN CORPORATION (CAGE 7X6A9) are highly concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing, which accounts for $8.25 billion across 411 awards, or the vast majority of the $9.09 billion total. NAICS 541330, Engineering Services, is the only other material category at $837.00 million across 175 awards, indicating a secondary but much smaller support-services stream. The remaining listed activity is negligible by comparison, with 811310 totaling $1.16 million across 7 awards.
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 = '7X6A9'
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 DESC
| Year | Total Obligated | Readable | Award Actions |
|---|---|---|---|
| 2025 | 2,092,895,169.70 | 2.09 billion | 126 |
| 2024 | 1,583,345,062.96 | 1.58 billion | 84 |
| 2023 | 1,324,162,875.27 | 1.32 billion | 79 |
| 2022 | 1,029,880,515.36 | 1.03 billion | 105 |
| 2021 | 1,475,151,656.25 | 1.48 billion | 86 |
| 2020 | 343,142,745.00 | 343.14 million | 64 |
| 2019 | 1,240,999,195.34 | 1.24 billion | 49 |
Insight
Over the last 10 years, LOCKHEED MARTIN CORPORATION (CAGE 7X6A9) received $9.09 billion across 593 awards, averaging $15.33 million per award. Obligations are concentrated in the most recent years, led by 2025 at $2.09 billion and 126 awards, followed by 2024 at $1.58 billion and 2023 at $1.32 billion. The annual pattern is uneven, with a notable dip in 2020 to $343.14 million, then a rebound above $1.0 billion in each year from 2021 through 2025 except 2020.
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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.