Vehicle Number

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

Federal procurement analysis for vehicle number associated with PIID 80KSC017C0011 at agency 8000 over the last 5 years.

This page summarizes award activity for vehicle number tied to PIID 80KSC017C0011 during the last 5 years. The record shows 67 award actions with total obligations of $61.35 million and an average action value of $915,721.40.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals are based on the readable obligated amount of $61,353,333.94 and reflect the stated analysis window.

Agency ID
8000
PIID
80KSC017C0011
Type
Vehicle
Total Obligated
61.35 million
61,353,333.94
Actions
67
Average Action Value
915,721.40

Overview

Across the last 5 years, vehicle number activity for PIID 80KSC017C0011 at agency 8000 totals $61,353,333.94 in obligated funding. The record includes 67 award actions, giving an average action value of $915,721.40. This page is intended as a compact procurement summary for that vehicle-level award history.

How to use this page

Use this page to review the scale and frequency of obligations tied to vehicle number within the selected PIID and agency context. The figures support quick comparison of total obligated value, action count, and average action size over the stated period.

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 = '80KSC017C0011'
    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 61,353,333.94 61.35 million 67

Insight

NASA is the only top agency in this 5-year window for vehicle 80KSC017C0011, indicating complete concentration of obligated dollars within a single agency. Total obligations are $61.35 million across 67 awards, suggesting repeated use of the vehicle rather than a one-time award. Because no other agency appears in the provided rows, there is no evidence of broader interagency distribution 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 = '80KSC017C0011'
        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 = '80KSC017C0011'
    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 61,353,333.94 61.35 million 67

Insight

Obligations for PIID 80KSC017C0011 are entirely concentrated in NAICS 541512, Computer Systems Design Services. Over the 5-year window, this category accounts for $61.35 million across 67 awards, indicating repeated purchasing activity within a single services classification. No other NAICS codes are reflected in the provided rows, so the award base appears highly 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 = '80KSC017C0011'
    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
D304 IT AND TELECOM- TELECOMMUNICATIONS AND TRANSMISSION 61,353,333.94 61.35 million 67

Insight

Over the 5-year window, PSC D304 accounts for $61.35 million across 67 awards under PIID 80KSC017C0011, indicating a clear concentration in IT and telecommunications transmission services. The volume of awards relative to obligated dollars suggests repeated, distributed ordering within a single dominant PSC category rather than broad PSC diversification. This pattern is consistent with a vehicle primarily used for recurring communications-related 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 = '80KSC017C0011'
    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 21,482,741.53 21.48 million 31
2022 23,443,922.43 23.44 million 20
2023 13,664,476.88 13.66 million 13
2024 62,193.10 62.19 thousand 2
2025 2,700,000.00 2.70 million 1

Insight

Obligations for PIID 80KSC017C0011 were concentrated in 2021 and 2022, at $21.48 million and $23.44 million, respectively, with the highest award counts in the period (31 and 20). Funding then declined sharply in 2023 to $13.66 million across 13 awards, followed by a near-floor level in 2024 at $62.19 thousand across 2 awards. Activity partially resumed in 2025 with $2.70 million from a single award, but the five-year pattern indicates a pronounced contraction after the 2022 peak.

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.