Clinger Cohen Act
Boolean or coded flag indicating whether the Clinger-Cohen Act applies to the IDV record. A value of N means the act does not apply; other observed values should be treated as affirmative or coded indicators depending on the source extract.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filter IDVs subject to Clinger-Cohen compliance review
- Compare IT-related versus non-IT award populations
- Support mandate coverage and exception-rate analysis
Common Mistakes
- Treating N as missing instead of not applicable
- Assuming every non-N value has identical meaning without checking the dataset
Query Guidance
Use explicit value tests such as WHERE content__IDV__legislativeMandates__ClingerCohenAct = 'Y' or <> 'N' only after confirming the domain values in your extract. For analyses of applicability, join or aggregate on the flag directly and avoid inferring compliance status from unrelated IT fields.
SQL Examples
Preview values
SELECT
content__IDV__legislativeMandates__ClingerCohenAct AS clinger_cohen_act
FROM fpds.data
WHERE content__IDV__legislativeMandates__ClingerCohenAct IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__legislativeMandates__ClingerCohenAct AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__legislativeMandates__ClingerCohenAct IS NOT NULL
GROUP BY flag_value
ORDER BY record_count DESC
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.