Federal Agency

ELECTION ASSISTANCE COMMISSION Federal Contract Obligations (Last 5 Years)

Federal procurement activity for the Election Assistance Commission (Agency ID 9523) over the last 5 years.

This page summarizes obligation and award activity reported for the Election Assistance Commission during the last 5 years. The current dataset shows 0 award actions, with no vendor, NAICS, or annual trend rows available in the provided inputs.

Generated at 03/21/2026

Analysis period: Last 5 years

The analysis is limited to the values provided here, and no obligated totals or transaction details were supplied beyond a zero award action count.

Agency ID
9523
Total Obligated
0.00
Award Actions
0
Average Action Value
0.00

About ELECTION ASSISTANCE COMMISSION federal contract activity

Over the last 5 years, FPDS Query shows no recorded awarded obligations for the Election Assistance Commission (Agency ID 9523) in the provided dataset. The agency’s award count is 0, so there is no basis for summarizing spending levels or average award size from this view.

Vendor concentration and leading contractors

No top vendors are identifiable because the underlying award set is empty. With no recorded awards in the analysis window, vendor concentration, recompete patterns, and vendor diversity cannot be assessed.

Industry profile based on NAICS activity

No NAICS distribution is available because there are no awards to classify. As a result, there is no observable procurement mix or dominant category for the period analyzed.

Annual contract trend over the analysis window

The annual trend cannot be evaluated from the provided data because no obligations or awards are recorded across the last 5 years. This indicates a flat, non-reportable series rather than a measurable increase or decline.

How to interpret this page

This summary is based solely on the FPDS Query outputs provided for the Election Assistance Commission and the specified 5-year analysis window. Where the dataset contains no awards or obligations, the narrative is limited to what can be directly supported by the reported metrics.

Top Vendors

SELECT
    vendor_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__vendor__vendorHeader__vendorName AS vendor_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__purchaserInformation__contractingOfficeAgencyID = '9523'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY vendor_name
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor Total Obligated Readable Award Actions

Insight

No notable vendor concentration was available for this analysis window.

Top NAICS

SELECT
    naics_code,
    naics_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
        anyHeavy(content__award__productOrServiceInformation__principalNAICSCode__description) AS naics_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__purchaserInformation__contractingOfficeAgencyID = '9523'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY naics_code
)
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Award Actions

Insight

No notable NAICS concentration was available for this analysis window.

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__purchaserInformation__contractingOfficeAgencyID = '9523'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 5 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions

Insight

No annual trend data was available for this analysis window.

Use FPDS Query for deeper analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper market analysis across agencies, vendors, NAICS, and contract trends.

Continue from this last 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.