LOCKHEED MARTIN CORPORATION recorded 5,661 award actions and 3.859 billion in obligated value during the last 5 years, with an average action value of 681,776.70. Most obligations were concentrated with U.S. SPECIAL OPERATIONS COMMAND (USSOCOM), while the remaining activity was limited and spread across the Department of the Air Force and DCMA.
Federal Contractor
LOCKHEED MARTIN CORPORATION Federal Contract Obligations (Last 5 Years)
Federal procurement profile for LOCKHEED MARTIN CORPORATION (CAGE 622B7, UEI JKVWEPKJRR65) covering obligations and award activity over the last 5 years.
Figures reflect the provided 5-year analysis window and may include awards mapped to broad NAICS and agency classifications in FPDS data.
About LOCKHEED MARTIN CORPORATION federal contract activity
LOCKHEED MARTIN CORPORATION (CAGE 622B7, UEI JKVWEPKJRR65) obligated $3.86 billion across 5,661 awards in the last 5 years, for an average award value of $681,776.70. Activity is highly concentrated, with one agency accounting for nearly all observed obligations.
Agency mix and customer concentration
U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) dominates the profile with $3.86 billion and 5,644 awards, representing essentially the entire measured obligation base. The DEPT OF THE AIR FORCE contributed a much smaller $3.39 million across 13 awards, while DCMA shows four awards with no obligated dollars in this window.
Industry profile based on NAICS activity
Obligations are concentrated in NAICS 561990, ALL OTHER SUPPORT SERVICES, which accounts for $3.86 billion and 5,647 awards. A distant secondary line appears in NAICS 334220, RADIO AND TELEVISION BROADCASTING AND WIRELESS COMMUNICATIONS EQUIPMENT MANUFACTURING, with $3.39 million across 14 awards.
Annual contract trend over the analysis window
Annual obligations remained in a narrow band from 2021 through 2025, ranging from $691.80 million to $866.96 million. The highest annual obligation occurred in 2024, followed by 2025 and 2022, while award counts peaked in 2021 and were lowest in 2024, indicating a larger number of smaller awards in earlier years.
How to interpret this page
This summary is based on FPDS-observed obligations for the vendor identified by CAGE 622B7 and UEI JKVWEPKJRR65 over the last 5 years. Totals reflect obligated dollars and award counts within the analysis window; category rollups are derived from the provided top-agency, top-NAICS, and annual-trend aggregations.
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 = '622B7'
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 |
|---|---|---|---|---|
| 97ZS | U.S. SPECIAL OPERATIONS COMMAND (USSOCOM) | 3,856,149,682.66 | 3.86 billion | 5,644 |
| 5700 | DEPT OF THE AIR FORCE | 3,388,258.00 | 3.39 million | 13 |
| 9763 | DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) | 0.00 | 0.00 | 4 |
Insight
Over the last 5 years, LOCKHEED MARTIN CORPORATION’s obligations under CAGE 622B7 are highly concentrated at U.S. SPECIAL OPERATIONS COMMAND (USSOCOM), which accounts for $3.856 billion of the $3.860 billion total and 5,644 of 5,661 awards. The DEPT OF THE AIR FORCE is a distant secondary buyer at $3.39 million across 13 awards, representing a very small share of overall activity. DCMA has 4 awards with no obligated value, indicating administrative activity without recorded obligation in this 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 = '622B7'
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 |
|---|---|---|---|---|
| 561990 | ALL OTHER SUPPORT SERVICES | 3,856,149,682.66 | 3.86 billion | 5,647 |
| 334220 | RADIO AND TELEVISION BROADCASTING AND WIRELESS COMMUNICATIONS EQUIPMENT MANUFACTURING | 3,388,258.00 | 3.39 million | 14 |
Insight
Over the last 5 years, LOCKHEED MARTIN CORPORATION’s obligations under CAGE 622B7 are highly concentrated in NAICS 561990, which accounts for $3.86 billion of $3.86 billion total obligated and 5,647 of 5,661 awards. NAICS 334220 represents a very small share of activity at $3.39 million across 14 awards. This distribution indicates that the vendor’s obligations in this period are overwhelmingly associated with ALL OTHER SUPPORT SERVICES, with minimal activity in the second NAICS identified.
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 = '622B7'
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 | 765,995,976.02 | 766.00 million | 1,027 |
| 2024 | 866,955,424.86 | 866.96 million | 948 |
| 2023 | 745,094,270.57 | 745.09 million | 1,193 |
| 2022 | 789,689,230.54 | 789.69 million | 1,140 |
| 2021 | 691,803,038.67 | 691.80 million | 1,353 |
Insight
Over the last five years, LOCKHEED MARTIN CORPORATION (CAGE 622B7) received $3.86 billion across 5,661 awards, averaging about $681.8K per award. Obligations are relatively stable year to year, ranging from $691.8 million in 2021 to a high of $867.0 million in 2024, with 2025 at $766.0 million through the current period. Award volume does not move in lockstep with obligated dollars: 2021 had the highest award count (1,353) but the lowest obligations, while 2024 had the lowest award count (948) and the highest obligations, indicating larger average award values in the later years.
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.