Federal Contractor

LOCKHEED MARTIN CORPORATION Federal Contract Obligations (Last 5 Years)

Federal procurement profile for LOCKHEED MARTIN CORPORATION (CAGE 3VQB0, UEI NPTBVK49FNB3) covering obligations, awards, agencies, NAICS, and annual trends over the last 5 years.

LOCKHEED MARTIN CORPORATION recorded 454 award actions and $1,002,750,349.66 in obligated funding over the last 5 years, with an average action value of $2,208,701.21. Most activity was concentrated with the Missile Defense Agency (447 awards) and under NAICS 541511, Custom Computer Programming Services.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals reflect the provided analysis window and may include small negative obligations at the agency and NAICS level.

CAGE Code
3VQB0
UEI
NPTBVK49FNB3
Total Obligated
1.00 billion
1,002,750,349.66
Award Actions
454
Average Action Value
2,208,701.21

About LOCKHEED MARTIN CORPORATION federal contract activity

LOCKHEED MARTIN CORPORATION (CAGE 3VQB0, UEI NPTBVK49FNB3) recorded 454 FPDS awards totaling $1.00 billion in obligated dollars over the last 5 years, with an average award value of $2.21 million. The obligation profile is highly concentrated, with the Missile Defense Agency accounting for essentially all recorded dollars in the period.

Agency mix and customer concentration

The agency mix is dominated by MISSILE DEFENSE AGENCY (MDA), which represents 447 of 454 awards and $1.00 billion in obligations. The remaining agencies show minimal volume and include small or net-negative obligation amounts at DEPT OF THE AIR FORCE, U.S. COAST GUARD, and DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA), indicating limited diversification outside MDA.

Industry profile based on NAICS activity

Obligations are overwhelmingly concentrated in NAICS 541511, CUSTOM COMPUTER PROGRAMMING SERVICES, which accounts for 449 awards and about $1.00 billion. Smaller activity appears in NAICS 541519 and 334220, but these categories contribute little to overall obligations and include a net-negative amount in 334220.

Annual contract trend over the analysis window

Annual obligations peaked in 2021 at $312.53 million, then declined to $196.92 million in 2022 before rising again to $276.17 million in 2023 and $178.12 million in 2024. Through 2025, obligations total $39.01 million across 51 awards, suggesting a lower run rate in the current period relative to prior years.

How to interpret this page

This summary uses FPDS award records attributed to LOCKHEED MARTIN CORPORATION by CAGE code 3VQB0 and UEI NPTBVK49FNB3 over the last 5 years. Dollar values reflect obligated amounts aggregated by vendor, agency, NAICS code, and fiscal year; negative totals indicate deobligations or downward adjustments in the source data.

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 = '3VQB0'
        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
97JC MISSILE DEFENSE AGENCY (MDA) 1,004,438,941.93 1.00 billion 447
5700 DEPT OF THE AIR FORCE 0.00 0.00 2
7008 U.S. COAST GUARD 0.00 0.00 1
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -1,688,592.27 -1.69 million 4

Insight

Over the last 5 years, LOCKHEED MARTIN CORPORATION’s obligations are highly concentrated with the MISSILE DEFENSE AGENCY (MDA), which accounts for approximately $1.00 billion across 447 awards, essentially matching the vendor’s total obligated amount in this window. Other agencies represent only marginal activity by count and value: the Department of the Air Force and U.S. Coast Guard show a small number of awards with $0 obligated, while DCMA records a negative obligated amount of $1.69 million across 4 awards. This pattern indicates the vendor’s federal business in the period is overwhelmingly driven by MDA, with limited activity outside 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 = '3VQB0'
        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
541511 CUSTOM COMPUTER PROGRAMMING SERVICES 1,003,353,513.42 1.00 billion 449
541519 OTHER COMPUTER RELATED SERVICES 0.00 0.00 1
334220 RADIO AND TELEVISION BROADCASTING AND WIRELESS COMMUNICATIONS EQUIPMENT MANUFACTURING -603,163.76 -603.16 thousand 4

Insight

Over the last 5 years, obligations for LOCKHEED MARTIN CORPORATION under CAGE 3VQB0 are highly concentrated in NAICS 541511, Custom Computer Programming Services, which accounts for 449 of 454 awards and approximately $1.00 billion in obligations. The remaining activity is minimal and fragmented across NAICS 541519 with one award and no obligated value, and NAICS 334220 with four awards and a net negative obligated value of $603.16 thousand. This distribution indicates that the vendor’s FPDS activity in this window is overwhelmingly centered in a single NAICS, with limited secondary activity.

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 = '3VQB0'
        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 39,009,491.78 39.01 million 51
2024 178,116,525.81 178.12 million 97
2023 276,173,377.10 276.17 million 110
2022 196,922,225.45 196.92 million 102
2021 312,528,729.52 312.53 million 94

Insight

Over the last 5 years, LOCKHEED MARTIN CORPORATION (CAGE 3VQB0) obligated $1.00 billion across 454 awards, averaging $2.21 million per award. Annual obligations are unevenly distributed, with the highest activity in 2021 ($312.53 million) and 2023 ($276.17 million), followed by a decline in 2024 ($178.12 million) and a lower level in 2025 to date ($39.01 million). Award counts generally track the obligation pattern, peaking in 2023 at 110 awards and remaining moderate in other years, indicating a concentration of funding in select periods rather than a steady annual flow.

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.