> For the complete documentation index, see [llms.txt](https://docs.craft.co/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.craft.co/company-data-api/data-points/operating-data/sustainability-metrics.md).

# Sustainability Metrics

### Fields

| Field        | Type                                                                      | Description                                      |
| ------------ | ------------------------------------------------------------------------- | ------------------------------------------------ |
| group        | String                                                                    | Sustainability group                             |
| measure      | String                                                                    | Measurement for the sustainability metric        |
| name         | String                                                                    | Name                                             |
| period       | [Period](/company-data-api/graphql-objects/untitled-3.md)                 | Daily, Monthly, Quarterly, Semi-Annual or Annual |
| Source       | [Source](/company-data-api/graphql-objects/source-object.md)              | Source Label and URL                             |
| units        | [MetricUnitEnum](/company-data-api/graphql-enums/metric-unit-enum.md)     | Currency, Units or Percentage                    |
| value        | Sting                                                                     | Amount for the metric                            |
| currencyCode | [CurrencyTypeEnum](/company-data-api/graphql-enums/currency-type-enum.md) | Currency for the units **currency**              |

### Query example

```graphql
# query
query findCompanyByDomain($domain: String!) {
    company(domain: $domain) {
        sustainability {
            group
            measure
            name
            period {
              displayEndDate
              endDate
              periodType
              startDate
            }
            source {
              label
              url
            }
            units
            value               
        }
    }
}


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