In the analysis window, LOCKHEED MARTIN CORPORATION received 144 award actions totaling $243,536,583.18 in obligated value, or $243.54 million. Work was concentrated with the Defense Logistics Agency and the Department of the Navy, led by aircraft engine and shipbuilding-related NAICS categories.
Federal Contractor
LOCKHEED MARTIN CORPORATION Federal Contract Obligations (Last Year)
Federal procurement profile for LOCKHEED MARTIN CORPORATION (CAGE 38597, UEI MJENSFHZJP11) covering obligations in the last full year.
Totals reflect the last full year and are based on readable FPDS obligation data, with agency and NAICS breakdowns shown by obligated value and award count.
About LOCKHEED MARTIN CORPORATION federal contract activity
LOCKHEED MARTIN CORPORATION (CAGE 38597, UEI MJENSFHZJP11) recorded $243.54 million in obligated award value across 144 awards in the last full year, for an average award value of $1.69 million. The award profile is concentrated in defense-related procurement, with activity spanning multiple contracting channels rather than a single large transaction stream.
Agency mix and customer concentration
Obligations were split primarily between the Defense Logistics Agency and the Department of the Navy. The Defense Logistics Agency accounted for $130.16 million across 15 awards, while the Department of the Navy accounted for $113.38 million across 129 awards, indicating a mix of larger-value and higher-volume procurement activity.
Industry profile based on NAICS activity
NAICS concentration is strongest in aircraft engine and engine parts manufacturing (336412), which matches the largest share of obligated value at $130.16 million. Ship building and repairing (336611) follows at $93.35 million across 103 awards, while engineering services (541330) adds $14.51 million, showing a secondary support and design-services component; the remaining NAICS categories contribute smaller amounts.
Annual contract trend over the analysis window
The annual trend shows all analyzed obligations occurring in 2025, totaling $243.54 million across 144 awards. With only one year in the window, the data supports a point-in-time assessment rather than a multi-year growth or decline analysis.
How to interpret this page
This summary uses FPDS obligation data for the vendor identified by CAGE 38597 and UEI MJENSFHZJP11 over the last full year. Agency, NAICS, and annual figures are based on total obligated dollars and award counts provided in the analysis window, and no values beyond the supplied dataset are inferred.
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 = '38597'
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 |
|---|---|---|---|---|
| 97AS | DEFENSE LOGISTICS AGENCY | 130,159,628.41 | 130.16 million | 15 |
| 1700 | DEPT OF THE NAVY | 113,376,954.77 | 113.38 million | 129 |
Insight
During the last full year, LOCKHEED MARTIN CORPORATION received 243.54 million across 144 awards, with obligations concentrated in two agencies. The Defense Logistics Agency accounted for 130.16 million across 15 awards, representing the largest dollar concentration, while the Department of the Navy obligated 113.38 million across 129 awards. This indicates a split pattern: higher-value, lower-count awards at DLA and a more distributed award base at 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 = '38597'
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 |
|---|---|---|---|---|
| 336412 | AIRCRAFT ENGINE AND ENGINE PARTS MANUFACTURING | 130,159,628.41 | 130.16 million | 15 |
| 336611 | SHIP BUILDING AND REPAIRING | 93,349,033.33 | 93.35 million | 103 |
| 541330 | ENGINEERING SERVICES | 14,509,453.40 | 14.51 million | 18 |
| 334412 | BARE PRINTED CIRCUIT BOARD MANUFACTURING | 4,499,608.00 | 4.50 million | 3 |
| 334511 | SEARCH, DETECTION, NAVIGATION, GUIDANCE, AERONAUTICAL, AND NAUTICAL SYSTEM AND INSTRUMENT MANUFACTURING | 1,018,860.04 | 1.02 million | 4 |
| 334519 | OTHER MEASURING AND CONTROLLING DEVICE MANUFACTURING | 0.00 | 0.00 | 1 |
Insight
LOCKHEED MARTIN CORPORATION’s last full year obligations of $243.54 million were concentrated in two NAICS codes: 336412 Aircraft Engine and Engine Parts Manufacturing ($130.16 million, 15 awards) and 336611 Ship Building and Repairing ($93.35 million, 103 awards), which together account for most obligated dollars and awards. Engineering Services (541330) was a distant third at $14.51 million across 18 awards, while the remaining NAICS categories each represented less than $5 million. The award profile indicates high dollar concentration in aerospace and shipbuilding, with a larger transaction count in shipbuilding than in aircraft engine manufacturing.
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 = '38597'
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 | 243,536,583.18 | 243.54 million | 144 |
Insight
Over the last full year, LOCKHEED MARTIN CORPORATION (CAGE 38597) received $243.54 million in obligated value across 144 awards, for an average award value of $1.69 million. The annual activity in the single reported year indicates a concentrated obligation profile within the 1-year window, with all observed obligations captured in 2025. This pattern suggests steady award flow over the period rather than a multi-year trend.
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.