During the analysis window, Lockheed Martin Corporation recorded nearly all of its obligated value with the Department of the Air Force, which accounted for $931.41 million across 65 awards. The largest NAICS area was Engineering Services, followed by All Other Telecommunications and Guided Missile and Space Vehicle Manufacturing.
Federal Contractor
LOCKHEED MARTIN CORPORATION Federal Contract Obligations (Last Year)
LOCKHEED MARTIN CORPORATION (CAGE 79272, UEI KFN4YJH98D51) received $932.03 million in federal obligations across 69 award actions in the last full year.
Totals, counts, and averages reflect the last full year and may include negative obligations in some agencies and NAICS categories.
About LOCKHEED MARTIN CORPORATION federal contract activity
LOCKHEED MARTIN CORPORATION (CAGE 79272, UEI KFN4YJH98D51) recorded 932.03 million in total obligations across 69 awards in the last full year, for an average award value of 13.51 million. The profile is highly concentrated and reflects a large defense prime contractor footprint rather than a broad multi-agency vendor base.
Agency mix and customer concentration
The DEPT OF THE AIR FORCE dominated the spend profile, accounting for 931.41 million across 65 awards and representing nearly all obligated value. The DEPT OF THE ARMY added a much smaller 3.31 million across 2 awards, while DCMA showed a net negative obligation of 2.69 million across 2 awards, indicating downward adjustments or deobligations within the period.
Industry profile based on NAICS activity
NAICS 541330 ENGINEERING SERVICES drove the majority of activity at 907.56 million across 40 awards, making it the clear core services category. Smaller positions were recorded in 517810 ALL OTHER TELECOMMUNICATIONS, 336414 GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING, and 541715 R&D services, while 541690 OTHER SCIENTIFIC AND TECHNICAL CONSULTING SERVICES was net negative over the period.
Annual contract trend over the analysis window
The annual trend reflects a single-year view for 2025, with 932.03 million obligated across 69 awards. Because only one year is present in the analysis window, this dataset supports a point-in-time profile rather than a multi-year growth assessment.
How to interpret this page
This summary uses FPDS obligations associated with vendor identifiers CAGE 79272 and UEI KFN4YJH98D51 over the last full year. Totals, award counts, and averages are based on the provided aggregate metrics; negative values are retained as reported and likely reflect deobligations or adjustments.
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 = '79272'
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 |
|---|---|---|---|---|
| 5700 | DEPT OF THE AIR FORCE | 931,411,672.82 | 931.41 million | 65 |
| 2100 | DEPT OF THE ARMY | 3,310,859.00 | 3.31 million | 2 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | -2,693,750.47 | -2.69 million | 2 |
Insight
Over the last full year, obligations for LOCKHEED MARTIN CORPORATION (CAGE 79272) were highly concentrated in the DEPT OF THE AIR FORCE, which accounted for $931.41 million across 65 awards, or essentially all of the vendor’s $932.03 million total. DEPT OF THE ARMY represented a much smaller share at $3.31 million across 2 awards. DCMA posted a net deobligation of $2.69 million across 2 awards, indicating slight downward adjustment activity within 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 = '79272'
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 | 907,560,879.50 | 907.56 million | 40 |
| 517810 | ALL OTHER TELECOMMUNICATIONS | 11,693,871.00 | 11.69 million | 11 |
| 336414 | GUIDED MISSILE AND SPACE VEHICLE MANUFACTURING | 8,009,577.70 | 8.01 million | 6 |
| 541715 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) | 5,310,859.00 | 5.31 million | 8 |
| 541690 | OTHER SCIENTIFIC AND TECHNICAL CONSULTING SERVICES | -546,405.85 | -546.41 thousand | 4 |
Insight
LOCKHEED MARTIN CORPORATION’s last-full-year obligations were highly concentrated in NAICS 541330, Engineering Services, which accounted for $907.56 million across 40 awards, or nearly all of the vendor’s $932.03 million total. The remaining obligation was distributed across a small set of NAICS codes, led by 517810 at $11.69 million and 336414 at $8.01 million, with smaller volumes in 541715 and a slight net negative in 541690. This pattern indicates a strong reliance on engineering services with limited diversification across other NAICS categories.
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 = '79272'
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 | 932,028,781.35 | 932.03 million | 69 |
Insight
Over the last full year, Lockheed Martin Corporation (CAGE 79272) recorded $932.03 million in obligated awards across 69 awards, for an average award value of about $13.5 million. With only one year of data in the window, no year-over-year trend can be assessed; the available result indicates a relatively concentrated award profile at the annual level. The volume and value suggest multiple mid- to large-dollar obligations rather than reliance on a single award.
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.