---
title: "TreatmentDetail"
url: "https://developers.zinnia.com/apis/new-business/versions/b8532e16-b28e-4393-9305-def50b91e40e/schemas/TreatmentDetail"
---

> Full API specification: https://developers.zinnia.com/apis/new-business/versions/b8532e16-b28e-4393-9305-def50b91e40e.md

# TreatmentDetail

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Zinnia New Business API.
  version: 0.9.8
servers:
  - url: https://qa.api.zinnia.io
    description: QA Environment
  - url: https://dev.api.zinnia.io
    description: DEV Environment
  - url: https://uat.api.zinnia.io
    description: UAT Environment
  - url: https://api.zinnia.io
    description: PROD Environment
components:
  schemas:
    TreatmentDetail:
      type: object
      properties:
        treatmentType:
          type: string
          enum:
            - Medication
            - Hospitalization
            - CPAP
            - Surgery
            - Chemotherapy
            - Radiation
            - Other
            - Test
            - Medication Added
            - Medication Increased
            - Quit Medication
            - None
          description: Treatment Type
        isApplicable:
          type: string
          enum:
            - Yes
            - No
            - Unknown
          description: Indicator flag for recovered status
        description:
          type: string
          description: treatment description
          example: other type of treatment
        treatmentCompletionInd:
          type: string
          enum:
            - Yes
            - No
            - Unknown
          description: Indicator flag for treatment completion
        otherTestRecommendInd:
          type: string
          enum:
            - Yes
            - No
            - Unknown
          description: Indicator flag for other test recommendation
        complicationsInd:
          type: string
          enum:
            - Yes
            - No
            - Unknown
          description: Indicator flag for treatment complication
        dateLastSeen:
          type: string
          format: date
          description: Last seen date for treatment observation
        medication:
          type: string
          description: treatment description
          example: prescribed pain meds
        treatmentStartDate:
          type: string
          format: date
          description: treatmentStartDate in 'YYYY-MM-DD' format.
```
