Operating Metrics (KPIs)

The sector-specific metrics or Key Performance Indicators for this company

Fields

Field

Type

Description

companySpecificKpi

String

Operating Metric Definition

footnotes

String

Footnotes from the filings, if any

source

Source of operating metric

timePeriod

Daily, Monthly, Quarterly, Semi-Annual or Annual

unitType

String

Currency or Units

value

Amount with currency

Query example

# query
query findCompanyByDomain($domain: String!) {
    company(domain: $domain) {
        operatingMetrics {
            companySpecificKpi
            footnotes
            source {
                url
            }
            timePeriod {
                periodType
                endDate
            }
            
            unitType
            value {
                currencyIsoCode
                value
            }
        }
    }
}


# variables
{ "domain": "meta.com" }

Last updated