Contract Administration Delegated
Human-readable value for NASA-specific contract administration delegated in the award record. This is typically a coded or abbreviated attribute that identifies the delegated contract administration arrangement associated with the award.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filter NASA awards with delegated contract administration
- Group awards by delegated administration status
- Support QA checks against NASA-specific award elements
Common Mistakes
- Interpreting the value as a general contract administration narrative instead of a coded attribute
- Using the field without checking the actual code/label set for the reporting period
Query Guidance
Use this field in WHERE clauses to isolate NASA awards with a specific delegated administration value, and in SELECT/GROUP BY when segmenting by administration arrangement. If the dataset includes a companion description field, join or display it alongside the code; otherwise, verify meaning through the observed distinct values before aggregating.
SQL Examples
Preview values
SELECT
content__award__agencySpecificAwardElements__NASASpecificAwardElements__listOfContractAdministrationsDelegated__contractAdministrationDelegated AS contract_administration_delegated
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__NASASpecificAwardElements__listOfContractAdministrationsDelegated__contractAdministrationDelegated IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__agencySpecificAwardElements__NASASpecificAwardElements__listOfContractAdministrationsDelegated__contractAdministrationDelegated AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__NASASpecificAwardElements__listOfContractAdministrationsDelegated__contractAdministrationDelegated IS NOT NULL
GROUP BY value
ORDER BY record_count DESC
LIMIT 25
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.