Federal Contractor

LOCKHEED MARTIN CORPORATION Federal Contract Obligations (Last Year)

LOCKHEED MARTIN CORPORATION (CAGE 56232, UEI Z9B5HQ9HSTM5) recorded 88 federal award actions and $201.96 million in obligations in the last full year.

In the last full year, LOCKHEED MARTIN CORPORATION received 88 award actions totaling $201,963,642.34 in obligations, for an average action value of $2,295,041.39. Most obligations came from the Department of the Navy, with engineering services accounting for the largest share of NAICS activity.

Generated at 03/21/2026

Analysis period: Last full year

This page summarizes the last full year of FPDS award activity for the vendor and reflects obligated amounts as reported in the provided data.

CAGE Code
56232
UEI
Z9B5HQ9HSTM5
Total Obligated
201.96 million
201,963,642.34
Award Actions
88
Average Action Value
2,295,041.39

About LOCKHEED MARTIN CORPORATION federal contract activity

LOCKHEED MARTIN CORPORATION (CAGE 56232, UEI Z9B5HQ9HSTM5) recorded $201.96 million in obligated dollars across 88 awards during the last full year, for an average award value of $2.30 million. The award profile is moderately concentrated, with most obligations flowing through a relatively small set of awards.

Agency mix and customer concentration

The DEPT OF THE NAVY accounted for nearly all positive obligated dollars at $204.28 million across 73 awards, indicating that the vendor’s activity was heavily Navy-oriented. DCMA shows a net negative obligation of $2.32 million across 15 awards, which indicates downward adjustments or de-obligations rather than new positive funding.

Industry profile based on NAICS activity

NAICS 541330, Engineering Services, dominated the portfolio with $185.65 million across 67 awards, making it the primary contracting category by both dollars and volume. NAICS 334511 added $16.31 million across 21 awards, suggesting a secondary role tied to specialized system and instrument manufacturing.

Annual contract trend over the analysis window

The annual trend shows all analyzed activity occurring in 2025, with $201.96 million obligated over 88 awards. With only one year in the window, the data supports a point-in-time view rather than a multi-year growth or decline assessment.

How to interpret this page

This summary is based on FPDS obligations tied to vendor identifiers for LOCKHEED MARTIN CORPORATION, using CAGE 56232 and UEI Z9B5HQ9HSTM5 over the last full year. Dollar totals reflect obligated amounts as reported in the source data; negative values are retained as reported and may reflect modifications or de-obligations.

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 1 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 204,280,334.29 204.28 million 73
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -2,316,691.95 -2.32 million 15

Insight

During the last full year, LOCKHEED MARTIN CORPORATION (CAGE 56232) received $201.96 million across 88 awards, with an average award value of $2.30 million. Obligations were highly concentrated in the DEPT OF THE NAVY, which accounted for $204.28 million across 73 awards and exceeded the vendor’s total by offsetting activity elsewhere. DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) recorded -$2.32 million across 15 awards, indicating a net downward adjustment over the period.

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 1 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 185,650,117.24 185.65 million 67
334511 SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING 16,313,525.10 16.31 million 21

Insight

Over the last full year, LOCKHEED MARTIN CORPORATION (CAGE 56232) received $201.96 million across 88 awards, with obligations concentrated in two NAICS codes. Engineering Services (541330) accounts for $185.65 million and 67 awards, representing the clear majority of both dollars and actions. The remaining $16.31 million and 21 awards are concentrated in Search, Detection, Navigation, Guidance, Aeronautical, and Nautical System and Instrument Manufacturing (334511), indicating a strong primary focus with limited diversification by NAICS.

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 1 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

Insight

For the last full year, LOCKHEED MARTIN CORPORATION (CAGE 56232) recorded $201.96 million in obligated value across 88 awards, for an average award value of about $2.30 million. The annual activity is fully concentrated in FY2025 within the 1-year window provided, so no year-over-year trend can be assessed from this dataset alone. The award profile suggests moderate distribution across a relatively large number of actions rather than reliance on a small number of high-dollar awards.

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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.