PSC Code

PSC M1JZ Federal Contract Obligations (Last 10 Years)

PSC M1JZ covers operation of miscellaneous buildings, with $126.86 billion obligated across 4,925 award actions over the last 10 years.

This page summarizes federal procurement for PSC M1JZ, Operation of Miscellaneous Buildings, for the last 10 years. The Department of Energy accounts for nearly all obligated dollars, while award activity is spread across a small set of large technical and facility-support contractors.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals reflect readable obligations and award counts from the selected analysis window, with annual, agency, and vendor rankings based on obligated dollars.

PSC Code
M1JZ
PSC Description
OPERATION OF MISCELLANEOUS BUILDINGS
Total Obligated
126.86 billion
126,860,011,897.24
Award Actions
4,925
Average Action Value
25,758,378.05

About PSC M1JZ federal contract activity

PSC M1JZ, Operation of Miscellaneous Buildings, accounts for 126.86 billion in obligated dollars across 4,925 awards over the last 10 years, with an average award value of 25.76 million. The profile is dominated by a small number of very large awards, indicating a contract base concentrated in facility operations and related support at high-value sites.

Agency demand and leading federal buyers

The Department of Energy is the clear primary buyer, with 124.70 billion obligated across 1,434 awards, representing nearly all spending in this PSC. Other agencies are much smaller by comparison, led by the Department of the Air Force at 1.06 billion and the Department of the Army at 454.75 million, with Customs and Border Protection and the Department of State rounding out the top five.

Vendor concentration and leading contractors

Vendor concentration is also strong. National Technology & Engineering Solutions of Sandia, LLC leads with 36.78 billion, followed by Triad National Security, LLC at 31.74 billion and Consolidated Nuclear Security LLC at 26.06 billion; together, these three vendors account for the bulk of top-end obligations. Honeywell International Inc. and Mission Support and Test Services LLC are also major recipients, at 14.25 billion and 7.08 billion respectively.

Annual contract trend over the analysis window

Annual obligations remained elevated throughout the observed period, ranging from 12.73 billion in 2022 to 19.89 billion in 2025. Spending rose from 2022 to 2023, dipped in 2024, then increased again in 2025, while award counts stayed relatively stable in the 500 to 700 range. This pattern suggests sustained demand rather than a one-time spike.

How to interpret this page

This summary is based on FPDS obligations data for PSC M1JZ over the last 10 years and reflects totals by award, agency, vendor, and fiscal year. Dollar values are obligations, not necessarily outlays or final contract totals, and vendor and agency rankings are limited to the records included in the provided dataset.

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__productOrServiceInformation__productOrServiceCode = 'M1JZ'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 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
8900 ENERGY, DEPARTMENT OF 124,695,221,308.52 124.70 billion 1,434
5700 DEPT OF THE AIR FORCE 1,060,858,416.89 1.06 billion 883
2100 DEPT OF THE ARMY 454,751,875.58 454.75 million 1,911
7014 U.S. CUSTOMS AND BORDER PROTECTION 194,711,463.98 194.71 million 29
1900 STATE, DEPARTMENT OF 193,107,350.54 193.11 million 103
8000 NATIONAL AERONAUTICS AND SPACE ADMINISTRATION 178,080,783.37 178.08 million 119
7200 AGENCY FOR INTERNATIONAL DEVELOPMENT 42,402,267.70 42.40 million 50
4732 FEDERAL ACQUISITION SERVICE 15,731,733.73 15.73 million 40
6800 ENVIRONMENTAL PROTECTION AGENCY 7,849,119.51 7.85 million 35
12H2 AGRICULTURAL RESEARCH SERVICE 5,637,785.60 5.64 million 5

Insight

Obligations for PSC M1JZ are highly concentrated in the Department of Energy, which accounts for $124.70 billion of the $126.86 billion obligated over the last 10 years, or roughly 98.3% of total spend. The remaining obligations are distributed across a small set of agencies, led by the Department of the Air Force ($1.06 billion) and the Department of the Army ($454.75 million), with all other listed agencies each below $200 million. Award volume is also concentrated, with Energy receiving 1,434 of 4,925 awards, while the Army recorded the highest award count among non-Energy agencies at 1,911 awards but at much lower obligated value.

Top Vendors

SELECT
    vendor_name,
    cage_code,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__vendor__vendorHeader__vendorName AS vendor_name,
        ifNull(anyHeavy(content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode), '') AS cage_code,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__productOrServiceInformation__productOrServiceCode = 'M1JZ'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY
        vendor_name,
        content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Award Actions
NATIONAL TECHNOLOGY & ENGINEERING SOLUTIONS OF SANDIA, LLC 14213 36,782,011,557.11 36.78 billion 267
TRIAD NATIONAL SECURITY, LLC 804U5 31,739,749,798.38 31.74 billion 234
CONSOLIDATED NUCLEAR SECURITY LLC 6NSM1 26,059,701,914.12 26.06 billion 285
HONEYWELL INTERNATIONAL INC. 14061 14,246,688,909.10 14.25 billion 237
MISSION SUPPORT AND TEST SERVICES LLC 7HSD0 7,075,485,339.77 7.08 billion 287
CONSOLIDATED NUCLEAR SECURITY LLC 2,831,313,655.40 2.83 billion 38
NATIONAL TECHNOLOGY & ENGINEERING SOLUTIONS OF SANDIA, LLC 7MZ99 2,522,076,009.58 2.52 billion 16
PANTEXAS DETERRENCE, LLC 9KD07 2,418,200,273.83 2.42 billion 34
HONEYWELL INTERNATIONAL INC. 1,015,231,254.60 1.02 billion 28
VECTRUS SERVICES A/S R7646 339,078,724.66 339.08 million 254

Insight

Over the last 10 years, PSC M1JZ obligated $126.86 billion across 4,925 awards, with a high average award value of $25.76 million, indicating a relatively small number of large-value actions. Obligations are highly concentrated among a few vendors: the top five vendors account for the majority of listed dollars, led by NATIONAL TECHNOLOGY & ENGINEERING SOLUTIONS OF SANDIA, LLC ($36.78 billion) and TRIAD NATIONAL SECURITY, LLC ($31.74 billion), followed by CONSOLIDATED NUCLEAR SECURITY LLC ($26.06 billion). Several vendors appear multiple times with different CAGE codes or no CAGE code, including CONSOLIDATED NUCLEAR SECURITY LLC, NATIONAL TECHNOLOGY & ENGINEERING SOLUTIONS OF SANDIA, LLC, and HONEYWELL INTERNATIONAL INC., suggesting award distribution across related entities or separate registrations.

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__productOrServiceInformation__productOrServiceCode = 'M1JZ'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 19,886,504,340.12 19.89 billion 737
2024 16,838,814,842.37 16.84 billion 607
2023 17,255,214,584.72 17.26 billion 609
2022 12,726,488,226.85 12.73 billion 594
2021 16,350,917,241.65 16.35 billion 561
2020 12,194,713,758.91 12.19 billion 441
2019 5,253,888,277.50 5.25 billion 339
2018 16,055,838,931.21 16.06 billion 391
2017 6,433,620,406.40 6.43 billion 356
2016 3,864,011,287.51 3.86 billion 290

Insight

Over the last 10 years, PSC M1JZ obligations total $126.86 billion across 4,925 awards, with a high average award value of $25.76 million, indicating a relatively concentrated spend profile. Annual obligations were volatile rather than steadily increasing, ranging from $3.86 billion in 2016 to a peak of $19.89 billion in 2025, with another elevated period in 2018 and 2021–2024. Award counts generally trended upward over time, from 290 in 2016 to 737 in 2025, suggesting broader transaction volume alongside rising obligation levels in the most recent years.

Use FPDS Query for deeper PSC analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper PSC analysis across agencies, vendors, and annual trends.

Continue from this last 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.