Spending Trends

Women-Owned Small Business (WOSB) Spending Trends

Women-Owned Small Business (WOSB) 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 33.83. Across the visible range, the series changed by 30,654.55%.

Federal Contract Spending Spending Trends Spending Series Series

Updated 03/20/2026

Latest Period
2025
33.83
Visible Change
30,654.55%
33.72
Peak Period
2024
34.58
Trend Direction
Up
Very Strong

Analysis

The latest visible point is 2025 at 33.83. Across the visible range, the series changed by 30,654.55%.

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

Women-Owned Small Business (WOSB) Spending Trends tracks federal contract spending over time in FPDS-derived data.

Key takeaway: The latest visible point is 2025 at 33.83. Overall visible change is 30,654.55%.

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

-- Women-Owned Small Business (WOSB) 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__vendor__vendorSiteDetails__vendorSocioEconomicIndicators__isWomenOwned = 1
)
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.11 2057 55573
1980 0.30 5536 55945
1981 0.42 5874 71725
1982 0.45 6391 71544
1983 0.52 5552 94953
1984 0.77 7145 108136
1985 0.97 8162 118907
1986 1.08 8455 128533
1987 1.12 9100 123839
1988 1.26 8477 148801
1989 1.40 9129 153881
1990 1.49 11788 126738
1991 1.75 14146 124142
1992 1.92 17429 110550
1993 1.76 15816 111551
1994 2.41 18969 127219
1995 2.90 23831 122001
1996 3.01 28194 107091
1997 2.92 21833 133763
1998 3.56 23901 148985
1999 4.02 27350 147272
2000 4.71 34160 138105
2001 5.69 38908 146353
2002 7.30 54744 133450
2003 8.92 84004 106211
2004 9.85 183729 53650
2005 12.29 261300 47059
2006 13.76 351197 39200
2007 15.53 368870 42107
2008 17.54 393282 44620
2009 19.92 322903 61693
2010 21.45 330105 65001
2011 21.33 327586 65124
2012 20.38 312269 65294
2013 19.54 238962 81786
2014 20.52 238699 85985
2015 21.54 376926 57152
2016 23.65 421015 56183
2017 25.17 411979 61118
2018 27.94 386639 72277
2019 29.79 630932 47221
2020 31.74 622058 51028
2021 29.56 533097 55452
2022 30.92 579551 53354
2023 34.08 620076 54970
2024 34.58 591798 58444
2025 33.83 537208 62991

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
0.11
Mean
12.25
Median
7.30
Max
34.58
2024
Min
0.11
1979
Volatility
11.67
11.67
Rows Returned
47

Series Extremes

Largest Increase
3.16
2022 → 2023 · 10.22%
Largest Decrease
-2.18
2020 → 2021 · -6.87%

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.