Federal Contractor

LOCKHEED MARTIN CORPORATION Federal Contract Obligations (Last Year)

Federal procurement profile for LOCKHEED MARTIN CORPORATION (CAGE 3VQB0, UEI NPTBVK49FNB3) covering the last full year of award activity.

In the last full year, LOCKHEED MARTIN CORPORATION recorded 51 award actions totaling $39.01 million in obligations, with an average action value of $764,891.99. Most obligated dollars were associated with the Missile Defense Agency, and nearly all reported activity fell under NAICS 541511, Custom Computer Programming Services.

Generated at 03/21/2026

Analysis period: Last full year

Totals reflect the provided analysis window and may include negative obligations in agency-level rollups, while the vendor total remains $39,009,491.78.

CAGE Code
3VQB0
UEI
NPTBVK49FNB3
Total Obligated
39.01 million
39,009,491.78
Award Actions
51
Average Action Value
764,891.99

About LOCKHEED MARTIN CORPORATION federal contract activity

LOCKHEED MARTIN CORPORATION (CAGE 3VQB0, UEI NPTBVK49FNB3) recorded $39.01 million in obligations across 51 awards in the last full year, with an average award value of $764,891.99. The profile is highly concentrated in a small number of transactions, indicating continued activity at meaningful award sizes rather than a broad base of low-dollar awards.

Agency mix and customer concentration

The award mix is dominated by the MISSILE DEFENSE AGENCY (MDA), which accounted for 48 awards and $40.09 million in obligations. The remaining activity was limited to one award from the U.S. COAST GUARD with no obligated value and two awards associated with the DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA), which together show a net negative obligated amount of $1.09 million. This pattern suggests the vendor’s reported activity in the period was primarily driven by one defense customer, with small-offset adjustments elsewhere.

Industry profile based on NAICS activity

Obligations were concentrated in NAICS 541511, Custom Computer Programming Services, which represented essentially all recorded dollars at $39.01 million across 50 awards. A single award was mapped to NAICS 541519, Other Computer Related Services, but it carried no obligated value. The NAICS profile therefore indicates a narrowly defined technical services footprint for the period.

Annual contract trend over the analysis window

The annual trend shows $39.01 million obligated in 2025 across 51 awards, which matches the full-period totals provided. Because only one year is shown, the available data supports a point-in-time view rather than a multi-year growth or decline assessment. The results nonetheless indicate sustained award activity at a consistent scale within the analysis window.

How to interpret this page

This summary is based on FPDS award obligations attributed to LOCKHEED MARTIN CORPORATION using CAGE 3VQB0 and UEI NPTBVK49FNB3 for the last full year. Totals reflect obligated dollars, award counts, and categorical rollups by agency, NAICS, and year as provided in the analysis inputs. Negative or zero-obligation values are preserved as reported and may reflect deobligations, adjustments, or awards with no obligated amount in the period.

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 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) 40,094,920.29 40.09 million 48
7008 U.S. COAST GUARD 0.00 0.00 1
9763 DEFENSE CONTRACT MANAGEMENT AGENCY (DCMA) -1,085,428.51 -1.09 million 2

Insight

Over the last full year, LOCKHEED MARTIN CORPORATION (CAGE 3VQB0) received 51 awards totaling $39.01 million, with an average award value of $764,891.99. Obligations are highly concentrated at the MISSILE DEFENSE AGENCY (MDA), which accounted for 48 awards and $40.09 million, exceeding the vendor’s total by a small net amount. The remaining activity is limited to one award at the U.S. COAST GUARD with $0 obligated and two DCMA awards totaling -$1.09 million, indicating offsetting adjustments outside the primary funding 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 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
541511 CUSTOM COMPUTER PROGRAMMING SERVICES 39,009,491.78 39.01 million 50
541519 OTHER COMPUTER RELATED SERVICES 0.00 0.00 1

Insight

During the last full year, obligations for LOCKHEED MARTIN CORPORATION under CAGE 3VQB0 were highly concentrated in NAICS 541511, Custom Computer Programming Services, which accounted for $39.01 million across 50 awards. NAICS 541519, Other Computer Related Services, سجلled one award but no obligated dollars, indicating negligible spend diversification within the top NAICS set. Overall, 51 awards averaged $764,891.99 each, suggesting a portfolio dominated by recurring activity in a single services category.

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 1 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

Insight

For the last full year, LOCKHEED MARTIN CORPORATION (CAGE 3VQB0) recorded $39.01 million in obligated value across 51 awards, for an average award value of about $764.9K. The annual activity is concentrated in a single year in the current 1-year window, so no multi-year trend can be assessed from this view. The award count suggests moderately dispersed obligations rather than dependence on a small number of 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.