Dictionary
Estimated Event
The data dictionary and definitions for Estimated Event
Fields
| Parameter | Type | Description |
|---|---|---|
| estimate_id | int | The Aiera-unique identifier for the estimate |
| equity * | obj | The associated equity information |
| estimate * | obj | The estimated event details |
| actual * | obj | The actual confirmed event (null if not yet linked) |
| created | datetime | When the estimate was created |
| modified | datetime | When the estimate was last modified |
Possibles
equity
{
"equity": {
"equity_id": 1,
"name": "AMAZON COM INC",
"common_name": "Amazon",
"local_ticker": "AMZN",
"bloomberg_ticker": "AMZN:US",
"isin": "US0231351067",
"gics_sector": "Consumer Discretionary",
"gics_sub_sector": "Broadline Retail"
}
}
estimate
{
"estimate": {
"call_type": "earnings",
"call_date": "2024-04-25T17:00:00",
"title": "Q1 2024 Amazon.com Inc Earnings Call"
}
}
| Parameter | Type | Description |
|---|---|---|
| call_type | str | The type of call (e.g., earnings) |
| call_date | datetime | The estimated date and time |
| title | str | The estimated event title |
actual
The actual field has the same structure as estimate and is populated when the estimated event is linked to a confirmed event. It is null until a matching event is confirmed.
{
"actual": {
"call_type": "earnings",
"call_date": "2024-04-25T17:30:00",
"title": "Q1 2024 Amazon.com Inc Earnings Call"
}
}