# Schema for HTTP Error Responses with Additional Information $schema: "http://json-schema.org/draft-07/schema#" title: HTTP Error Response description: Schema for transmitting additional error information for HTTP error responses. type: object properties: error: type: string description: The specific error code. error_description: type: string description: A human-readable message providing a concise explanation of the error. error_uri: type: string description: A URI that provides more information about the error. trace_id: type: string description: A unique identifier that can be used to trace the error through various systems and logs (helpful for debugging). required: - error - error_description