Spending Trends

Washington Federal Contract Spending Trends

Washington 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 15.9. Across the visible range, the series changed by 147.28%.

Federal Contract Spending Spending Trends Spending Series Series

Updated 03/20/2026

Latest Period
2025
15.9
Visible Change
147.28%
9.47
Peak Period
2019
15.97
Trend Direction
Up
Very Strong

Analysis

The latest visible point is 2025 at 15.9. Across the visible range, the series changed by 147.28%.

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

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

Key takeaway: The latest visible point is 2025 at 15.9. Overall visible change is 147.28%.

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

-- Washington 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 = 'WA'
)
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 6.43 9534 674998
1980 4.02 13219 304722
1981 3.72 12862 289845
1982 3.87 14441 268218
1983 4.88 9984 489121
1984 0.86 2974 289581
1985 4.56 8409 542994
1986 4.09 9767 419207
1987 2.61 8514 307124
1988 3.85 7700 501214
1989 3.99 8179 488304
1990 3.54 7601 466963
1991 3.42 9264 369283
1992 3.93 10420 377625
1993 2.81 9183 306322
1994 4.51 10372 435010
1995 4.57 11429 400485
1996 4.50 14675 307224
1997 4.65 10445 445639
1998 4.73 10389 455949
1999 4.50 10446 431427
2000 4.33 11757 368815
2001 5.28 12616 419033
2002 5.69 16917 336728
2003 6.54 25998 251637
2004 6.67 34366 194328
2005 8.00 55933 143205
2006 7.97 64688 123356
2007 9.21 76343 120678
2008 10.25 80336 127616
2009 11.42 66044 173020
2010 9.63 64294 149886
2011 12.08 64494 187367
2012 13.24 59226 223713
2013 11.75 45945 255874
2014 11.81 46767 252718
2015 10.05 97045 103657
2016 14.18 101387 139920
2017 13.07 86318 151417
2018 14.35 75036 191348
2019 15.97 123441 129381
2020 12.77 110504 115631
2021 15.62 105034 148739
2022 12.09 108046 111963
2023 13.00 109922 118301
2024 15.37 120981 127102
2025 15.90 108674 146390

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
6.43
Mean
7.88
Median
6.43
Max
15.97
2019
Min
0.86
1984
Volatility
4.36
4.36
Rows Returned
47

Series Extremes

Largest Increase
4.13
2015 → 2016 · 41.09%
Largest Decrease
-4.02
1983 → 1984 · -82.38%

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.