Arch Coal · Schema

ProductionReport

MiningCoalMetallurgical CoalThermal CoalEnergyFortune 500

Properties

Name Type Description
year integer Fiscal year
quarter integer Quarter
totalTons integer Total coal production in short tons
metCoalTons integer Metallurgical coal production in short tons
thermalCoalTons integer Thermal coal production in short tons
averagePrice number Average realized price per short ton in USD
View JSON Schema on GitHub

JSON Schema

arch-coal-investor-relations-api-production-report-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "year": {
      "type": "integer",
      "description": "Fiscal year",
      "example": 2025
    },
    "quarter": {
      "type": "integer",
      "description": "Quarter",
      "example": 4
    },
    "totalTons": {
      "type": "integer",
      "description": "Total coal production in short tons",
      "example": 5800000
    },
    "metCoalTons": {
      "type": "integer",
      "description": "Metallurgical coal production in short tons",
      "example": 4100000
    },
    "thermalCoalTons": {
      "type": "integer",
      "description": "Thermal coal production in short tons",
      "example": 1700000
    },
    "averagePrice": {
      "type": "number",
      "description": "Average realized price per short ton in USD",
      "example": 172.5
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/arch-coal/refs/heads/main/json-schema/arch-coal-investor-relations-api-production-report-schema.json",
  "title": "ProductionReport"
}