Vehicle Number

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

Analysis of vehicle number records for PIID 80NSSC19D0001 at agency 8000 over the last 10 years, showing 271 award actions and $720.94 million obligated.

This page summarizes procurement activity tied to vehicle number for PIID 80NSSC19D0001 across the last 10 years. The record shows 271 award actions with total obligated amounts of $720,944,198.28.

Generated at 03/20/2026

Analysis period: Last 10 years

Average action value is $2,660,310.69; totals are shown as both readable and exact values.

Agency ID
8000
PIID
80NSSC19D0001
Type
Vehicle
Total Obligated
720.94 million
720,944,198.28
Actions
271
Average Action Value
2,660,310.69

Overview

The vehicle number record for PIID 80NSSC19D0001 reflects activity at agency 8000 over the last 10 years. Across that window, 271 award actions were recorded with total obligations of $720,944,198.28 and an average action value of $2,660,310.69.

How to use this page

Use this page to review the scale and frequency of procurement activity associated with the vehicle number field for this PIID. The totals support quick comparisons of award volume, obligated dollars, and average action size within the selected analysis window.

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 = '80NSSC19D0001'
    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 720,944,198.28 720.94 million 271

Insight

Within the 10-year window, all reported obligation for PIID 80NSSC19D0001 is concentrated in a single agency: NASA (agency ID 8000), with $720.94 million across 271 awards. This indicates complete agency-level concentration for this vehicle in the provided data, with no distribution across other agencies. The volume of awards suggests repeated use within the same agency rather than reliance on a small number of high-dollar actions alone.

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 = '80NSSC19D0001'
        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 = '80NSSC19D0001'
    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 720,944,198.28 720.94 million 271

Insight

Obligations under PIID 80NSSC19D0001 are fully concentrated in NAICS 541512, Computer Systems Design Services, with $720.94 million across 271 awards over the 10-year window. This indicates a highly concentrated procurement profile with no observable diversification across other NAICS codes in the provided data. The volume of awards suggests repeated reliance on the same service category for this vehicle.

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 = '80NSSC19D0001'
    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
D301 IT AND TELECOM- FACILITY OPERATION AND MAINTENANCE 720,944,198.28 720.94 million 271

Insight

Over the 10-year window, obligations for this vehicle are fully concentrated in PSC D301, IT and Telecom-Facility Operation and Maintenance, with $720.94 million across 271 awards. This indicates a highly focused use of the vehicle for a single service category rather than a broad distribution across multiple PSCs. The volume of awards alongside the obligation total suggests repeated use for recurring requirements in this PSC.

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 = '80NSSC19D0001'
    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
2019 52,364,436.60 52.36 million 20
2020 135,708,630.36 135.71 million 48
2021 138,409,050.12 138.41 million 49
2022 109,316,599.74 109.32 million 35
2023 102,909,785.80 102.91 million 39
2024 109,590,678.75 109.59 million 38
2025 72,645,016.91 72.65 million 42

Insight

Obligations under PIID 80NSSC19D0001 were concentrated in 2020 through 2024, with annual funding ranging from $102.91 million to $138.41 million and award counts from 35 to 49. The highest obligation level occurred in 2021 at $138.41 million across 49 awards, following a sharp increase from 2019’s $52.36 million and 20 awards. In 2025, obligations declined to $72.65 million while award volume remained relatively high at 42, indicating lower dollar concentration per award than in prior peak 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.