changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of records returned",
+ "type": "number"
+ },
+ "description": {
+ "description": "Description of the data",
+ "type": "string"
+ },
+ "records": {
+ "description": "National debt records",
+ "items": {
+ "properties": {
+ "debt_held_by_public": {
+ "description": "Debt held by the public",
+ "type": "number"
+ },
+ "intragovernmental_holdings": {
+ "description": "Intragovernmental debt holdings",
+ "type": "number"
+ },
+ "record_date": {
+ "description": "Date of the record",
+ "type": "string"
+ },
+ "total_public_debt_outstanding": {
+ "description": "Total public debt outstanding",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "description",
+ "count",
+ "records"
+ ],
+ "type": "object"
+}