This page summarizes federal procurement activity for award number AIDOAATO1500007 under agency ID 7200. The record covers the last 10 years and reflects $6,721,441,684.79 in total obligated value across 125 award actions.
Award Number
Award Number 7200 / AIDOAATO1500007 Federal Contract Action Summary (Last 10 Years)
Award number AIDOAATO1500007 for agency ID 7200 shows 125 actions over the last 10 years with $6.72 billion obligated.
Monetary totals are shown as both readable and exact values, with average action value calculated at $53,771,533.48.
Overview
Award number AIDOAATO1500007 is associated with agency ID 7200 and shows 125 recorded actions in the last 10 years. Total obligated value is $6,721,441,684.79, with an average action value of $53,771,533.48. These figures provide a concise view of activity volume and obligation level for this award record.
How to use this page
Use this page to review the award-level procurement history tied to PIID AIDOAATO1500007. The summary can support quick comparisons of action count, obligated dollars, and average action value within the 10-year analysis 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 = '7200' AND content__award__awardID__awardContractID__PIID = 'AIDOAATO1500007'
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 |
|---|---|---|---|---|
| 7200 | AGENCY FOR INTERNATIONAL DEVELOPMENT | 6,721,441,684.79 | 6.72 billion | 125 |
Insight
Within the 10-year window for award PIID AIDOAATO1500007, all reported obligation activity is concentrated in the Agency for International Development (Agency ID 7200). This agency accounts for $6.72 billion in total obligated value across 125 awards, indicating a highly concentrated award pattern rather than broad interagency 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 = '7200' AND content__award__awardID__awardContractID__PIID = 'AIDOAATO1500007'
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 |
|---|---|---|---|---|
| CHEMONICS INTERNATIONAL, INC | 3DNC8 | 6,721,441,684.79 | 6.72 billion | 125 |
Insight
CHEMONICS INTERNATIONAL, INC is the sole top vendor identified for this award in the 10-year window, with $6.72 billion in total obligated spending across 125 awards. This indicates a highly concentrated obligation pattern, with all observed activity in this section attributable to one vendor. The award history suggests sustained, repeated use of the same contractor over time rather than a broadly distributed vendor base.
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 = 'AIDOAATO1500007'
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 |
|---|---|---|---|---|
| 541611 | ADMINISTRATIVE MANAGEMENT AND GENERAL MANAGEMENT CONSULTING SERVICES | 6,721,441,684.79 | 6.72 billion | 125 |
Insight
Over the 10-year window, obligations for award AIDOAATO1500007 are fully concentrated in NAICS 541611, Administrative Management and General Management Consulting Services. This code accounts for $6.72 billion across 125 awards, indicating a high degree of procurement concentration in a single professional services category. No other NAICS codes are reflected in the provided data for this section.
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 = 'AIDOAATO1500007'
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 |
|---|---|---|---|---|
| R425 | SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL | 6,721,441,684.79 | 6.72 billion | 125 |
Insight
Over the 10-year window, PSC R425 (Support-Professional: Engineering/Technical) accounts for $6.72 billion across 125 awards under PIID AIDOAATO1500007. This indicates a highly concentrated award profile in a single professional services category, with meaningful continuity in engineering and technical support obligations. The volume of awards suggests recurring use of this PSC rather than reliance on a small number of large obligations alone.
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 = 'AIDOAATO1500007'
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 |
|---|---|---|---|
| 2016 | 223,406,990.00 | 223.41 million | 2 |
| 2017 | 733,160,151.00 | 733.16 million | 4 |
| 2018 | 783,161,659.18 | 783.16 million | 9 |
| 2019 | 508,020,841.00 | 508.02 million | 12 |
| 2020 | 1,301,154,816.29 | 1.30 billion | 31 |
| 2021 | 1,145,857,468.04 | 1.15 billion | 24 |
| 2022 | 634,075,135.00 | 634.08 million | 21 |
| 2023 | 281,899,717.42 | 281.90 million | 9 |
| 2024 | 723,431,322.00 | 723.43 million | 9 |
| 2025 | 387,273,584.86 | 387.27 million | 4 |
Insight
Obligations for PIID AIDOAATO1500007 are concentrated in FY 2020 and FY 2021, which together account for the highest annual funding levels in the 10-year window at 1.30 billion and 1.15 billion, respectively. Award volume also peaks in FY 2020 with 31 awards, then declines steadily through FY 2023 before a partial rebound in FY 2024. The pattern indicates a mid-period surge followed by lower, more variable obligations and fewer awards in the most recent 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.