{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/appium/refs/heads/main/json-schema/appium-server-error-response-schema.json", "title": "ErrorResponse", "description": "WebDriver protocol error response", "type": "object", "properties": { "value": { "type": "object", "properties": { "error": { "type": "string", "description": "Error code", "example": "no such element" }, "message": { "type": "string", "description": "Human-readable error message", "example": "An element could not be located on the page using the given search parameters." }, "stacktrace": { "type": "string", "description": "Stack trace for debugging" } } } } }