PeriodCalculations

Calculations for a specific data point.

Federal GovernmentLaborStatisticsEmploymentEconomic Data

Properties

Name Type Description
net_changes object Net change from prior periods.
pct_changes object Percent change from prior periods.
View JSON Schema on GitHub

JSON Schema

bls-period-calculations-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/u-s-bureau-of-labor-statistics/refs/heads/main/json-schema/bls-period-calculations-schema.json",
  "title": "PeriodCalculations",
  "description": "Calculations for a specific data point.",
  "type": "object",
  "properties": {
    "net_changes": {
      "type": "object",
      "description": "Net change from prior periods.",
      "additionalProperties": {
        "type": "string"
      }
    },
    "pct_changes": {
      "type": "object",
      "description": "Percent change from prior periods.",
      "additionalProperties": {
        "type": "string"
      }
    }
  }
}