---
title: "ErrorObject"
url: "https://earlyaccess.developers.bynder.com/apis/text-authoring-api-1/versions/9849902d-3283-4e54-bd51-00051500650c/schemas/ErrorObject"
---

> Full API specification: https://earlyaccess.developers.bynder.com/apis/text-authoring-api-1/versions/9849902d-3283-4e54-bd51-00051500650c.md

# ErrorObject

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: Text Authoring API
  version: 1.0.0
servers:
  - description: The $ACCOUNT should be your assigned subdomain or replace the whole
      URL if you have a custom domain.
    url: https://$ACCOUNT.bynder.com/api/1/authoring
    variables: {}
components:
  schemas:
    ErrorCode:
      description: Machine readable error code
      enum:
        - VALIDATION_ERROR
        - SERIALIZATION_ERROR
        - UNKNOWN_ERROR
        - AUTHENTICATION_ERROR
        - MISSING_ERROR
        - FORBIDDEN_ERROR
        - STORAGE_API_ERROR
      examples:
        - VALIDATION_ERROR
      title: ErrorCode
      type: string
    ErrorObject:
      properties:
        code:
          allOf:
            - $ref: "#/components/schemas/ErrorCode"
            - description: Machine readable error code
              examples:
                - VALIDATION_ERROR
        detail:
          description: Human readable error details.
          examples:
            - body/data/attributes must have required property 'html'
          type: string
        id:
          description: Unique identifier for this _instance_ of the error
          examples:
            - req-adcaa568-7082-4cc8-9db9-9d78f1a3d95d
          type: string
        meta:
          description: An object of any arbitrary data. Record<string, unknown>
        status:
          description: The HTTP Status Code
          examples:
            - "400"
            - "500"
          type: number
        title:
          description: Human readable error title.
          examples:
            - ValidationError
          type: string
      required:
        - status
        - code
        - title
        - detail
      title: ErrorObject
      type: object
```
