Detailed information about a specific error
{ "type": "object", "description": "Detailed information about a specific error", "properties": { "message": { "type": "string", "description": "A human-readable error message", "example": "Invalid parameter value" }, "code": { "type": "string", "description": "An error code", "example": "INVALID_PARAMETER" }, "subCategory": { "type": "string", "description": "A specific error subcategory", "example": "MISSING_REQUIRED_FIELD" }, "in": { "type": "string", "description": "The location of the error (e.g., body, query, path)", "example": "body" }, "context": { "type": "object", "description": "Additional context about the specific error", "example": { "missingFields": [ "client_secret" ] } } }, "required": [ "message" ], "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "ErrorDetail" }