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

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

# InstanceExceptionModel

## OpenAPI definition

```yaml
openapi: 3.0.0
info:
  title: Policy Service
  version: 0.0.21
servers:
  - url: https://uat.api.zinnia.io
components:
  schemas:
    InstanceExceptionModel:
      type: object
      properties:
        id:
          type: string
          description: Exception identifier
          example: exc-123
        externalId:
          type: string
          description: External identifier for the exception
          example: EXT-123
        status:
          type: string
          description: Current status of the exception
          example: Open
        category:
          type: string
          description: Exception category
          example: Documentation
        exceptionType:
          type: string
          description: Type of exception
          example: Technical
        reason:
          type: string
          description: Brief reason for the exception
          example: Missing document
        detailedReason:
          type: string
          description: Detailed description of the exception reason
          example: Signature missing on page 3 of application form
        processingReason:
          type: string
          description: Processing reason for the exception
          example: Requires manual review
        processingResolution:
          type: string
          description: Resolution details for processing
          example: Document resent by applicant
        createdAt:
          type: string
          description: Date when the exception was created
          example: 2023-01-15T10:30:00Z
        updatedAt:
          type: string
          description: Date when the exception was last updated
          example: 2023-01-16T14:45:00Z
```
