CCR Exception

Human-readable value for the vendor's CCR exception status on an IDV record. This field indicates whether the vendor had a Central Contractor Registration exception and is typically stored as a coded or abbreviated string rather than a free-text explanation.

Family: IDV
Category: General
Data Type: string
Semantic Type: attribute
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__IDV__vendor__CCRException
Title
CCR Exception
FPDS Path
IDV/vendor/CCRException
Description
Human-readable value for the vendor's CCR exception status on an IDV record. This field indicates whether the vendor had a Central Contractor Registration exception and is typically stored as a coded or abbreviated string rather than a free-text explanation.
Business Meaning
This field helps analysts identify awards and IDVs involving vendors that did not follow the standard CCR registration path, which can matter for compliance review, data quality checks, and vendor eligibility analysis. It is useful when segmenting procurement activity by registration status or investigating exceptions that may affect award administration and vendor risk profiling.
Example Value
6
Observed Non-Null Count
12,300

FPDS Compare

FPDS Query Variable
content__IDV__vendor__CCRException
FPDS XML Path
IDV/vendor/CCRException
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'IDV/vendor/CCRException' into the SQL-ready variable 'content__IDV__vendor__CCRException'.

Use Cases

  • Dictionary lookup and field explanation
  • SQL filtering and grouping
  • Analytical reporting and reusable query building
  • Contractor profiling and competitor analysis

Common Usage

  • Filter IDVs involving CCR exceptions
  • Group awards by vendor registration exception status
  • Support compliance and data quality reviews

Common Mistakes

  • Assuming the value is a numeric measure instead of a coded attribute
  • Using it without checking the paired description or valid code values

Query Guidance

Use equality predicates for exact code matching and include this field in GROUP BY when analyzing exception prevalence. If the data is sparse or inconsistently coded, join to the source description or map observed values before aggregating.

SQL Examples

Preview values

SELECT
    content__IDV__vendor__CCRException AS c_c_r_exception
FROM fpds.data
WHERE content__IDV__vendor__CCRException IS NOT NULL
LIMIT 25

Top values

SELECT
    content__IDV__vendor__CCRException AS value,
    count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__CCRException 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.