Spending Trends

Maryland Federal Contract Spending Trends

Maryland Federal Contract Spending Trends shows how federal contract spending changes across the visible time series in FPDS-derived procurement data.

The latest visible point is 2025 at 39.9. Across the visible range, the series changed by 1,875.25%.

Federal Contract Spending Spending Trends Spending Series Series

Updated 03/20/2026

Latest Period
2025
39.9
Visible Change
1,875.25%
37.88
Peak Period
2024
46.42
Trend Direction
Up
Very Strong

Analysis

The latest visible point is 2025 at 39.9. Across the visible range, the series changed by 1,875.25%.

Why it matters: Use this page to evaluate how federal contract spending levels shift over time and identify inflection points.

Methodology: The query returns a structured time series, detects a period column and a primary numeric metric, and computes visible-series statistics such as latest value, peak, low, and overall change.

Commentary

Maryland Federal Contract Spending Trends tracks federal contract spending over time in FPDS-derived data.

Key takeaway: The latest visible point is 2025 at 39.9. Overall visible change is 1,875.25%.

Analyst note: This page is best used for directional review, turning points, and quick comparison against related time windows or scopes.

Trend Chart

This chart plots Federal Contract Spending over the visible time series returned by the query.

Query Used

-- Maryland Federal Contract Spending Trends
SELECT
    fiscal_year,
    round(sum(obligated_amount) / 1000000000, 2) AS spending_billion_usd,
    count() AS award_count,
    round(sum(obligated_amount) / count(), 0) AS avg_award_size
FROM
(
    SELECT
        if(
            toUInt8(substring(content__award__relevantContractDates__signedDate, 6, 2)) >= 10,
            toUInt16(substring(content__award__relevantContractDates__signedDate, 1, 4)) + 1,
            toUInt16(substring(content__award__relevantContractDates__signedDate, 1, 4))
        ) AS fiscal_year,
        content__award__dollarValues__obligatedAmount AS obligated_amount,
        content__award__placeOfPerformance__principalPlaceOfPerformance__stateCode AS state_code
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__relevantContractDates__signedDate != ''
        AND state_code = 'MD'
)
WHERE fiscal_year < toYear(today())
GROUP BY fiscal_year
ORDER BY fiscal_year ASC

Trend Table

This table shows the structured time series returned by the query.

Fiscal Year Spending Billion Usd Award Count Avg Award Size
1979 2.02 12966 156412
1980 2.82 19284 146720
1981 3.27 18279 178935
1982 3.95 21975 179944
1983 5.24 18510 283188
1984 5.54 20079 275943
1985 6.14 21081 291680
1986 5.83 19798 294564
1987 5.78 22037 262312
1988 6.30 24290 259736
1989 5.67 21523 263611
1990 6.08 20457 297300
1991 6.52 23370 279341
1992 6.44 24922 258601
1993 6.26 24113 259955
1994 7.55 26423 286100
1995 8.96 34022 263467
1996 8.34 36078 231336
1997 8.35 32417 257862
1998 11.12 34089 326411
1999 10.76 35792 300768
2000 10.56 36264 291270
2001 11.11 39036 284821
2002 14.23 50264 283299
2003 15.95 64525 247307
2004 19.81 107208 184866
2005 21.37 180065 118706
2006 22.54 193274 116653
2007 22.18 201812 109916
2008 26.24 215192 121944
2009 26.89 223972 120073
2010 26.37 210741 125164
2011 26.35 172728 152576
2012 27.43 152651 179696
2013 25.90 116574 222260
2014 28.48 121759 233939
2015 28.96 143168 202291
2016 30.57 136991 223209
2017 31.02 141215 219710
2018 33.82 130120 259987
2019 35.82 195049 183682
2020 44.07 196098 224743
2021 39.31 192151 204626
2022 42.27 167431 252472
2023 41.82 141321 295988
2024 46.42 159119 291737
2025 39.90 149611 266699

How This Trend Is Built

Measure how a selected procurement metric changes across time.

Query structure

  • The query selects a time dimension used as the x-axis for the trend.
  • It calculates or returns a numeric metric for each visible period.
  • The result is interpreted as a chronological series for trend analysis.
  • The metric focuses on obligated dollars or a directly related spending aggregate.

Included fields

  • fiscal_year — Defines the chronological unit used for the trend series.
  • spending_billion_usd — Defines the main value plotted and analyzed over time.
  • award_count — Provides additional numeric context that can support interpretation.
  • avg_award_size — Provides additional numeric context that can support interpretation.

How to use this trend

  • trend direction analysis
  • time-series review
  • federal procurement timing analysis
  • spending trajectory review
  • budget pattern review

Computed Metrics

Series Points
47
First Visible Point
1979
2.02
Mean
18.56
Median
14.23
Max
46.42
2024
Min
2.02
1979
Volatility
13.26
13.26
Rows Returned
47

Series Extremes

Largest Increase
8.25
2019 → 2020 · 23.03%
Largest Decrease
-6.52
2024 → 2025 · -14.05%

Related Pages

Method Notes

  • Trend interpretation is based on the returned query result set ordered by the detected period column.
  • Change metrics compare the first visible point and the latest visible point in the series.
  • Volatility is based on the standard deviation of the visible numeric series.

Use FPDS Query for deeper trend analysis

Go beyond the published time series with custom SQL, broader filters, saved queries, and deeper procurement analysis across agencies, vendors, industries, states, contract structures, and competitive segments.

Continue from this trend page into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.