Federal Agency

ELECTION ASSISTANCE COMMISSION Federal Contract Obligations (Last Year)

FPDS summary for the Election Assistance Commission (Agency ID 9523) covering the last full year shows no recorded award actions in the provided data.

This page summarizes procurement activity reported for the Election Assistance Commission during the last full year. The available dataset shows an award action count of 0, with no readable or exact obligated totals, vendor rows, NAICS rows, or annual trend data provided.

Generated at 03/21/2026

Analysis period: Last full year

Because the supplied inputs contain no award actions or supporting breakdowns, this page reflects an empty procurement record for the analysis window.

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

About ELECTION ASSISTANCE COMMISSION federal contract activity

During the last full year, FPDS Query returned no recorded obligations for the ELECTION ASSISTANCE COMMISSION in the provided dataset, with an award count of 0. Because no award activity is present, aggregate obligation and average award value cannot be calculated from the available data.

Vendor concentration and leading contractors

No vendors appear in the top-vendor results for this analysis window, consistent with the absence of recorded awards. As a result, there is no vendor concentration to assess for the period reviewed.

Industry profile based on NAICS activity

No NAICS codes are surfaced in the available results for the last full year. With no recorded awards, there is no contracting mix available for NAICS-based analysis.

Annual contract trend over the analysis window

The annual trend contains no entries for the analysis window, indicating no observable award activity in the dataset for the period reviewed. Without transactions, year-over-year or within-year obligation patterns cannot be derived.

How to interpret this page

This page reflects FPDS Query output for ELECTION ASSISTANCE COMMISSION, Agency ID 9523, using the last full year as the analysis window. Metrics, vendor listings, NAICS distribution, and trend statements are limited to the provided results and are not supplemented with external sources.

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 1 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 1 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 1 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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.