# Schema for HTTP ZETA Error Response
$schema: "http://json-schema.org/draft-07/schema#"
title: HTTP ZETA Error Response
description: Schema for transmitting error information for HTTP ZETA error response.
type: object
properties:
  error:
    type: string
    description: A short, machine-readable error identifier.
  error_description:
    type: string
    description: A human-readable explanation of the error.
  error_uri:
    type: string
    format: url
    description: A URI that provides more information about the error.
required:
  - error