Spending Trends

Department of Education Contract Spending Trends

Department of Education 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 2.5.

Federal Contract Spending Spending Trends Spending Series Series

Updated 03/20/2026

Latest Period
2025
2.5
Visible Change
2.5
Peak Period
2020
2.96
Trend Direction
Up
Unknown

Analysis

The latest visible point is 2025 at 2.5.

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

Department of Education Contract Spending Trends tracks federal contract spending over time in FPDS-derived data.

Key takeaway: The latest visible point is 2025 at 2.5.

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

-- Department of Education 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
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__relevantContractDates__signedDate != ''
        AND content__award__purchaserInformation__contractingOfficeAgencyID__departmentName = 'EDUCATION, DEPARTMENT OF'
)
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 0.00 5 64800
1980 0.00 13 80077
1981 0.09 285 315807
1982 0.07 344 207326
1983 0.05 297 190061
1984 0.07 378 206426
1985 0.07 399 186213
1986 0.05 312 175429
1987 0.09 381 241869
1988 0.13 536 257853
1989 0.18 581 314936
1990 0.22 781 292853
1991 0.25 763 333911
1992 0.27 756 357462
1993 0.29 786 377342
1994 0.63 791 807870
1995 0.40 1261 323438
1996 0.43 939 463086
1997 0.67 1071 632591
1998 0.76 888 862175
1999 0.93 1169 802615
2000 0.90 1265 714053
2001 1.09 1110 984659
2002 0.92 1085 849064
2003 1.12 1285 873491
2004 1.44 3684 392983
2005 1.40 4006 350101
2006 1.41 4714 300587
2007 1.41 3468 408823
2008 1.35 3406 399291
2009 1.43 3269 439702
2010 1.63 3497 466445
2011 1.55 3084 504766
2012 1.65 3172 521315
2013 2.57 3309 779121
2014 2.88 3596 801830
2015 2.61 3300 791901
2016 2.41 3030 798036
2017 2.50 2622 954868
2018 2.69 2861 942814
2019 2.86 2570 1115559
2020 2.96 2609 1137568
2021 2.68 2326 1155420
2022 2.44 2737 894026
2023 2.44 2211 1106280
2024 2.72 2220 1227583
2025 2.50 2391 1046661

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
Mean
1.22
Median
1.09
Max
2.96
2020
Min
0.00
1979
Volatility
1.01
1.01
Rows Returned
47

Series Extremes

Largest Increase
0.92
2012 → 2013 · 55.76%
Largest Decrease
-0.28
2020 → 2021 · -9.46%

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.