---
title: "TranslationCategory"
url: "https://developers.zinnia.com/apis/policy-service-0-1-0/versions/8306e031-b41c-452a-a7ed-d73d65602086/schemas/TranslationCategory"
---

> Full API specification: https://developers.zinnia.com/apis/policy-service-0-1-0/versions/8306e031-b41c-452a-a7ed-d73d65602086.md

# TranslationCategory

## OpenAPI definition

```yaml
openapi: 3.0.0
info:
  title: Policy Service
  version: 0.0.21
servers:
  - url: https://qa.api.zinnia.io
components:
  schemas:
    TranslationBase:
      type: object
      properties:
        systemOfRecordValue:
          type: string
          description: The value from the Source of Record (e.g., Zahara) that needs to be
            translated to the corresponding carrier value
        carrierValue:
          type: string
          description: The equivalent value used by the carrier system that corresponds to
            the given sorValue
        metadata:
          $ref: "#/components/schemas/Metadata"
    Metadata:
      type: object
      properties:
        isTobaccoUse:
          type: boolean
          description: Indicates the tobacco usage status, used to differentiate mappings
            for risk classes that depend on smoking status. (i.e if smoker or
            non-smoker)
    TranslationCategory:
      type: object
      properties:
        categoryName:
          type: string
          enum:
            - RISKCLASS
            - TABLERATING
            - COVERAGEBAND
            - PAYMENTMETHOD
            - TRANSACTION
            - FEATURE
          description: The group or classification of values for which translation is
            being requested
        translations:
          type: array
          items:
            $ref: "#/components/schemas/TranslationBase"
```
