Award Number

Award Number 7200 / AIDOAATO1500009 Federal Contract Action Summary (Last Year)

Procurement page for award number AIDOAATO1500009 under agency ID 7200, summarizing last full year obligations and action activity.

This award page summarizes activity for PIID AIDOAATO1500009 over the last full year. It shows total obligations of $430.76 million across 4 award actions, with an average action value of $107.69 million.

Generated at 03/20/2026

Analysis period: Last full year

Totals are based on the provided exact obligation amount of $430,760,734.49 and the reported action count and average action value.

Agency ID
7200
PIID
AIDOAATO1500009
Type
Award
Total Obligated
430.76 million
430,760,734.49
Actions
4
Average Action Value
107,690,183.62

Overview

The award record for PIID AIDOAATO1500009 shows 4 reported actions in the last full year. Total obligations reached $430,760,734.49, which is equivalent to $430.76 million when rounded to two decimals.

How to use this page

Use this page to review the award's obligation level and action frequency during the last full year. The figures support quick comparison with other awards under agency ID 7200 and provide a concise starting point for FPDS review.

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 = '7200' AND content__award__awardID__awardContractID__PIID = 'AIDOAATO1500009'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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
7200 AGENCY FOR INTERNATIONAL DEVELOPMENT 430,760,734.49 430.76 million 4

Insight

For PIID AIDOAATO1500009 over the past year, obligations are fully concentrated within the Agency for International Development, which accounts for $430.76 million across 4 awards. This indicates a highly concentrated award distribution with no diversification across other top agencies in the observed window. The average obligation per award is substantial, suggesting a small number of large actions rather than a broad award base.

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 = '7200' AND content__award__awardID__awardContractID__PIID = 'AIDOAATO1500009'
        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,
        cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Actions
CHEMONICS INTERNATIONAL, INC 3DNC8 430,760,734.49 430.76 million 4

Insight

Within the 1-year window, obligations for award PIID AIDOAATO1500009 are fully concentrated with a single vendor, CHEMONICS INTERNATIONAL, INC (CAGE 3DNC8). The vendor received 4 awards totaling $430.76 million, indicating a highly concentrated spend pattern with no other vendors represented in this section.

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 = '7200' AND content__award__awardID__awardContractID__PIID = 'AIDOAATO1500009'
    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,
    naics_name
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Actions
541611 ADMINISTRATIVE MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES 430,760,734.49 430.76 million 4

Insight

Over the past 1 year, obligations under PIID AIDOAATO1500009 are fully concentrated in NAICS 541611, Administrative Management and General Management Consulting Services. This single NAICS accounts for $430.76 million across 4 awards, indicating a narrow procurement focus with all observed activity in one service category. No other NAICS codes are reflected in the provided rows, so the distribution appears highly concentrated.

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 = '7200' AND content__award__awardID__awardContractID__PIID = 'AIDOAATO1500009'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 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
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 430,760,734.49 430.76 million 4

Insight

Over the past 1 year, obligations under PIID AIDOAATO1500009 are fully concentrated in PSC R425, Support- Professional: Engineering/Technical. The award shows $430.76 million obligated across 4 actions, indicating a highly concentrated spend pattern within a single professional support category. This distribution suggests the award is dominated by engineering and technical support services, with no other PSCs represented in the provided data.

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 = '7200' AND content__award__awardID__awardContractID__PIID = 'AIDOAATO1500009'
    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 ASC
Year Total Obligated Readable Actions
2025 430,760,734.49 430.76 million 4

Insight

For PIID AIDOAATO1500009 over the 1-year window, 2025 obligated spending totals $430.76 million across 4 awards, indicating a highly concentrated obligation profile. The average obligated amount per award is materially large, suggesting limited distribution across awards rather than broad dispersion. With only one year reported, no year-over-year trend can be assessed from the provided data.

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