changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "awards": {
+ "description": "All contract awards for this recipient",
+ "items": {
+ "properties": {
+ "award_amount": {
+ "description": "Total award amount in dollars",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "award_id": {
+ "description": "Unique award identifier",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "awarding_agency": {
+ "description": "Name of the awarding agency",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "awarding_sub_agency": {
+ "description": "Sub-agency that awarded the contract",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "contract_type": {
+ "description": "Type of contract award",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "description": {
+ "description": "Award description",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "end_date": {
+ "description": "Award end date",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "naics_code": {
+ "description": "NAICS industry code",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "recipient_name": {
+ "description": "Name of the contractor/recipient",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "start_date": {
+ "description": "Award start date",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "total_outlays": {
+ "description": "Total amount paid out",
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "award_id",
+ "recipient_name",
+ "award_amount",
+ "total_outlays",
+ "start_date",
+ "end_date",
+ "awarding_agency",
+ "awarding_sub_agency",
+ "description",
+ "naics_code",
+ "contract_type"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "limit": {
+ "description": "Number of results returned",
+ "type": "number"
+ },
+ "recipient_name": {
+ "description": "Name of the contractor/recipient",
+ "type": "string"
+ },
+ "total_results": {
+ "description": "Total number of awards for this recipient",
+ "type": "number"
+ }
+ },
+ "required": [
+ "recipient_name",
+ "total_results",
+ "limit",
+ "awards"
+ ],
+ "type": "object"
+}