PSC Code

PSC M300 Federal Contract Obligations (Last 10 Years)

This page summarizes federal contract obligations for PSC M300 (OPER OF GOVT RESTORATION) for last 10 years, including award volume and market trend context.

Use this page to review federal contract obligations for PSC M300 (OPER OF GOVT RESTORATION) for last 10 years. The analysis is based on FPDS award-action data.

Generated at 03/15/2026

Analysis period: Last 10 years

All figures on this page are based on FPDS award-action obligation data for completed calendar years only within the last 10 years analysis window.

PSC Code
M300
PSC Description
OPER OF GOVT RESTORATION
Total Obligated
8.48 billion
8,476,772,270.06
Award Actions
928
Average Action Value
9,134,452.87

About PSC M300 federal contract activity

This page summarizes last 10 years of federal contract activity associated with PSC M300 (OPER OF GOVT RESTORATION). Based on the current FPDS Query dataset, this category shows 8.48 billion in visible obligations across 928 award actions, with an average action value of 9,134,452.87. This view is designed to help users quickly understand scale, buyer concentration, contractor concentration, and overall market direction before moving into deeper procurement analysis.

Agency demand and leading federal buyers

The visible buyer ranking for PSC M300 (OPER OF GOVT RESTORATION) is led by ENERGY, DEPARTMENT OF over the last 10 years. Even without deeper narrative context, the table indicates that federal demand in this category is not evenly distributed across all agencies.

Vendor concentration and leading contractors

The vendor distribution helps show which contractors capture the largest visible share of obligations in PSC M300 (OPER OF GOVT RESTORATION) over the last 10 years. The current ranking is led by WASHINGTON RIVER PROTECTION SOLUTIONS LLC, with 5.81 billion in obligations, followed by MISSION SUPPORT ALLIANCE, LLC. This gives users a practical view of the competitive landscape and the visible concentration at the top of the market.

Annual contract trend over the analysis window

The annual trend table provides a year-based view of how visible obligations and award actions have evolved for PSC M300 (OPER OF GOVT RESTORATION) across the last 10 years, from 2016 through 2025. This is useful for spotting periods of expansion, relative stability, or softening activity in this federal market segment.

How to interpret this page

The tables and trend blocks on this page are generated from FPDS-derived procurement records prepared offline for fast public delivery. They are intended to give a practical summary of category-scale obligations, top buying agencies, leading vendors, and visible year-over-year movement within last 10 years. Users who need deeper filtering, custom SQL, or cross-market comparison can continue the analysis directly inside FPDS Query.

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 = 'M300'
        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 8,476,772,270.06 8.48 billion 928

Insight

The visible agency demand for PSC M300 (OPER OF GOVT RESTORATION) is led by ENERGY, DEPARTMENT OF, with 8.48 billion in obligations over the last 10 years. This indicates a clear concentration of buying activity at the top of the ranking.

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 = 'M300'
        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
WASHINGTON RIVER PROTECTION SOLUTIONS LLC 4UWU0 5,811,455,023.05 5.81 billion 323
MISSION SUPPORT ALLIANCE, LLC 4RUU5 1,356,818,928.78 1.36 billion 434
WASHINGTON RIVER PROTECTION SOLUTIONS LLC 941,363,798.18 941.36 million 60
MISSION SUPPORT ALLIANCE, LLC 311,300,357.09 311.30 million 71
CH2M WG IDAHO LIMITED LIABILITY COMPANY 30,284,854.13 30.28 million 14
CH2M WG IDAHO LIMITED LIABILITY COMPANY 30RD0 25,713,943.98 25.71 million 4
FLUOR DANIEL HANFORD INC 815,890.85 815.89 thousand 8
KAISER HILL LLC 280,000.00 280.00 thousand 2
BOEING COMPANY, THE 4Y0R3 150,000.00 150.00 thousand 10
FLUOR DANIEL HANFORD INC 368H2 -1,410,526.00 -1.41 million 2

Insight

Within PSC M300 (OPER OF GOVT RESTORATION), visible obligations over the last 10 years appear concentrated among a relatively small set of leading vendors. WASHINGTON RIVER PROTECTION SOLUTIONS LLC ranks first, followed by MISSION SUPPORT ALLIANCE, LLC, which helps define the current competitive landscape in this 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__productOrServiceInformation__productOrServiceCode = 'M300'
        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 11,723,983.26 11.72 million 12
2024 647,555,840.63 647.56 million 22
2023 770,747,849.54 770.75 million 27
2022 656,792,967.76 656.79 million 39
2021 851,631,777.04 851.63 million 97
2020 1,194,392,832.99 1.19 billion 142
2019 1,089,410,733.39 1.09 billion 139
2018 1,098,354,529.52 1.10 billion 156
2017 959,491,248.17 959.49 million 144
2016 1,196,670,507.76 1.20 billion 150

Insight

The annual trend shows how obligations in PSC M300 (OPER OF GOVT RESTORATION) moved across the last 10 years, from 2016 through 2025. This helps users judge whether visible contract activity in this category appears stable, rising, or easing over time.

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.