COTR Name
Human-readable name of the NASA Contracting Officer's Technical Representative (COTR) associated with the IDV record. It identifies the person tied to the technical oversight role for the instrument and is a label field rather than a coded identifier.
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
- Identify the NASA technical representative linked to an IDV
- Group awards by named COTR for oversight analysis
- Validate NASA-specific administrative data against other award records
Common Mistakes
- Assuming the value is a unique person identifier
- Using raw text matching without normalizing spelling, punctuation, or initials
Query Guidance
Select and display the field as a text label. For analytics, normalize casing and trim whitespace before grouping, and use LIKE or cleaned-text comparisons only when exact identity matching is not required; do not join on this field unless no better identifier exists.
SQL Examples
Preview values
SELECT
content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__COTRName AS c_o_t_r_name
FROM fpds.data
WHERE content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__COTRName IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__COTRName AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__COTRName 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.