Effective Date
The date on which the Other Transaction IDV becomes effective under the contract detail's relevant contract dates. It marks when the instrument’s terms begin to apply for the record represented in FPDS.
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 awards by start date or reporting period
- grouping obligations by fiscal year or quarter
- ordering events in contract lifecycle analyses
Common Mistakes
- using the raw string without converting it to a date type
- confusing effective date with obligation, action, or modification dates
Query Guidance
Cast or parse the value to a DATE/DATETIME field in SQL, then use it in WHERE clauses, date ranges, and fiscal-period logic. Prefer inclusive start and exclusive end filters for period analysis, and do not assume the string includes meaningful time-of-day information unless observed in the source data.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__relevantContractDates__effectiveDate AS effective_date
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__relevantContractDates__effectiveDate IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__relevantContractDates__effectiveDate AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__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.