changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "category": {
+ "description": "Category grouping used (naics, psc, recipient, awarding_agency, awarding_subagency)",
+ "type": "string"
+ },
+ "results": {
+ "description": "Spending breakdown by category",
+ "items": {
+ "properties": {
+ "amount": {
+ "description": "Total spending for this category",
+ "type": "number"
+ },
+ "code": {
+ "description": "Category code if applicable",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "id": {
+ "description": "Category identifier if applicable",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Category name",
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "amount",
+ "code",
+ "id"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total_count": {
+ "description": "Total number of categories in results",
+ "type": "number"
+ }
+ },
+ "required": [
+ "category",
+ "total_count",
+ "results"
+ ],
+ "type": "object"
+}