---
title: "CarrierRating"
url: "https://stage-api-docs.centraldispatch.com/apis/stage-membership-api-1-0-0/versions/50dc9109-f861-4ac9-a838-9ba774c3df98/schemas/CarrierRating"
---

> Full API specification: https://stage-api-docs.centraldispatch.com/apis/stage-membership-api-1-0-0/versions/50dc9109-f861-4ac9-a838-9ba774c3df98.md

# CarrierRating

A carrier's rating summary for a given period.

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Membership API
  version: 1.0.0
servers:
  - url: https://membership-api.centraldispatch.com
    description: Production server
components:
  schemas:
    CarrierRating:
      type: object
      properties:
        averageRatings:
          type: number
          description: Average rating across the period.
          format: double
          example: 4.7
        totalRatings:
          type: integer
          description: Number of ratings the average is computed from.
          format: int32
          example: 42
        periodDays:
          type: integer
          description: Rating window in days; `null` means lifetime, `90` means the recent
            (90-day) window.
          format: int32
          nullable: true
          example: 90
      description: A carrier's rating summary for a given period.
      nullable: true
```
