Archrock · Schema
QuarterlyFinancials
Natural GasCompression ServicesOil And GasEnergyIndustrialNYSE: AROC
Properties
| Name | Type | Description |
|---|---|---|
| year | integer | |
| quarter | integer | |
| revenue | number | Total revenue in millions USD |
| grossMargin | number | Gross margin percentage |
| ebitda | number | Adjusted EBITDA in millions USD |
| netIncome | number | Net income in millions USD |
| earningsPerShare | number | |
| dividendPerShare | number | |
| operatingCashFlow | number | |
| capitalExpenditures | number | |
| reportDate | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/archrock/refs/heads/main/json-schema/archrock-investor-relations-api-quarterly-financials-schema.json",
"title": "QuarterlyFinancials",
"type": "object",
"properties": {
"year": {
"type": "integer"
},
"quarter": {
"type": "integer"
},
"revenue": {
"type": "number",
"description": "Total revenue in millions USD"
},
"grossMargin": {
"type": "number",
"description": "Gross margin percentage"
},
"ebitda": {
"type": "number",
"description": "Adjusted EBITDA in millions USD"
},
"netIncome": {
"type": "number",
"description": "Net income in millions USD"
},
"earningsPerShare": {
"type": "number"
},
"dividendPerShare": {
"type": "number"
},
"operatingCashFlow": {
"type": "number"
},
"capitalExpenditures": {
"type": "number"
},
"reportDate": {
"type": "string",
"format": "date"
}
}
}