List of Contract Administrations Delegated
This field contains the list of contract administration offices or functions that NASA delegated for an IDV. It records which organizations were assigned contract administration responsibilities rather than performing them centrally within NASA.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- NASA-specific IDV record interpretation
Common Usage
- Identifying which contract administration offices support a NASA IDV
- Grouping awards by delegated administration arrangement
- Filtering records with non-centralized contract administration
Common Mistakes
- Assuming the field identifies the awarding office or contracting activity
- Treating a blank or missing value as proof that no delegation exists
Query Guidance
Use this field for filtering and grouping on delegated administration text values, but normalize casing and delimiters before aggregation. If the field can contain multiple entries, parse it into separate rows or use substring matching to avoid undercounting delegated offices.
SQL Examples
Preview values
SELECT
content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__listOfContractAdministrationsDelegated AS list_of_contract_administrations_delegated
FROM fpds.data
WHERE content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__listOfContractAdministrationsDelegated IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__listOfContractAdministrationsDelegated AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__listOfContractAdministrationsDelegated 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.