Vehicle Number

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

Procurement analysis page for vehicle number 80HQTR18C0029 at agency 8000 covering the last 5 years of award activity.

This page summarizes federal procurement activity for vehicle number 80HQTR18C0029 within agency 8000 over the last 5 years. The record shows 32 award actions with total obligated dollars of 41.57 million.

Generated at 03/21/2026

Analysis period: Last 5 years

Dollar figures reflect the provided exact total obligated value of 41,573,435.52 and the readable rounded amount shown for this page.

Agency ID
8000
PIID
80HQTR18C0029
Type
Vehicle
Total Obligated
41.57 million
41,573,435.52
Actions
32
Average Action Value
1,299,169.86

Overview

The analysis window covers the last 5 years and aggregates 32 award actions tied to vehicle number 80HQTR18C0029. Total obligated funding equals 41,573,435.52, with an average action value of 1,299,169.86. The figures provide a compact view of award volume and obligation levels for this vehicle record.

How to use this page

Use this page to review the scale and cadence of award activity associated with vehicle number 80HQTR18C0029. The combination of total obligated dollars, action count, and average action value can support basic procurement review and comparison within agency 8000.

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 5 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 41,573,435.52 41.57 million 32

Insight

For PIID 80HQTR18C0029 over the 5-year window, obligations are entirely concentrated in a single agency: the National Aeronautics and Space Administration. NASA accounts for $41.57 million across 32 awards, indicating all recorded obligations in this view are concentrated with one agency rather than distributed across multiple agencies. This suggests a narrow agency footprint for the vehicle during the period reviewed.

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 5 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 5 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 41,573,435.52 41.57 million 32

Insight

Obligations for PIID 80HQTR18C0029 over the 5-year window are fully concentrated in NAICS 541512, Computer Systems Design Services. This category accounts for $41.57 million across 32 awards, indicating a sustained procurement pattern within a single professional services code. No other NAICS codes are present in the provided data, so the observed distribution is entirely concentrated rather than diversified.

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 5 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 41,573,435.52 41.57 million 32

Insight

Over the 5-year window, obligations for this vehicle are fully concentrated in PSC D316, IT and Telecom–Telecommunications Network Management. The single PSC accounts for $41.57 million across 32 awards, indicating a narrow product/service mix rather than a distributed spend profile. This concentration suggests the vehicle is being used primarily for telecommunications network management requirements.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__IDV__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
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 under PIID 80HQTR18C0029 declined steadily over the 5-year window, falling from 15.15 million in 2021 to 11.80 million in 2023, then dropping sharply to 889.21 thousand in 2024. Award activity was concentrated in the earlier years, with 7 to 10 awards annually from 2021 through 2023, compared with only 4 awards in 2024 and 1 award in 2025. The 2025 obligation of -0.01 indicates a near-zero net adjustment rather than material new funding.

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