Calendar Date
CalendarDateFNDA specific date on the Gregorian calendar, optionally annotated with whether it is a business day or holiday in a given calendar.
Datasets representing this concept
1 dataset| Dataset | Role | Pure |
|---|---|---|
| calendar_date | primary | Pure Model -> |
Pure Class
FIBO-grounded class definition for this concept: properties, multiplicities, and source-column annotations. Per-dataset Mapping and Table blocks live on each dataset's Pure Model tab.
<<Lineage.parquetBacked>>
{Lineage.parquetPath = 'out/parquet/calendar_date.parquet', Lineage.fiboModule = 'FND', Lineage.fiboConcept = 'CalendarDate', Lineage.datasetTitle = 'Calendar Dates'}
// Per-calendar daily flags indicating whether each date is a business day or holiday.
Class fibo::fnd::CalendarDate
{
// Identifier: A label assigned by an authority that uniquely refers to a thing (entity, instrument, account, etc.) within a given naming scheme.
calendarCode : String[1];
// CalendarDate: A specific date on the Gregorian calendar, optionally annotated with whether it is a business day or holiday in a given calendar.
date : StrictDate[1];
// BusinessDay: A date on which a particular market or jurisdiction is open for normal commercial activity (i.e., not a weekend or holiday).
isBusinessDay : Boolean[1];
// Holiday: A non-business day designated by a jurisdiction or venue, on which markets are closed.
isHoliday : Boolean[1];
// Description: Free-text human-readable label for the record.
holidayName : String[0..1];
}