Vehicle Number

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

Analysis of vehicle number for agency 8000 under PIID NNC14BA11B over the last 5 years, showing 50 award actions and $43.48 million obligated.

This page summarizes procurement activity tied to vehicle number for agency 8000 under PIID NNC14BA11B during the last 5 years. The record shows 50 award actions with total obligated funding of $43,479,325.76 and an average action value of $869,586.52.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals reflect the provided analysis window and the exact obligated amount; readable values are rounded for display.

Agency ID
8000
PIID
NNC14BA11B
Type
Vehicle
Total Obligated
43.48 million
43,479,325.76
Actions
50
Average Action Value
869,586.52

Overview

Over the last 5 years, vehicle number associated with agency 8000 and PIID NNC14BA11B accounts for 50 award actions. The exact total obligated amount is $43,479,325.76, with a displayed total of $43.48 million and an average action value of $869,586.52. This page presents the procurement record at a summary level without adding details not present in the source inputs.

How to use this page

Use this page to review the volume and obligated value associated with the vehicle record for agency 8000 under PIID NNC14BA11B. The action count and average action value provide a compact view of activity across the analysis window. For detailed transaction-level review, consult the underlying award actions linked to this vehicle number.

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 = 'NNC14BA11B'
    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 43,479,325.76 43.48 million 50

Insight

Obligations under vehicle NNC14BA11B over the 5-year window are fully concentrated within a single agency: the National Aeronautics and Space Administration. NASA accounts for 43.48 million across 50 awards, indicating all observed activity is concentrated within one awarding agency rather than distributed across multiple agencies.

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 = 'NNC14BA11B'
        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 = 'NNC14BA11B'
    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
561210 FACILITIES SUPPORT SERVICES 43,479,325.76 43.48 million 50

Insight

Obligations under PIID NNC14BA11B are fully concentrated in NAICS 561210, Facilities Support Services, with $43.48 million across 50 awards over the 5-year window. This indicates a narrow spending profile centered on a single service category rather than a diversified NAICS mix. The volume of awards suggests repeated procurement activity within the same code.

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 = 'NNC14BA11B'
    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
Z1JZ MAINTENANCE OF MISCELLANEOUS BUILDINGS 43,479,325.76 43.48 million 50

Insight

Over the 5-year window, obligations under PIID NNC14BA11B are fully concentrated in PSC Z1JZ, Maintenance of Miscellaneous Buildings, with $43.48 million across 50 awards. This indicates a highly focused services profile rather than a diversified PSC mix. The average obligation per award is roughly $0.87 million, suggesting recurring but moderate-value maintenance activity.

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 = 'NNC14BA11B'
    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,274,266.17 21.27 million 19
2022 12,764,096.25 12.76 million 19
2023 9,440,963.34 9.44 million 12

Insight

Obligations on PIID NNC14BA11B declined over the 2021–2023 period, falling from $21.27 million in 2021 to $12.76 million in 2022 and $9.44 million in 2023. Award activity was steady at 19 awards in 2021 and 2022 before decreasing to 12 awards in 2023, indicating lower annual distribution in the most recent year. The pattern suggests a narrowing obligation base over time rather than sustained growth.

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.