> 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/human-capital/untitled-5.md).

# Human Capital Metrics

Human capital metrics for this company - including gender diversity, ethnicity, etc.

### Fields

| Field      | Type                                                      | Description                                      |
| ---------- | --------------------------------------------------------- | ------------------------------------------------ |
| name       | String                                                    | Human Capital Metric Definition                  |
| timePeriod | [Period](/company-data-api/graphql-objects/untitled-3.md) | Daily, Monthly, Quarterly, Semi-Annual or Annual |
| unitType   | String                                                    | Currency or Units                                |
| value      | Int                                                       | Value                                            |

### Query example

```graphql
# query
query findCompanyByDomain($domain: String!) {
    company(domain: $domain) {
        ethnicityMetrics {
            name
            timePeriod {
                periodType
                endDate
            }
            unitType
            value
        }
        
        genderMetrics {
            name
            timePeriod {
                periodType
                endDate
            }
            unitType
            value
        }
        rolesMetrics {
            name
            timePeriod {
                periodType
                endDate
            }
            unitType
            value
        }
    }
}

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