changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "ReleaseDate": {
+ "description": "A single scheduled or historical release date, from the\n`fred/releases/dates` and `fred/release/dates` endpoints — the date a\nrelease was (or is scheduled to be) published.",
+ "properties": {
+ "date": {
+ "description": "The date the release was, or is scheduled to be, published.",
+ "format": "date",
+ "type": "string"
+ },
+ "release_id": {
+ "$ref": "#/$defs/ReleaseId",
+ "description": "The release this date belongs to."
+ },
+ "release_name": {
+ "default": null,
+ "description": "The release's name. `releases/dates` (which spans every release)\nincludes it; `release/dates` omits it, since the release is already\nfixed by the request.",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "release_id",
+ "release_name",
+ "date"
+ ],
+ "type": "object"
+ },
+ "ReleaseId": {
+ "description": "A FRED release identifier — the numeric id of a data release (a publication\nsuch as \"Gross Domestic Product\").\n\nA `Copy` newtype over `u32`, mirroring [`CategoryId`]; `#[serde(transparent)]`\ncarries it as the bare integer FRED sends (ADR-0005).",
+ "format": "uint32",
+ "minimum": 0,
+ "type": "integer"
+ }
+ },
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "properties": {
+ "count": {
+ "description": "Total number of release dates available (across all pages).",
+ "format": "uint32",
+ "minimum": 0,
+ "type": "integer"
+ },
+ "limit": {
+ "description": "The page-size limit that was applied.",
+ "format": "uint32",
+ "minimum": 0,
+ "type": "integer"
+ },
+ "offset": {
+ "description": "The offset (number of dates skipped) for this page.",
+ "format": "uint32",
+ "minimum": 0,
+ "type": "integer"
+ },
+ "release_dates": {
+ "description": "The release dates on this page.",
+ "items": {
+ "$ref": "#/$defs/ReleaseDate"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "count",
+ "offset",
+ "limit",
+ "release_dates"
+ ],
+ "type": "object"
+}