Effective Date
The date and time when the IDV becomes effective, meaning the agreement is legally active from that point forward. It is a timestamp-style field stored as a string and represents the effective date associated with the IDV record.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Timeline, cohort, and period analysis
Common Usage
- filtering IDVs by effective date range
- grouping awards by month, quarter, or fiscal year
- ordering contract actions chronologically
Common Mistakes
- treating it as the award announcement or signature date
- comparing the raw string without converting to a date or timestamp type
Query Guidance
Convert the string to a timestamp or date type before filtering or aggregating. In SQL, use the effective date as the anchor for time-based analysis, and apply date truncation when building monthly or fiscal summaries; if the dataset mixes formats, normalize to a consistent timestamp first.
SQL Examples
Preview values
SELECT
content__IDV__relevantContractDates__effectiveDate AS effective_date
FROM fpds.data
WHERE content__IDV__relevantContractDates__effectiveDate IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__relevantContractDates__effectiveDate AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__relevantContractDates__effectiveDate 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.