Federal Agency

MARINE MAMMAL COMMISSION Federal Contract Obligations (Last Year)

FPDS procurement summary for the Marine Mammal Commission (Agency ID 9513) covering the last full year, with no recorded award actions in the provided data.

This page presents the available federal procurement activity for the Marine Mammal Commission during the last full year. The provided dataset shows zero award actions, and no vendor, NAICS, or annual trend details are available.

Generated at 03/21/2026

Analysis period: Last full year

No obligated amount, average action value, top vendors, top NAICS codes, or annual trend rows were provided for this analysis window.

Agency ID
9513
Total Obligated
0.00
Award Actions
0
Average Action Value
0.00

About MARINE MAMMAL COMMISSION federal contract activity

During the last full year, FPDS Query shows no reported award activity for Marine Mammal Commission (Agency ID 9513), with an award count of 0. Because no obligations were recorded in the source data, total obligated and average award value are not available for this analysis window.

Vendor concentration and leading contractors

No top vendors can be identified for this period because the agency has no recorded awards in the FPDS Query dataset. Vendor concentration analysis is not meaningful when there are no reported obligations or award actions.

Industry profile based on NAICS activity

No NAICS categories appear in the reported award data for the last full year, so the agency’s procurement mix cannot be characterized from this period alone. The absence of awards prevents any defensible ranking of industry codes or spending distribution.

Annual contract trend over the analysis window

The annual trend for the last full year is flat at zero reported awards and zero reported obligations. With no observed transactions, there is no basis for assessing seasonality, growth, or shifting procurement patterns.

How to interpret this page

This summary is based solely on the provided FPDS Query agency-level metrics for Marine Mammal Commission over the last full year. Where the source data reports no awards, no vendor, NAICS, or trend analysis can be inferred without introducing unsupported assumptions.

Top Vendors

SELECT
    vendor_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__vendor__vendorHeader__vendorName AS vendor_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__purchaserInformation__contractingOfficeAgencyID = '9513'
        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
)
ORDER BY total_obligated DESC
LIMIT 10
Vendor Total Obligated Readable Award Actions

Insight

No notable vendor concentration was available for this analysis window.

Top NAICS

SELECT
    naics_code,
    naics_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
        anyHeavy(content__award__productOrServiceInformation__principalNAICSCode__description) AS naics_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__purchaserInformation__contractingOfficeAgencyID = '9513'
        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
)
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Award Actions

Insight

No notable NAICS concentration was available for this analysis window.

Annual Trend

SELECT
    year,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__purchaserInformation__contractingOfficeAgencyID = '9513'
        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 DESC
Year Total Obligated Readable Award Actions

Insight

No annual trend data was available for this analysis window.

Use FPDS Query for deeper analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper market analysis across agencies, vendors, NAICS, and contract trends.

Continue from this last full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.