{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/r2_v4_response", "title": "r2_v4_response", "properties": { "errors": { "$ref": "#/components/schemas/r2_errors" }, "messages": { "$ref": "#/components/schemas/r2_messages" }, "result": { "type": "object" }, "success": { "description": "Whether the API call was successful", "enum": [ true ], "type": "boolean" } }, "required": [ "success", "errors", "messages", "result" ], "type": "object" }