Award Number

Award Number 7590 / 75ACF121C00020 Federal Contract Action Summary (Last 10 Years)

Federal procurement profile for award number 75ACF121C00020 under Agency ID 7590, showing obligation activity over the last 10 years.

This award record covers 36 actions and 3.52 billion dollars in total obligated amount, with an average action value of 97,677,036.43. The page is organized to support review of award-level procurement activity for Agency ID 7590.

Generated at 03/20/2026

Analysis period: Last 10 years

Monetary values reflect the provided analysis window of the last 10 years and include the exact obligated total of 3516373311.63.

Agency ID
7590
PIID
75ACF121C00020
Type
Award
Total Obligated
3.52 billion
3,516,373,311.63
Actions
36
Average Action Value
97,677,036.43

Overview

Award number 75ACF121C00020 is an award-level procurement record tied to Agency ID 7590. In the last 10 years, it shows 36 award actions and total obligated funding of 3,516,373,311.63, with an average action value of 97,677,036.43.

How to use this page

Use this page to review obligation volume, action frequency, and average action value for the award. The record supports basic procurement analysis and comparison within the same agency and time window.

Top Agencies

SELECT
    content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
    content__award__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '7590' AND content__award__awardID__awardContractID__PIID = '75ACF121C00020'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    agency_id,
    agency_name
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Actions
7590 ADMINISTRATION FOR CHILDREN AND FAMILIES 3,516,373,311.63 3.52 billion 36

Insight

Over the 10-year window, obligations for PIID 75ACF121C00020 are concentrated entirely within the Administration for Children and Families, which accounts for the full reported total of $3.52 billion across 36 awards. This indicates a highly focused award pattern with no diversification across additional top agencies in the provided data. The volume of awards suggests repeated obligation activity within a single agency relationship rather than broad distribution.

Top Vendors

SELECT
    vendor_name,
    cage_code,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__vendor__vendorHeader__vendorName AS vendor_name,
        ifNull(content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode, '') AS cage_code,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        content__award__awardID__awardContractID__agencyID = '7590' AND content__award__awardID__awardContractID__PIID = '75ACF121C00020'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY
        vendor_name,
        cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Actions
RAPID DEPLOYMENT INC 4JXN5 3,516,373,311.63 3.52 billion 36

Insight

All reported obligations in the 10-year window are concentrated with RAPID DEPLOYMENT INC (CAGE 4JXN5), which received $3.52 billion across 36 awards under PIID 75ACF121C00020. This indicates a highly concentrated vendor distribution, with no other vendors reflected in the provided rows. The award activity suggests repeated use of the same contractor over the period.

Top NAICS

SELECT
    content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
    content__award__productOrServiceInformation__principalNAICSCode__description AS naics_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '7590' AND content__award__awardID__awardContractID__PIID = '75ACF121C00020'
    AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__award__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    naics_code,
    naics_name
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Actions
624230 EMERGENCY AND OTHER RELIEF SERVICES 3,516,373,311.63 3.52 billion 36

Insight

For PIID 75ACF121C00020 over the 10-year window, obligations are fully concentrated in NAICS 624230, Emergency and Other Relief Services. This single NAICS accounts for $3.52 billion across 36 awards, indicating a highly focused procurement profile with no observable diversification in the provided data.

Top PSC Codes

SELECT
    content__award__productOrServiceInformation__productOrServiceCode AS psc_code,
    content__award__productOrServiceInformation__productOrServiceCode__description AS psc_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '7590' AND content__award__awardID__awardContractID__PIID = '75ACF121C00020'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    psc_code,
    psc_name
ORDER BY total_obligated DESC
LIMIT 10
PSC Code Description Total Obligated Readable Actions
R429 SUPPORT- PROFESSIONAL: EMERGENCY RESPONSE/DISASTER PLANNING/PREPAREDNESS SUPPORT 3,516,373,311.63 3.52 billion 36

Insight

Over the 10-year window, obligations for award 75ACF121C00020 are fully concentrated in PSC R429, with $3.52 billion obligated across 36 awards. This indicates a highly focused procurement profile centered on emergency response and disaster planning/preparedness support. The concentration in a single PSC suggests limited distribution across product or service categories for this award set.

Annual Trend

SELECT
    toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable,
    count() AS award_count
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '7590' AND content__award__awardID__awardContractID__PIID = '75ACF121C00020'
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2021 1,503,082,437.84 1.50 billion 20
2022 1,694,952,109.54 1.69 billion 10
2023 307,338,764.25 307.34 million 4
2025 11,000,000.00 11.00 million 2

Insight

Obligations are concentrated in 2021 and 2022, which together account for the vast majority of the observed activity at $1.50 billion across 20 awards and $1.69 billion across 10 awards. Funding then declines sharply in 2023 to $307.34 million across 4 awards, followed by a further reduction in 2025 to $11.00 million across 2 awards. This pattern indicates a materially front-loaded award profile with significantly lower obligation levels in later years.

Use FPDS Query for deeper award and vehicle analysis

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

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