Award Number

Award Number 4900 / NSFDACS1219442 Federal Contract Action Summary (Last Year)

Award number NSFDACS1219442 for agency 4900 shows 9 award actions in the last full year, with $255.06 million obligated.

This page summarizes federal procurement activity for award number NSFDACS1219442 under agency ID 4900. In the last full year, the award recorded 9 actions and $255,060,473.85 in total obligated value.

Generated at 03/20/2026

Analysis period: Last full year

Values are based on the last full year analysis window; average action value is $28,340,052.65.

Agency ID
4900
PIID
NSFDACS1219442
Type
Award
Total Obligated
255.06 million
255,060,473.85
Actions
9
Average Action Value
28,340,052.65

Overview

Award number NSFDACS1219442 is associated with agency ID 4900 and shows activity across 9 award actions in the last full year. Total obligated value for the period was $255,060,473.85, with an average action value of $28,340,052.65. These figures provide a compact view of the award's recent procurement volume.

How to use this page

Use this page to review the award's recent obligation totals and action count in a single record. The last full year window supports quick comparison with other awards or agency-level procurement summaries. The average action value can help frame the distribution of obligated amounts across the 9 actions.

Top Agencies

SELECT
    content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
    content__award__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '4900' AND content__award__awardID__awardContractID__PIID = 'NSFDACS1219442'
    AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
    AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__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
4900 NATIONAL SCIENCE FOUNDATION 255,060,473.85 255.06 million 9

Insight

Over the 1-year window, all reported obligated dollars for this award are concentrated at the National Science Foundation, which accounts for $255.06 million across 9 awards. This indicates a highly concentrated funding profile with no other agencies represented in the provided results. The distribution suggests the award activity is entirely associated with a single agency rather than spread across multiple funders.

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__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        content__award__awardID__awardContractID__agencyID = '4900' AND content__award__awardID__awardContractID__PIID = 'NSFDACS1219442'
        AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
        AND content__award__vendor__vendorHeader__vendorName != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY
        vendor_name,
        cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor CAGE Code Total Obligated Readable Actions
LEIDOS INNOVATIONS CORPORATION 7MWB4 255,060,473.85 255.06 million 9

Insight

Over the 1-year window for PIID NSFDACS1219442, obligations are fully concentrated with LEIDOS INNOVATIONS CORPORATION (CAGE 7MWB4), which accounts for $255.06 million across 9 awards. This indicates a single-vendor distribution pattern with no evidence of diversification in the provided data. The award profile suggests sustained funding to one contractor rather than broad vendor dispersion.

Top NAICS

SELECT
    content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
    content__award__productOrServiceInformation__principalNAICSCode__description AS naics_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '4900' AND content__award__awardID__awardContractID__PIID = 'NSFDACS1219442'
    AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
    AND content__award__productOrServiceInformation__principalNAICSCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__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 255,060,473.85 255.06 million 9

Insight

Over the 1-year window, obligations under PIID NSFDACS1219442 are fully concentrated in NAICS 561210, Facilities Support Services. The reported activity totals $255.06 million across 9 awards, indicating a narrow spend distribution rather than diversification across multiple NAICS codes. This level of concentration suggests the award’s obligated funding is heavily aligned to a single services category.

Top PSC Codes

SELECT
    content__award__productOrServiceInformation__productOrServiceCode AS psc_code,
    content__award__productOrServiceInformation__productOrServiceCode__description AS psc_name,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    count() AS award_count,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '4900' AND content__award__awardID__awardContractID__PIID = 'NSFDACS1219442'
    AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
    AND content__award__productOrServiceInformation__productOrServiceCode != ''
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
    psc_code,
    psc_name
ORDER BY total_obligated DESC
LIMIT 10
PSC Code Description Total Obligated Readable Actions
M1HA OPERATION OF GOVERNMENT-OWNED CONTRACTOR-OPERATED (GOCO) R&D FACILITIES 255,060,473.85 255.06 million 9

Insight

Obligations in this 1-year window are fully concentrated in PSC M1HA, Operation of Government-Owned Contractor-Operated (GOCO) R&D Facilities, with $255.06 million across 9 awards. This indicates a highly focused procurement profile for this award set, with no observed diversification across other PSCs in the provided results. The volume and value are both centered in a single R&D operations category, suggesting this is the dominant expenditure driver for the period.

Annual Trend

SELECT
    toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
    sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
    formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable,
    count() AS award_count
FROM fpds.data
WHERE
    content__award__awardID__awardContractID__agencyID = '4900' AND content__award__awardID__awardContractID__PIID = 'NSFDACS1219442'
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 255,060,473.85 255.06 million 9

Insight

In FY 2025, this award account recorded $255.06 million in total obligated value across 9 awards, indicating a high dollar concentration within a limited number of actions. The average obligated amount is substantial, suggesting the obligation profile is driven by a small set of large awards rather than broad transaction dispersion. No other years are provided in the window, so trend direction over time cannot be assessed from the available data.

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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.