{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/aaa_schemas-api-response-common-failure", "title": "aaa_schemas-api-response-common-failure", "properties": { "errors": { "allOf": [ { "$ref": "#/components/schemas/aaa_messages" } ], "example": [ { "code": 7003, "message": "No route for the URI" } ], "minLength": 1 }, "messages": { "allOf": [ { "$ref": "#/components/schemas/aaa_messages" } ], "example": [] }, "success": { "description": "Whether the API call was successful", "enum": [ false ], "example": false, "type": "boolean" } }, "required": [ "success", "errors", "messages" ], "type": "object" }