{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/argo-config_api-response-common", "title": "argo-config_api-response-common", "properties": { "errors": { "$ref": "#/components/schemas/argo-config_messages" }, "messages": { "$ref": "#/components/schemas/argo-config_messages" }, "result": { "anyOf": [ { "type": "object" }, { "items": {}, "type": "array" }, { "type": "string" } ] }, "success": { "description": "Whether the API call was successful", "enum": [ true ], "example": true, "type": "boolean" } }, "required": [ "success", "errors", "messages", "result" ], "type": "object" }