---
title: "ResourceTypeStatisticsDto"
url: "https://public-api-docs.cipherscale.com/apis/cipherscale-api-1/versions/fef69080-6094-4620-8bf0-16fd2de7b598/schemas/ResourceTypeStatisticsDto"
---

> Full API specification: https://public-api-docs.cipherscale.com/apis/cipherscale-api-1/versions/fef69080-6094-4620-8bf0-16fd2de7b598.md

# ResourceTypeStatisticsDto

## OpenAPI definition

```yaml
openapi: 3.0.0
info:
  title: Cipherscale API
  version: "1.0"
servers:
  - url: https://public-api.cipherscale.com/qa
    description: Cipherscale Public API Server
components:
  schemas:
    ResourceTypeStatisticsDto:
      type: object
      properties:
        totalCount:
          type: number
          description: Total number of resources
        onlineCount:
          type: number
          description: Number of online resources
        offlineCount:
          type: number
          description: Number of offline resources
        withoutGatewayCount:
          type: number
          description: Number of resources without a gateway
        withoutPolicyCount:
          type: number
          description: Number of resources without a policy
      required:
        - totalCount
        - onlineCount
        - offlineCount
        - withoutGatewayCount
        - withoutPolicyCount
```
