{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Error", "type": "object", "description": "A single error", "properties": { "Source": { "type": "string", "description": "Source of the error" }, "ReasonCode": { "type": "string", "description": "Error Code" }, "Description": { "type": "string", "description": "Error Description" }, "Recoverable": { "type": "boolean", "description": "Boolean value to specify if error is recoverable or not" }, "Details": { "type": "string", "description": "Optional details of the error" } } }