changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "agencies": {
+ "description": "Breakdown of spending by agency",
+ "items": {
+ "properties": {
+ "abbreviation": {
+ "description": "Agency abbreviation if available",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "amount": {
+ "description": "Spending amount for this agency",
+ "type": "number"
+ },
+ "name": {
+ "description": "Agency name",
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "amount",
+ "abbreviation"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "fiscal_year": {
+ "description": "Fiscal year used for the query",
+ "type": "string"
+ },
+ "quarter": {
+ "description": "Fiscal quarter if specified, otherwise null",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "total": {
+ "description": "Total federal spending for the period",
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "fiscal_year",
+ "quarter",
+ "total",
+ "agencies"
+ ],
+ "type": "object"
+}