Federal Contractor

LEIDOS INNOVATIONS CORPORATION Federal Contract Obligations (Last 5 Years)

LEIDOS INNOVATIONS CORPORATION (CAGE 7MWB4, UEI X38JVP4R72E1) recorded $2.20 billion in obligations across 507 federal award actions in the last 5 years.

The largest share of obligations came from the National Science Foundation, followed by the Federal Aviation Administration, Federal Acquisition Service, Centers for Medicare and Medicaid Services, and the Defense Threat Reduction Agency. Activity was concentrated in Facilities Support Services, Computer Systems Design Services, and Air Traffic Control, with annual obligations ranging from $359.93 million in 2025 to $594.37 million in 2021.

Generated at 03/21/2026

Analysis period: Last 5 years

Figures reflect obligated amounts in the last 5 years and are based on 507 award actions, with annual and category totals shown as reported.

CAGE Code
7MWB4
UEI
X38JVP4R72E1
Total Obligated
2.20 billion
2,195,161,940.76
Award Actions
507
Average Action Value
4,329,707.96

About LEIDOS INNOVATIONS CORPORATION federal contract activity

Over the last 5 years, LEIDOS INNOVATIONS CORPORATION (CAGE 7MWB4, UEI X38JVP4R72E1) received $2.20 billion across 507 FPDS-recorded awards, for an average award value of $4.33 million. Obligations are concentrated in a relatively small number of large awards, led by multi-year activities with the National Science Foundation and the Federal Aviation Administration.

Agency mix and customer concentration

The award base is led by the National Science Foundation at $1.18 billion, representing more than half of total obligations, followed by the Federal Aviation Administration at $458.56 million and the Federal Acquisition Service at $241.54 million. The remaining top buyers include CMS and DTRA, indicating a mix of civilian science, transportation, acquisition support, and defense-related demand rather than dependence on a single mission area.

Industry profile based on NAICS activity

The NAICS profile is dominated by Facilities Support Services (561210) at $1.18 billion and Computer Systems Design Services (541512) at $489.75 million, showing a combined emphasis on operational support and IT/engineering delivery. Air Traffic Control (488111) adds $458.56 million, while smaller but recurring activity appears in Wired Telecommunications Carriers (517110) and Other Computer Related Services (541519), suggesting a broader technical services footprint.

Annual contract trend over the analysis window

Annual obligations peaked in 2021 at $594.37 million across 142 awards and then remained elevated through 2022 and 2023 before moderating in 2024 and 2025. Award counts declined from 142 in 2021 to 50 in 2025, while dollars stayed near the mid-$300 million range, indicating fewer but still substantial obligations in the most recent years.

How to interpret this page

This summary is based on FPDS obligations associated with LEIDOS INNOVATIONS CORPORATION over the last 5 years, using the provided CAGE code and UEI for entity matching. Agency, NAICS, and annual totals are reported as obligated dollars and award counts from the supplied dataset; percentages and rankings are derived from those figures only.

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 = '7MWB4'
        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
4900 NATIONAL SCIENCE FOUNDATION 1,179,672,141.40 1.18 billion 58
6920 FEDERAL AVIATION ADMINISTRATION 458,561,732.76 458.56 million 68
4732 FEDERAL ACQUISITION SERVICE 241,543,448.28 241.54 million 67
7530 CENTERS FOR MEDICARE AND MEDICAID SERVICES 141,417,152.00 141.42 million 35
9761 DEFENSE THREAT REDUCTION AGENCY (DTRA) 78,631,674.69 78.63 million 55
5700 DEPT OF THE AIR FORCE 44,318,608.00 44.32 million 22
9776 USTRANSCOM 15,491,733.20 15.49 million 47
2050 INTERNAL REVENUE SERVICE 13,929,858.23 13.93 million 17
2100 DEPT OF THE ARMY 12,725,203.52 12.73 million 51
97AK DEFENSE INFORMATION SYSTEMS AGENCY (DISA) 7,761,925.76 7.76 million 43

Insight

Over the last 5 years, LEIDOS INNOVATIONS CORPORATION’s obligations are highly concentrated with the National Science Foundation, which accounts for $1.18 billion across 58 awards, or more than half of the vendor’s $2.20 billion total. The next largest agencies—FAA ($458.56 million, 68 awards) and Federal Acquisition Service ($241.54 million, 67 awards)—are materially smaller, indicating a steep drop-off after the top customer. Obligations are also distributed across several smaller defense and civilian agencies, but no other agency approaches NSF’s funding level, suggesting a strong reliance on a limited number of major customers.

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 = '7MWB4'
        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
561210 FACILITIES SUPPORT SERVICES 1,179,672,141.40 1.18 billion 58
541512 COMPUTER SYSTEMS DESIGN SERVICES 489,750,952.90 489.75 million 266
488111 AIR TRAFFIC CONTROL 458,561,732.76 458.56 million 68
517110 WIRED TELECOMMUNICATIONS CARRIERS 44,338,608.00 44.34 million 19
541519 OTHER COMPUTER RELATED SERVICES 23,253,658.96 23.25 million 91
611430 PROFESSIONAL AND MANAGEMENT DEVELOPMENT TRAINING 125,113.00 125.11 thousand 2
488190 OTHER SUPPORT ACTIVITIES FOR AIR TRANSPORTATION -540,266.26 -540.27 thousand 3

Insight

Over the last 5 years, LEIDOS INNOVATIONS CORPORATION’s obligations are concentrated in a small set of NAICS codes, led by 561210 Facilities Support Services at $1.18 billion across 58 awards, followed by 541512 Computer Systems Design Services at $489.75 million across 266 awards and 488111 Air Traffic Control at $458.56 million across 68 awards. These three codes account for the vast majority of the vendor’s $2.20 billion in total obligations, indicating a procurement profile centered on facilities support, IT services, and aviation-related support. Award volume is highest in 541512, while dollar value is highest in 561210, suggesting a mix of lower-value, higher-frequency awards and fewer larger support contracts.

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 = '7MWB4'
        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 359,929,102.15 359.93 million 50
2024 356,046,194.95 356.05 million 74
2023 453,526,667.09 453.53 million 122
2022 431,290,575.17 431.29 million 119
2021 594,369,401.40 594.37 million 142

Insight

Over the last 5 years, LEIDOS INNOVATIONS CORPORATION (CAGE 7MWB4) received $2.20 billion across 507 awards, averaging $4.33 million per award. Obligations were highest in 2021 at $594.37 million across 142 awards, then declined in 2022–2025 and remained relatively stable in the $356.05 million to $453.53 million range. Award volume also contracted over the period, from 142 awards in 2021 to 50 in 2025, indicating a shift toward fewer obligations at roughly comparable annual funding levels in recent 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.