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​

Source of operating metric

timePeriod

​Period​

Daily, Monthly, Quarterly, Semi-Annual or Annual

unitType

String

Currency or Units

value

​Money​

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": "facebook.com" }