Federal Contractor

LOCKHEED MARTIN CORPORATION Federal Contract Obligations (Last 5 Years)

LOCKHEED MARTIN CORPORATION’s federal procurement record over the last five years shows 480 award actions and $7.51 billion obligated, led by Department of the Navy spending.

LOCKHEED MARTIN CORPORATION (CAGE 7X6A9, UEI KMEVRAKJVBD3) received 480 award actions in the last five years, with total obligations of $7,505,435,279.54 and an average action value of $15,636,323.49. Most obligations were awarded by the Department of the Navy, with smaller award activity recorded under DCMA.

Generated at 03/21/2026

Analysis period: Last 5 years

Amounts reflect readable FPDS totals for the last five years and may not sum precisely across all displayed slices due to rounding.

CAGE Code
7X6A9
UEI
KMEVRAKJVBD3
Total Obligated
7.51 billion
7,505,435,279.54
Award Actions
480
Average Action Value
15,636,323.49

About LOCKHEED MARTIN CORPORATION federal contract activity

LOCKHEED MARTIN CORPORATION (CAGE 7X6A9, UEI KMEVRAKJVBD3) received $7.51 billion in obligations across 480 FPDS awards over the last 5 years, for an average award value of $15.64 million. The activity profile is heavily concentrated in defense-related procurement and is consistent with a large prime contractor receiving a relatively small number of high-value awards.

Agency mix and customer concentration

The DEPT OF THE NAVY accounts for essentially all recorded obligations, with $7.51 billion across 428 awards. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears in 52 awards but with zero obligated dollars, indicating administrative or oversight activity rather than funded contract value in this window.

Industry profile based on NAICS activity

NAICS 336414, Guided Missile and Space Vehicle Manufacturing, dominates the portfolio with $6.71 billion across 321 awards, showing the core business is tightly aligned to weapons and aerospace production. NAICS 541330, Engineering Services, adds $792.79 million across 153 awards, while NAICS 811310 contributes only $1.05 million across 6 awards and is immaterial by comparison.

Annual contract trend over the analysis window

Annual obligations peaked in 2025 at $2.09 billion across 126 awards, followed by $1.58 billion in 2024 and $1.32 billion in 2023. The series shows a dip in 2022 to $1.03 billion, then a rebound in 2023 through 2025, suggesting increasing funded activity in the most recent periods.

How to interpret this page

This summary uses FPDS obligations associated with the stated vendor identifiers over the last 5 years and reflects only the data provided in the analysis window. Totals, counts, and averages are computed from the supplied overview, agency, NAICS, and annual trend fields; zero-obligation entries are reported as provided and not reinterpreted.

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 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 7,505,435,279.54 7.51 billion 428
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) 0.00 0.00 52

Insight

Over the last 5 years, LOCKHEED MARTIN CORPORATION’s obligated dollars are highly concentrated in the DEPT OF THE NAVY, which accounts for the full $7.51 billion and 428 of 480 awards. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) appears in the award count with 52 awards but records no obligated dollars, indicating administrative or zero-obligation actions rather than funded obligations. Overall, the vendor’s top-agency profile is dominated by Navy activity, with minimal distribution across other agencies in this section.

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 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
336414 GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING 6,711,598,326.36 6.71 billion 321
541330 ENGINEERING SERVICES 792,788,590.18 792.79 million 153
811310 COMMERCIAL AND INDUSTRIAL MACHINERY AND EQUIPMENT (EXCEPT AUTOMOTIVE AND ELECTRONIC) REPAIR AND MAINTENANCE 1,048,363.00 1.05 million 6

Insight

Over the last 5 years, LOCKHEED MARTIN CORPORATION (CAGE 7X6A9) received $7.51 billion across 480 awards, with a weighted average award value of $15.64 million. Obligations are highly concentrated in NAICS 336414, Guided Missile and Space Vehicle Manufacturing, which accounts for $6.71 billion and 321 awards, or the clear majority of both dollars and actions. NAICS 541330, Engineering Services, is a distant second at $792.79 million across 153 awards, while NAICS 811310 is immaterial at $1.05 million and 6 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 5 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

Insight

Over the last 5 years, LOCKHEED MARTIN CORPORATION (CAGE 7X6A9) received $7.51 billion across 480 awards, averaging $15.64 million per award. Obligations are concentrated in 2025 and 2024, which together account for about 49% of total obligated value, indicating a recent uptick in funding volume. Annual obligated value dipped in 2022 before rising in 2023, 2024, and 2025, while award counts peaked in 2025 and were lowest in 2023, suggesting variable award distribution across the period.

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.