# Government Spending

### Fields

| Field       | Type                                                                           | Description             |
| ----------- | ------------------------------------------------------------------------------ | ----------------------- |
| amount      | [Money](https://docs.craft.co/company-data-api/graphql-objects/money-object)   | Award amount            |
| countryCode | String                                                                         | Government country code |
| newAwards   | Int                                                                            | Number of awards        |
| period      | [Period](https://docs.craft.co/company-data-api/graphql-objects/untitled-3)    | Period                  |
| source      | [Source](https://docs.craft.co/company-data-api/graphql-objects/source-object) | Source                  |

### Query

```graphql
# query
query findCompanyByDomain($domain: String!) {
    company(domain: $domain) {
        govSpending {
            amount {
                currencyIsoCode
                value
            }
            countryCode
            newAwards
            period {
                displayEndDate
            }
            source {
                label
                url
            }
        }
    }
}

# variables
{ "domain": "meta.com" }
```
