{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Error", "type": "object", "description": "Error object", "properties": { "Source": { "type": "string", "description": "Source of the error" }, "ReasonCode": { "type": "string", "description": "A unique constant identifying the error" }, "Description": { "type": "string", "description": "Short description of the error" }, "Recoverable": { "type": "boolean", "description": "Indicates whether this error will always be returned for this request, or retrying could change the outcome" }, "Details": { "type": "string", "description": "Optional detailed description of the issue" } } }