Vehicle Number

Vehicle Number 7200 / AID514H1700002 Federal Contract Action Summary (Last 10 Years)

FPDS Query page for vehicle number AID514H1700002 at Agency ID 7200, showing obligation and action history over the last 10 years.

This page summarizes the federal procurement record for vehicle number AID514H1700002 within Agency ID 7200. Over the last 10 years, the record shows 13 award actions and total obligated dollars of 70.05 million.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals reflect the provided analysis window and an exact obligated amount of 70,048,083 with an average action value of 5,388,314.08.

Agency ID
7200
PIID
AID514H1700002
Type
Vehicle
Total Obligated
70.05 million
70,048,083.00
Actions
13
Average Action Value
5,388,314.08

Overview

The record for vehicle number AID514H1700002 shows 13 award actions in the last 10 years, with total obligated spending of 70,048,083. The average action value is 5,388,314.08, which indicates a small number of higher-value actions rather than frequent low-value activity. This page is intended for direct review of the procurement record tied to Agency ID 7200.

How to use this page

Use this page to review the obligation level, action count, and average action value associated with PIID AID514H1700002. The figures support a basic read of activity over the selected period, but they do not by themselves describe scope, vendor identity, or performance details. For those elements, users should inspect the underlying award records linked to the PIID.

Top Agencies

SELECT
    content__IDV__purchaserInformation__contractingOfficeAgencyID AS agency_id,
    content__IDV__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '7200' AND content__IDV__contractID__IDVID__PIID = 'AID514H1700002'
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__IDV__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__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 70,048,083.00 70.05 million 13

Insight

For PIID AID514H1700002 over the 10-year window, obligations are fully concentrated within the Agency for International Development. The vehicle records 13 awards totaling $70.05 million, indicating all reported activity in this section is associated with a single agency and no cross-agency distribution is present.

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__IDV__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        content__IDV__contractID__IDVID__agencyID = '7200' AND content__IDV__contractID__IDVID__PIID = 'AID514H1700002'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY
        vendor_name,
        cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Actions

Insight

No vendor concentration was available for this analysis window.

Top NAICS

SELECT
    content__IDV__productOrServiceInformation__principalNAICSCode AS naics_code,
    content__IDV__productOrServiceInformation__principalNAICSCode__description AS naics_name,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '7200' AND content__IDV__contractID__IDVID__PIID = 'AID514H1700002'
    AND content__IDV__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    naics_code,
    naics_name
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Actions
541990 ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES 70,048,083.00 70.05 million 13

Insight

Over the 10-year window, this vehicle has obligated $70.05 million across 13 awards, all coded to NAICS 541990, indicating complete concentration in a single industry category. This pattern suggests the vehicle has been used consistently for a narrowly defined scope of professional, scientific, and technical services rather than a diversified mix of requirements. The award count is modest relative to total obligated value, which is consistent with fewer, higher-value actions under the same NAICS.

Top PSC Codes

SELECT
    content__IDV__productOrServiceInformation__productOrServiceCode AS psc_code,
    content__IDV__productOrServiceInformation__productOrServiceCode__description AS psc_name,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '7200' AND content__IDV__contractID__IDVID__PIID = 'AID514H1700002'
    AND content__IDV__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__IDV__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    psc_code,
    psc_name
ORDER BY total_obligated DESC
LIMIT 10
PSC Code Description Total Obligated Readable Actions
AB36 R&D- COMMUNITY SERVICE/DEVELOPMENT: RURAL (MANAGEMENT/SUPPORT) 70,048,083.00 70.05 million 13

Insight

Obligations under PIID AID514H1700002 are fully concentrated in PSC AB36, R&D–Community Service/Development: Rural (Management/Support). Over the 10-year window, this code accounts for $70.05 million across 13 awards, indicating a highly focused procurement profile rather than a distributed mix of PSCs.

Annual Trend

SELECT
    toYear(parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate)) AS year,
    sum(content__IDV__dollarValues__obligatedAmount) AS total_obligated,
    formatReadableQuantity(sum(content__IDV__dollarValues__obligatedAmount)) AS total_obligated_readable,
    count() AS award_count
FROM fpds.data
WHERE
    content__IDV__contractID__IDVID__agencyID = '7200' AND content__IDV__contractID__IDVID__PIID = 'AID514H1700002'
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2017 8,706,110.00 8.71 million 2
2018 7,260,795.00 7.26 million 1
2019 12,056,963.00 12.06 million 3
2020 18,381,502.00 18.38 million 2
2021 16,000,000.00 16.00 million 2
2022 9,142,713.00 9.14 million 2
2024 -1,500,000.00 -1.50 million 1

Insight

Obligations for PIID AID514H1700002 were concentrated in 2019–2022, with annual totals ranging from 9.14 million to 18.38 million and the peak in 2020 at 18.38 million across two awards. Earlier activity was lower and more variable, with 8.71 million in 2017, 7.26 million in 2018, and 12.06 million in 2019, indicating a ramp-up before the 2020 high point. The 2024 entry is a negative obligation of 1.50 million from one award, suggesting a downward adjustment or deobligation after the prior positive 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.