{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Error", "type": "object", "properties": { "Source": { "type": "string", "description": "Information about where the error happened" }, "ReasonCode": { "type": "string", "description": "An error code" }, "Description": { "type": "string", "description": "A description of the error" }, "Recoverable": { "type": "boolean", "description": "Indicates if the request can be presented again for processing" }, "Details": { "type": "string", "description": "More details about the error" } } }