WunderGraph · Schema

WunderGraph Cosmo Operation Response

A standard response object indicating the success or failure of a platform API operation.

FederationGraphQLManagementSchema Registry

Properties

Name Type Description
success boolean Whether the operation was successful.
message string A human-readable response message.
View JSON Schema on GitHub

JSON Schema

operation-response.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/api-evangelist/wundergraph/blob/main/json-schema/operation-response.json",
  "title": "WunderGraph Cosmo Operation Response",
  "description": "A standard response object indicating the success or failure of a platform API operation.",
  "type": "object",
  "properties": {
    "success": {
      "type": "boolean",
      "description": "Whether the operation was successful."
    },
    "message": {
      "type": "string",
      "description": "A human-readable response message."
    }
  }
}