Vehicle Number

Vehicle Number 8000 / 80HQTR18C0029 Federal Contract Action Summary (Last 10 Years)

FPDS analysis for vehicle number under PIID 80HQTR18C0029 shows 95 award actions totaling $74.65 million over the last 10 years.

This page summarizes procurement activity for vehicle number associated with agency ID 8000 and PIID 80HQTR18C0029. The record set covers the last 10 years and includes total obligated amounts, action count, and average action value.

Generated at 03/21/2026

Analysis period: Last 10 years

Total obligated is $74,647,362.46, with an average action value of $785,761.71 across 95 award actions.

Agency ID
8000
PIID
80HQTR18C0029
Type
Vehicle
Total Obligated
74.65 million
74,647,362.46
Actions
95
Average Action Value
785,761.71

Overview

The procurement record for vehicle number under agency ID 8000 and PIID 80HQTR18C0029 reflects 95 award actions in the last 10 years. Total obligated dollars equal $74,647,362.46, with an average action value of $785,761.71. These figures provide a concise view of award volume and obligation level for this vehicle identifier.

How to use this page

Use this page to review the scale of recorded award activity tied to vehicle number in FPDS. The totals support basic contract-level analysis of obligation concentration and action frequency without adding assumptions about mission, vehicle structure, or period-by-period trends.

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 = '8000' AND content__IDV__contractID__IDVID__PIID = '80HQTR18C0029'
    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
8000 NATIONAL AERONAUTICS AND SPACE ADMINISTRATION 74,647,362.46 74.65 million 95

Insight

Over the 10-year window, obligations for PIID 80HQTR18C0029 are fully concentrated within National Aeronautics and Space Administration (Agency 8000). NASA accounts for the entire reported total of $74.65 million across 95 awards, indicating no observed cross-agency distribution in the provided data. This pattern suggests the vehicle has been used exclusively within a single agency environment for this period.

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 = '8000' AND content__IDV__contractID__IDVID__PIID = '80HQTR18C0029'
        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 = '8000' AND content__IDV__contractID__IDVID__PIID = '80HQTR18C0029'
    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
541512 COMPUTER SYSTEMS DESIGN SERVICES 74,647,362.46 74.65 million 95

Insight

Over the 10-year window, obligations for vehicle PIID 80HQTR18C0029 are fully concentrated in NAICS 541512, Computer Systems Design Services, with $74.65 million across 95 awards. This indicates a narrow industrial base for the queried vehicle, with all observed obligations tied to a single NAICS code. The award volume suggests repeated use of the same service classification rather than distribution across multiple NAICS categories.

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 = '8000' AND content__IDV__contractID__IDVID__PIID = '80HQTR18C0029'
    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
D316 IT AND TELECOM- TELECOMMUNICATIONS NETWORK MANAGEMENT 74,647,362.46 74.65 million 95

Insight

For vehicle 80HQTR18C0029, PSC D316 accounted for all reported obligations in the 10-year window, totaling $74.65 million across 95 awards. This indicates a highly concentrated spend profile within IT and telecommunications network management. The award count suggests recurring use of the vehicle for this requirement rather than a small number of large obligations.

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 = '8000' AND content__IDV__contractID__IDVID__PIID = '80HQTR18C0029'
    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
2018 1,610,500.00 1.61 million 3
2019 14,075,188.97 14.08 million 31
2020 17,388,237.97 17.39 million 29
2021 15,149,463.25 15.15 million 7
2022 13,733,419.12 13.73 million 10
2023 11,801,345.85 11.80 million 10
2024 889,207.31 889.21 thousand 4
2025 -0.01 -0.01 1

Insight

Obligations for PIID 80HQTR18C0029 were concentrated in 2019–2023, when annual funding remained in the 11.80 million to 17.39 million range and award counts were highest overall. The peak occurred in 2020 at 17.39 million across 29 awards, followed by a moderate decline in 2021–2023 with obligations remaining above 11.80 million. Activity dropped sharply in 2024 to 889.21 thousand and to a negligible negative amount in 2025, indicating minimal recent obligation volume.

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.