changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$defs": {
+ "Source": {
+ "description": "A FRED data source — the organization that produces releases (e.g. the\nBureau of Economic Analysis), from the `fred/source` and `fred/sources`\nendpoints.",
+ "properties": {
+ "id": {
+ "$ref": "#/$defs/SourceId",
+ "description": "The source's identifier."
+ },
+ "link": {
+ "default": null,
+ "description": "A link to the source's site, when FRED provides one.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Human-readable name, e.g. `\"U.S. Bureau of Economic Analysis\"`.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "name",
+ "link"
+ ],
+ "type": "object"
+ },
+ "SourceId": {
+ "description": "A FRED source identifier — the numeric id of a data source (the organization\nthat produces a release, e.g. the Bureau of Economic Analysis).\n\nA `Copy` newtype over `u32`, mirroring [`ReleaseId`]; `#[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": "The number of sources returned.",
+ "format": "uint",
+ "minimum": 0,
+ "type": "integer"
+ },
+ "sources": {
+ "description": "The sources.",
+ "items": {
+ "$ref": "#/$defs/Source"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "count",
+ "sources"
+ ],
+ "type": "object"
+}