Calculations

Net and percent change calculations for a series.

Federal GovernmentLaborStatisticsEmploymentEconomic Data

Properties

Name Type Description
net_changes object Net change values by period label.
pct_changes object Percent change values by period label.
View JSON Schema on GitHub

JSON Schema

bls-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-calculations-schema.json",
  "title": "Calculations",
  "description": "Net and percent change calculations for a series.",
  "type": "object",
  "properties": {
    "net_changes": {
      "type": "object",
      "description": "Net change values by period label.",
      "additionalProperties": {
        "type": "string"
      }
    },
    "pct_changes": {
      "type": "object",
      "description": "Percent change values by period label.",
      "additionalProperties": {
        "type": "string"
      }
    }
  }
}