Moody's · Schema

Observation

A single time series observation or forecast data point.

Climate RiskComplianceCredit RiskEconomic DataEntity VerificationFinancial AnalyticsInsuranceKYCRiskScreening

Properties

Name Type Description
date string The observation date in YYYY-MM-DD format. For frequencies coarser than daily, represents the period start date.
value ['number', 'null'] The observation value. Null indicates missing or unavailable data for this period.
status string Status indicator for the data point.
View JSON Schema on GitHub

JSON Schema

moodys-data-buffet-observation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Observation",
  "type": "object",
  "description": "A single time series observation or forecast data point.",
  "properties": {
    "date": {
      "type": "string",
      "description": "The observation date in YYYY-MM-DD format. For frequencies coarser than daily, represents the period start date."
    },
    "value": {
      "type": "['number', 'null']",
      "description": "The observation value. Null indicates missing or unavailable data for this period."
    },
    "status": {
      "type": "string",
      "description": "Status indicator for the data point."
    }
  }
}