Valero Energy · Schema
Valero Energy Financial Result
Quarterly or annual financial results for Valero Energy Corporation
EnergyPetroleumRefiningRenewable FuelsFortune 100EthanolRenewable Diesel
Properties
| Name | Type | Description |
|---|---|---|
| period | object | |
| revenue | number | Total revenue in millions USD |
| net_income | number | Net income in millions USD |
| earnings_per_share | number | Diluted earnings per share |
| refining_margin | number | Refining margin per barrel in USD |
| throughput_bpd | integer | Total throughput in barrels per day |
| dividend_per_share | number | Quarterly dividend per share in USD |
| reported_date | string | Date financial results were reported |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://api-evangelist.com/schemas/valero-energy/financial",
"title": "Valero Energy Financial Result",
"description": "Quarterly or annual financial results for Valero Energy Corporation",
"type": "object",
"properties": {
"period": {
"type": "object",
"properties": {
"quarter": {
"type": "integer",
"minimum": 1,
"maximum": 4
},
"year": { "type": "integer" },
"type": {
"type": "string",
"enum": ["quarterly", "annual"]
}
}
},
"revenue": {
"type": "number",
"description": "Total revenue in millions USD"
},
"net_income": {
"type": "number",
"description": "Net income in millions USD"
},
"earnings_per_share": {
"type": "number",
"description": "Diluted earnings per share"
},
"refining_margin": {
"type": "number",
"description": "Refining margin per barrel in USD"
},
"throughput_bpd": {
"type": "integer",
"description": "Total throughput in barrels per day"
},
"dividend_per_share": {
"type": "number",
"description": "Quarterly dividend per share in USD"
},
"reported_date": {
"type": "string",
"format": "date",
"description": "Date financial results were reported"
}
},
"required": ["period", "revenue", "reported_date"]
}