---
title: "HTTPValidationError"
url: "https://console.9fin.com/apis/distressed-api/versions/6f7fc866-4490-4486-90ea-393120603830/schemas/HTTPValidationError"
---

> Full API specification: https://console.9fin.com/apis/distressed-api/versions/6f7fc866-4490-4486-90ea-393120603830.md

# HTTPValidationError

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: 9fin Distressed API
  version: 0.1.11
components:
  schemas:
    ValidationError:
      properties:
        ctx:
          title: Context
          type: object
        input:
          title: Input
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: "#/components/schemas/ValidationError"
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
```
