Vehicle Number

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

Vehicle number 80ARC017C0008 for Agency ID 8000 records 346 award actions and $104,491,596.59 in obligations over the last 10 years.

This FPDS query page summarizes procurement activity for vehicle number 80ARC017C0008 under Agency ID 8000. The record shows 346 award actions with total obligated amounts of $104.49 million across the last 10 years.

Generated at 03/21/2026

Analysis period: Last 10 years

Obligations are shown as reported for the selected analysis window and may differ from rounded values due to precision.

Agency ID
8000
PIID
80ARC017C0008
Type
Vehicle
Total Obligated
104.49 million
104,491,596.59
Actions
346
Average Action Value
301,998.83

Overview

Over the last 10 years, vehicle number 80ARC017C0008 has 346 award actions with total obligated funding of $104,491,596.59. The average action value is $301,998.83, which reflects the reported obligations across the full analysis window. This page is intended to support review of the award history tied to this vehicle record.

How to use this page

Use this page to review the scale and frequency of procurement activity associated with vehicle number 80ARC017C0008. The totals and action count provide a compact view of obligation patterns for Agency ID 8000 within the selected period. For detailed procurement analysis, compare the action count, total obligated amount, and average action value together.

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 = '80ARC017C0008'
    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 104,491,596.59 104.49 million 346

Insight

For PIID 80ARC017C0008 over the 10-year window, obligations are fully concentrated in NASA, with $104.49 million obligated across 346 awards. This indicates a single-agency award profile with no distribution across other agencies in the provided data. The volume of awards relative to total obligated value suggests repeated activity under the vehicle rather than a small number of high-dollar transactions.

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 = '80ARC017C0008'
        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 = '80ARC017C0008'
    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
541310 ARCHITECTURAL SERVICES 104,491,596.59 104.49 million 346

Insight

Obligations under PIID 80ARC017C0008 are fully concentrated in NAICS 541310, Architectural Services, with $104.49 million across 346 awards over the 10-year window. This indicates a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The award count suggests repeated contracting activity within the same service category rather than broad category spread.

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 = '80ARC017C0008'
    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
C219 ARCHITECT AND ENGINEERING- GENERAL: OTHER 104,491,596.59 104.49 million 346

Insight

The vehicle’s obligations are fully concentrated in PSC C219, Architect and Engineering - General: Other, with $104.49 million across 346 awards over the 10-year window. This indicates a highly focused procurement profile centered on a single PSC rather than a diversified mix of service categories. The award count suggests repeated use of this PSC, supporting its significance as the dominant category for this vehicle.

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 = '80ARC017C0008'
    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 5,238,830.57 5.24 million 12
2018 13,944,648.33 13.94 million 49
2019 13,844,957.92 13.84 million 46
2020 15,303,966.94 15.30 million 54
2021 16,176,580.18 16.18 million 57
2022 13,379,708.13 13.38 million 32
2023 9,406,637.24 9.41 million 34
2024 11,802,116.58 11.80 million 45
2025 5,394,150.70 5.39 million 17

Insight

Obligations on PIID 80ARC017C0008 increased from 5.24 million in 2017 to a peak of 16.18 million in 2021, alongside a rise in award count from 12 to 57, indicating a pronounced expansion in activity over that period. After 2021, obligations declined to 13.38 million in 2022 and 9.41 million in 2023, rebounded to 11.80 million in 2024, and fell again to 5.39 million in 2025, suggesting reduced recent funding levels and lower award volume. Overall, the vehicle’s obligations are concentrated in the 2018–2024 period, with the highest funding and award density centered in 2020–2021.

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.