Vehicle Number

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

Federal procurement summary for vehicle number under Agency ID 8000 and PIID NNL13AA14C over the last 5 years.

This page summarizes award activity for vehicle number associated with Agency ID 8000 and PIID NNL13AA14C during the last 5 years. The record shows 174 award actions with total obligated funding of 28.58 million and an average action value of 164,270.23.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals are based on the provided analysis window and reflect exact obligated value of 28,583,020.53.

Agency ID
8000
PIID
NNL13AA14C
Type
Vehicle
Total Obligated
28.58 million
28,583,020.53
Actions
174
Average Action Value
164,270.23

Overview

Over the last 5 years, this vehicle number has 174 award actions tied to Agency ID 8000 under PIID NNL13AA14C. Total obligated funding is 28,583,020.53, which is approximately 28.58 million. The average action value is 164,270.23, indicating repeated procurement activity across the analysis window.

How to use this page

Use this page to review the basic award profile for this vehicle number before examining related FPDS records. The combination of total obligated amount, action count, and average action value provides a compact view of procurement volume and activity level. This summary is limited to the inputs provided for the last 5 years.

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 = 'NNL13AA14C'
    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 28,583,020.53 28.58 million 174

Insight

Across the 5-year window, obligations for vehicle PIID NNL13AA14C are fully concentrated at NASA (agency ID 8000), with no distribution across other agencies in the provided data. NASA accounts for $28.58 million across 174 awards, indicating repeated use of this vehicle within a single agency. This concentration suggests the vehicle is agency-specific rather than broadly utilized across the federal market.

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 = 'NNL13AA14C'
        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 = 'NNL13AA14C'
    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 28,583,020.53 28.58 million 174

Insight

Obligations for PIID NNL13AA14C are concentrated in a single NAICS code over the 5-year window. NAICS 561210, Facilities Support Services, accounts for $28.58 million across 174 awards, indicating sustained use of this service category rather than a broad distribution across multiple NAICS codes. This concentration suggests the vehicle has been used primarily for recurring facilities support requirements.

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 = 'NNL13AA14C'
    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 28,583,020.53 28.58 million 174

Insight

Over the 5-year window, obligations for this vehicle are concentrated entirely in PSC Z1JZ, Maintenance of Miscellaneous Buildings, with $28.58 million across 174 awards. This indicates a highly focused requirement profile with no observable diversification across PSCs in the provided data. The award volume suggests recurring activity, but the obligation mix is fully concentrated in a single service category.

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 = 'NNL13AA14C'
    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 12,413,710.00 12.41 million 44
2022 10,662,619.00 10.66 million 38
2023 5,844,902.00 5.84 million 39
2024 -322,978.00 -322.98 thousand 28
2025 -15,232.47 -15.23 thousand 25

Insight

Obligations for PIID NNL13AA14C under Agency ID 8000 declined sharply over the 5-year window, falling from $12.41 million in 2021 to $10.66 million in 2022 and $5.84 million in 2023. Award counts also trended downward overall, from 44 in 2021 to 25 in 2025, indicating reduced activity over time. The 2024 and 2025 values are negative, suggesting de-obligations rather than net new funding in those 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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.