What's in the dataset
Browse all available fields, SEC XBRL tags, and table schemas. Every field you can query via API or SDK.
Schema Browser
| Field Name | Type | Table | Description | SEC Tag |
|---|---|---|---|---|
cik | VARCHAR | entity | SEC Central Index Key — 10-digit unique company identifier | dei:EntityCentralIndexKey |
name | VARCHAR | entity | Legal registered company name | dei:EntityRegistrantName |
lei | VARCHAR | entity | Legal Entity Identifier (ISO 17442 20-character code) | — |
industry | VARCHAR | entity | Industry classification description | — |
sector | VARCHAR | entity | Broad market sector (e.g. Technology, Healthcare, Financials) | — |
sic_code | VARCHAR | entity | Standard Industrial Classification code (4-digit) | dei:EntitySICCode |
sic_description | VARCHAR | entity | Full SEC SIC industry label (e.g. 'Electronic Computers'). Companion to sic_code — use this when a human-readable string is more useful than the raw 4-digit code. | — |
fiscal_year_end | VARCHAR | entity | Fiscal year end as MMDD (e.g. 1231 = December 31) | — |
location | VARCHAR | entity | Company headquarters location (city, state, country) | — |
website | VARCHAR | entity | Company primary website URL | — |
ceo | VARCHAR | entity | Chief Executive Officer name at most recent filing | — |
founded_year | SMALLINT | entity | Year the company was founded | — |
description | VARCHAR | entity | Company business description extracted from SEC filings | — |
status | VARCHAR | entity | Entity status: ACTIVE, INACTIVE, or DELISTED. Filter status != 'ACTIVE' to include all non-active companies | — |
entity_type | VARCHAR | entity | SEC-defined filer category (e.g. Non-accelerated Filer, Large Accelerated Filer) | dei:EntityFilerCategory |
ein | VARCHAR | entity | Employer Identification Number (IRS tax ID) | — |
owner_org | VARCHAR | entity | Parent or controlling organization name | — |
investor_website | VARCHAR | entity | Investor relations website URL | — |
category | VARCHAR | entity | SEC registrant category | — |
state_of_incorporation | VARCHAR | entity | US state or country of incorporation (2-letter code) | dei:EntityIncorporationStateCountryCode |
state_of_incorporation_description | VARCHAR | entity | Full SEC label for the state-of-incorporation code (e.g. 'Delaware') | — |
phone | VARCHAR | entity | Company contact phone number | dei:EntityContactTelephoneNumber |
business_address | VARCHAR | entity | Principal registered business (HQ) address — single concatenated line. Renamed from 'address' in schema v2.1.0. | — |
mailing_address | VARCHAR | entity | Mailing address (separate from HQ) — registered agent / correspondence target. Often differs from business_address for foreign issuers and trusts. | — |
country_code | VARCHAR | entity | ISO country code of the issuer's primary location | — |
is_foreign | BOOLEAN | entity | TRUE if the issuer is a non-US registrant (typically a 20-F / 40-F filer) | — |
flags | VARCHAR | entity | SEC-flagged status string (e.g. 'Shell', 'Delinquent'). NULL for clean issuers. | — |
has_insider_transactions | BOOLEAN | entity | SEC declares Form 4/5 insider activity exists for this issuer | — |
is_insider_owner | BOOLEAN | entity | SEC declares this CIK itself owns insider holdings | — |
former_names | JSON | entity | SEC formerNames[] history — JSON array of {name, from, to} objects. Useful for ticker-history queries and merger lineage (e.g. FB → META). Empty array when the issuer has never renamed. | — |
last_seen_at | DATE | entity | Date this entity last appeared in any SEC filing | — |
ingested_at | TIMESTAMPTZ | entity | Timestamp when Valuein first ingested this entity record | — |
id | INTEGER | security | Surrogate primary key for the security record | — |
entity_id | VARCHAR | security | Foreign key to entity.cik — the issuing company | dei:EntityCentralIndexKey |
symbol | VARCHAR | security | Exchange ticker symbol | dei:TradingSymbol |
exchange | VARCHAR | security | Stock exchange name (e.g. NASDAQ, NYSE) | — |
mic | VARCHAR | security | Market Identification Code (ISO 10383) | — |
valid_from | DATE | security | SCD Type 2 start date — when this ticker became active on this exchange | — |
valid_to | DATE | security | SCD Type 2 end date — when this ticker was retired. NULL means currently active | — |
is_active | BOOLEAN | security | Derived: TRUE when valid_to IS NULL. Use to filter current tickers only | — |
figi | VARCHAR | security | Financial Instrument Global Identifier at share-class level (OpenFIGI) | — |
composite_figi | VARCHAR | security | Composite FIGI at the exchange level | — |
share_class_figi | VARCHAR | security | Share class FIGI | — |
security_type | VARCHAR | security | Instrument type (e.g. Common Stock, ADR, ETF) | — |
market_sector | VARCHAR | security | FIGI market sector classification | — |
figi_ticker | VARCHAR | security | Ticker symbol as recorded in the OpenFIGI registry | — |
figi_name | VARCHAR | security | Security name from the OpenFIGI registry | — |
figi_exch_code | VARCHAR | security | Exchange code from the OpenFIGI registry | — |
is_primary_ticker | BOOLEAN | security | TRUE for the ticker SEC's company_tickers.json marks as the entity's primary listing. Multi-share-class issuers (BRK-A/BRK-B, GOOG/GOOGL) emit multiple is_active=TRUE rows; default consumer queries filter is_primary_ticker=TRUE for one row per CIK. | — |
ingested_at | TIMESTAMPTZ | security | Timestamp when Valuein first ingested this security record | — |
accession_id | VARCHAR | filing | SEC EDGAR accession number — unique filing identifier (format: XXXXXXXXXX-YY-ZZZZZZ) | — |
entity_id | VARCHAR | filing | Foreign key to entity.cik — the filing company | dei:EntityCentralIndexKey |
filing_date | DATE | filing | Date the SEC received and accepted the filing. Use this for PIT backtest filters — not report_date | — |
form_type | VARCHAR | filing | Filing type: 10-K (annual), 10-Q (quarterly), 20-F (foreign annual), 8-K (current report), etc. | dei:DocumentType |
filing_url | VARCHAR | filing | Full URL to the filing document on SEC EDGAR | — |
is_amendment | BOOLEAN | filing | TRUE if this is an amended filing (e.g. 10-K/A, 10-Q/A) | — |
amendment_no | SMALLINT | filing | Amendment sequence number — 0 for the original filing, 1 for the first amendment, etc. | — |
superseded_by | VARCHAR | filing | Accession-id of the filing that supersedes this one in the amendment chain (NULL when this is the latest version). Populated post-ingest. | — |
report_date | DATE | filing | Fiscal period end date covered by this filing. Using this as a PIT filter introduces look-ahead bias — use filing_date or accepted_at instead. | dei:DocumentPeriodEndDate |
items | VARCHAR[] | filing | Array of 8-K item numbers reported (e.g. ['1.01', '9.01']). NULL for non-8-K filings | — |
size | INTEGER | filing | Filing size in bytes (per SEC submissions feed) | — |
is_xbrl | BOOLEAN | filing | SEC-declared: filing carries an XBRL exhibit | — |
is_inline_xbrl | BOOLEAN | filing | SEC-declared: filing uses Inline XBRL (iXBRL) | — |
is_xbrl_numeric | BOOLEAN | filing | Distinct from is_xbrl/is_inline_xbrl — TRUE when the XBRL exhibit carries machine-readable numeric facts (the source of every fact-table row). | — |
primary_document | VARCHAR | filing | Filename of the lead document in the filing package | — |
primary_doc_description | VARCHAR | filing | SEC-provided label describing the primary document | — |
core_type | VARCHAR | filing | Base form_type stripped of the /A amendment suffix (e.g. 10-K/A → 10-K). Use this for form-family filtering when you don't care whether a filing is the original or an amendment. | — |
file_number | VARCHAR | filing | SEC EDGAR file number (e.g. 001-36743) | — |
film_number | VARCHAR | filing | SEC EDGAR microfiche / film number assigned at acceptance | — |
act | VARCHAR | filing | Securities-Act designator: '33' (1933 Act), '34' (1934 Act), or empty. Helps distinguish registration-statement vs. exchange-act filings. | — |
is_audited | BOOLEAN | filing | Filing is an annual (audited) report — TRUE for 10-K / 20-F and their amendments, FALSE for 10-Q / 8-K / etc. | — |
accepted_at | TIMESTAMPTZ | filing | Exact timestamp the SEC accepted the filing (millisecond precision). Every fact disclosed in this filing inherits the same accepted_at as its PIT anchor. | — |
ingested_at | TIMESTAMPTZ | filing | Timestamp when Valuein ingested this filing record | — |
fact_id | VARCHAR | fact | Deterministic identity hash: SHA-256(entity_id|accession_id|concept|period_end|unit). 64-character lowercase hex string. Use with verify_fact_lineage to trace any number to its source filing. | — |
entity_id | VARCHAR | fact | Foreign key to entity.cik | dei:EntityCentralIndexKey |
accession_id | VARCHAR | fact | Foreign key to filing.accession_id | — |
concept | VARCHAR | fact | Raw XBRL tag as filed by the company (e.g. us-gaap:Revenues). Use standard_concept for cross-company comparisons. | xbrl:concept |
standard_concept | VARCHAR | fact | Canonical normalized concept label (e.g. Revenues, NetIncomeLoss). Maps 11,966 raw XBRL tags to 292 standard concepts (95% coverage). | — |
priority | SMALLINT | fact | Standardization priority — lower value = higher confidence in the concept mapping | — |
label | VARCHAR | fact | Human-readable label from the company's XBRL filing context | — |
numeric_value | DOUBLE | fact | The value as reported in this specific filing (accession_id). NULL for non-numeric facts. | — |
derived_quarterly_value | DOUBLE | fact | Quarterly value derived by subtracting prior YTD periods (Q2/Q3 10-Q cash flows are filed as YTD). Use COALESCE(derived_quarterly_value, numeric_value) for single-quarter cash flow metrics. | — |
unit | VARCHAR | fact | Unit of measure: USD, shares, pure (dimensionless ratio), etc. | — |
period_start | DATE | fact | Reporting period start date. NULL for instant/point-in-time facts (e.g. balance sheet items) | — |
period_end | DATE | fact | Reporting period end date. Table is range-partitioned on this column by year. | — |
fiscal_year | INTEGER | fact | Fiscal year number (e.g. 2024). INT16 in the parquet — no cast needed for cross-table joins. | — |
fiscal_period | VARCHAR | fact | Fiscal period label: FY (annual), Q1, Q2, Q3, Q4 | — |
frame | VARCHAR | fact | XBRL frame identifier linking this fact to a specific reporting period context | — |
statement_type | VARCHAR | fact | Financial statement category: income, balance_sheet, cash_flow, dei, notes | — |
confidence_score | DOUBLE | fact | Composite data quality confidence metric (0.0–1.0). Use >= 0.70 for analytics. | — |
is_negative | BOOLEAN | fact | TRUE if the originally reported value was negative | — |
is_audited | BOOLEAN | fact | TRUE if this fact comes from an audited annual filing (10-K or 20-F) | — |
is_estimated | BOOLEAN | fact | TRUE if the value is estimated rather than directly reported | — |
data_quality | VARCHAR | fact | Data quality flag: reported, estimated, or provisional | — |
accepted_at | TIMESTAMPTZ | fact | Point-in-time timestamp — when this fact became publicly known via SEC EDGAR. Filter accepted_at <= trade_date for look-ahead-free backtests. | — |
ingested_at | TIMESTAMPTZ | fact | Timestamp when Valuein ingested this fact | — |
reporting_currency | VARCHAR | fact | ISO-4217 currency code when the unit is monetary (e.g. USD, EUR, JPY). NULL for non-monetary facts (shares, ratios, days). Required for 20-F filers and any non-USD reporter. | — |
period_span_days | INTEGER | fact | Number of calendar days spanned by this reporting period | — |
is_cumulative | BOOLEAN | fact | TRUE if the value is cumulative year-to-date rather than for the period in isolation (common in 10-Q cash flow statements) | — |
derivation_type | VARCHAR | fact | Method used to derive the quarterly value: ytd_subtraction, direct, or NULL if not derived | — |
derivation_uncertain | BOOLEAN | fact | TRUE if the quarterly derivation has reduced confidence due to fiscal-period ambiguity | — |
value_current | DOUBLE | fact | Bloomberg Option-C: the latest-known value for this (entity_id, standard_concept, period_end, unit) — i.e. the value any analyst watching the tape today would see. Computed at export time via DuckDB window functions. | — |
value_as_filed | DOUBLE | fact | Bloomberg Option-C: the originally-reported value (first-ever accepted_at in the partition). Compare with value_current to detect restatements. | — |
first_filed_at | TIMESTAMPTZ | fact | Timestamp of first disclosure (min accepted_at in the partition) | — |
restated | BOOLEAN | fact | TRUE if any version of this fact in the partition differs from the others — signals that a later filing restated this number. Computed against the GLOBAL warehouse state, NOT PIT — for PIT reasoning use value_current vs. value_as_filed. | — |
id | BIGINT | valuation | Surrogate primary key for the valuation record | — |
entity_id | VARCHAR | valuation | Foreign key to entity.cik — the company being valued | dei:EntityCentralIndexKey |
security_id | INTEGER | valuation | Foreign key to security.id — the specific security valued (NULL if company-level only) | — |
valuation_date | DATE | valuation | The fiscal period_end the valuation was computed against | — |
model_type | VARCHAR | valuation | Valuation model identifier. Live values: 'dcf' (earnings-based two-stage), 'dcf_fcf' (free-cash-flow-based two-stage), 'ddm' (dividend discount model). Multiple rows per (entity_id, valuation_date) are expected. | — |
model_version | VARCHAR | valuation | Version string of the valuation model algorithm (e.g. 1.0) | — |
intrinsic_value | DOUBLE | valuation | Total enterprise / equity value implied by the model (currency) | — |
per_share_value | DOUBLE | valuation | intrinsic_value / shares_outstanding — the model's fair-value estimate per share | — |
margin_of_safety | DOUBLE | valuation | (per_share_value - current_price) / per_share_value. >0 = undervalued. | — |
valuation_label | VARCHAR | valuation | Human-readable bucket — 'undervalued' / 'fairly_valued' / 'overvalued' | — |
base_earnings | DOUBLE | valuation | DCF: trailing FCF base. DDM: trailing dividend base. | — |
growth_rate | DOUBLE | valuation | Stage-1 growth rate | — |
terminal_rate | DOUBLE | valuation | Terminal-stage growth rate | — |
discount_rate | DOUBLE | valuation | WACC for DCF; cost of equity for DDM | — |
growth_years | INTEGER | valuation | Stage-1 horizon in years | — |
terminal_years | INTEGER | valuation | Years modeled in the terminal phase before the perpetuity | — |
shares_outstanding | BIGINT | valuation | Diluted shares outstanding used to convert total equity value to a per-share figure | — |
current_price | DOUBLE | valuation | Market price used to compute margin_of_safety. NULL when the pipeline could not source a quote — margin_of_safety is then NULL too. | — |
base_dividend | DOUBLE | valuation | DDM only: trailing dividend base | — |
dividend_growth_rate | DOUBLE | valuation | DDM only: expected long-term dividend growth rate | — |
payout_ratio | DOUBLE | valuation | Dividend payout ratio (dividends ÷ earnings) | — |
data_quality | VARCHAR | valuation | Pipeline-assigned label — 'reported' | 'estimated' | 'low_confidence' | — |
source_period | VARCHAR | valuation | Which fiscal period (e.g. FY2024, TTM) supplied base_earnings | — |
assumptions | JSON | valuation | Full input bundle for the model — base_earnings, discount_rate, growth_rate, terminal_growth_rate, etc. Use to reproduce the calc. | — |
created_at | TIMESTAMPTZ | valuation | Timestamp when this valuation record was first computed | — |
updated_at | TIMESTAMPTZ | valuation | Timestamp when this valuation record was last recomputed (ON CONFLICT DO UPDATE) | — |
standard_concept | VARCHAR | taxonomy_guide | Canonical concept name (primary key) — matches fact.standard_concept for joins | — |
human_name | VARCHAR | taxonomy_guide | Human-readable display name for the concept (e.g. Total Revenue) | — |
definition | VARCHAR | taxonomy_guide | Plain-English definition of what this financial concept measures | — |
unit_type | VARCHAR | taxonomy_guide | Expected unit of measure: monetary, shares, ratio, pure, etc. | — |
balance_type | VARCHAR | taxonomy_guide | Accounting balance type: debit or credit | — |
source_reference | VARCHAR | taxonomy_guide | US-GAAP taxonomy reference identifier for this concept | — |
id | INTEGER | index_membership | Surrogate primary key | — |
cik | VARCHAR | index_membership | Foreign key to entity.cik — the index constituent. JOIN with references on cik = cik (same column name on both sides since migration 0015). | dei:EntityCentralIndexKey |
index_name | VARCHAR | index_membership | Canonical short code: SP500 | NASDAQ100 | RUSSELL3000 | WILSHIRE5000 | — |
effective_date | DATE | index_membership | First trading day the company traded as a member | — |
announcement_date | DATE | index_membership | Date S&P Dow Jones Indices publicly announced the addition. Typically 5–10 trading days before effective_date. NULL on rows from Wikipedia/GitHub seed/IVV daily layers — only the S&P press release scraper populates this. | — |
removal_date | DATE | index_membership | First trading day the company was NOT a member. NULL = current. [) interval semantics — a company removed on 2017-06-19 is NOT a member on 2017-06-19. | — |
removal_announcement_date | DATE | index_membership | Date the removal was publicly announced; symmetric with announcement_date. NULL when only Wikipedia/IVV layers wrote the row. | — |
removal_reason | VARCHAR | index_membership | merger | acquisition | bankruptcy | criteria | spinoff | other. NULL when removal_date IS NULL. | — |
successor_cik | VARCHAR | index_membership | Acquirer CIK when removal_reason in {merger, acquisition}. Essential for backtests crossing M&A — without it, a stock disappearing looks indistinguishable from a delisting. | — |
source | VARCHAR | index_membership | Provenance: wikipedia | ivv | spglobal_press | github_seed | manual | — |
confidence | VARCHAR | index_membership | high | medium | low. Used by get_pit_universe to set pit_safe automatically — pre-2000 dates default to 'low'. | — |
notes | VARCHAR | index_membership | Free-text annotation | — |
ingested_at | TIMESTAMPTZ | index_membership | Timestamp when Valuein first ingested this membership row | — |
updated_at | TIMESTAMPTZ | index_membership | Timestamp when this membership row was last updated | — |
cik | VARCHAR | references | SEC Central Index Key — 10-digit unique company identifier (from entity) | dei:EntityCentralIndexKey |
name | VARCHAR | references | Legal registered company name (from entity) | dei:EntityRegistrantName |
sector | VARCHAR | references | Broad market sector (from entity) | — |
industry | VARCHAR | references | Industry classification description (from entity) | — |
sic_code | VARCHAR | references | Standard Industrial Classification code 4-digit (from entity) | dei:EntitySICCode |
status | VARCHAR | references | Entity status: ACTIVE, INACTIVE, or DELISTED (from entity) | — |
entity_type | VARCHAR | references | SEC-defined filer category (from entity) | — |
security_id | INTEGER | references | Surrogate PK of the security record (from security) | — |
symbol | VARCHAR | references | Exchange ticker symbol (from security) | dei:TradingSymbol |
exchange | VARCHAR | references | Stock exchange name e.g. NASDAQ, NYSE (from security) | — |
mic | VARCHAR | references | Market Identification Code ISO 10383 (from security) | — |
valid_from | DATE | references | SCD Type 2 start date — when this ticker became active (from security) | — |
valid_to | DATE | references | SCD Type 2 end date — NULL means currently active (from security) | — |
is_active | BOOLEAN | references | TRUE when valid_to IS NULL — use to filter current tickers only (from security). For index membership, JOIN index_membership ON references.cik = index_membership.cik — there is no is_sp500 flag (dropped 2026-05-02 because it was snapshot-only and single-index). | — |
figi | VARCHAR | references | Financial Instrument Global Identifier share-class level (from security) | — |
composite_figi | VARCHAR | references | Composite FIGI at the exchange level (from security) | — |
share_class_figi | VARCHAR | references | Share class FIGI (from security) | — |
entity_id | VARCHAR | ratio | Foreign key to entity.cik | dei:EntityCentralIndexKey |
ratio_name | VARCHAR | ratio | Ratio identifier (e.g. roe, gross_margin, debt_to_equity) | — |
category | VARCHAR | ratio | Groups ratios for filtering: profitability | per_share | liquidity | leverage | efficiency | owner_earnings | valuation | — |
value | DOUBLE | ratio | Numeric value of the ratio. Inspect `unit` for the scale (percent vs decimal vs multiple). | — |
unit | VARCHAR | ratio | Unit: percent | per_share | pure | x | — |
period_end | DATE | ratio | Reporting period end date the ratio was computed for | — |
fiscal_year | INTEGER | ratio | Fiscal year of the underlying period | — |
fiscal_period | VARCHAR | ratio | FY | Q1 | Q2 | Q3 | Q4 | TTM | — |
is_ttm | BOOLEAN | ratio | TRUE for trailing-twelve-months rows | — |
computed_at | TIMESTAMPTZ | ratio | Pipeline-run timestamp the ratio was last computed (NOT a PIT field — recomputed on every pipeline run via ON CONFLICT DO UPDATE). | — |
Showing 178 of 178 fields
Standard Concepts
The canonical standard_concept dictionary — 291 normalized financial concepts that 11,966 raw XBRL tags map onto. Filter fact.standard_concept by any of these for clean, comparable cross-company queries.
| Concept | Name | Statement | Definition |
|---|---|---|---|
AntidilutiveShares | Antidilutive Shares | Income Statement | Shares excluded from diluted EPS as antidilutive. |
ClaimsAndBenefits | Claims And Benefits | Income Statement | Insurance claims and policyholder benefits incurred. |
ClinicalTrialCosts | Clinical Trial Costs | Income Statement | Costs incurred running clinical trials. Not always disclosed as a separate line — often embedded in R&D. When broken out, reveals development-stage focus. |
CostOfRevenue | Cost Of Revenue | Income Statement | Direct costs attributable to revenue generation (COGS + COS). |
CurrentIncomeTaxExpense | Current Income Tax Expense | Income Statement | Aggregated current-period income tax expense (federal + state + foreign). Distinct from the deferred-tax component, which moves through DeferredTaxExpense. Companies that report only an aggregated figure surface here; per-jurisdiction filers expose CurrentTaxFederal / CurrentTaxState / CurrentTaxForeign. |
CurrentTaxFederal | Current Tax Federal | Income Statement | Federal/national current income tax. |
CurrentTaxForeign | Current Tax Foreign | Income Statement | Foreign jurisdiction current income tax. |
CurrentTaxState | Current Tax State | Income Statement | State and local current income tax. |
DeferredTaxExpense | Deferred Tax Expense | Income Statement | Deferred income tax provision from timing differences. |
DepletionExpense | Depletion Expense | Income Statement | Period write-down of natural-resource asset basis based on units extracted. Energy/mining specific cousin of depreciation. |
DepreciationAndAmortization | Depreciation And Amortization | Income Statement | D&A expense from income statement or supplemental disclosure. |
DiscontinuedOpsIncome | Discontinued Ops Income | Income Statement | Net income from discontinued business segments. |
DividendPerShare | Dividend Per Share | Income Statement | Cash dividends declared per common share. |
EPSBasic | EPS Basic | Income Statement | Basic earnings per share (US-GAAP + IFRS). |
EPSBasicAndDiluted | EPS Basic And Diluted | Income Statement | Combined basic and diluted EPS (equal when no dilutive securities). |
EPSContinuingOpsBasic | EPS Continuing Ops Basic | Income Statement | Basic EPS from continuing operations. |
EPSContinuingOpsDiluted | EPS Continuing Ops Diluted | Income Statement | Diluted EPS from continuing operations. |
EPSDiluted | EPS Diluted | Income Statement | Diluted earnings per share — most conservative, standard for valuation. |
EPSDiscontinuedOps | EPS Discontinued Ops | Income Statement | EPS from discontinued operations. |
EffectiveTaxRate | Effective Tax Rate | Income Statement | Effective income tax rate. |
EquityMethodIncome | Equity Method Income | Income Statement | Share of income from unconsolidated affiliates (20-50% ownership). |
ExplorationCosts | Exploration Costs | Income Statement | Cost of exploring for new oil/gas/mineral reserves. Often written off in the period (successful efforts vs full cost accounting choice matters here). |
ExplorationExpense | Exploration Expense | Income Statement | Exploration costs for extractive industries (oil/gas, mining). |
FederalIncomeTax | Federal Income Tax | Income Statement | US Federal income tax expense/benefit (current + deferred). |
FeesAndCommissions | Fees And Commissions | Income Statement | Fee and commission income for financial institutions. |
ForeignCurrencyGainLoss | Foreign Currency Gain Loss | Income Statement | FX translation and transaction gains/losses. |
ForeignIncomeTax | Foreign Income Tax | Income Statement | Foreign income tax expense/benefit. |
GainLossOnAssetSale | Gain Loss On Asset Sale | Income Statement | Gains/losses on asset dispositions and debt extinguishments. |
GainLossOnInvestments | Gain Loss On Investments | Income Statement | Realized and unrealized gains/losses on investment securities. |
GeneralAndAdmin | General And Admin | Income Statement | G&A — corporate overhead, management, office costs. |
GrossProfit | Gross Profit | Income Statement | IFRS gross profit — revenue minus cost of sales. |
ImpairmentCharges | Impairment Charges | Income Statement | Asset write-downs to fair value (goodwill, intangibles, PP&E). |
InProcessRD | In Process RD | Income Statement | In-process research & development acquired in M&A. Charged off at acquisition under US GAAP if abandoned; otherwise capitalized. |
IncomeContinuingOps | Income Continuing Ops | Income Statement | Net income from continuing operations. |
IncomeTaxExpense | Income Tax Expense | Income Statement | Total income tax provision (current + deferred). |
InsuranceCommissions | Insurance Commissions | Income Statement | Insurance brokerage commissions earned. |
InsurancePremiums | Insurance Premiums | Income Statement | Net insurance premiums earned. |
InterestExpense | Interest Expense | Income Statement | Cost of debt financing. Bloomberg: IS_INT_EXPENSE. |
InterestExpenseBank | Interest Expense Bank | Income Statement | Interest expense on deposits for banks. |
InterestExpenseNet | Interest Expense Net | Income Statement | Net interest expense (interest expense minus interest income). |
InterestIncome | Interest Income | Income Statement | Interest and dividend income from investments. |
InterestIncomeBank | Interest Income Bank | Income Statement | Operating interest income for banks and financial institutions. |
LaborExpense | Labor Expense | Income Statement | IFRS wages & salaries — maps to LaborExpense bucket. |
MilestonePaymentsRevenue | Milestone Payments Revenue | Income Statement | Upfront / milestone / royalty payments under licensing or collaboration agreements (often with big-pharma partners). |
NetChargeOffs | Net Charge Offs | Income Statement | Net charge-offs against loan loss reserve (bank asset quality). |
NetIncome | Net Income | Income Statement | IFRS profit/loss for the period. Strict prevents OCI contamination. |
NetIncomeNCI | Net Income NCI | Income Statement | Net income attributable to non-controlling (minority) interests. |
NetIncomeToCommon | Net Income To Common | Income Statement | IFRS profit/loss attributable to parent-company owners. |
NetInterestIncome | Net Interest Income | Income Statement | Net interest income/margin — primary bank revenue metric. |
NetPeriodicBenefitCost | Net Periodic Benefit Cost | Income Statement | Pension / OPEB net periodic benefit cost (per ASC 715). |
NonInterestExpense | Non Interest Expense | Income Statement | Non-interest operating expense for banks (salaries, tech, rent). |
NonInterestIncome | Non Interest Income | Income Statement | Fee-based and trading income for financial institutions. |
OperatingExpenses | Operating Expenses | Income Statement | Total operating expenses (SGA + R&D + D&A + other operating). |
OperatingIncome | Operating Income | Income Statement | IFRS operating profit. Not mandated; not all IFRS filers report this. |
OtherIncome | Other Income | Income Statement | Single ``Other Income'' line — issuer-disclosed bucket for non-operating income items not otherwise classified. Use OtherNonOperating for the netted version. |
OtherNonOperating | Other Non Operating | Income Statement | Miscellaneous non-operating income/expense. |
OtherOperatingExpense | Other Operating Expense | Income Statement | Miscellaneous operating expenses not classified elsewhere. |
OtherRevenue | Other Revenue | Income Statement | Revenue not classified in primary categories. |
PolicyAcquisitionCosts | Policy Acquisition Costs | Income Statement | Insurance policy acquisition costs (commissions, underwriting). |
PretaxIncome | Pretax Income | Income Statement | Earnings before income taxes (EBT). Bloomberg: IS_INC_BEF_TAX. |
ProfessionalFees | Professional Fees | Income Statement | Legal, audit, consulting, and professional service costs. |
ProvisionForLoanLosses | Provision For Loan Losses | Income Statement | Bank provision for credit losses on loans/leases. |
RentAndOccupancy | Rent And Occupancy | Income Statement | Lease, rent, and occupancy expense. |
ResearchAndDevelopment | Research And Development | Income Statement | R&D expense — forward-looking innovation investment indicator. |
RestructuringCharges | Restructuring Charges | Income Statement | One-time reorganization, layoff, and facility closure costs. |
SBCDilutiveAdjustment | SBC Dilutive Adjustment | Income Statement | Adjustment to weighted-average diluted shares for option / RSU / warrant dilution. Equals WeightedAvgSharesDiluted minus WeightedAvgSharesBasic. |
SellingAndMarketing | Selling And Marketing | Income Statement | Sales, marketing, and advertising costs. |
SellingGeneralAdmin | Selling General Admin | Income Statement | SG&A — combined selling, general and administrative overhead. |
StateAndLocalIncomeTax | State And Local Income Tax | Income Statement | State and local income tax expense/benefit. |
StatutoryTaxRate | Statutory Tax Rate | Income Statement | Statutory federal income tax rate from the rate-reconciliation footnote (21% post-TCJA, 35% pre-2018). |
SubscriptionRevenue | Subscription Revenue | Income Statement | Recurring revenue from SaaS subscriptions. Not a standardized XBRL tag — companies disclose under various extensions; mostly reachable through the cost-of-revenue product/service split. |
TotalCostsAndExpenses | Total Costs And Expenses | Income Statement | Total costs and expenses before non-operating items. |
TotalRevenue | Total Revenue | Income Statement | Total top-line revenue recognized. Strict full-tag equality keeps the concept free of ASC 606 contract-disclosure subtotals, deferred revenue, sales-type lease accounting, and available-for-sale investment disclosures that share the 'Revenue' / 'Sales' substring but are not top-line income. |
TradingRevenue | Trading Revenue | Income Statement | Trading revenue and gains/losses from securities trading. |
WeightedAvgSharesBasic | Weighted Avg Shares Basic | Income Statement | Weighted average basic shares outstanding. |
WeightedAvgSharesDiluted | Weighted Avg Shares Diluted | Income Statement | Weighted average diluted shares outstanding. |
AOCI | AOCI | Balance Sheet | Accumulated other comprehensive income/loss balance. |
AccountsPayable | Accounts Payable | Balance Sheet | IFRS trade & other current payables. |
AccountsPayableAndAccrued | Accounts Payable And Accrued | Balance Sheet | Combined accounts payable and accrued liabilities. |
AccountsReceivable | Accounts Receivable | Balance Sheet | IFRS trade & other current receivables. |
AccruedExpenses | Accrued Expenses | Balance Sheet | Accrued liabilities (salaries, interest, utilities). |
AccumulatedAmortization | Accumulated Amortization | Balance Sheet | Accumulated amortization on finite-lived intangible assets. |
AccumulatedDepreciation | Accumulated Depreciation | Balance Sheet | Total accumulated depreciation on PP&E. |
AdditionalPaidInCapital | Additional Paid In Capital | Balance Sheet | Excess of issue price over par value on equity issuances. |
AllowanceForDoubtfulAccounts | Allowance For Doubtful Accounts | Balance Sheet | Reserve against uncollectible receivables. |
AssetRetirementObligation | Asset Retirement Obligation | Balance Sheet | Asset retirement obligation liability (ASC 410) — present value of legally-required asset decommissioning, restoration, or environmental remediation costs. |
AvailableForSaleSecurities | Available For Sale Securities | Balance Sheet | Securities classified as available-for-sale (AFS) under ASC 320 — neither held-to-maturity nor trading. Carried at fair value with unrealized gains/losses in OCI. |
CapitalizedSoftwareCosts | Capitalized Software Costs | Balance Sheet | Capitalized internally developed software. Amortized over the expected useful life (typically 3–5 years). |
CashAndEquivalents | Cash And Equivalents | Balance Sheet | Cash and short-term deposits (maturity < 3 months). |
CommonSharesAuthorized | Common Shares Authorized | Balance Sheet | Maximum shares authorized per corporate charter. |
CommonSharesIssued | Common Shares Issued | Balance Sheet | Total common shares issued (including treasury). |
CommonSharesOutstanding | Common Shares Outstanding | Balance Sheet | Common shares currently outstanding (issued minus treasury). |
CommonStockParValue | Common Stock Par Value | Balance Sheet | Par or stated value per common share. |
CommonStockValue | Common Stock Value | Balance Sheet | IFRS issued share capital — analogous to GAAP CommonStockValue. |
ContractAssets | Contract Assets | Balance Sheet | ASC 606 contract assets — earned but unbilled revenue. Common in multi-year SaaS contracts billed annually but recognized monthly. |
CurrentAssets | Current Assets | Balance Sheet | Total current assets (convertible within 12 months). |
CurrentLiabilities | Current Liabilities | Balance Sheet | IFRS current liabilities. |
CurrentPortionLTD | Current Portion LTD | Balance Sheet | Long-term debt maturing within 12 months. |
DeferredAcquisitionCosts | Deferred Acquisition Costs | Balance Sheet | Deferred policy acquisition costs (insurance DAC asset). |
DeferredFinanceCostsNet | Deferred Finance Costs Net | Balance Sheet | Unamortized debt-issuance costs presented as a contra-liability to long-term debt (ASU 2015-03). Material for issuers with frequent debt refinancings. |
DeferredRevenueCurrent | Deferred Revenue Current | Balance Sheet | Contract liabilities / deferred revenue (current). |
DeferredRevenueNoncurrent | Deferred Revenue Noncurrent | Balance Sheet | Long-term deferred revenue / contract liabilities. |
DeferredTaxAssetsGross | Deferred Tax Assets Gross | Balance Sheet | Total deferred tax assets before valuation allowance. Pair with DeferredTaxValuationAllowance to get DeferredTaxAssetsNet. |
DeferredTaxAssetsLiabNet | Deferred Tax Assets Liab Net | Balance Sheet | Net deferred tax position (DTA − DTL) reported as a single line. Most filers post-ASU 2015-17 net everything to noncurrent; legacy current vs. noncurrent split aliases are folded in here. |
DeferredTaxAssetsNOL | Deferred Tax Assets NOL | Balance Sheet | DTA from net operating loss carryforwards. |
DeferredTaxAssetsNet | Deferred Tax Assets Net | Balance Sheet | Net deferred tax assets. |
DeferredTaxAssetsOther | Deferred Tax Assets Other | Balance Sheet | Deferred tax assets from sources not separately disclosed. |
DeferredTaxLiabNoncurrent | Deferred Tax Liab Noncurrent | Balance Sheet | Deferred tax liabilities (non-current). |
DeferredTaxLiabilities | Deferred Tax Liabilities | Balance Sheet | Total deferred tax liabilities (gross), before netting against deferred tax assets. Net version is DeferredTaxLiabNoncurrent. |
DeferredTaxLiabilitiesOther | Deferred Tax Liabilities Other | Balance Sheet | Deferred tax liabilities from sources not separately disclosed. |
DeferredTaxValuationAllowance | Deferred Tax Valuation Allowance | Balance Sheet | Valuation allowance against deferred tax assets. |
Deposits | Deposits | Balance Sheet | Customer deposits — primary funding source for banks. |
DerivativeAssets | Derivative Assets | Balance Sheet | Fair value of derivative instruments held as assets. |
DerivativeLiabilities | Derivative Liabilities | Balance Sheet | Fair value of derivative instruments held as liabilities. |
DueToRelatedParties | Due To Related Parties | Balance Sheet | Amounts owed to related parties. |
EquityMethodInvestments | Equity Method Investments | Balance Sheet | Equity method investees (20-50% ownership stakes). |
FederalFundsPurchased | Federal Funds Purchased | Balance Sheet | Fed funds purchased and repos for banks. |
FederalFundsSold | Federal Funds Sold | Balance Sheet | Fed funds sold and reverse repos for banks. |
FederalHomeLoanBankAdvances | Federal Home Loan Bank Advances | Balance Sheet | FHLB advances — wholesale funding for banks. |
Goodwill | Goodwill | Balance Sheet | Acquisition goodwill — excess of purchase price over fair value. |
IntangibleAssetsGross | Intangible Assets Gross | Balance Sheet | Intangible assets at historical cost. |
IntangibleAssetsNet | Intangible Assets Net | Balance Sheet | Intangible assets (patents, trademarks, etc.) net of amortization. |
InterestPayable | Interest Payable | Balance Sheet | Accrued interest on debt not yet paid. |
Inventory | Inventory | Balance Sheet | Total inventories held for sale. |
InventoryFinishedGoods | Inventory Finished Goods | Balance Sheet | Finished goods inventory (ready for sale). |
InventoryRawMaterials | Inventory Raw Materials | Balance Sheet | Raw material inventory (unprocessed inputs). |
InventoryWIP | Inventory WIP | Balance Sheet | Work-in-process inventory (partially completed). |
LoanLossAllowance | Loan Loss Allowance | Balance Sheet | Allowance for credit losses on loans and leases (banks). |
LoansReceivable | Loans Receivable | Balance Sheet | Total loans and leases receivable for banks. |
LongTermDebt | Long Term Debt | Balance Sheet | Long-term debt due after 12 months. The CurrentPortionLTD rule (earlier in the list) catches LongTermDebtCurrent first via tie-break ordering. |
LongTermInvestments | Long Term Investments | Balance Sheet | Non-current investment securities. |
MinorityInterest | Minority Interest | Balance Sheet | IFRS non-controlling (minority) interests in equity. |
NotesPayableCurrent | Notes Payable Current | Balance Sheet | Short-term notes payable (typically < 12 months). Distinct from accounts payable — these are formal promissory notes. |
OperatingLeaseLiabCurrent | Operating Lease Liab Current | Balance Sheet | Current portion of operating lease obligations (ASC 842). |
OperatingLeaseLiabNoncurrent | Operating Lease Liab Noncurrent | Balance Sheet | IFRS non-current lease liability (IFRS 16). |
OperatingLeaseLiabTotal | Operating Lease Liab Total | Balance Sheet | Total operating lease liability. |
OtherAssets | Other Assets | Balance Sheet | Single ``Other Assets`` line item — neither current nor non-current splits. Used by issuers that report a flat ``Other Assets`` total. For the explicitly-current and explicitly-non-current variants use OtherCurrentAssets / OtherNoncurrentAssets. |
OtherCurrentAssets | Other Current Assets | Balance Sheet | Current assets not classified elsewhere. |
OtherCurrentLiabilities | Other Current Liabilities | Balance Sheet | Current liabilities not classified elsewhere. |
OtherLiabilities | Other Liabilities | Balance Sheet | Single ``Other Liabilities`` line — used by issuers that don't split current vs non-current. See OtherCurrentLiabilities / OtherNoncurrentLiabilities for the split variants. |
OtherNoncurrentAssets | Other Noncurrent Assets | Balance Sheet | Non-current assets not classified elsewhere. |
OtherNoncurrentLiabilities | Other Noncurrent Liabilities | Balance Sheet | Non-current liabilities not classified elsewhere. |
PPEGross | PPE Gross | Balance Sheet | PP&E at historical cost before accumulated depreciation. |
PPENet | PPE Net | Balance Sheet | Net PP&E after accumulated depreciation. |
PatentsCarryingValue | Patents Carrying Value | Balance Sheet | Net carrying value of acquired or licensed patents. |
PensionLiabilities | Pension Liabilities | Balance Sheet | Defined benefit pension and postretirement obligations. |
PensionPlanFundedStatus | Pension Plan Funded Status | Balance Sheet | Pension plan assets minus PBO (funded status). |
PolicyLiabilities | Policy Liabilities | Balance Sheet | Insurance policy liabilities and unpaid claims reserves. |
PreferredSharesOutstanding | Preferred Shares Outstanding | Balance Sheet | Preferred shares outstanding / issued / authorized. |
PreferredStockParValue | Preferred Stock Par Value | Balance Sheet | Par or stated value per preferred share. |
PreferredStockValue | Preferred Stock Value | Balance Sheet | Total value of preferred shares issued. |
PrepaidExpenses | Prepaid Expenses | Balance Sheet | Advance payments for future expenses. |
ProjectedBenefitObligation | Projected Benefit Obligation | Balance Sheet | Pension / OPEB projected benefit obligation. |
ReinsuranceRecoverable | Reinsurance Recoverable | Balance Sheet | Amounts recoverable from reinsurers. |
RestructuringReserve | Restructuring Reserve | Balance Sheet | Liability for future restructuring costs (severance, lease exit, contract termination) accrued under ASC 420 / IAS 37. Movement feeds the income statement RestructuringCharges line. |
RetainedEarnings | Retained Earnings | Balance Sheet | Cumulative undistributed earnings. |
RightOfUseAssetFinance | Right Of Use Asset Finance | Balance Sheet | Finance lease right-of-use asset. |
RightOfUseAssetOperating | Right Of Use Asset Operating | Balance Sheet | Operating lease right-of-use asset (ASC 842). |
SeparateAccountAssets | Separate Account Assets | Balance Sheet | Policyholder assets held in separate accounts (life insurance). |
ShortTermDebt | Short Term Debt | Balance Sheet | Short-term borrowings and credit lines. |
ShortTermInvestments | Short Term Investments | Balance Sheet | Marketable securities and short-term investment holdings. |
StockholdersEquity | Stockholders Equity | Balance Sheet | Parent-only stockholders' equity (excludes NCI). |
StockholdersEquityIncludingNCI | Stockholders Equity Including NCI | Balance Sheet | Total stockholders' equity including non-controlling interest — institutional total book value. |
TaxPayable | Tax Payable | Balance Sheet | Current income taxes owed to tax authorities. |
TemporaryEquity | Temporary Equity | Balance Sheet | Mezzanine/temporary equity — redeemable equity between debt and equity. |
TotalAssets | Total Assets | Balance Sheet | Total assets. Must equal Total Liabilities + Equity. |
TotalCurrentLiabilities | Total Current Liabilities | Balance Sheet | Total current liabilities. |
TotalDebt | Total Debt | Balance Sheet | Total interest-bearing debt obligations. |
TotalLiabilities | Total Liabilities | Balance Sheet | Total liabilities. Strict prevents sub-category double-counting. |
TotalLiabilitiesAndEquity | Total Liabilities And Equity | Balance Sheet | Must equal Total Assets (accounting identity). |
TotalNoncurrentAssets | Total Noncurrent Assets | Balance Sheet | Sum of non-current (long-term) assets. Reciprocal of CurrentAssets; together they sum to TotalAssets. Reported directly by some issuers (us-gaap:AssetsNoncurrent) and derivable as TotalAssets − CurrentAssets when not reported. |
TotalNoncurrentLiabilities | Total Noncurrent Liabilities | Balance Sheet | Total non-current liabilities. |
TreasuryShares | Treasury Shares | Balance Sheet | Number of common shares held in treasury. |
TreasuryStock | Treasury Stock | Balance Sheet | Cost of repurchased shares held in treasury (contra-equity). |
UnearnedPremiums | Unearned Premiums | Balance Sheet | Insurance premiums collected but not yet earned. |
AccountsPayableChange | Accounts Payable Change | Cash Flow | Working capital: accounts payable change. |
AccountsReceivableChange | Accounts Receivable Change | Cash Flow | Working capital: accounts receivable change. |
AccrualsChange | Accruals Change | Cash Flow | Working capital: accrued liabilities change. |
Acquisitions | Acquisitions | Cash Flow | Cash paid for business acquisitions (M&A). |
BadDebtProvision | Bad Debt Provision | Cash Flow | Credit loss provision (CF add-back). |
CAPEX | CAPEX | Cash Flow | Capital expenditures — PP&E purchases (cash out). Key input for FCF. |
CommonStockIssuance | Common Stock Issuance | Cash Flow | Cash proceeds from issuing common stock — IPO, secondary, follow-on offering. |
DebtIssuance | Debt Issuance | Cash Flow | Cash received from issuing debt. |
DebtIssuanceCosts | Debt Issuance Costs | Cash Flow | Fees and costs paid for issuing debt. |
DebtRepayment | Debt Repayment | Cash Flow | Cash used to repay debt obligations. |
DeferredRevenueChange | Deferred Revenue Change | Cash Flow | Working capital: deferred revenue change. |
DeferredTaxNonCash | Deferred Tax Non Cash | Cash Flow | Non-cash deferred tax provision (CF add-back). |
Divestitures | Divestitures | Cash Flow | Cash received from divesting businesses or subsidiaries. Mirror of Acquisitions; together they bracket net M&A activity (the ``net_ma_activity`` field in get_capital_allocation_profile). |
Dividends | Dividends | Cash Flow | Cash dividends paid to shareholders. |
EffectOfExchangeRateOnCash | Effect Of Exchange Rate On Cash | Cash Flow | Currency translation impact on cash position. |
EquityIssuance | Equity Issuance | Cash Flow | Cash from issuing equity (preferred, capital stock, private placement). For common stock specifically, see CommonStockIssuance. |
ExcessTaxBenefitFromSBC | Excess Tax Benefit From SBC | Cash Flow | Tax benefit realised on SBC in excess of grant-date expense. |
FXEffectOnCash | FX Effect On Cash | Cash Flow | Foreign exchange rate impact on cash balances. |
FinancingCashFlow | Financing Cash Flow | Cash Flow | Net cash from financing activities. |
GoodwillAcquired | Goodwill Acquired | Cash Flow | Goodwill recognized during the period from business combinations. A direct signal of M&A activity; complements the existing Acquisitions cash-outflow canonical. |
IntangiblesPurchase | Intangibles Purchase | Cash Flow | Cash spent on intangible assets (patents, software, licenses). |
InterestPaidCash | Interest Paid Cash | Cash Flow | Cash interest paid (supplemental disclosure). |
InterestPayableChange | Interest Payable Change | Cash Flow | Working capital: interest payable change. |
InventoryChange | Inventory Change | Cash Flow | Working capital: inventory change. |
InvestingCashFlow | Investing Cash Flow | Cash Flow | Net cash from investing activities. |
InvestmentsPurchase | Investments Purchase | Cash Flow | Cash used to purchase investment securities. |
InvestmentsSale | Investments Sale | Cash Flow | Proceeds from selling/maturing investment securities. |
MinorityDistributions | Minority Distributions | Cash Flow | Dividends/distributions paid to non-controlling interest holders. |
NetChangeInCash | Net Change In Cash | Cash Flow | Total increase/decrease in cash during the period. |
OperatingCashFlow | Operating Cash Flow | Cash Flow | Net cash from operating activities. Bloomberg: CF_CASH_FROM_OPER. |
OtherNonCashCharges | Other Non Cash Charges | Cash Flow | Other non-cash adjustments to net income. |
PPESale | PPE Sale | Cash Flow | Proceeds from selling PP&E or productive assets. |
PrepaidExpensesChange | Prepaid Expenses Change | Cash Flow | Working capital: prepaid expense change. |
ROUAssetForNewLeases | ROU Asset For New Leases | Cash Flow | Non-cash: ROU assets obtained for new operating lease liabilities. |
RestrictedCashChange | Restricted Cash Change | Cash Flow | Period change in restricted cash — reconciling item in CF statement. |
SBCTaxWithholding | SBC Tax Withholding | Cash Flow | Tax withholding payments related to equity award settlement. |
ShareBuyback | Share Buyback | Cash Flow | Cash spent repurchasing company shares. |
StockBasedCompensation | Stock Based Compensation | Cash Flow | IFRS share-based payment adjustment in the operating cash-flow reconciliation. |
StockOptionExercise | Stock Option Exercise | Cash Flow | Cash received from employees exercising stock options. |
TaxesPaidCash | Taxes Paid Cash | Cash Flow | Cash income taxes paid (supplemental disclosure). |
ComprehensiveIncome | Comprehensive Income | Comprehensive Income | Net income + OCI. Total change in equity from non-owner sources. |
ComprehensiveIncomeNCI | Comprehensive Income NCI | Comprehensive Income | Comprehensive income attributable to non-controlling interests. |
OCICashFlowHedges | OCI Cash Flow Hedges | Comprehensive Income | OCI — effective portion of cash flow hedge gains/losses. |
OCIForeignCurrency | OCI Foreign Currency | Comprehensive Income | OCI — foreign currency translation adjustments. |
OCIPensions | OCI Pensions | Comprehensive Income | OCI — pension and postretirement benefit plan adjustments. |
OCISecurities | OCI Securities | Comprehensive Income | OCI — unrealized gains/losses on available-for-sale securities. |
OtherComprehensiveIncome | Other Comprehensive Income | Comprehensive Income | Total OCI net of tax. |
ReclassificationFromAOCI | Reclassification From AOCI | Comprehensive Income | Amounts reclassified out of AOCI into net income this period. |
AdjustedFundsFromOperations | Adjusted Funds From Operations | Supplemental | AFFO = FFO − recurring CapEx − straight-line rent adjustments. Closer to free-cash-flow-per-share than FFO. |
CombinedRatio | Combined Ratio | Supplemental | Combined ratio — loss ratio + expense ratio. Below 100% = underwriting profit. |
ContingentConsiderationChange | Contingent Consideration Change | Supplemental | Fair-value re-measurement of earnout / contingent consideration. |
DebtMaturityThereafter | Debt Maturity Thereafter | Supplemental | Long-term debt principal repayments due after year 5. |
DebtMaturityY1 | Debt Maturity Y1 | Supplemental | Long-term debt principal repayments due within 12 months. |
DebtMaturityY2 | Debt Maturity Y2 | Supplemental | Long-term debt principal repayments due in year 2. |
DebtMaturityY3 | Debt Maturity Y3 | Supplemental | Long-term debt principal repayments due in year 3. |
DebtMaturityY4 | Debt Maturity Y4 | Supplemental | Long-term debt principal repayments due in year 4. |
DebtMaturityY5 | Debt Maturity Y5 | Supplemental | Long-term debt principal repayments due in year 5. |
DefinedContributionCost | Defined Contribution Cost | Supplemental | 401(k) and other defined contribution plan expense. |
FundsFromOperations | Funds From Operations | Supplemental | NAREIT FFO: Net income + Real estate D&A − Gains on property sales. The standard REIT earnings proxy. AFFO subtracts recurring CapEx to approximate distributable cash. |
IncrementalDilutiveShares | Incremental Dilutive Shares | Supplemental | Additional shares from dilutive securities (options, RSUs, convertibles). |
IntangibleAmortizationThereafter | Intangible Amortization Thereafter | Supplemental | Expected amortization expense for finite-lived intangibles after year 5. |
IntangibleAmortizationY1 | Intangible Amortization Y1 | Supplemental | Expected amortization expense for finite-lived intangibles in the next 12 months. |
IntangibleAmortizationY2 | Intangible Amortization Y2 | Supplemental | Expected amortization expense for finite-lived intangibles in year 2. |
IntangibleAmortizationY3 | Intangible Amortization Y3 | Supplemental | Expected amortization expense for finite-lived intangibles in year 3. |
IntangibleAmortizationY4 | Intangible Amortization Y4 | Supplemental | Expected amortization expense for finite-lived intangibles in year 4. |
IntangibleAmortizationY5 | Intangible Amortization Y5 | Supplemental | Expected amortization expense for finite-lived intangibles in year 5. |
LineOfCreditMax | Line Of Credit Max | Supplemental | Maximum (committed) borrowing capacity under all revolving credit facilities. Standard credit-strength metric; the drawn portion sits in ShortTermDebt or LongTermDebt depending on maturity. |
LossRatio | Loss Ratio | Supplemental | Insurance loss ratio — claims/benefits as % of premiums. |
NetOperatingIncome | Net Operating Income | Supplemental | Property rental revenue − property operating expenses (excludes D&A, interest, G&A). Same-store NOI growth is the canonical REIT operational metric. |
NonperformingLoans | Nonperforming Loans | Supplemental | Loans on non-accrual status (bank asset quality metric). |
NumberOfEmployees | Number Of Employees | Supplemental | Total full-time equivalent employees. |
NumberOfSegments | Number Of Segments | Supplemental | Number of reportable operating segments. |
OccupancyRate | Occupancy Rate | Supplemental | Percentage of total rentable square footage currently leased. |
OilProduction | Oil Production | Supplemental | Crude oil produced during the period. |
OperatingLeaseCashPayments | Operating Lease Cash Payments | Supplemental | Cash paid for operating lease liabilities. |
OperatingLeaseImputedInterest | Operating Lease Imputed Interest | Supplemental | Imputed interest discount on undiscounted lease payments. |
OperatingLeasePaymentsDue | Operating Lease Payments Due | Supplemental | Total undiscounted future operating lease payments. |
OperatingLeasePaymentsThereafter | Operating Lease Payments Thereafter | Supplemental | Operating lease payments due after year 5. |
OperatingLeasePaymentsY1 | Operating Lease Payments Y1 | Supplemental | Operating lease payments due within 12 months. |
OperatingLeasePaymentsY2 | Operating Lease Payments Y2 | Supplemental | Operating lease payments due in year 2. |
OperatingLeasePaymentsY3 | Operating Lease Payments Y3 | Supplemental | Operating lease payments due in year 3. |
OperatingLeasePaymentsY4 | Operating Lease Payments Y4 | Supplemental | Operating lease payments due in year 4. |
OperatingLeasePaymentsY5 | Operating Lease Payments Y5 | Supplemental | Operating lease payments due in year 5. |
OperatingLeaseWADiscountRate | Operating Lease WA Discount Rate | Supplemental | Weighted average discount rate for operating leases. |
ProvedGasReserves | Proved Gas Reserves | Supplemental | Estimated economically recoverable natural gas reserves. |
ProvedOilReserves | Proved Oil Reserves | Supplemental | Estimated quantities of oil that can be economically recovered under current conditions. Reserve life (reserves / annual production) is a core upstream operator metric. |
RemainingPerformanceObligation | Remaining Performance Obligation | Supplemental | ASC 606 disclosure: total transaction price for unsatisfied performance obligations. Closest GAAP-disclosed proxy for contracted backlog / forward revenue (often bigger than ARR for enterprise SaaS). |
RevenueDomestic | Revenue Domestic | Supplemental | Revenue from the issuer's home country. |
RevenueInternational | Revenue International | Supplemental | Revenue from markets outside the issuer's home country. |
SBCOptionsExercisable | SBC Options Exercisable | Supplemental | Stock options currently exercisable. |
SBCOptionsExercisableWAExercisePrice | SBC Options Exercisable WA Exercise Price | Supplemental | Weighted-avg exercise price of options currently exercisable. |
SBCOptionsExercised | SBC Options Exercised | Supplemental | Stock options exercised during the period. |
SBCOptionsExercisesWAExercisePrice | SBC Options Exercises WA Exercise Price | Supplemental | Weighted-avg exercise price on options exercised in period. |
SBCOptionsForfeited | SBC Options Forfeited | Supplemental | Stock options forfeited during the period. |
SBCOptionsForfeituresWAExercisePrice | SBC Options Forfeitures WA Exercise Price | Supplemental | Weighted-avg exercise price on options forfeited/expired. |
SBCOptionsGranted | SBC Options Granted | Supplemental | Stock options granted during the period. |
SBCOptionsGrantsWAExercisePrice | SBC Options Grants WA Exercise Price | Supplemental | Weighted-avg exercise price on options granted in period. |
SBCOptionsGrantsWAGrantDateFairValue | SBC Options Grants WA Grant Date Fair Value | Supplemental | Weighted-avg grant-date fair value of options granted. |
SBCOptionsIntrinsicValue | SBC Options Intrinsic Value | Supplemental | Aggregate intrinsic value of outstanding options. |
SBCOptionsOutstanding | SBC Options Outstanding | Supplemental | Stock options currently outstanding. |
SBCOptionsVestedAndExpectedToVestCount | SBC Options Vested And Expected To Vest Count | Supplemental | Number of options vested + expected to vest (outstanding-weighted). |
SBCOptionsVestedAndExpectedToVestIntrinsicValue | SBC Options Vested And Expected To Vest Intrinsic Value | Supplemental | Aggregate intrinsic value of options vested + expected to vest. |
SBCOptionsVestedAndExpectedToVestWAExercisePrice | SBC Options Vested And Expected To Vest WA Exercise Price | Supplemental | Weighted-avg exercise price of options vested + expected to vest. |
SBCOptionsWAPrice | SBC Options WA Price | Supplemental | Weighted average exercise price of outstanding options. |
SBCTaxBenefit | SBC Tax Benefit | Supplemental | Income tax benefit from equity compensation. |
SBCUnrecognizedCost | SBC Unrecognized Cost | Supplemental | Remaining unrecognized SBC expense for unvested awards. |
SBCRSUsGranted | SBCRS Us Granted | Supplemental | RSUs granted during the period. |
SBCRSUsNonvestedWAGrantDateFairValue | SBCRS Us Nonvested WA Grant Date Fair Value | Supplemental | Weighted-avg grant-date fair value of nonvested RSUs. |
SBCRSUsOutstanding | SBCRS Us Outstanding | Supplemental | Restricted stock units (RSUs) currently outstanding. |
SBCRSUsVested | SBCRS Us Vested | Supplemental | RSUs vested during the period. |
SegmentRevenue | Segment Revenue | Supplemental | Revenue / operating profit by reportable segment. |
ShareRepurchaseAuthorized | Share Repurchase Authorized | Supplemental | Board-authorized share repurchase program amount. |
TierOneCapitalRatio | Tier One Capital Ratio | Supplemental | Tier 1 capital adequacy ratio (Basel). |
TotalRiskBasedCapitalRatio | Total Risk Based Capital Ratio | Supplemental | Total risk-based capital ratio (Basel). |
UnrecognizedTaxBenefits | Unrecognized Tax Benefits | Supplemental | Uncertain tax positions that could result in future obligations. |
WeightedAverageCommonShares | Weighted Average Common Shares | Supplemental | IFRS weighted-average shares outstanding (basic). |
Showing 291 of 291 concepts
Example Queries
Copy-ready SQL to get started. Works with DuckDB, Postgres, and the Python SDK.
10-Year Revenue Trend for AAPL
Fetch annual revenue for the past 10 years, point-in-time accurate.
SELECT f.filing_date,
f.report_date,
fa.numeric_value / 1e9 AS revenue_billions
FROM filing f
JOIN references r ON f.entity_id = r.cik
JOIN fact fa ON fa.accession_id = f.accession_id
WHERE r.symbol = 'AAPL'
AND r.is_active = TRUE
AND fa.standard_concept = 'Revenues'
AND f.form_type = '10-K'
ORDER BY f.filing_date DESC
LIMIT 10;Debt-to-Equity Ratio — S&P500 Tech
Screen for leverage across the technology sector using the latest annual filing. Membership comes from index_membership (the references is_sp500 flag was dropped 2026-05-02).
SELECT
r.symbol,
r.name AS company_name,
r.sector,
f.filing_date AS annual_filing_date,
debt.numeric_value / 1e9 AS long_term_debt_billions,
equity.numeric_value / 1e9 AS equity_billions,
debt.numeric_value / NULLIF(equity.numeric_value, 0) AS debt_to_equity
FROM references r
JOIN index_membership im ON im.cik = r.cik
JOIN LATERAL (
SELECT accession_id, filing_date
FROM filing
WHERE entity_id = r.cik AND form_type = '10-K'
ORDER BY filing_date DESC
LIMIT 1
) f ON true
JOIN fact debt ON debt.accession_id = f.accession_id
AND debt.standard_concept = 'LongTermDebt'
JOIN fact equity ON equity.accession_id = f.accession_id
AND equity.standard_concept = 'StockholdersEquity'
WHERE im.index_name = 'SP500'
AND im.removal_date IS NULL
AND r.is_active = TRUE
AND r.sector ILIKE '%technology%'
ORDER BY debt_to_equity DESC NULLS LAST;Free Cash Flow — Latest Quarter (S&P500)
Calculate FCF (operating cash flow minus capex) across the S&P500.
SELECT
r.symbol,
r.name AS company_name,
r.sector,
f.filing_date AS latest_quarter,
COALESCE(ocf.derived_quarterly_value, ocf.numeric_value) / 1e6 AS ocf_millions,
ABS(COALESCE(capex.derived_quarterly_value, capex.numeric_value)) / 1e6 AS capex_millions,
(COALESCE(ocf.derived_quarterly_value, ocf.numeric_value)
- ABS(COALESCE(capex.derived_quarterly_value, capex.numeric_value))) / 1e6 AS fcf_millions
FROM references r
JOIN index_membership im ON im.cik = r.cik
JOIN LATERAL (
SELECT accession_id, filing_date
FROM filing
WHERE entity_id = r.cik AND form_type = '10-Q'
ORDER BY filing_date DESC
LIMIT 1
) f ON true
JOIN fact ocf ON ocf.accession_id = f.accession_id
AND ocf.standard_concept = 'NetCashProvidedByUsedInOperatingActivities'
JOIN fact capex ON capex.accession_id = f.accession_id
AND capex.standard_concept = 'PaymentsToAcquirePropertyPlantAndEquipment'
WHERE im.index_name = 'SP500'
AND im.removal_date IS NULL
AND r.is_active = TRUE
ORDER BY fcf_millions DESC NULLS LAST
LIMIT 20;Intrinsic Value Screen — S&P500
Screen S&P500 companies by DCF intrinsic value vs current price (margin of safety).
SELECT
r.symbol,
r.name AS company_name,
r.sector,
v.valuation_date,
v.model_type,
v.per_share_value,
v.current_price,
v.margin_of_safety,
v.valuation_label
FROM valuation v
JOIN references r ON v.entity_id = r.cik
JOIN index_membership im ON im.cik = r.cik
WHERE im.index_name = 'SP500'
AND im.removal_date IS NULL
AND r.is_active = TRUE
AND v.model_type = 'dcf'
AND v.valuation_date = (
SELECT MAX(valuation_date) FROM valuation WHERE entity_id = v.entity_id
)
AND v.per_share_value IS NOT NULL
ORDER BY v.margin_of_safety DESC NULLS LAST
LIMIT 20;Ready to query 105M+ facts?
Get a free API key and start querying in 60 seconds.