S&P Global · Schema

S&P Global Commodity Market Data Point

Schema for a commodity price assessment data point from the S&P Global Commodity Insights API

Financial DataCredit RatingsMarket IntelligenceCommodity InsightsEnergy MarketsCapital MarketsFortune 500

Properties

Name Type Description
symbol string Commodity symbol code (Platts code)
assessDate string Assessment date
value number Assessment value
uom string Unit of measure
currency string ISO 4217 currency code
bate string Buy/Ask/Trade/End-of-day indicator
modDate string Last modification timestamp
View JSON Schema on GitHub

JSON Schema

s-and-p-global-market-data-point-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/s-and-p-global/refs/heads/main/json-schema/s-and-p-global-market-data-point-schema.json",
  "title": "S&P Global Commodity Market Data Point",
  "description": "Schema for a commodity price assessment data point from the S&P Global Commodity Insights API",
  "type": "object",
  "properties": {
    "symbol": {
      "type": "string",
      "description": "Commodity symbol code (Platts code)",
      "example": "PCAAS00"
    },
    "assessDate": {
      "type": "string",
      "format": "date",
      "description": "Assessment date",
      "example": "2024-12-01"
    },
    "value": {
      "type": "number",
      "format": "double",
      "description": "Assessment value",
      "example": 72.45
    },
    "uom": {
      "type": "string",
      "description": "Unit of measure",
      "example": "USD/BBL"
    },
    "currency": {
      "type": "string",
      "description": "ISO 4217 currency code",
      "example": "USD"
    },
    "bate": {
      "type": "string",
      "description": "Buy/Ask/Trade/End-of-day indicator",
      "enum": ["B", "A", "T", "C"],
      "example": "C"
    },
    "modDate": {
      "type": "string",
      "format": "date-time",
      "description": "Last modification timestamp"
    }
  },
  "required": ["symbol", "assessDate", "value", "uom", "currency"]
}