Federal Contractor

LOCKHEED MARTIN CORPORATION Federal Contract Obligations (Last Year)

LOCKHEED MARTIN CORPORATION (CAGE 5D177, UEI NGBVY5X32XZ5) received 62 federal award actions totaling $1.60 billion in the last full year.

Most of the obligation volume came from the Missile Defense Agency, which accounted for 36 actions and $1.45 billion. The largest NAICS categories were research and development in physical, engineering, and life sciences and engineering services, with smaller activity in guided missile and space vehicle manufacturing.

Generated at 03/21/2026

Analysis period: Last full year

Totals reflect the last full year and may include deobligations, which is why some agency and NAICS totals are negative.

CAGE Code
5D177
UEI
NGBVY5X32XZ5
Total Obligated
1.60 billion
1,596,258,973.31
Award Actions
62
Average Action Value
25,746,112.47

About LOCKHEED MARTIN CORPORATION federal contract activity

LOCKHEED MARTIN CORPORATION (CAGE 5D177, UEI NGBVY5X32XZ5) recorded $1.60 billion in obligated awards across 62 actions during the last full year, for an average award value of $25.75 million. The profile is heavily concentrated in a small number of high-value awards, indicating a program-level rather than fragmented small-order pattern.

Agency mix and customer concentration

The MISSILE DEFENSE AGENCY (MDA) dominated the vendor’s funding base with $1.45 billion across 36 awards, accounting for the vast majority of total obligations. The DEPT OF THE ARMY added $152.68 million over 23 awards, while the DEPT OF THE AIR FORCE showed a net negative obligation of $2.18 million across 3 awards, which may reflect deobligations or closeout adjustments.

Industry profile based on NAICS activity

Award activity is centered on NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences, which contributed $1.44 billion across 33 awards. Engineering Services (541330) was the second-largest category at $153.30 million, followed by Guided Missile and Space Vehicle Manufacturing (336414) at $2.80 million; the remaining NAICS codes contributed only marginal amounts, including a small negative value in 541990.

Annual contract trend over the analysis window

The annual trend shows $1.60 billion in obligated value and 62 awards for 2025, establishing the full-year baseline for this analysis window. With only one year available, the data support a point-in-time profile rather than a multi-year growth assessment.

How to interpret this page

This summary is based on FPDS Query obligations for the last full year and aggregates awards by vendor, agency, and NAICS code. Totals reflect obligated amounts as reported in the source data and may include negative values from deobligations or adjustments; counts reflect award actions in the 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 = '5D177'
        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
97JC MISSILE DEFENSE AGENCY (MDA) 1,445,757,717.46 1.45 billion 36
2100 DEPT OF THE ARMY 152,676,929.55 152.68 million 23
5700 DEPT OF THE AIR FORCE -2,175,673.70 -2.18 million 3

Insight

Over the last full year, LOCKHEED MARTIN CORPORATION received 1.60 billion across 62 awards, with an average award value of 25.75 million. Obligations were highly concentrated at the Missile Defense Agency, which accounted for 1.45 billion across 36 awards, or the large majority of total obligations in this window. The Department of the Army added 152.68 million across 23 awards, while the Department of the Air Force recorded a net negative obligation of 2.18 million across 3 awards, indicating a small downward adjustment in that relationship.

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 = '5D177'
        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
541715 RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) 1,440,781,043.76 1.44 billion 33
541330 ENGINEERING SERVICES 153,299,380.54 153.30 million 17
336414 GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING 2,800,000.00 2.80 million 5
332993 AMMUNITION (EXCEPT SMALL ARMS) MANUFACTURING 1,000.00 1.00 thousand 1
541990 ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES -622,450.99 -622.45 thousand 6

Insight

Lockheed Martin Corporation’s last full year obligations are highly concentrated in NAICS 541715, which accounts for $1.44 billion across 33 awards, or the clear majority of the $1.60 billion total. The next largest category, NAICS 541330, contributes $153.30 million across 17 awards, indicating a secondary but much smaller engineering services footprint. The remaining NAICS codes are immaterial by comparison, including $2.80 million in NAICS 336414, $1,000 in NAICS 332993, and a net negative obligation of $622.45 thousand in NAICS 541990.

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 = '5D177'
        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 1,596,258,973.31 1.60 billion 62

Insight

In the last full year, LOCKHEED MARTIN CORPORATION (CAGE 5D177) received $1.60 billion in obligations across 62 awards, for an average award value of about $25.7 million. Obligations are fully concentrated in 2025 within the 1-year window provided, indicating no multi-year distribution in this view. The award profile suggests a moderate number of relatively high-value actions rather than a broad spread of small 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.