Vehicle Number

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

FPDS query page for vehicle number under Agency ID 8000 and PIID NNJ14HA04B, covering the last 5 years of award activity.

This page summarizes procurement activity for vehicle number associated with Agency ID 8000 and PIID NNJ14HA04B over the last 5 years. The record shows 52 award actions totaling $95.18 million in obligated amounts.

Generated at 03/21/2026

Analysis period: Last 5 years

Total obligated amounts are shown as $95,179,321.63, with an average action value of $1,830,371.57.

Agency ID
8000
PIID
NNJ14HA04B
Type
Vehicle
Total Obligated
95.18 million
95,179,321.63
Actions
52
Average Action Value
1,830,371.57

Overview

Over the last 5 years, vehicle number linked to PIID NNJ14HA04B records 52 award actions and $95,179,321.63 in total obligated value. The average action value is $1,830,371.57, indicating repeated award activity within the period. This page is intended to support review of obligation volume and action frequency for the vehicle record.

How to use this page

Use this page to review the procurement footprint associated with the vehicle number in the selected analysis window. The figures provide a compact view of total obligations, action count, and average action value for Agency ID 8000 and PIID NNJ14HA04B. For more detailed analysis, examine the underlying award actions and dates in the FPDS record set.

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 = 'NNJ14HA04B'
    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 95,179,321.63 95.18 million 52

Insight

Over the 5-year window, obligations under PIID NNJ14HA04B are fully concentrated within a single agency: the National Aeronautics and Space Administration. NASA accounts for $95.18 million across 52 awards, indicating all recorded obligated spending in this view is concentrated in one 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 = 'NNJ14HA04B'
        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 = 'NNJ14HA04B'
    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
541511 CUSTOM COMPUTER PROGRAMMING SERVICES 95,179,321.63 95.18 million 52

Insight

Obligations for PIID NNJ14HA04B under Agency ID 8000 are fully concentrated in NAICS 541511, Custom Computer Programming Services, with $95.18 million across 52 awards over the 5-year window. This indicates a narrow procurement pattern centered on a single services category rather than a diversified mix of NAICS codes. The volume of awards suggests repeated obligation activity within the same functional area.

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 = 'NNJ14HA04B'
    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
R425 SUPPORT- PROFESSIONAL: ENGINEERING/TECHNICAL 95,179,321.63 95.18 million 52

Insight

For PIID NNJ14HA04B over the 5-year window, obligations are entirely concentrated in PSC R425, Support–Professional: Engineering/Technical, with $95.18 million across 52 awards. This indicates a consistent reliance on engineering and technical support services under the vehicle rather than a diversified PSC mix. The award count suggests repeated use of this service category, but no distribution across other PSCs is evident in the provided data.

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 = 'NNJ14HA04B'
    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 32,748,444.82 32.75 million 16
2022 36,193,693.21 36.19 million 16
2023 26,237,183.60 26.24 million 20

Insight

Obligations under PIID NNJ14HA04B were concentrated in a narrow three-year window, with annual funding ranging from $26.24 million to $36.19 million. Funding increased from $32.75 million in 2021 to a peak of $36.19 million in 2022, then declined to $26.24 million in 2023. Award activity was steady at 16 awards in 2021 and 2022 before rising to 20 awards in 2023, indicating a broader distribution of obligations in the most recent year.

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.