changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "Release": {
+ "description": "A FRED data release — a publication such as \"Gross Domestic Product\", from\nthe `fred/release` and `fred/releases` endpoints.",
+ "properties": {
+ "id": {
+ "$ref": "#/$defs/ReleaseId",
+ "description": "The release's identifier."
+ },
+ "link": {
+ "default": null,
+ "description": "A link to the release on the source's site, when FRED provides one.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Human-readable name, e.g. `\"Gross Domestic Product\"`.",
+ "type": "string"
+ },
+ "press_release": {
+ "description": "Whether the release is accompanied by a press release.",
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "id",
+ "name",
+ "press_release",
+ "link"
+ ],
+ "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 releases 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 releases skipped) for this page.",
+ "format": "uint32",
+ "minimum": 0,
+ "type": "integer"
+ },
+ "releases": {
+ "description": "The releases on this page.",
+ "items": {
+ "$ref": "#/$defs/Release"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "count",
+ "offset",
+ "limit",
+ "releases"
+ ],
+ "type": "object"
+}